Skip to content

Instantly share code, notes, and snippets.

View cymruu's full-sized avatar

filip cymruu

  • 04:12 (UTC +01:00)
View GitHub Profile
using System;
public class Test
{
public static void Main()
{
string password = "fi";
for(int i=0;i<password.Length;i++){
for(char c = 'a'; c<='z'; c++){
Console.WriteLine(c);
#include "stdafx.h"
#include <iostream>
#include <string>
#include <iomanip>
#include <cmath>
#include <conio.h>
#include <ctime>
using namespace std;
void printMatrix(double *tab, size_t rows, string name) {
@cymruu
cymruu / contributionChart.go
Created February 18, 2018 16:38
A program that draws github-like contribution graph chart
package main
import (
"fmt"
"image"
"image/color"
"image/draw"
"image/png"
"math/rand"
"os"
@cymruu
cymruu / main.go
Created June 26, 2018 12:06
Golang raw RSA encryption (no padding) RSA_NO_PADDING
package main
import (
"crypto/rsa"
"fmt"
"math/big"
)
var RSA_PublicKeyString string = "109120132967399429278860960508995541528237502902798129123468757937266291492576446330739696001110603907230888610072655818825358503429057592827629436413108566029093628212635953836686562675849720620786279431090218017681061521755056710823876476444260558147179707119674283982419152118103759076030616683978566631413"
var Public_RSA_Key = rsa.PublicKey{
N: fromBase10(RSA_PublicKeyString),
@cymruu
cymruu / fbUnseen.js
Created June 3, 2019 11:23
MyTramperMonkeyExtenstions
// ==UserScript==
// @name FBUnseen
// @description blocks seen and typing indicator on facebook!
// @author Filip
// @match https://www.facebook.com/*
// @match https://www.messenger.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';