I hereby claim:
- I am deadlocked247 on github.
- I am burakaslan (https://keybase.io/burakaslan) on keybase.
- I have a public key ASDf471kOGJ8ejgjpq1b9QDiWSMmy7LSSvSLBgSZygBBfwo
To claim this, I am signing this object:
# BURAK ASLAN | |
# aslanb | |
# Feb 2, 2016 | |
# Homework 3 CS 3650 | |
# Insert Sort | |
.globl main | |
.data | |
#char * [] data |
#!/bin/bash | |
find vendor -name ".git*" -type d | while read i | |
do | |
if [ -d "$i" ]; then | |
DIR=`dirname $i` | |
rm -fR $i | |
git rm -r --cached $DIR > /dev/null 2>&1 | |
git add $DIR > /dev/null 2>&1 | |
fi |
/* Class representing a Trie data structure */ | |
export default class Trie { | |
/** | |
* Creates a Trie | |
* @return {Object} Trie | |
*/ | |
constructor() { | |
this.words = 0; | |
this.prefixes = 0; |
I hereby claim:
To claim this, I am signing this object:
{"v":"4.10.1","fr":29.9700012207031,"ip":0,"op":79.000003217736,"w":800,"h":600,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 1","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[-4]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":11,"s":[-4],"e":[0]},{"t":17.0000006924242}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":0,"s":[199,300,0],"e":[411,300,0],"to":[35.3333320617676,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":11,"s":[411,300,0],"e":[405,300,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"n":"0p667_0p667_0p333_0p333","t":17,"s":[405,300,0],"e":[405,300,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"n":"0p667_0p667_0p333_0p333","t" |
<?xml version="1.0" encoding="UTF-8"?> | |
<AfterEffectsProject xmlns="http://www.adobe.com/products/aftereffects" majorVersion="1" minorVersion="0"> | |
<svap bdata="07789645"/> | |
<head bdata="005c000e0778964580000000000009c200011fa0"/> | |
<nhed bdata="0000000000000000000100001e10020000000000008bf7500000614000000000"/> | |
<nnhd bdata="0000000000000000000100000000001e000000100200000000000000008bf7500000614000000000"/> | |
<adfr bdata="40e7700000000000"/> | |
<Pefl> | |
<pjef bdata="414442452034436f6c6f724772616469656e74"/> | |
<pjef bdata="4144424520436f6c6f7220436f6e74726f6c"/> |
var getData = function() { | |
return 'Apaaapaaaaa name goes here'; | |
}; |