I hereby claim:
- I am iakshay on github.
- I am akshayaurora (https://keybase.io/akshayaurora) on keybase.
- I have a public key whose fingerprint is 27BA 6726 595C 6E63 2992 81C5 AFD0 3BEE BD97 EAB2
To claim this, I am signing this object:
| <!-- content to be placed inside <body>…</body> --> | |
| <div id="wrapper"> | |
| <div id="box1"></div> | |
| <div id="box2"></div> | |
| </div> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>CSS3 3D Cube · CodePen</title> | |
| <!-- | |
| Copyright (c) 2012 Akshay Aurora, http://codepen.io/iakshay | |
| Permission is hereby granted, free of charge, to any person obtaining |
| function FindProxyForURL(url, host) | |
| { | |
| return "SOCKS 202.78.172.162:3128"; | |
| } |
| #!/bin/bash | |
| KUMA_ROOT=/path/to/kuma | |
| pushd . | |
| # https://www.youtube.com/watch?v=ckIMuvumYrg | |
| vagrant halt | |
| find . -name "*.pyc" -exec rm -rf {} \; &&\ | |
| rm -rf puppet/cache &&\ |
I hereby claim:
To claim this, I am signing this object:
| /* Flipkart stuff - just making this global*/ | |
| function getMyToken() { | |
| var cookies = " " + document.cookie, | |
| cookieName = "aid"; | |
| var index = cookies.indexOf(" " + cookieName + "="); | |
| if (index == -1) { | |
| index = cookies.indexOf(";" + cookieName + "="); | |
| } | |
| if (index == -1 || cookieName == "") { |
Useful Links for debugging Neural networks
| // Basic Neural Network Subroutines (BNNS) | |
| #ifndef __BNNS_HEADER__ | |
| #define __BNNS_HEADER__ | |
| #include <stddef.h> | |
| #include <stdint.h> | |
| #ifdef __cplusplus | |
| extern "C" { |