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
| import java.io.*; | |
| import java.net.*; | |
| import java.text.*; | |
| import java.lang.*; | |
| import java.util.*; | |
| import java.util.Timer; | |
| import java.util.TimerTask; | |
| import javax.swing.*; |
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
| var java = { | |
| io: { | |
| }, | |
| util: { | |
| Interface: { | |
| /* | |
| Collection | |
| Comparator | |
| Dequeue | |
| Enumeration |
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
| public class Family { | |
| public String Data = ""; | |
| public Family Left, Right; | |
| public void Family() {} | |
| public void setData(String a) { | |
| Data = a; | |
| } | |
| public Family getRight() { | |
| if (Right == null || Right.isEmpty()) Right = new Family(); | |
| return Right; |
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
| /** | |
| * Effective | |
| */ | |
| * { margin: 0; body: 0; } | |
| html,body{ height:100%; } | |
| body{ | |
| background: #333; | |
| padding: 4em; | |
| } | |
| article#credits { |
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
| name= "John Doe" | |
| ageStr= "50" | |
| ageStr10 = CStr(CInt(ageStr)+10) | |
| msgStr= "Your name is" & vbTab & vbTab & name & vbCrLf & "Your age is " & vbTab & vbTab & ageStr & vbCrLf & vbCrLf & "Your Age in 10 years will be...." & ageStr10 & vbCrLf & vbCrLf & "End of Program" | |
| WScript.Echo msgStr |
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
| SET WEBSITE = google.com | |
| :BeginDdos | |
| echo What it does: | |
| echo pings localhost for nearest working internet connection | |
| echo releases their ip address | |
| echo throws all of the activity on the network at the website | |
| echo Renews your internet activity to work again | |
| echo repeats if needed | |
| cls |
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
| Active Connections | |
| Proto Local Address Foreign Address State | |
| TCP 127.0.0.1:5354 127.0.0.1:49156 ESTABLISHED | |
| [mDNSResponder.exe] | |
| TCP 127.0.0.1:5354 127.0.0.1:49157 ESTABLISHED | |
| [mDNSResponder.exe] | |
| TCP 127.0.0.1:5354 127.0.0.1:49247 ESTABLISHED | |
| [mDNSResponder.exe] |
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> | |
| <html lang="en-US"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <!-- Definitions --> | |
| <meta name="author" | |
| content="Anonymous"> | |
| <meta name="keywords" |
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
| .3dm x-world/x-3dmf | |
| .3dmf x-world/x-3dmf | |
| .a application/octet-stream | |
| .aab application/x-authorware-bin | |
| .aam application/x-authorware-map | |
| .aas application/x-authorware-seg | |
| .abc text/vnd.abc | |
| .acgi text/html | |
| .afl video/animaflex | |
| .ai application/postscript |
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
| //Framework 4.0 | |
| var ascii = {}, color, display, icon, paint, process, text = {}, setColor, shape = {}; | |
| function Values(object) { | |
| return Object.keys(object).map(function(v){ return object[v]; }); | |
| } | |
| function Animate(a){ | |
| var b = a.seconds, | |
| g = a.maximum, | |
| h = a.drawing, | |
| i = a.exhaust, |