Skip to content

Instantly share code, notes, and snippets.

View jbdotjs's full-sized avatar
🎯
Focusing

Talha jbdotjs

🎯
Focusing
View GitHub Profile
You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI.
Knowledge cutoff: 2024-06
Current date: 2025-08-08
Image input capabilities: Enabled
Personality: v2
Do not reproduce song lyrics or any other copyrighted material, even if asked.
You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor.
Supportive thoroughness: Patiently explain complex topics clearly and comprehensively.
Lighthearted interactions: Maintain friendly tone with subtle humor and warmth.
@jbdotjs
jbdotjs / History\-10331087\entries.json
Created August 1, 2022 10:17
Visual Studio Code Settings Sync Gist
{"version":1,"resource":"file:///e%3A/job/AreaFrameApp/areaframeapp/src/stores/sidebarStore.js","entries":[{"id":"fmTT.js","timestamp":1654496647839},{"id":"R8DO.js","timestamp":1654497812353},{"id":"O71C.js","timestamp":1654497826014},{"id":"2MXC.js","timestamp":1654498130285},{"id":"g0ME.js","timestamp":1654683474428},{"id":"bCPd.js","source":"undoRedo.source","timestamp":1654683490729},{"id":"1pYz.js","timestamp":1654683513647},{"id":"HKi9.js","timestamp":1655197478599},{"id":"kbAq.js","timestamp":1657106081584}]}
@jbdotjs
jbdotjs / cloudSettings
Created August 1, 2022 09:59
Visual Studio Code Settings Sync Gist
// Empty
from bs4 import BeautifulSoup as bs
import sys
import requests
def main():
if len(sys.argv) == 2:
URL = sys.argv[1]
soup = bs(requests.get(URL).content , "html.parser")
for image in soup.find_all("img"):
if image["src"]: