This gist contains the topic wise FREE courses available on skillbuilder to be ready for AWS Certified Developer - Associate Exam.
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
package main | |
import ( | |
"fmt" | |
"net/http" | |
"os" | |
"time" | |
"github.com/charmbracelet/bubbles/spinner" | |
tea "github.com/charmbracelet/bubbletea" |
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
-----File----- | |
Analysis for alpine:latest: | |
FILE SIZE | |
/bin 790.7K | |
/bin/arch 12B | |
/bin/ash 12B | |
/bin/base64 12B | |
/bin/bbconfig 12B |
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
# A barebones cache with a TTL | |
import threading | |
import time | |
class Cache: | |
def __init__(self): | |
self.cache = {} | |
# 4 seconds | |
self.TTL = 4 |
Please read here on how to use this CSV file with FZF. The original emoji data has been taken from gitmoji-cli
Note: 2 character width emoji ⬆️ has been replaced with ⏫️
The following python code was used to convert gitmojis.json to CSV
#!/usr/bin/env python3
import json, csv
Please read here to understand how the feed is generated
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
#!/usr/bin/env python3 | |
import os | |
import re | |
import urllib.request | |
from pkg_resources import parse_version | |
HEADERS = { | |
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", | |
"cache-control": "no-cache", |
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 urllib.request | |
import json | |
HEADERS = { | |
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", | |
"Content-Type": "application/json", | |
} | |
def request(url, data=None, method=None): |
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
[Desktop Entry] | |
Name=NeoVim | |
Categories=; | |
Comment=Edit file in NeoVim | |
Exec=mate-terminal -e 'nvim %F' %f | |
Terminal=false | |
Type=Application | |
Keywords=Text;editor; | |
Icon=nvim | |
Categories=Utility;TextEditor; |
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
#!/usr/bin/env bash | |
# How to use: | |
# | |
# 1. Start a new bash session | |
# 2. source the completions script "source scd-completions.bash" or Copy the script in /etc/bash_completion.d/ | |
# for automatic loading | |
# 3. scd <search-string>[TAB][TAB] | |
# |
NewerOlder