git checkout branch release/3.0.3
cd packages/iceworks-server && yarn install
cd tools/iceworks-app/renderer && yarn install && yarn start
cd tools/iceworks-app && yarn install && yarn start
ssh -T [email protected]
ssh-add ~/.ssh/id_rsa
chmod 700 ~/.ssh/id_rsa
git push origin master
to test
codesign -vvv /Applications/GoLand.app/Contents/MacOS/goland
codesign -vvv /Applications/GoLand.app/Contents/plugins/go/lib/dlv/mac/dlv
This file contains hidden or 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
CREATE USER 'newuser'@'%' IDENTIFIED BY 'user_password'; | |
DROP user 'qor'@'localhost'; | |
CREATE USER 'qor'@'%' IDENTIFIED BY 'qor'; | |
CREATE DATABASE qor_test; | |
GRANT ALL ON qor_test.* TO 'qor'@'localhost'; | |
GRANT ALL ON qor_test.* TO 'qor'@'%'; |
This file contains hidden or 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
"""An example of writing an API to scrape hacker news once, and then enabling usage everywhere""" | |
import hug | |
import requests | |
@hug.local() | |
@hug.cli() | |
@hug.get() | |
def top_post(section: hug.types.one_of(('news', 'newest', 'show'))='news'): | |
"""Returns the top post from the provided section""" |
silver searcher: https://geoff.greer.fm/ag/
ack: https://github.com/samaaron/ack
ag "pdftk"
grep -R "toUppercase()" *
This file contains hidden or 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
package balance | |
import ( | |
"runtime" | |
"sync" | |
"sync/atomic" | |
"testing" | |
) | |
const MaxCount = 10000 |
I hereby claim:
- I am ilovejs on github.
- I am iot11 (https://keybase.io/iot11) on keybase.
- I have a public key ASCoz4CUKHHHa4Y-H_aote3AlQkTYZO4OopKdszBkxiQKAo
To claim this, I am signing this object:
This file contains hidden or 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 'dart:convert'; | |
import 'dart:math'; | |
import 'dart:ui'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
void main() => runApp(ApiCall()); | |
class ApiCall extends StatelessWidget { |