This file contains 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.Text; | |
using System.Threading.Tasks; | |
namespace Bruteforce | |
{ | |
class Program | |
{ |
This file contains 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.Linq; | |
using System.Collections.Generic; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine(new string(@"`;,@@^|/[,_~\]".Select((c, i) => (char)(c ^ "(^@,/~+@)@;_}|"[i])).ToArray())); | |
} |
This file contains 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.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace TestApplication.Core.Configuration | |
{ | |
public sealed class SettingManager |
This file contains 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
#!/usr/bin/csharp | |
Action 甲 = () => Console.WriteLine("つらい"); | |
Action 乙 = () => Console.WriteLine("しにたい"); | |
for (int i = 0; i < 1000; i++) | |
{ | |
甲(); | |
乙(); | |
} |
This file contains 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
BITS 32 | |
mov eax, 4 | |
mov ebx, 1 | |
push 0x0a21646c | |
push 0x726f576f | |
push 0x6c6c6548 | |
mov ecx, esp | |
mov edx, 12 | |
int 0x80 |
This file contains 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
# Aliases | |
alias emacs="vim" | |
alias v="vim" | |
alias cls="clear" | |
alias ls="ls -G --color" | |
# General Settings | |
PATH=$PATH:$HOME/bin | |
export EDITOR=vim | |
export LANG=ja_JP.UTF-8 |
This file contains 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.IO.Compression; | |
using System.Linq; | |
using System.Text; | |
namespace AOJ | |
{ | |
class Program |
This file contains 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 socket | |
import threading | |
def accept_request(client): | |
client.send('welcome to echo server\n') | |
client.send('please input\n') | |
while True: | |
msg = client.recv(1024) | |
if(msg == 'exit\r\n'): | |
break |
This file contains 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 os | |
import os.path | |
import socket | |
import threading | |
import subprocess | |
import locale | |
server_string = 'Server: httpy/1.0\r\n' | |
document_root = '' | |
index_page = '' |
This file contains 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 sys | |
import socket | |
import Image | |
from qrtools import QR | |
def solve(qrcode): | |
make_qrcode_image(qrcode) | |
code = QR(filename='qrcode.png') | |
if code.decode(): |
OlderNewer