Skip to content

Instantly share code, notes, and snippets.

View NecroTechno's full-sized avatar

NecroTechno NecroTechno

View GitHub Profile

Keybase proof

I hereby claim:

  • I am NecroTechno on github.
  • I am necrotechno (https://keybase.io/necrotechno) on keybase.
  • I have a public key whose fingerprint is 538F 53D1 B8C9 69BB 3B56 D131 BF09 9E07 53F0 A785

To claim this, I am signing this object:

Based on - https://github.com/ivanceras/rust-vim-setup
YouCompleteMe
Vim number toggle
NERDtree
vim-autoformat
@NecroTechno
NecroTechno / mastodon-one-column.css
Last active August 6, 2018 19:52
Mastodon One Column (Twitter Design) - Forked from Mandar
/**
* Author : Mandar
* Contact : Webmaster@eunivers.net
* Instance : https://eunivers.social
* StyleSheets overload for Mastodon v1.3.x add your instance on top
* Licence CC by NC - https://creativecommons.org/licenses/by-nc/4.0/
* have fun.
**/
/**
@NecroTechno
NecroTechno / 0_reuse_code.js
Created April 8, 2016 00:07
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
extern crate crypto;
use crypto::digest::Digest;
use crypto::sha2::Sha256;
use std::fs::File;
use std::io::prelude::*;
use std::io::BufReader;
use std::path::Path;
use std::str;
#![feature(collections)]
fn sieve_controller(limit: i32) {
let limitn = limit + 1;
let mut primes: Vec<i32> = Vec::new();
let mut factors: Vec<i32> = Vec::new();
let mut counter: Vec<i32> = Vec::new();
for i in 2..limitn {