Skip to content

Instantly share code, notes, and snippets.

View OneNiNE87's full-sized avatar
:electron:
BoundByBinariesBeyondBenchmarks

иiɴᴇ[ᴏɴᴇ]ᴏɴᴇ OneNiNE87

:electron:
BoundByBinariesBeyondBenchmarks
View GitHub Profile
@OneNiNE87
OneNiNE87 / saveGPT.bookmarklet.js
Created May 14, 2025 09:36 — forked from andrewchilds/saveGPT.bookmarklet.js
Download ChatGPT conversations as markdown files.
javascript:function parseChatGPTData(data) { const mapping = data.mapping; const conversationTitle = data.title; const createDate = new Date(data.create_time * 1000).toISOString().slice(0, 10); const messagesArray = Object.values(mapping) .filter(node => node.message) .map(node => { const message = node.message; const sender = message.author.role === 'user' ? 'You' : 'Assistant'; const content = message.content.parts.join(''); const createTime = message.create_time; return { sender: sender, content: content, createTime: createTime, }; }); messagesArray.sort((a, b) => a.createTime - b.createTime); return { date: createDate, title: conversationTitle, messages: messagesArray.map(({ sender, content }) => ({ sender, content })), }; } function download(filename, text) { const element = document.createElement('a'); element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text)); element.setAttribute('download', filename); element.style.display = 'none'; document.body.appendChild(element); e
@OneNiNE87
OneNiNE87 / obsidian-web-clipper.js
Created April 28, 2025 07:22 — forked from kepano/obsidian-web-clipper.js
Obsidian Web Clipper Bookmarklet to save articles and pages from the web (for Safari, Chrome, Firefox, and mobile browsers)
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{
default: Turndown
}, {
default: Readability
}]) => {
/* Optional vault name */
const vault = "";
/* Optional folder name such as "Clippings/" */
@OneNiNE87
OneNiNE87 / iOS Shortcuts Catalog.md
Created March 25, 2025 16:14 — forked from andrewmcodes/iOS Shortcuts Catalog.md
This is a public resource designed to help people get started with Siri Shortcuts & the Shortcuts app. It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Bruce's iOS Shortcut Catalog

Hello and welcome to my Shortcuts Catalog!

This is a public resource designed to help people get started with Siri Shortcuts and the Shortcuts app.

It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Enjoy!

@OneNiNE87
OneNiNE87 / Termux Quick Setup
Last active December 15, 2024 01:08 — forked from ppoffice/README.md
Install Visual Studio Code (actually code-server) on Android
1. Install [Termux](https://termux.com/), an Android terminal emulator that provides a Linux execution environment and various tools.
2. Update system packages in Termux:
```sh
$ pkg update -y
```
<img src="https://imgur.com/Btpla5P.png" width="200">

Installing Cool-Retro-Term on Windows10

First of all, this document is just a recompilation of different resources that already existed on the web previously that I personally tested some ones did work and other not. I liked the idea to make a full guide from start to end so all of you could also enjoy playing with cool-retro-term on windows 10. Personally I installed it on a windows 10 pro version. Fingers crossed!

result