Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
The screenshots were taken on different sessions.
The entire sessions are included on the screenshots.
I lost the original prompts, so I had to reconstruct them, and still managed to reproduce.
The "compressed" version is actually longer! Emojis and abbreviations use more tokens than common words.
| import os | |
| from uuid import uuid1 | |
| from datetime import datetime | |
| from wsgiref.simple_server import make_server | |
| from pyramid.config import Configurator | |
| from pyramid.view import view_config, view_defaults, notfound_view_config | |
| from pyramid.response import Response | |
| from notion.client import NotionClient | |
| from notion.collection import NotionDate |
| Copy this to roam/js page, including the "{{[[roam/js]]}}" node: | |
| - {{[[roam/js]]}} | |
| - ```javascript | |
| /* | |
| * Roam template PoC by @ViktorTabori | |
| * 0.1alpha | |
| * | |
| * How to install it: | |
| * - go to `roam/js` page` |
Some grammar defined by the tuple:
G = (V, Sigma, R, S)
| /* This has moved to: | |
| * https://github.com/devonzuegel/digital-nesting/blob/master/roam.css | |
| */ |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| #! /bin/bash | |
| # Simple Utility Script for allowing debug of hardened macOS apps. | |
| # This is useful mostly for plug-in developer that would like keep developing without turning SIP off. | |
| # Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg | |
| # Update 2022-03-10: Based on Fabian's feedback, add capability to inject DYLD for sanitizers. | |
| # | |
| # Please note: | |
| # - Modern Logic (on M1s) uses `AUHostingService` which resides within the system thus not patchable and REQUIRES to turn-off SIP. | |
| # - Some hosts uses separate plug-in scanning or sandboxing. | |
| # if that's the case, it's required to patch those (if needed) and attach debugger to them instead. |