Skip to content

Instantly share code, notes, and snippets.

View tomahawk-pilot's full-sized avatar

syamkumar tomahawk-pilot

View GitHub Profile

Keybase proof

I hereby claim:

  • I am tomahawk-pilot on github.
  • I am syamkumar (https://keybase.io/syamkumar) on keybase.
  • I have a public key whose fingerprint is D5AC 2526 5526 5FAD 2F31 43A7 0556 890A B6EA 81C6

To claim this, I am signing this object:

Follow the following steps to setup an OpenLDAP server in centos

  • login as Sudo. sudo - login
  • Run package updates yum update -y
  • Install Epel Release yum install -y epel-release
  • Install nano editor yum install -y nano
  • Install OpenLDAP
yum -y install openldap compat-openldap openldap-clients openldap-servers openldap-servers-sql openldap-devel
  • start the LDAP daemon and enable it on boot

Keybase proof

I hereby claim:

  • I am tomahawk-pilot on github.
  • I am syamkumar (https://keybase.io/syamkumar) on keybase.
  • I have a public key ASAr7fkLtSOc_iUBkbBTXXKAEVz_hpO3QYBgzllKpKtEIAo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am syam3526 on github.
  • I am syam (https://keybase.io/syam) on keybase.
  • I have a public key ASAUhdRIOdNrqesTRnTxZqKcclpYCCccupcBwd2pYqfBQwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am syam3526 on github.
  • I am syam (https://keybase.io/syam) on keybase.
  • I have a public key ASD-Sq_FzNzdGaAx8vxO6f_36oRoiJqFCJOyOAqOPvd52Ao

To claim this, I am signing this object:

@tomahawk-pilot
tomahawk-pilot / Backpropagation
Created November 28, 2017 18:19
backpropagation
import numpy as np
def sigmoid(x, derivative=False):
if (derivative == True):
return x * (1 - x)
else:
return 1 / (1 + np.exp(-x))
@tomahawk-pilot
tomahawk-pilot / CodeLabs
Created October 1, 2016 09:46 — forked from BasilArackal/CodeLabs
GDG DevFest 2016
#Google Code Labs: https://codelabs.developers.google.com/codelabs/face-detection/
#Final Project: https://github.com/LmntrX/Vision