Note: For now, Apple Silicon users need to be set up for x86 mode
First, download Go or brew install go
. Then, put largetype.go
in a directory called largetype
and from there run:
$ go mod init largetype
Note: For now, Apple Silicon users need to be set up for x86 mode
First, download Go or brew install go
. Then, put largetype.go
in a directory called largetype
and from there run:
$ go mod init largetype
function ItemList(items: Item[]) { | |
return html` | |
<div class="flex flex-row"> | |
<for each=${items} do=${(item) => html` | |
<if cond=${item.enabled} then=${() => html` | |
<div class="text-white mx-2">${item.label}</div> | |
`}> | |
`} else=${() => html` | |
<div class="text-gray font-bold">No items</div> | |
`}> |
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"net/http" | |
"os" | |
"os/user" | |
"path/filepath" |
autoload -U add-zsh-hook | |
load-devrc() { | |
if [[ -f .devrc && -r .devrc ]]; then | |
source .devrc | |
else | |
if typeset -f devrc-unset > /dev/null; then | |
devrc-unset | |
unset -f devrc-unset | |
fi | |
fi |
sudo softwareupdate --fetch-full-installer | |
/Applications/Install\ macOS\ High\ Sierra.app/Contents/Resources/startosinstall \ | |
--eraseinstall --agreetolicense --nointeraction |
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
type MyInterface interface { | |
Foo() string | |
} |
#!/usr/bin/env osascript -l JavaScript | |
ObjC.import("Cocoa"); | |
function run(argv) { | |
var app = $.NSApplication.sharedApplication; | |
var statusBarItem = $.NSStatusBar.systemStatusBar.statusItemWithLength($.NSVariableStatusItemLength); | |
var track = Application('Spotify').currentTrack | |
ObjC.registerSubclass({ | |
name: "ProgramDelegate", |
#!/usr/bin/env node | |
// Usage: | |
// Login manually, saving your authenticated session in "data": | |
// $ ./fbpost --login | |
// | |
// Now you can post whatever you want via argument: | |
// $ ./fbpost "Hello world, this is a post!" | |
// | |
(async() => { | |
const puppeteer = require('puppeteer'); |
var Generator = require("./tsgen") | |
ts = new Generator() | |
ts.decl("import", "electron", "from", ts.str("electron")) | |
ts.decl("import", "qrpc", "from", ts.str("qrpc")) | |
ts.commentBlock("Here is a function") | |
ts.func("register", [ts.var("api", "qrpc.API")], null, (ts) => { | |
ts.call("api.handle", ts.str("echo"), ts.lambda(ts.var("r", "qrpc.Responder"), ts.var("c", "qrpc.Call"), null, (ts) => { | |
ts.call("r.return", ts.inline(ts.call("c.decode"))) | |
})) |
Process: Descript [12470] | |
Path: /Applications/Descript.app/Contents/MacOS/Descript | |
Identifier: com.descript.Descript | |
Version: 1.4.2 (1806260931) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: Descript [12470] | |
User ID: 501 | |
Date/Time: 2018-06-28 19:42:29.774 -0500 |