Skip to content

Instantly share code, notes, and snippets.

View vineethguna's full-sized avatar
🎯
Focusing

Satya Sai Vineeth Guna vineethguna

🎯
Focusing
View GitHub Profile
@vineethguna
vineethguna / BirthdayCandles.java
Created July 2, 2020 04:58
Code for birthday candles problem
package com.vineeth.problemsolving;
import java.util.HashSet;
import java.util.Set;
public class BirthdayCandles {
// Solution using hash set
public int minNumberOfBlowsSolution1(int[] candlesHeight) {
if(candlesHeight != null && candlesHeight.length > 0) {
Set<Integer> uniqueHeightSet = new HashSet<>();
@vineethguna
vineethguna / README-Template.md
Created December 8, 2017 07:40 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

tensorflow
scikit
prediction-io
h202
keras
numpy
pandas
theano
@vineethguna
vineethguna / top-100-dev-dependents.txt
Created May 12, 2016 14:26 — forked from feross/top-100-dev-dependents.txt
Top 100 Dev Dependents on npmjs (as of Jul 31, 2015)
mocha 44731
chai 17944
grunt 17447
should 11882
grunt-contrib-jshint 11466
gulp 8619
istanbul 7374
tape 7313
sinon 6851
grunt-contrib-clean 6807
@vineethguna
vineethguna / Respect Rollcall.html
Created May 12, 2016 14:12 — forked from feross/Respect Rollcall.html
A list of bloggers who I like, pasted from my old blog.
<!-- Respect Rollcall -->
<li><a href="http://www.alistapart.com/articles/">A List Apart &#8212; for website builders</a></li>
<li><a href="http://abstrusegoose.com/">Abstruse Goose &#8212; my favorite comic</a></li>
<li><a href="http://al3x.net/">Alex Payne &#8212; technology rambling</a></li>
<li><a href="http://dashes.com/anil/">Anil Dash &#8212; on culture, apple &amp; design</a></li>
<li><a href="http://weblogs.mozillazine.org/asa/">Asa Dotzler &#8212; on mozilla &amp; software</a></li>
<li><a href="http://www.azarask.in/blog/">Aza Raskin &#8211; on design &amp; firefox</a></li>
<li><a href="http://christophzillgens.com/en/">Christoph Zillgens &#8212; interface design</a></li>
<li><a href="http://cssremix.com/">CSS Remix &#8212; gorgeous designs</a></li>
<li><a href="http://css-tricks.com/">CSS Tricks</a></li>
@vineethguna
vineethguna / cli_design.py
Created February 8, 2015 17:24
Command Line Tool Design Pattern
__author__ = 'Vineeth'
'''
This tutorial code block lets you know about a design pattern for command line interface tools
To illustrate i will take an example. The command line tool consists of a main command and sub commands
Each command and sub command contains of switches or arguments
I will take the main command name as "main_command"
And sub commands as "sub_command_1", "sub_command_2", "sub_command_3" so on
@vineethguna
vineethguna / dropbox_share.py
Last active August 29, 2015 14:10
To create a share folder in dropbox and share it with the specified emails
__author__ = 'Vineeth'
import requests
import re
class Dropbox():
def __init__(self, username, password):
self.MAIN_URL = 'https://www.dropbox.com'
self.LOGIN_URL = 'https://www.dropbox.com/ajax_login'
self.HOME_URL = 'https://www.dropbox.com/home'