This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Patchwork | |
* Patchbay | |
* Manyverse | |
* Patchfoo | |
* Patchfox | |
* Planetary | |
* Oasis | |
* Tightbean | |
* Habitat | |
* Ticktack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'''''list highlights and annotations by ISBN and book: | |
select | |
ISBN, title, | |
text, annotation | |
from bookmark | |
left outer join content | |
on (content.contentID=bookmark.VolumeID and content.ContentType=6) | |
where | |
text is not null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use AppleScript version "2.4" | |
use scripting additions | |
use framework "Foundation" | |
-- pass a string, list, record or number, and either a path to save the result to, or missing value to have it returned as text | |
-- from: https://forum.latenightsw.com/t/applescript-record-to-json/668/2 | |
on convertASToJSON:someASThing saveTo:posixPath | |
--convert to JSON data | |
set {theData, theError} to current application's NSJSONSerialization's dataWithJSONObject:someASThing options:0 |error|:(reference) | |
if theData is missing value then error (theError's localizedDescription() as text) number -10000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on ssbRoom2Check(cmd) | |
tell application "Terminal" | |
activate | |
delay 1 | |
do script "npx ssb-room2-check " & cmd in front window | |
end tell | |
end ssbRoom2Check | |
display dialog "SSB Room2 Gizmo. What do you want to do?" buttons {"Claim Invite", "Sign In", "Set Alias"} | |
set cmd to button returned of the result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang at-exp racket/base | |
(require racket/format | |
racket/string | |
syntax-color/racket-lexer | |
quickscript) | |
; COPY SELECTION AS HTML | |
; Author: Andre Alves Garzia ([email protected]) | |
; Date: 07-2020 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang at-exp racket | |
(require | |
framework | |
framework/preferences | |
racket/gui | |
quickscript) | |
; ----------------------------------------------------------------------- | |
; Extract colorscheme to package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
soapdog@SurfaceFafi:~$ http GET "http://localhost:9898/feed?author=%40goYRRqMFQVWLurlLLL3u3Vc931B4m%2ByV0mfcoDEY7Aw%3D.sha256&limit=2" | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Length: 2032 | |
Content-type: application/json | |
Date: Wed, 17 Jan 2018 18:06:09 -0200 | |
Server: Dex Server | |
[ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var h = require('mutant/html-element') | |
var Struct = require('mutant/struct') | |
var send = require('mutant/send') | |
var computed = require('mutant/computed') | |
var when = require('mutant/when') | |
var state = Struct({ | |
text: 'Test', | |
color: 'red', | |
value: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Red [ | |
Title: "LuiBTC" | |
Author: "Andre Garzia" | |
Needs: 'view | |
] | |
do %json.red | |
view [ | |
title "LuiBTC" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import m from "mithril"; | |
import Content from "../elements/content.js"; | |
import Title from "../elements/title.js"; | |
import Subtitle from "../elements/subtitle.js"; | |
import Box from "../elements/box.js"; | |
import Button from "../elements/button.js"; | |
import Tag from "../elements/tag.js"; | |
import Delete from "../elements/delete.js"; | |
import Fa from "../elements/fa.js"; | |
import Icon from "../elements/icon.js"; |
NewerOlder