Skip to content

Instantly share code, notes, and snippets.

View arnonrdp's full-sized avatar
🧠
Mamba Mentality 🐍

Arnon R. arnonrdp

🧠
Mamba Mentality 🐍
View GitHub Profile
@arnonrdp
arnonrdp / timezones.json
Last active June 13, 2023 17:50
List of World Timezones
[
{ "value": "UTC-12:00", "label": "International Date Line West" },
{ "value": "UTC-11:00", "label": "Coordinated Universal Time-11" },
{ "value": "UTC-10:00", "label": "Hawaii" },
{ "value": "UTC-08:00", "label": "Alaska, Pacific Standard Time (US & Canada)" },
{ "value": "UTC-07:00", "label": "Arizona, Baja California, Pacific Daylight Time (US & Canada)" },
{ "value": "UTC-06:00", "label": "Central America, Chihuahua, La Paz, Mazatlan, Mountain Time (US & Canada), Saskatchewan" },
{ "value": "UTC-05:00", "label": "Bogota, Lima, Quito, Central Time (US & Canada), Eastern Time (US & Canada), Guadalajara, Mexico City, Monterrey, Indiana (East)" },
{ "value": "UTC-4.5:00", "label": "Caracas" },
{ "value": "UTC-04:00", "label": "Asuncion, Cuiaba, Eastern Daylight Time (US & Canada), Georgetown, La Paz, Manaus, San Juan, Santiago" },
@arnonrdp
arnonrdp / record-collection.js
Last active August 8, 2023 08:40
freeCodeCamp - JavaScript Algorithms and Data Structures - Record Collection
// Setup
var recordCollection = {
2548: {
albumTitle: "Slippery When Wet",
artist: "Bon Jovi",
tracks: ["Let It Rock", "You Give Love a Bad Name"],
},
2468: {
albumTitle: "1999",
artist: "Prince",
@arnonrdp
arnonrdp / sorteio_por_nomes.py
Last active May 20, 2021 01:06
Sorteio por Nome em Python
import random
for alunos in range(1, 5):
alunos = str(input(f"Digite o nome do {alunos}º aluno: ")).strip()
print(f'O aluno sorteado foi {random.choice( alunos )}.')