This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Coffee Chaproek | |
Alamat: Jl. A. Yani No.23, Gunungparang, Kec. Cikole, Kota Sukabumi, Jawa Barat 43131 | |
Telepon: 0896-9407-64422 | |
Plus Code: 3WHF+C9 Gunungparang, Kota Sukabumi, Jawa Barat | |
2. Kopi Nako Sukabumi | |
Alamat: Jl. Mayor Mahmud, Sukajaya, Kec. Cikole, Kota Sukabumi, Jawa Barat 43113 | |
Telepon: 0852-1845-4121 | |
Plus Code: 3WVR+XJ Sukajaya, Kabupaten Sukabumi, Jawa Barat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { BrowserWindow, net } = require('electron'); | |
const { UserAgent } = require('user-agents'); | |
const randUA = () => new UserAgent().toString(); | |
const randMAC = () => { | |
const hex = "0123456789ABCDEF"; | |
let mac = ""; | |
for (let i = 0; i < 6; i++) mac += (i === 0 ? "" : ":") + hex[Math.floor(Math.random() * 16)] + hex[Math.floor(Math.random() * 16)]; | |
return mac; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Fungsi untuk menentukan metode manajemen layanan | |
get_service_manager() { | |
if command -v systemctl &> /dev/null; then | |
echo "systemctl" | |
elif command -v rc-service &> /dev/null; then | |
echo "rc-service" | |
else | |
echo "Metode manajemen layanan tidak ditemukan." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ã ‘Yf Ìù@Á˚«‡∂ŒG•dîaÄ0î% àZ≈#9‡$…≈ªãà≥∏ͨª÷∫⁄÷Q˜Æ∂.‘⁄ZµJ´÷ ⁄j›u¥ä˛Ôí !ƒ—¯≥ˇÁ#pÎyfl˜˚æœ˚æwÔ›Ωßß–t | |
ÊãhBã“8°cW≥¸9oè'ã„RbZÚ"”“¬I°X¿„_¬Û8à¯Mä®E£$#Ö·È<∫r;∆,#£äxÃ˘([æ#ËsÈ,∆Á§AG„Zåz£~/½/Û≈‡{`ÌˇD„víy”Ø?EË^; | |
¶<$"Q˛K+˙_¿ јژB˛ü˚àâ | |
0‡$¶≈t4Â’©wüé^YË@L¶À | |
C)\•Pë∏û=êÅj(lÿ€ñºaF˙™±‘†°ˇùfiˇï˙>_˝ø=®Ëˇdf+¬º·ß◊‡TR}™ÓˇE<)_d©Ñ'DzflÖ“jêÅI1ó˛¡^|?ûÇÈTÑ◊e{%+#}ºBC‹Ç<#¬ï=Âà±V â…a±1·àóØøøLØ◊`˛˛ $16F°Dò8¸˝ÂÒ^àWMÎ;˘˚Á‰‰¯°¨ïüä–≤ÜÃeIË1íŒçe"Ûe¯©iµìå)ˆ | |
ròΩj\Eá∏πecπ!2<§$≤1‰œÓ`ˆ„:Àƒ»æD | |
Ú/›,A®1Mô5EìLÊB2ı¥Ø–OÏK»t"»flº∑4+W∆\…48s‘e*≥Hå "4ÍÁ}>A6p"cO…tÍh&å\«é± Éœ•˛ÃôÛ,°—»t∏if¢4û̃Zdž≥"ÒAò:í`Œ„ | |
|0ˆ“ä{‡:5ë£D””ô¸≤Ef]bZTg@5÷EÆ¡UŸJBÅi0Nh´Ú$i“PûQsœÇÑD∂%≥ë(Æ∂ND „"¬"|¸H_ëDÈ ÙïHÑ<Q _.[K࿵a®*;ì$:µ)T%ÖÕò∆ËPçƒLe£QFU"◊&Ë4πJl]id∆¡s§A£°T$ÜÈî$™£Ù(…¥†‹ ¬&à±–12É µîÇ)⁄T~åÎmã1UYbå#ôÊa€(ZÀ¯Oâ”ö 2çÍi\âaÍt¶ƒ" RN©*Qç´Õ’2%´∞aR¨Ï(A3ã8<ìDi¶fíÑV¡xMÉ)â8¶‡∂2Õ;ÖÈp™—‰⁄6â«r *Qy>QíDŸ◊“˛¬’\π·11€òck.oVÆÂÒñ⁄j”ÒLa†ìüê∏öŒ≤∞/À`i Ö#<$ú–§ÖYôìUò∆Ä16Z=°c.≥ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Composer { | |
public static function install() { | |
$dependencies = $this->readComposerJson(); | |
$this->pullDependencies($dependencies); | |
$this->createAutoload(); | |
} | |
private function readComposerJson() { | |
// Membaca dan menguraikan composer.json | |
$composerJson = file_get_contents('composer.json'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Tr { | |
static request({ | |
method = "GET", | |
url, | |
params, | |
responseType, | |
data, | |
headers | |
}) { | |
return new Promise((resolve, reject) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.freeadstime.org/ | |
https://www.classifiedsfactor.com/ | |
https://www.wallclassifieds.com/ | |
https://www.h1ad.com/ | |
https://www.findermaster.com/ | |
https://www.advertiseera.com/ | |
https://www.giganticlist.com/ | |
https://www.rectanglead.com/ | |
http://www.freedirectorysubmit.com/ | |
http://www.freewebsitedirectory.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
TEMPRANDSTR= | |
function getRandPassword | |
{ | |
dd if=/dev/urandom bs=8 count=1 of=/tmp/randpasswdtmpfile >/dev/null 2>&1 | |
TEMPRANDSTR=`cat /tmp/randpasswdtmpfile` | |
rm /tmp/randpasswdtmpfile | |
local DATE=`date` | |
TEMPRANDSTR=`echo "$TEMPRANDSTR$RANDOM$DATE" | md5sum | base64 | head -c 8` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wordTruth ($text,$args=[]){ | |
foreach($args as $k => $v){ | |
$key[] = $k; | |
$value[]= $v; | |
} | |
return str_replace($key,$value,$text); | |
} | |
NewerOlder