This file contains 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 make($url){ | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_USERAGENT, "Googlebot/2.1 (http://www.googlebot.com/bot.html)"); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); | |
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_TIMEOUT, 60); |
This file contains 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
http://arlingtonwa.gov/redirect.aspx?url=//www.itsbalamurali.tk | |
http://arlingtonwa.gov/redirect.aspx?url=http://www.itsbalamurali.tk | |
http://barrington-il.gov/redirect.aspx?url=//www.itsbalamurali.tk | |
http://barrington-il.gov/redirect.aspx?url=http://www.itsbalamurali.tk | |
http://bernco.gov:8765/help/urlstatusgo.html?col=myindex&url=http://itsbalamurali.tk | |
http://bernco.gov:8765/help/urlstatusgo.html?col=myindex&url=http://www.itsbalamurali.tk | |
http://bernco.gov:8765/help/urlstatusgo.html?col=myindex&url=www.itsbalamurali.tk | |
http://cathedralcity.gov/redirect.aspx?url=//www.itsbalamurali.tk | |
http://cedarparktexas.gov/redirect.aspx?url=//www.itsbalamurali.tk | |
http://cherokeecounty-nc.gov/redirect.aspx?url=//www.itsbalamurali.tk |
This file contains 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 | |
/* | |
* $backlink - the link we are looking for | |
* $url - the website against we are checking the $backlink | |
* | |
*/ | |
function backlinkCheck($backlink, $url) { |
This file contains 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
contoh.situsiklanbarisgratis.pro | |
cari.jaringaniklannasional.asia | |
automation.iklanpengusaha.asia | |
iklanbisnis.cari-pekerjaan.top | |
ads.situsiklanbarisgratis.pro | |
arena.jaringaniklangratis.pro | |
bandarlampung.iklandaerah.com | |
classifiedsads.jualanlaku.org | |
eksklusif.direktoriiklan.asia | |
iklan.peluangusahamandiri.top |
This file contains 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
Langkah - langkah : | |
1. Beli Domain | |
2. Install WP + Plugin : jetpack, yoast, wp super cache akismet | |
3. Tentukan niche atau random | |
4. Riset keyword : dengan ekstensi moz resit da, jika diatas 20 jangan diambil | |
5. SEO On Page : keyword ada title, | |
6. SEO Off Page : Backlink |
This file contains 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/sh | |
apt install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | |
apt update | |
apt install -y docker-ce docker-compose | |
#login to vult | |
#if you don't have an account, |
This file contains 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 | |
# original source: https://github.com/angristan/wireguard-install | |
# this just for automatic response yes :p | |
# langsung tancap gas pokoknya om :-D | |
if [ "$EUID" -ne 0 ]; then | |
echo "You need to run this script as root" | |
exit 1 | |
fi |
This file contains 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
func (h *Handler) dksocket(c *gin.Context) { | |
token := h.extractClaim(c) | |
conn, err := wsupgrader.Upgrade(c.Writer, c.Request, nil) | |
nc, _ := nats.Connect(nats.DefaultURL) | |
nc.Subscribe(token.UserID, func(m *nats.Msg) { | |
conn.WriteMessage(1, m.Data) // meneruskan subcribe ke websocket. potensi panic ga?? | |
}) | |
nc.Subscribe("pengumuman", func(m *nats.Msg) { | |
conn.WriteMessage(1, m.Data) // meneruskan subcribe ke websocket. potensi panic ga?? | |
}) |
This file contains 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 Numbering { | |
final double d; | |
Numbering({ | |
required this.d, | |
}); | |
factory Numbering.fromMap(Map<String, dynamic> map) { | |
return Numbering( | |
d: map['d'], // will error on flutter and working on dartpad | |
); | |
} |
OlderNewer