//Rainbow
long Rainbow() {
static float x = 0, y = 0;
static float r = 0, g = 0, b = 0;
if (y >= 0.0f && y < 255.0f) {
r = 255.0f;
g = 0.0f;
b = x;
} else if (y >= 255.0f && y < 510.0f) {
r = 255.0f - x;
g = 0.0f;
b = 255.0f;
} else if (y >= 510.0f && y < 765.0f) {
r = 0.0f;
g = x;
b = 255.0f;
} else if (y >= 765.0f && y < 1020.0f) {
r = 0.0f;
g = 255.0f;
b = 255.0f - x;
} else if (y >= 1020.0f && y < 1275.0f) {
r = x;
g = 255.0f;
b = 0.0f;
} else if (y >= 1275.0f && y < 1530.0f) {
r = 255.0f;
g = 255.0f - x;
b = 0.0f;
}
x += 1.0f;
if (x >= 255.0f)
x = 0.0f;
y += 1.0f;
if (y > 1530.0f)
y = 0.0f;
return ARGB(255, (int) r, (int) g, (int) b);
}
//Credit:- @FreeOffset
long Rainbow() {
static float x = 0, y = 0;
static float r = 0, g = 0, b = 0;
if (y >= 0.0f && y < 255.0f) {
r = 255.0f;
g = 0.0f;
b = x;
} else if (y >= 255.0f && y < 510.0f) {
r = 255.0f - x;
g = 0.0f;
b = 255.0f;
} else if (y >= 510.0f && y < 765.0f) {
r = 0.0f;
g = x;
b = 255.0f;
} else if (y >= 765.0f && y < 1020.0f) {
r = 0.0f;
g = 255.0f;
b = 255.0f - x;
} else if (y >= 1020.0f && y < 1275.0f) {
r = x;
g = 255.0f;
b = 0.0f;
} else if (y >= 1275.0f && y < 1530.0f) {
r = 255.0f;
g = 255.0f - x;
b = 0.0f;
}
x += 1.0f;
if (x >= 255.0f)
x = 0.0f;
y += 1.0f;
if (y > 1530.0f)
y = 0.0f;
return ARGB(255, (int) r, (int) g, (int) b);
}
//Credit:- @FreeOffset
Google Play Console Free (Without 25$)
https://docs.google.com/forms/d/1nv9n2f_9oSgAJmz1iqx-7VCRgCxmecBh0Yxn6ErIirs/edit?usp=sharing
Join For More:-
⢠@FreeOffset ⢠@FreeOffset
[Double Click Screen]
ā” āć ¤ āć ¤ ā²
˔ᶦįµįµ į¶įµįµįµįµāæįµ Ė¢įµįµįµ Ė¢Ź°įµŹ³įµ
https://docs.google.com/forms/d/1nv9n2f_9oSgAJmz1iqx-7VCRgCxmecBh0Yxn6ErIirs/edit?usp=sharing
Join For More:-
⢠@FreeOffset ⢠@FreeOffset
[Double Click Screen]
ā” āć ¤ āć ¤ ā²
˔ᶦįµįµ į¶įµįµįµįµāæįµ Ė¢įµįµįµ Ė¢Ź°įµŹ³įµ
Google Docs
App Publish In Google Play Console
Publish Your App In Google Play Store ...
š1
NMM manager Read And Write Extra Large File
Link :-
https://www.programmer.ml/download/nmm-manager/
@FreeOffset
Link :-
https://www.programmer.ml/download/nmm-manager/
@FreeOffset
Binary Converter.apk
542.8 KB
Binary Converter
āŗ String To Binary
āŗ Binary To String
āŗ UI :- CLICK HERE
Join For More:-
⢠@FreeOffset ⢠@FreeOffset
[Double Click Screen]
ā” āć ¤ āć ¤ ā²
˔ᶦįµįµ į¶įµįµįµįµāæįµ Ė¢įµįµįµ Ė¢Ź°įµŹ³įµ
āŗ String To Binary
āŗ Binary To String
āŗ UI :- CLICK HERE
Join For More:-
⢠@FreeOffset ⢠@FreeOffset
[Double Click Screen]
ā” āć ¤ āć ¤ ā²
˔ᶦįµįµ į¶įµįµįµįµāæįµ Ė¢įµįµįµ Ė¢Ź°įµŹ³įµ
Hack And Build Lab š£
Binary Converter.apk
Code Used
//Text To Binary
public static StringBuilder Text_Binary(String Code){
try {
String text = Code;
byte[] bytes = text.getBytes();
StringBuilder binary = new StringBuilder();
for (byte b : bytes) {
int val = b;
for (int i = 0; i < 8; i++) {
binary.append((val & 128) == 0
? 0 : 1);
val <<= 1; }
binary.append(' ');
}
return binary;
}catch(Exception e){
return null;
}
}
//Binary To Text
public static String Binary_Text(String Code){
try {
String biner = Code;
String hasil = ""; char nextChar;
for(int i = 0; i <= biner.length()-8; i += 9) {
nextChar = (char)Integer.parseInt(biner.substring(i, i+8), 2);
hasil += nextChar;
}
return String.valueOf(hasil);
}catch(Exception e){
return null;
}
}
//Text To Binary
public static StringBuilder Text_Binary(String Code){
try {
String text = Code;
byte[] bytes = text.getBytes();
StringBuilder binary = new StringBuilder();
for (byte b : bytes) {
int val = b;
for (int i = 0; i < 8; i++) {
binary.append((val & 128) == 0
? 0 : 1);
val <<= 1; }
binary.append(' ');
}
return binary;
}catch(Exception e){
return null;
}
}
//Binary To Text
public static String Binary_Text(String Code){
try {
String biner = Code;
String hasil = ""; char nextChar;
for(int i = 0; i <= biner.length()-8; i += 9) {
nextChar = (char)Integer.parseInt(biner.substring(i, i+8), 2);
hasil += nextChar;
}
return String.valueOf(hasil);
}catch(Exception e){
return null;
}
}
ā¤1š1
All Translate Languages.apk
8.8 MB
All Translate Languages
āŗ All Language Available
āŗ beautiful Design
āŗ UI :- CLICK HERE
āŗ Scanned Added
Join For More:-
⢠@FreeOffset ⢠@FreeOffset
[Double Click Screen]
ā” āć ¤ āć ¤ ā²
˔ᶦįµįµ į¶įµįµįµįµāæįµ Ė¢įµįµįµ Ė¢Ź°įµŹ³įµ
āŗ All Language Available
āŗ beautiful Design
āŗ UI :- CLICK HERE
āŗ Scanned Added
Join For More:-
⢠@FreeOffset ⢠@FreeOffset
[Double Click Screen]
ā” āć ¤ āć ¤ ā²
˔ᶦįµįµ į¶įµįµįµįµāæįµ Ė¢įµįµįµ Ė¢Ź°įµŹ³įµ
š4
Forwarded from Upload File
This media is not supported in your browser
VIEW IN TELEGRAM
ŁŁŁŁ ŲµŁ Ų§ŁŁŁ Ų¹ŁŁŁ ŁŲ³ŁŁ
šš¤²
š1