Skip to content

Instantly share code, notes, and snippets.

View adeekshith's full-sized avatar
🛡️
Building privacy friendly apps

Deekshith Allamaneni adeekshith

🛡️
Building privacy friendly apps
View GitHub Profile
@adeekshith
adeekshith / keybase.md
Created December 15, 2017 16:00
Used for keybase authentication

Keybase proof

I hereby claim:

  • I am adeekshith on github.
  • I am adeekshith (https://keybase.io/adeekshith) on keybase.
  • I have a public key ASDaFYYNIw727fCxfwv9n9rKdpw8eTJcPUGzxQe1uZ2QuQo

To claim this, I am signing this object:

@adeekshith
adeekshith / 121-leetcode-best-time-to-buy-stock.java
Created September 29, 2022 00:28
121. Best time to buy Stock problem
class Solution {
public int maxProfit(int[] prices) {
int maxProfit = 0;
int prevBuy = Integer.MAX_VALUE;
int maxSellPrice = Integer.MIN_VALUE;
for (int buyDay=0; buyDay < prices.length; buyDay++) {
int buyPrice = prices[buyDay];
if (buyPrice >= prevBuy && maxSellPrice >= buyPrice) {
continue;
}
@adeekshith
adeekshith / .git-commit-template.txt
Last active February 21, 2024 12:06 — forked from Linell/.git-commit-template.txt
This commit message template helps you write great commit messages and enforce it across teams.
# <type>: (If applied, this commit will...) <subject> (Max 50 char)
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide links or keys to any relevant tickets, articles or other resources
# Example: Github issue #23
@adeekshith
adeekshith / worldtime.sh
Created November 16, 2023 23:06
WorldTime - Show time in different timezones in the commandline
#!/bin/bash
echo "UTC: $(TZ='UTC' date +'%H:%M %Y-%m-%d %a')"
echo "-------------------------"
echo "EST: $(TZ='America/New_York' date +'%H:%M %Y-%m-%d %a')"
echo "CST: $(TZ='America/Chicago' date +'%H:%M %Y-%m-%d %a')"
echo "PST: $(TZ='America/Los_Angeles' date +'%H:%M %Y-%m-%d %a')"
echo "-------------------------"
echo "IST: $(TZ='Asia/Kolkata' date +'%H:%M %Y-%m-%d %a')"
# Ref: Timezone abbreviations: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
@adeekshith
adeekshith / parseflags.sh
Created October 14, 2020 14:58 — forked from bxparks/parseflags.sh
Simple Bash Shell Command Line Processing Template
#!/bin/bash
#
# Self-contained command line processing in bash that supports the
# minimal, lowest common denominator compatibility of flag parsing.
# -u: undefined variables is an error
# -e: exit shell on error
set -eu
function usage() {
@adeekshith
adeekshith / custom-search-search-engines.json
Created January 20, 2017 15:51
Sample search engines collection for Custom Search Webextension
{
"application" : {
"name" : "Custom Search",
"app_id" : "custom-search@deekshith.in",
"version" : "v0.1"
},
"search_engines" : [
{
"category": "General",
"name": "DuckDuckGo",
(* Gets JSON from a URL and extracts the data *)
(* Gets response in JSON format *)
apiResponse1 = Import["http://****shod.com/logdata/dessfaa/predictlocation", "JSON"];
(* Check returns 0 if an error occurs and Quiet supresses displaying errors *)
Quiet@Check[apiResponse1, 0]
(* Get response from JSON hierarchically *)
"latitude" /. ("prediction" /. apiResponse1)
(* latitude and prediction are the data keys in the JSON *)
@adeekshith
adeekshith / website-monitoring-1
Last active April 2, 2024 16:13 — forked from eriwen/gist:187610
Scripts for website monitoring using Python
#!/usr/bin/env python
# sample usage: checksites.py eriwen.com nixtutor.com yoursite.org
import pickle, os, sys, logging
from httplib import HTTPConnection, socket
from smtplib import SMTP
def email_alert(message, status):
fromaddr = 'you@gmail.com'
package main
import (
"net"
"os"
)
func main() {
strEcho := "Halo"
servAddr := "localhost:6666"
tcpAddr, err := net.ResolveTCPAddr("tcp", servAddr)