jorgelison Profile Banner
Jorge Lison Profile
Jorge Lison

@jorgelison

Followers
201
Following
1K
Media
139
Statuses
1K

βš’οΈ 9–5: Software Engineer πŸš€ 5–9: Solopreneur scaling my own company πŸ’‘Sharing daily insights to help you build faster β†’ https://t.co/stRrC8Yaee

San Diego
Joined November 2011
Don't wanna be here? Send us removal request.
@jorgelison
Jorge Lison
9 days
I wish I would have known this earlier. I am pretty sure they don't document it on purposes.
@buildwithfede
Fede
10 days
If you use Supabase, here’s a quick win:. You don’t need to pay $10/mo for a custom domain just to remove the ugly link in your Google login consent screen. Go to Google Cloud β†’ OAuth consent screen β†’ edit your domain. Done
0
0
7
@jorgelison
Jorge Lison
11 days
How to install exiftool (mac / windows / ubuntu):. 🍎 macOS: brew install exiftool.πŸͺŸ Windows: choco install exiftool.🐧 Ubuntu: sudo apt update && sudo apt install -y libimage-exiftool-perl. Verify: exiftool -ver.
0
0
0
@jorgelison
Jorge Lison
11 days
Cool trick to build your own AI pipelines:. Some AI images literally ship the recipe in the file πŸ˜…. Run:. "exiftool image.png". and check the Prompt field. Doesn't work on all, but when it does… it's awesome. Surprising how often it works
Tweet media one
1
0
7
@jorgelison
Jorge Lison
12 days
5/5 🎯 Bottom line + pro tips. If agencies can't crack the crypto, your threat is keys & opsec:. 1. Use a long passphrase (5–7 random words).2. Dismount when idle; fully shut down, don't sleep (RAM/key attacks exist).3. Disable Fast Startup/hibernation on Windows or ensure.
0
0
0
@jorgelison
Jorge Lison
12 days
4/5 ⚑ 10 minute setup. 1. Download from the official repo (verify sigs).2. Create an encrypted container or full-disk volume.3. Mount β†’ work β†’ dismount.4. Keep backups of unencrypted essentials like recovery info (securely stored).
1
0
1
@jorgelison
Jorge Lison
12 days
3/5 πŸ”§ Why we (devs) like it. - Cross-platform (Win/Mac/Linux).- CLI automation + scripting.- Hidden volumes (plausible deniability but use carefully; research has poked holes in some scenarios).- Fast on modern CPUs, open source, no proprietary dependencies.
1
0
1
@jorgelison
Jorge Lison
12 days
2/5 πŸ“œ Receipts from real cases. - πŸ‡ΊπŸ‡Έ 2018: Court filing notes the FBI couldn't decrypt VeraCrypt protected devices and sought to compel unlocking instead.- πŸ‡§πŸ‡· 2010: Brazilian banker case: after months of effort (incl. FBI help), TrueCrypt encrypted drives remained inaccessible.
1
0
1
@jorgelison
Jorge Lison
12 days
Just learned that VeraCrypt has never been defeated by law enforcement in any documented case. An open source disk encryption tool with a 100% success rate against government cryptographic breaks. Time to hide that spicy folder, lol. History + how to use it rightπŸ‘‡1/5
Tweet media one
1
0
3
@jorgelison
Jorge Lison
12 days
3/3 Restore after a fresh install. ♻️ Bonus: cron it weekly + push to a private repo
Tweet media one
0
0
1
@jorgelison
Jorge Lison
12 days
2. Snapshot all installed packages:
Tweet media one
1
0
1
@jorgelison
Jorge Lison
12 days
🚨 Kernel panic nuked one of my Ubuntu AI servers on a Sunday morning. Lost my prime build time β˜•οΈ. These 2 commands helped me restore an identical setup. 1. Backup your APT config (repos, keys, prefs) πŸ‘‡1/3
Tweet media one
@jorgelison
Jorge Lison
14 days
Woke up ready to ship… and then I see THIS 😱. Debugging before coffee should be illegal. I hope your day is going better.
Tweet media one
2
0
4
@jorgelison
Jorge Lison
14 days
Woke up ready to ship… and then I see THIS 😱. Debugging before coffee should be illegal. I hope your day is going better.
Tweet media one
2
0
6
@jorgelison
Jorge Lison
14 days
🧡 4/4 Cache API works great for: . βœ… API responses that change hourly/daily .βœ… Computed data with short TTL .βœ… Anything under 128MB. Don't use it for: .❌ User file uploads .❌ Data you need for months.❌ Cross-region consistency.
0
0
0
@jorgelison
Jorge Lison
14 days
🧡 3/4 Performance comparison:. πŸš€ Cache API: <10ms response time (edge cache).πŸš€ R2: 20-50ms (object storage). Developer experience:. 🎯 Cache API: 3 lines of code.🎯 R2: SDK setup, bucket management, error handling.
1
0
0
@jorgelison
Jorge Lison
14 days
🧡 2/4 code change (simplified for example sake, but you get the point):
Tweet media one
1
0
0
@jorgelison
Jorge Lison
14 days
F*ck. I just realized I paid R2 $31 last month to cache API responses πŸ€¦β€β™‚οΈ . Cache API does this for free. Same speed, easier setup. Took me 5 min to migrate. Monthly bill = $0 now . The code swap πŸ‘‡ (1/4).
2
0
5
@jorgelison
Jorge Lison
16 days
🧡 4/4 Pro tip: Use multiple cron expressions for different frequencies in one workflow file. Each schedule triggers the same workflow, but conditional if statements run different jobs based on which cron fired. Result? One file manages your entire automation schedule.
Tweet media one
0
0
0
@jorgelison
Jorge Lison
16 days
🧡 3/4 Getting started takes 30 seconds:. 1. Create ".github/workflows/cron.yml" .2. add your cron schedule.3. push to main. That's literally it. GitHub handles provisioning, execution, scaling, monitoring. Stop overthinking automation. Just use Actions.
Tweet media one
1
0
0
@jorgelison
Jorge Lison
16 days
🧡 2/4 Perfect for automating:. 𝕏 - Auto posting on X.πŸ”„ - Daily backup scripts .πŸ“Š - Metrics collection .πŸ› - Health checks .πŸ“¨ - Notification systems .πŸ’Ύ - Database cleanup tasks .πŸ” - API monitoring. All running in the cloud, tracked in git, completely free for public repos.
1
0
0
@jorgelison
Jorge Lison
16 days
Imo, GitHub Actions as cron jobs might be the most underrated dev hack. Why pay for cron services when GitHub Actions does it better?. βœ… Free / super cheap.βœ… Scales.βœ… Version control with git.βœ… Huge marketplace of plugins. Only catch: shortest interval is 1 min πŸ‘‡ 1/4
Tweet media one
1
0
1