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 | |
| include "../functions/fungsi_pass.php"; | |
| include "../functions/koneksi.php"; | |
| $err= '<html> | |
| <head> | |
| <style> | |
| a:link {font:8pt/11pt verdana; color:red} | |
| a:visited {font:8pt/11pt verdana; color:#4e4e4e} | |
| </style> | |
| <meta HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252"> |
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 | |
| #belajar2 | |
| echo -n "Nama kamu :" | |
| read nama; | |
| echo "Hi $nama, gimana kabarnya?"; | |
| echo "Pesan dan kesan :"; | |
| read | |
| echo "kata $nama, $REPLY"; |
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
| /* | |
| Krisna Clock Textdraw: | |
| Credits | |
| [~]Zhamaroth TextDraw Editor | |
| [~]Shadow for filterscript World Clock | |
| [~]Krisna Pradnya edit Filterscript | |
| [~]SAMP Team | |
| Thanks~ | |
| visit our Facebook www.facebook.com/krisna.pradnya |
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 | |
| #belajar3y | |
| echo -n "Masukan nama kamu :" | |
| read nama; | |
| echo "Daftar Pilihan"; | |
| echo "--------------"; | |
| echo "1. Anjing "; | |
| echo "2. Kucing "; |
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 | |
| #tugasjordan | |
| echo "masukan nilai pertama: " | |
| read nilai1 | |
| echo "masukan nilai kedua: " | |
| read nilai2 | |
| echo "pilih tipe operasi" |
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>Test</title> | |
| <style media="screen"> | |
| body { | |
| margin: 0; | |
| background: #000000 url(images/background.jpg) no-repeat top; | |
| font: normal medium "Verdana", Arial, Helvetica, sans-serif; |
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
| unbindall | |
| bind "0" "slot10" | |
| bind "1" "slot1" | |
| bind "2" "slot2" | |
| bind "3" "slot3" | |
| bind "4" "slot4" | |
| bind "5" "slot5" | |
| bind "6" "slot6" | |
| bind "7" "slot7" | |
| bind "8" "slot8" |
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 Discord = require('discord.js'); | |
| const client = new Discord.Client(); | |
| var rclient = require('redis').createClient({ | |
| host : 'localhost', | |
| port : 6379, | |
| no_ready_check: true, | |
| auth_pass: '' | |
| }); | |
| client.on('error', function(err){ |
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
| package main | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "net/http" | |
| "time" | |
| ) |
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
| def verifyUser(userID, hashes): | |
| """ | |
| Activate `userID`'s account. | |
| :param userID: user id | |
| :param hashes: Peppy's botnet (client data) structure (new line = "|", already split | |
| ) | |
| [0] osu! version | |
| [1] plain mac addressed, separated by "." | |
| [2] mac addresses hash set |
OlderNewer