lem
Common Lisp editor/IDE with high expansibility https://github.com/cxxxr/lem
Install lem to macOS
brew install lem
brew install roswell
brew install ncurses
echo 'export PATH=$PATH:~/.roswell/bin' >> ~/.zshrc
きのう ✨ feat: 短縮よみ | |
りむーぶ 🔥 feat: 短縮よみ | |
りふぁくた ♻ refactor: 短縮よみ | |
むーぶ 🚚 refactor: 短縮よみ | |
りねーむ 🚚 refactor: 短縮よみ | |
ばぐ 🐛 fix: 短縮よみ | |
ふぃっくす 🐛 fix: 短縮よみ | |
ふぃっくす 🚑 fix: 短縮よみ | |
ほっとふぃっくす 🚑 fix: 短縮よみ | |
いぞん ➕ chore: 短縮よみ |
// ==UserScript== | |
// @name How you will be billied with BigQuery | |
// @version 0.1 | |
// @description BigQuery での課金額を表示します | |
// @author Kosui Iwasa | |
// @match https://console.cloud.google.com/bigquery* | |
// @icon https://www.google.com/s2/favicons?domain=google.com | |
// @grant none | |
// ==/UserScript== |
const generateTrip = require('2ch-trip'); | |
const crypto = require('crypto'); | |
const createRandomValue = () => { | |
const S = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" | |
const N = 10 | |
return Array.from(crypto.randomBytes(N)).map((n)=>S[n%S.length]).join('') | |
} | |
const createRandomTrip = () => { |
/* | |
* n 個の 0 を格納する配列を返します | |
*/ | |
const initArray = (n: number) => (new Array(n)).fill(0) | |
const items = [[2,3],[1,2],[3,6],[2,1],[1,3],[5,85]].map(item => ({ | |
weight: item[0], | |
value: item[1], | |
})) |
const renderDomTree = ((node, depth=0) => { | |
// Say <YO> | |
console.log(`${' '.repeat(depth)}<${node.tagName}>`) | |
// Say about YO's children recursively | |
let childNodes = Array.from(node.childNodes) | |
if (childNodes !== undefined) { | |
childNodes | |
.filter(childNode => childNode.tagName !== undefined) | |
.map(childNode => fuck(childNode, depth + 1)) |
def 優しい言葉ジェネレータ(): | |
while True: | |
for c in "優しい言葉": | |
yield c | |
def main(): | |
for word in 優しい言葉ジェネレータ(): | |
print(word) |
Common Lisp editor/IDE with high expansibility https://github.com/cxxxr/lem
brew install lem
brew install roswell
brew install ncurses
echo 'export PATH=$PATH:~/.roswell/bin' >> ~/.zshrc
$ brew tap homebrew/cask
$ brew cask install chromedriver
$ pip install altair selenium pandas
Amazon, IBM, Google, Apple の銘柄ごとの株価をグラフ化
I hereby claim:
To claim this, I am signing this object:
from flask import Flask | |
app = Flask(__name__) | |
@app.route('/') | |
def hello(): | |
return "Hello World" | |
if __name__ == "__main__": | |
app.run(host="0.0.0.0") |