ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
Android用のView Injectionライブラリである Butter Knife について解説します (といいますか、サイトに書いてあることをほとんどそのまま日本語にしただけです) 。
Butter Knifeは ActionBarSherlock などでお馴染みの Square のJake WhartonさんによるAndroid用のView Injectionライブラリです。
このライブラリの目的が、
//;%( | |
a='main=eval'; | |
eval(a) | |
{} | |
main() | |
{eval('puts=console.log'); | |
//).tap{ | |
puts("Hello World");} |
更新: | 2015-03-14 |
---|---|
作者: | @voluntas |
バージョン: | 0.0.3 |
URL: | http://voluntas.github.io/ |
function gaussRandom(){ | |
var r=Math.sqrt(-2*Math.log(Math.random())); | |
var t=2*Math.PI*Math.random(); | |
return r*Math.sin(t); | |
} | |
//smoothed with exp(kx)-2exp(2kx)+exp(3kx), k=1/tscale, variance=1 | |
function SmoothRandom(tscale){ | |
this.tscale=tscale||1; | |
this.a1=0; |
更新: | 2024-05-20 |
---|---|
作者: | @voluntas |
バージョン: | 2024.1 |
URL: | https://voluntas.github.io/ |
日時: | 2023-12-03 |
---|---|
作: | voluntas |
バージョン: | 2023.1 |
url: | https://voluntas.github.io |
この記事が良いと思ったらこの記事に Star をお願いします
Just run this from your Mac terminal and it'll drop you in a container with full permissions on the Docker VM. This also works for Docker for Windows for getting in Moby Linux VM (doesn't work for Windows Containers).
docker run -it --rm --privileged --pid=host justincormack/nsenter1
more info: https://github.com/justincormack/nsenter1
#include <cstdio> | |
struct String { | |
char b[1000]; | |
size_t size; | |
constexpr String() : b(), size() {} | |
}; | |
constexpr String operator+(String x, char y) { | |
x.b[x.size] = y; |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |