Skip to content

Instantly share code, notes, and snippets.

# coding:utf-8
import random
class BBOP:
def __init__(self, expect, words, fixed):
self.expect = expect
self.words = words
self.fixed = fixed
def random(self):
# coding:utf-8
import random
class BBOP:
def __init__(self, expect, words, fixed):
self.expect = expect
self.words = words
self.fixed = fixed
def random(self):
____=-~(''=='');__=-~____;___=-~__
_=(__*____+___)**____;exec(('%'+
repr(repr)[__*___+(''=='')])*
(__*___-(''==''))%(_-(''==
''),_+___,(''=='')+_,_-
(''==''),__+_+___,__+
____+_,_+___*____
+__,___**__-__
,__*((''=='')
+___)+_,(''
import sys
"""
_ = 1
__ = 2
___ = 4
____ = 8
_____ = 16
______ = 32
_______ = 64
@nk0t
nk0t / Bruteforce.cs
Created December 25, 2012 16:48
総当りプログラム
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bruteforce
{
class Program
{
@nk0t
nk0t / HelloWorld1.cs
Created December 31, 2012 09:06
HelloWorld.
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()));
}
@nk0t
nk0t / SettingManager.cs
Created March 8, 2013 13:59
設定管理クラス的な何か
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
@nk0t
nk0t / turai.cs
Created May 3, 2013 15:22
つらい
#!/usr/bin/csharp
Action 甲 = () => Console.WriteLine("つらい");
Action 乙 = () => Console.WriteLine("しにたい");
for (int i = 0; i < 1000; i++)
{
甲();
乙();
}
@nk0t
nk0t / helloworld.asm
Created June 18, 2013 09:04
HelloWorld
BITS 32
mov eax, 4
mov ebx, 1
push 0x0a21646c
push 0x726f576f
push 0x6c6c6548
mov ecx, esp
mov edx, 12
int 0x80
# 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