Skip to content

Instantly share code, notes, and snippets.

View madhavtummala's full-sized avatar
💣
:(){ :|: & };:

Madhav Tummala madhavtummala

💣
:(){ :|: & };:
View GitHub Profile
@madhavtummala
madhavtummala / MusicLed.pde
Created October 5, 2017 01:36
Music LEDs - Frequency Distribution in songs
import cc.arduino.*;
import org.firmata.*;
import ddf.minim.*;
import ddf.minim.analysis.*;
import processing.serial.*;
Arduino arduino;
Minim minim;
AudioPlayer song;
@madhavtummala
madhavtummala / linearML.py
Created October 5, 2017 02:04
Linear Model Basic ML
import tensorflow as tf
#model parameters
W = tf.Variable([0.3], dtype=tf.float32)
b = tf.Variable([-0.3], dtype=tf.float32)
#model input and output
x = tf.placeholder(tf.float32)
model_output = W*x + b
y = tf.placeholder(tf.float32)
@madhavtummala
madhavtummala / Contributing.md
Created May 30, 2018 01:49 — forked from MarcDiethelm/Contributing.md
How to contribute to a project on Github

This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.


Contributing

If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.

ps | grep "python" | grep -v "grep" | awk '{print $1}' | xargs kill
#!/bin/bash
COPY_REPO="https://github.com/apsknight/IITBBSNewsAPI.git"
TARGET_REPO="https://github.com/MadhavChoudhary/IITBBSNewsAPI.git"
START_DATE="28-07-2019"
git clone $COPY_REPO
cd $(basename "$COPY_REPO" .git)
X=$(date +%s)