更新: | 2021-05-23 |
---|---|
作者: | @voluntas |
バージョン: | 2021.1 |
URL: | https://voluntas.github.io/ |
install
open 'karabiner://karabiner/assets/complex_modifications/import?url=https%3A%2F%2Fgist.githubusercontent.com%2Fymrl%2F5468e24c7a4454bdc57fbf65c69772d6%2Fraw%2F59615455ee07b6141e7eb91341121e726186b9d3%2Fkarabiner-elements-semicolon-to-enter.json'
前に試行錯誤した時に入らなくてとても苦労したけど、CentOS 6.xにLTS(4.3.0)のnode.jsをインストールする の手順いっぱつでなぜか入った。。。
sudo yum remove nodejs
rm -rf /usr/lib/node_modules
sudo rpm -Uvh https://rpm.nodesource.com//pub_4.x/el/6/x86_64/nodesource-release-el6-1.noarch.rpm
sudo yum install nodejs
古かったので nvm でつっこんだ。
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
child_query = from c in Child, order_by: c.code | |
query = from p in Parent, | |
where p.id == ^id, | |
order_by: p.date, | |
preload: [child: ^child_query] | |
case Repo.all(query) do | |
nil -> {:not_found} | |
record -> {:ok, record} |
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
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* Japanese translated by hissy | |
* | |
* CODEX: http://wpdocs.sourceforge.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/WP_Query#.E3.83.91.E3.83.A9.E3.83.A1.E3.83.BC.E3.82.BF | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
* Original: https://gist.github.com/luetkemj/2023628/9e911982440141a13cb1dd8ba1ad6b35cd7bbdd7 | |
*/ |
CentOSと書いていますが、直接依存するものは Erlang だけなので、他のバージョン、ディストリビューションでも同じだと思います。
手順および必要な物は Installation に書いてあるとおりそのままです。現時点では DBや static ファイルのコンパイルは行わないため、node.js などのインストールは行いません。
ところで Phoenix って単語、超打ちづらくありませんか? 何度も入力するのが辛くて、@p で Phoenix に変換できるように辞書登録してしまいました w
Erlang および Elixir は セオリー通りの方法でErlang(とElixir)をインストールなどの方法により、既にインストールされているものとします。
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
#-*- coding: utf-8 -*- | |
import contextlib | |
from django.db import connection | |
@contextlib.contextmanager | |
def acquire_table_lock(read, write): | |
'''Acquire read & write locks on tables. |
NewerOlder