Skip to content

Instantly share code, notes, and snippets.

View tatd3v's full-sized avatar
🎯
Focused

Tats tatd3v

🎯
Focused
  • Colombia - Colombia
  • 10:03 (UTC -05:00)
  • LinkedIn in/tatdev
View GitHub Profile
@nhocki
nhocki / config.ini
Created September 4, 2022 02:15 — forked from orendon/config.ini
Visa appointment (renewal)
[USVISA]
; Account and current appointment info from https://ais.usvisa-info.com
USERNAME = YOUR_EMAIL
PASSWORD = YOUR_PASSWORD
SCHEDULE_ID = YOUR_ID
MY_SCHEDULE_DATE = YYYY-MM-DD
; Spanish - Colombia
COUNTRY_CODE = es-co
; Bogotá
FACILITY_ID = 26
@cejaramillof
cejaramillof / pasaporte.js
Last active July 17, 2025 13:24
Bookmark: Completar campos solicitar Pasaporte Antioquia
// Realizar pago
// https://sedeelectronica.antioquia.gov.co/pasaporte/user/pago/
javascript: (function () {
document.getElementById("tipo_ide").value = "CC"; /** CC, TI, RC */
document.getElementsByName("data[tipo_ide]").value = "CC"; /** CC, TI, RC */
document.getElementById("num_ide").value = "numero de cedula"; /* "00000000" */
document.getElementById("num_ide_confirm").value = "numero de cedula"; /* "00000000" */
document.getElementById("nombre").value = "nombres";
document.getElementById("apellido").value = "apellidos";
document.getElementById("email").value = "correo";
@cejaramillof
cejaramillof / visa.py
Last active April 27, 2024 01:40 — forked from yaojialyu/visa.py
ais usvisa reschedule - Colombian Adaptation
# -*- coding: utf8 -*-
import time
import json
import random
import platform
from datetime import datetime
import requests
from selenium import webdriver
public class ListActivity extends AppCompatActivity {
PatientController pC;
ListView pList;
PatientCursorAdapter pca;
Patient pat;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
@stettix
stettix / things-i-believe.md
Last active July 31, 2025 07:29
Things I believe

Things I believe

This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.

Agree? Disagree? Feel free to let me know at @JanStette.

Fundamentals

Keep it simple, stupid. You ain't gonna need it.