Useful Links for debugging Neural networks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Basic Neural Network Subroutines (BNNS) | |
#ifndef __BNNS_HEADER__ | |
#define __BNNS_HEADER__ | |
#include <stddef.h> | |
#include <stdint.h> | |
#ifdef __cplusplus | |
extern "C" { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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 == "") { |
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:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 &&\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function FindProxyForURL(url, host) | |
{ | |
return "SOCKS 202.78.172.162:3128"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- content to be placed inside <body>…</body> --> | |
<div id="wrapper"> | |
<div id="box1"></div> | |
<div id="box2"></div> | |
</div> |