Skip to content

Instantly share code, notes, and snippets.

View estevam5s's full-sized avatar
🐳
What's happening

Estevam estevam5s

🐳
What's happening
View GitHub Profile
@estevam5s
estevam5s / README.md
Created March 25, 2024 22:19
InsomniaGPT Prompt

InsomniaGPT-Prompt

WormGPT!.




How To Install:
How To Use / Install:

linux mint / ubuntu / kali linux

@estevam5s
estevam5s / extensions.json
Created March 13, 2024 17:01 — forked from diego3g/extensions.json
VSCode Extensions
[
{
"identifier": {
"id": "vscode.bat"
},
"preRelease": false,
"version": "1.0.0"
},
{
"identifier": {
@estevam5s
estevam5s / .vimrc
Created February 18, 2024 00:27
vim-config
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
"Plug 'ycm-core/YouCompleteMe'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'scrooloose/nerdtree'
"Plug 'tsony-tsonev/nerdtree-git-plugin'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'
@estevam5s
estevam5s / README.md
Created February 18, 2024 00:26
configurações vscode

My VSCode Settings

Collection of AsmrProg Youtube Channel VSCode Extensions That We Used in Videos!

Tutorial Video's

Find Video's on : AsmrProg Youtube Channel

Settings

@estevam5s
estevam5s / index.html
Created January 27, 2024 02:22
game dino
<!doctype html><html dir="ltr" lang="en" class="offline"><head><meta charset="utf-8"><meta name="color-scheme" content="light dark"><meta name="theme-color" content="#fff"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><title>Chrome Dino Game</title><style>a{color:var(--link-color)}body{--background-color:#fff;--error-code-color:var(--google-gray-700);--google-blue-100:#d2e3fc;--google-blue-300:#8ab4f8;--google-blue-600:#1a73e8;--google-blue-700:#1967d2;--google-gray-100:#f1f3f4;--google-gray-300:#dadce0;--google-gray-500:#9aa0a6;--google-gray-50:#f8f9fa;--google-gray-600:#80868b;--google-gray-700:#5f6368;--google-gray-800:#3c4043;--google-gray-900:#202124;--heading-color:var(--google-gray-900);--link-color:#585858;--popup-container-background-color:rgba(0,0,0,.65);--primary-button-fill-color-active:var(--google-blue-700);--primary-button-fill-color:var(--google-blue-600);--primary-button-text-color:#fff;--quiet-background-color:#f7f7f7;--secondary-button-b
@estevam5s
estevam5s / pytest.ini
Created January 24, 2024 19:59
arquivo para a execução de test com pytest no python
[pytest]
addopts = -ra -q
testpaths =
tests
@estevam5s
estevam5s / activate_venv.py
Created January 24, 2024 19:58
Criando e ativando um ambiente em python
import subprocess
import sys
class VirtualEnvManager:
def __init__(self, env_name='venv'):
self.env_name = env_name
def create_virtualenv(self):
try:
subprocess.check_call([sys.executable, "-m", "venv", self.env_name])