- 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import googletrans | |
import os | |
from googletrans import Translator | |
def translateString(data, destLangCode): | |
global translator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import numpy as np | |
import threading | |
import colorsys | |
class Point(object): | |
def __init__(self, x=0, y=0): | |
self.x = x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// +-----------------------------------------------+ | |
// | | | |
// | Script by DollarAkshay v0.3 | | |
// | r/place INDIA FLAG SCRIPT | | |
// | Github : https://github.com/DollarAkshay | | |
// | Reddit : u/DollarAkshay | | |
// | | | |
// +-----------------------------------------------+ | |
var bitMap = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |
NewerOlder