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 <vector> | |
| #include <iostream> | |
| #include <fstream> | |
| class GNUPlot { | |
| private: | |
| GNUPlot(GNUPlot const&) = delete; | |
| void operator=(GNUPlot const&) = delete; |
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.Drawing; | |
| using System.Runtime.InteropServices; | |
| namespace SimpleMouseClicker | |
| { | |
| public class MouseUtil | |
| { | |
| [Flags] | |
| public enum MouseEventFlag |
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 <bitset> | |
| #include <vector> | |
| #include <sstream> | |
| #include <Windows.h> | |
| class BitPatternConverter { | |
| public: | |
| template <typename T> |
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("") { |
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
| @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
| 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
| 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
| // 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
| // Circular Queue | |
| #pragma once | |
| #include <exception> | |
| #include <sstream> | |
| #define DEFAULT_QUEUE_CAPACITY 16 | |
| #define NO_ELEMENT -1 | |
| #define NO_ELEMENT_MESSAGE "佇列沒有任何元素" |