대부분의 내용은 Contributions Welcome!에 나와 있기 때문에 여기서는 Contributions Welcome!에 나오지 않는 세세한 내용을 다룬다.
- 기여하고자 하는 프로젝트를 github에서 fork하여 진행함
[Desktop Entry] | |
Name=Galaxy | |
Comment=Android Mirror | |
Exec=/usr/bin/scrcpy -S -K | |
Terminal=false | |
Type=Application | |
Category=Network;WebBrowser; |
// Polyfill to expand variables in a string | |
// Example: expandEnv("Welcome back ${name}. Glad to see you"); | |
// Example: expandEnv("Welcome back $name. Glad to see you"); | |
// eslint-disable-next-line no-extend-native | |
function expandEnv(s: string): string { | |
return s.replace(/\$([\w]+|{([^{}]*)})/g, (str, varName) => { | |
const vName = varName.startsWith("{") ? varName.substring(1, varName.length - 1) : varName; | |
var value = process.env[vName]; |
대부분의 내용은 Contributions Welcome!에 나와 있기 때문에 여기서는 Contributions Welcome!에 나오지 않는 세세한 내용을 다룬다.
sudo rm -rf /usr/local/go | |
sudo ln -s $PWD/$1 /usr/local/go |
import json | |
import sys | |
# 도도 파이터에 참가하기 위해서는 에이전트를 만들어서 제출해 주셔야 합니다. | |
# 에이전트는 사용자가 작성하는 인공지능 코드로서, 주어지는 현재 게임 상태를 바탕으로 | |
# 어떤 액션을 취할지를 결정하는 역할을 합니다. | |
# | |
# 액션 설명 | |
# - idle - 아무것도 하지 않습니다. | |
# - forward - 앞으로 움직입니다. 상대가 바로 앞에 있을 경우 더 움직이지 않습니다. |
from tensorflow.examples.tutorials.mnist import input_data | |
mnist = input_data.read_data_sets('MNIST_data', one_hot=True) | |
import tensorflow as tf | |
sess = tf.InteractiveSession() | |
x = tf.placeholder(tf.float32, shape=[None, 784]) | |
y_ = tf.placeholder(tf.float32, shape=[None, 10]) | |
W = tf.Variable(tf.zeros([784,10])) | |
b = tf.Variable(tf.zeros([10])) | |
sess.run(tf.global_variables_initializer()) |
0x05E7bE3755f987Caed5387487B4Cc5CD23102108 |
/** | |
* CAUTION! | |
* Copy board before run. | |
* Lists start at 0. | |
*/ | |
function deleteCardsInList(listNumber) { | |
var list = document.getElementsByClassName("list-cards")[listNumber]; | |
var a = list.getElementsByTagName('a'); | |
var aLength = a.length; |
git config --global alias.lg "log --all --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |
Space - Ascii 32 | |
[ | |
00000000, | |
00000000, | |
00000000, | |
00000000, | |
00000000, | |
00000000, | |
00000000, | |
00000000 |