Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
# 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! |
From f07ca2a26dcb0cc797dcc6fc0d2d4f16b89c481e Mon Sep 17 00:00:00 2001 | |
From: Pierre-Hugues Husson <[email protected]> | |
Date: Mon, 14 Mar 2022 09:09:28 -0400 | |
Subject: [PATCH] Add a rickroll button in heads-up notification to rickroll | |
caller | |
Change-Id: Ibe72535fb3e93f69a531723dc96ede05663ee251 | |
--- | |
assets/rick.webm | Bin 0 -> 1232413 bytes | |
.../NotificationBroadcastReceiver.java | 145 ++++++++++++++++++ |
license: gpl-3.0 |
mkdir icon.iconset | |
sips -z 16 16 icon.png --out icon.iconset/icon_16x16.png | |
sips -z 32 32 icon.png --out icon.iconset/[email protected] | |
sips -z 32 32 icon.png --out icon.iconset/icon_32x32.png | |
sips -z 64 64 icon.png --out icon.iconset/[email protected] | |
sips -z 128 128 icon.png --out icon.iconset/icon_128x128.png | |
sips -z 256 256 icon.png --out icon.iconset/[email protected] | |
sips -z 256 256 icon.png --out icon.iconset/icon_256x256.png | |
sips -z 512 512 icon.png --out icon.iconset/[email protected] |
/** | |
* loadJSONP( url, hollaback [, context] ) -> Null | |
* - url (String): URL to data resource. | |
* - hollaback (Function): Function to call when data is successfully loaded, | |
* it receives one argument: the data. | |
* - context (Object): Context to invoke the hollaback function in. | |
* | |
* Load external data through a JSONP interface. | |
* | |
* ### Examples |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
var MD5 = function (string) { | |
function RotateLeft(lValue, iShiftBits) { | |
return (lValue<<iShiftBits) | (lValue>>>(32-iShiftBits)); | |
} | |
function AddUnsigned(lX,lY) { | |
var lX4,lY4,lX8,lY8,lResult; | |
lX8 = (lX & 0x80000000); | |
lY8 = (lY & 0x80000000); |
/** | |
* | |
* Secure Hash Algorithm (SHA1) | |
* http://www.webtoolkit.info/ | |
* | |
**/ | |
function SHA1 (msg) { | |
function rotate_left(n,s) { |