Skip to content

Instantly share code, notes, and snippets.

View rodrigopacheco100's full-sized avatar
🤓
Studing

Rodrigo Pacheco rodrigopacheco100

🤓
Studing
  • Ceará, Brasil
  • 03:29 (UTC -03:00)
View GitHub Profile
@cayter
cayter / LICENSE
Last active May 4, 2026 09:22
Drizzle ORM Type-Safe Repository With PgTable
MIT License
Copyright (c) 2022-present, cayter
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@deborahly
deborahly / expo_go_config.md
Created April 21, 2023 04:35
Procedure to expose Expo Go ports from WSL on Windows Firewall
  1. Save the content below to C:\scripts\wslbridge.ps1
  2. Run Powershell as Administrator
  3. From within Powershell, run powershell -ExecutionPolicy Bypass -File C:\scripts\wslbridge.ps1
  4. Get your windows IP with ipconfig
  5. Connect to your Windows IP (NOT THE WSL ONE) from the expo go on exp://<IP>:19000
# [Configuration]
# All the ports you want to forward separated by coma
$ports=@(7700,8088,8089,19000);
@diego3g
diego3g / settings.json
Last active April 28, 2026 07:48
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [
80,
120
],