Skip to content

Instantly share code, notes, and snippets.

View bilalnawaz072's full-sized avatar
🏝️
Working

Muhammad Bilal bilalnawaz072

🏝️
Working
View GitHub Profile
@bilalnawaz072
bilalnawaz072 / gist:fdae6d530e73b31f69a4b847ed6da720
Created November 28, 2023 11:52 — forked from levelsio/gist:5bc87fd1b1ffbf4a705047bebd9b4790
Secret of Monkey Island: Amsterdam (by @levelsio) or how to create your own ChatGPT image+text-based adventure game
# 2023-11-27 MIT LICENSE
Here's the open source version of my ChatGPT game MonkeyIslandAmsterdam.com.
It's an unofficial image+text-based adventure game edition of Monkey Island in Amsterdam, my home town.
Please use it however you want. It'd be nice to see more ChatGPT-based games appear from this. If you get inspired by it, please link back to my X https://x.com/levelsio or this Gist so more people can do the same!
Send me your ChatGPT text adventure game on X, I'd love to try it!
@bilalnawaz072
bilalnawaz072 / get_ip_address_geo_location.js
Created November 6, 2023 06:39 — forked from business24ai/get_ip_address_geo_location.js
Flowise get_ip_address_geo_location
const fetch = require('node-fetch');
const url = 'https://free-geo-ip.p.rapidapi.com/json/' + $ip;
const options = {
method: 'GET',
headers: {
'X-RapidAPI-Key': 'YOUR_RAPIDAPI_KEY',
'X-RapidAPI-Host': 'free-geo-ip.p.rapidapi.com'
}
};
@bilalnawaz072
bilalnawaz072 / dom.js
Created May 4, 2023 18:44 — forked from amantheroot/dom.js
JavaScript DOM Manipulation cheat sheet by Traversy Media
// EXAMINE THE DOCUMENT OBJECT //
// console.dir(document);
// console.log(document.domain);
// console.log(document.URL);
// console.log(document.title);
// //document.title = 123;
// console.log(document.doctype);
// console.log(document.head);
// console.log(document.body);