Skip to content

Instantly share code, notes, and snippets.

View paulohenriquesn's full-sized avatar

Paulo Henrique paulohenriquesn

View GitHub Profile
public void BruteForceII(string password, int ms)
{
string listbrute = "null:null";
char[] listA_Z = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };
l:
string bruteForceValue = String.Empty;
while (true)
{
if (password != bruteForceValue)
{
@paulohenriquesn
paulohenriquesn / calculator.btwo
Created February 17, 2018 20:32
Calculator in Braintwo
int pos = 0;
Console.Write("Insira o valor primario: ");
bt.Interpreter(@",.0");
Console.Write("\nInsira o segundo valor: ");
bt.Interpreter(@",.0");
try
{
pos = int.Parse(bt.Output[0].ToString());
[cMemory]: 10
[Memory]: [0] [0]
[pointerMemory]: 0
[cMemory]: 0
[Memory]: [10] [0]
[pointerMemory]: 0
@paulohenriquesn
paulohenriquesn / fibonacci.cs
Created February 16, 2018 16:08
fibonacci.cs
RestartFibonacci:
{
List<int> arrayNumbers = new List<int>();
arrayNumbers.Add(0);
arrayNumbers.Add(1);
string fibonacci = String.Empty;
for (int i = 0; i < arrayNumbers.Count; i++)
{
fibonacci += arrayNumbers[i] + ",";
byte[] arraylegal = new byte[128];
void StringToByteArray(string value){
int pointer = 0;
byte[] byteToSendtoArray;
string[] splitSpace = value.Split(' ');
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
(3*10^11)+((10^10)+(10^9)*4+(10^8)*1+(10^7)*5+(10^6)*9+(10^5)*2+(10^4)*6+(10^3)*5+(10^2)*3+(10^1)*5+9)