Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- icon = new NotifyIcon();
- icon.Icon = Icon.ExtractAssociatedIcon("icon.ico");
- icon.Visible = true;
- icon.DoubleClick += new EventHandler(delegate(object o, EventArgs e)
- {
- Application.Exit();
- });
- WebClient wc = new WebClient();
- byte[] fuckyou = Encoding.ASCII.GetBytes("Fuck you");
- System.Threading.Timer timer = new System.Threading.Timer(new System.Threading.TimerCallback(
- delegate(object o)
- {
- Stream s = wc.OpenWrite("http://comcast.net");
- s.Write(fuckyou, 0, fuckyou.Length);
- s.Close();
- }), null, 1000, 1000);
- Application.Run();
- }
Advertisement
Add Comment
Please, Sign In to add comment