Skip to content

Instantly share code, notes, and snippets.

View Dcerverizzo's full-sized avatar
:shipit:
working at @cobrefacil

Daniel Cerverizzo Dcerverizzo

:shipit:
working at @cobrefacil
View GitHub Profile
@infoslack
infoslack / main.py
Last active April 18, 2025 13:45
Technical interview helper
# dependencies
# pip install -U openai gradio
import os, openai
import gradio as gr
openai.api_key = 'sk-xxxxxx'
messages = [{"role": "system", "content": """Assistant is an expert candidate in
technical IT job interviews. Currently, the interview is
focused on a position for Platform Engineer. So, you have skills
@luizomf
luizomf / install-zsh-ubuntu.sh
Last active September 30, 2024 02:33
Install ZSH on Ubuntu (Oh-my-zsh)
# ZSH
sudo apt install zsh -y
sudo apt-get install powerline fonts-powerline -y
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
chsh -s /bin/zsh
# REBOOT
# sudo reboot
@joyrexus
joyrexus / README.md
Last active August 1, 2025 10:41 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})