I hereby claim:
- I am dmadisetti on github.
- I am dmadisetti (https://keybase.io/dmadisetti) on keybase.
- I have a public key whose fingerprint is DD00 5F54 FA00 E8B5 412A BA53 5949 7741 73B1 C8EC
To claim this, I am signing this object:
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required |
#!/bin/bash | |
# Make sure you source this in rc | |
gh(){ | |
local folder="/home/dylan/projects/github" \ | |
archive="/home/dylan/projects/archive" \ | |
regex="[a-zA-Z]+[a-zA-Z0-9_-]*" \ | |
USERNAME="dmadisetti" \ | |
# Deal with projects |
const BEFUNGE = ()=>{ | |
var c, r; | |
var s = [], | |
i = 0, | |
j = 0, | |
di = 0, | |
dj = 1, | |
e = 0, | |
set = (a,b)=>{di=b;dj=a}, |
const BF = (M)=>{ | |
const d=(new Array(0x100)).fill(0); | |
for(m in (M || []).slice(0,0x100)) d[m]+=M[m]|0; | |
var x = 0, | |
i = 0, | |
s = [], | |
c, r; | |
const I = { |
from os import system | |
# Text file templates to build our mesh file | |
HEADER = """Mesh #%d | Dylan Madisetti FEA Project | Description | |
3 0 0 | | MODEL, NTYPE, ITEM | Euler Bernoulli Beam problem | |
0 %d | | IELEM, NEM | Hermite spline / # of Elements | |
0 1 | | ICONT, NPRINT | Data is Element Dependent / Postprocess and Print | |
%d | | NNM | Total number of self.nodes | |
""" |
alignment top_right | |
background yes | |
border_width 1 | |
cpu_avg_samples 2 | |
default_color 6b6b6b | |
default_outline_color white | |
double_buffer yes | |
draw_borders no | |
draw_graph_borders yes | |
draw_outline no |
I hereby claim:
To claim this, I am signing this object:
<!doctype> | |
<html> | |
<head> | |
<title>Visualizing primes</title> | |
<style> | |
body { | |
font-family: Monospace; | |
background-color: #fff; |
file = open('beattles', 'r') | |
import random, string | |
global pointer, M, states | |
M = {} | |
states = {} | |
# Class to hold 'States' | |
class State: | |
# Keep paths with obj scope |