Skip to content

Instantly share code, notes, and snippets.

View DollarAkshay's full-sized avatar
🖥️
Coding

Akshay.L.Aradhya DollarAkshay

🖥️
Coding
  • Bangalore
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DollarAkshay
DollarAkshay / Work and Responsibilities at Gokion.md
Last active September 22, 2021 20:12
Work and Responsibilities at Gokion

List of Cloud Infrastructure Responsibilities:


  • Overall AWS architecture design
  • Domain Nameservers (DNS) configuration
  • DNS rule configuration Cloudflare
  • Site Reliability Monitoring on Cloudflare
  • AWS Billing and monitoring
  • Checking and monitoring CloudWatch and its logs every week.
  • AWS IAM management
  • IAM user permission configuration
@DollarAkshay
DollarAkshay / r-Second History Data.ipynb
Last active April 2, 2021 17:21
Reddit r/Second Analysis
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@DollarAkshay
DollarAkshay / translate.py
Created March 16, 2021 06:04
Script to translate JSON strings with googletrans library in python. Useful for web language localization
import json
import googletrans
import os
from googletrans import Translator
def translateString(data, destLangCode):
global translator
@DollarAkshay
DollarAkshay / multithreaded_image_scrapper.py
Last active September 14, 2019 09:56
Multithreaded Image Scraper in Python (Insanely fast on Ryzen 7)
import cv2
import numpy as np
import urllib.request
import time
import threading
import math
def getPokemon(start, end):
print("Started worker for range :", start, "to", end)
@DollarAkshay
DollarAkshay / image_scrapper.py
Last active May 12, 2020 21:54
Image Scraper in Python
import cv2
import numpy as np
import urllib.request
import time
start_time = time.time()
for i in range(1, 51):
try:
req = urllib.request.Request(
'https://assets.pokemon.com/assets/cms2/img/pokedex/detail/' + '{:03d}'.format(i) + '.png')
@DollarAkshay
DollarAkshay / Maze_Solver.py
Created November 25, 2017 18:55
BFS Maze Solver in Python
import cv2
import numpy as np
import threading
import colorsys
class Point(object):
def __init__(self, x=0, y=0):
self.x = x
// +-----------------------------------------------+
// | |
// | Script by DollarAkshay v0.3 |
// | r/place INDIA FLAG SCRIPT |
// | Github : https://github.com/DollarAkshay |
// | Reddit : u/DollarAkshay |
// | |
// +-----------------------------------------------+
var bitMap = [
@DollarAkshay
DollarAkshay / OpenAI_BipedalWalkerHardcore_v2.py
Created December 27, 2016 05:43
Solving BipedalWalkerHardcore v2 using Genetic Algorithm and Neural Networks
import time, math, random, bisect, copy
import gym
import numpy as np
class NeuralNet :
def __init__(self, nodeCount):
self.fitness = 0.0
self.nodeCount = nodeCount
@DollarAkshay
DollarAkshay / OpenAI_Taxi_v1.py
Created December 22, 2016 15:10
Solving Taxi v1 using Q Learning Algorithm
import time, random, math
import numpy as np
import gym
def uploadSimulation():
API_KEY = open('/home/dollarakshay/Documents/API Keys/Open AI Key.txt', 'r').read().rstrip()
gym.upload('Artificial Intelligence/'+GAME, api_key=API_KEY)
def updateQTable(prevState, prevAction, reward, curState):