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. Project structure | |
| - src | |
| - coba | |
| ProsesAction.java | |
| - web content | |
| -META-INF | |
| -WEB-INF | |
| -(new folder) classes | |
| struts.xml | |
| -lib |
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
| [SHARE] | |
| Script untuk anda yang mau mengakses DeepWeeb/ Darknet dengan menggunakan TOR | |
| OS : Kali Linux | |
| How to : | |
| 1. Copas script dibawah ini , rename dengan namafile.sh (bash script) | |
| 2. chmod +x namafile.sh | |
| 3. ./namafile.sh |
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
| // http://stackoverflow.com/questions/19613444/a-pattern-to-pause-resume-an-async-task/21712588#21712588 | |
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace Console_19613444 | |
| { | |
| class Program | |
| { | |
| // http://stackoverflow.com/a/19616899/1768303 |
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
| //2capcay solver in c# | |
| // http://pastebin.com/kKmqiGg2 | |
| public string SendRecaptchav2Request() | |
| { | |
| //POST | |
| try | |
| { | |
| System.Net.ServicePointManager.Expect100Continue = false; | |
| var request = (HttpWebRequest)WebRequest.Create("http://2captcha.com/in.php"); | |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace EncryptDecrypt | |
| { | |
| class ECBEncryption |
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
| using System; | |
| using System.Threading; | |
| using Android.App; | |
| using Android.Widget; | |
| using Android.OS; | |
| using System.Text; | |
| using System.Net; | |
| using System.Net.Sockets; | |
| namespace AndroidClientChat |
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 BarangDAO | |
| { | |
| private MySqlCommand perintah = null; | |
| string konfigurasi = "Server=localhost;Port=3306;UID=root;PWD=;Database=project_pati_kasir"; | |
| MySqlConnection koneksi = new MySqlConnection(); | |
| public BarangDAO() | |
| { | |
| koneksi.ConnectionString = konfigurasi; | |
| } |
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
| Rectangle tutup = new Rectangle(0, 0, 40, 96);//ukuran awal | |
| Bitmap sourceBitmap = new Bitmap(@"D:\cards.jpg"); | |
| Graphics gCard6 = card6.CreateGraphics(); | |
| Graphics gCard7 = card7.CreateGraphics(); | |
| gCard6.DrawImage(sourceBitmap, new Rectangle(0, 0, | |
| card6.Width, card6.Height), tutup, GraphicsUnit.Pixel); |
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
| // |
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
| using MySql.Data.MySqlClient; | |
| namespace LatihanDB | |
| { | |
| public partial class Pagination : Form | |
| { | |
| private MySqlCommand perintah = null; | |
| string konfigurasi = "Server=localhost;Port=3306;UID=root;PWD=;Database=dbpv"; | |
| MySqlConnection koneksi = new MySqlConnection(); |