Skip to content

Instantly share code, notes, and snippets.

View dendisuhubdy's full-sized avatar
🚀
at the speed of light

Dendi Suhubdy dendisuhubdy

🚀
at the speed of light
View GitHub Profile
@dendisuhubdy
dendisuhubdy / hopfield.h
Created March 2, 2016 19:55
hopfield header file
class Hopfield_neuron
{
protected:
int activation;
friend class Hopfield_network;
public:
int weight[4];
Hopfield_neuron() {};
Hopfield_neuron(int *j);
@dendisuhubdy
dendisuhubdy / hopfield.cpp
Created March 2, 2016 19:56
Hopfield implementation file
#include "hopfield.h";
Hopfield_neuron::Hopfield_neuron(int *j)
{
for(int i=0; i<4; i++)
{
weight[i] = *(j+i);
}
}
@dendisuhubdy
dendisuhubdy / hello-world.cpp
Created March 4, 2016 05:43
hello world C++
#include <iostrem>
int main()
{
std::cout << "Hello world" << std::endl;
}
; Basic OS X calls to glibc
;
; compile with:
; nasm -g -f macho malloc.asm
; gcc -o a.out malloc.o
;
; glibc stuff
extern _puts, _printf, _malloc, _free

Keybase proof

I hereby claim:

  • I am dendisuhubdy on github.
  • I am dendisuhubdy (https://keybase.io/dendisuhubdy) on keybase.
  • I have a public key whose fingerprint is 0D5A 22BC 4B3C 1050 5A7D 3275 69F8 AAE9 B3C0 6100

To claim this, I am signing this object:

@dendisuhubdy
dendisuhubdy / foldexpression.cpp
Created February 5, 2017 16:56
Fold Expression C++
// foldExpression.cpp
#include <iostream>
bool allVar(){
return true;
}
template<typename T, typename ...Ts>
bool allVar(T t, Ts ... ts){
@dendisuhubdy
dendisuhubdy / publickey-git-error.markdown
Created May 1, 2017 18:38 — forked from adamjohnson/publickey-git-error.markdown
Fix "Permission denied (publickey)" error when pushing with Git

"Help, I keep getting a 'Permission Denied (publickey)' error when I push!"

This means, on your local machine, you haven't made any SSH keys. Not to worry. Here's how to fix:

  1. Open git bash (Use the Windows search. To find it, type "git bash") or the Mac Terminal. Pro Tip: You can use any *nix based command prompt (but not the default Windows Command Prompt!)
  2. Type cd ~/.ssh. This will take you to the root directory for Git (Likely C:\Users\[YOUR-USER-NAME]\.ssh\ on Windows)
  3. Within the .ssh folder, there should be these two files: id_rsa and id_rsa.pub. These are the files that tell your computer how to communicate with GitHub, BitBucket, or any other Git based service. Type ls to see a directory listing. If those two files don't show up, proceed to the next step. NOTE: Your SSH keys must be named id_rsa and id_rsa.pub in order for Git, GitHub, and BitBucket to recognize them by default.
  4. To create the SSH keys, type ssh-keygen -t rsa -C "[email protected]". Th
@dendisuhubdy
dendisuhubdy / autodiff_err1
Created May 4, 2017 14:57
Autodiff Trial Error 1
grok-machine:autodiff dendisuhubdy$ g++ main.cpp -o main
main.cpp:59:13: error: call to 'pow' is ambiguous
::pow(a.Real(), y),
^~~~~
/usr/include/math.h:443:15: note: candidate function
extern double pow(double, double);
^
main.cpp:56:20: note: candidate function
inline CDualNumber pow (const CDualNumber &a, float y)
^
@dendisuhubdy
dendisuhubdy / autodiff.cpp
Created May 4, 2017 15:38
Auto Differentiate Using Dual Numbers
#include <stdio.h>
#include <math.h>
#define PI 3.14159265359f
// In production code, this class should probably take a template parameter for
// it's scalar type instead of hard coding to float
class CDualNumber
{
public:
@dendisuhubdy
dendisuhubdy / obd_log.py
Created May 8, 2017 03:53
On Board Diagnostics Mongo Log
import time
import datetime
import numpy as np
import cv2
import obd
from pymongo import MongoClient
def main():
# define On Board Diagnostics