http://www.gamesjobsjapan.com/
- Grasshopper
http://www.gamesjobsjapan.com/
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --" | |
# more informations, | |
# http://coderwall.com/p/euwpig?i=3&p=1&t=git |
import java.io.FileDescriptor; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.OutputStream; | |
import java.io.PrintStream; | |
public class HelloWorld{ | |
private static HelloWorld instance; | |
public static void main(String[] args){ | |
instantiateHelloWorldMainClassAndRun(); |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
import java.util.ArrayList; | |
public class HelloWorld { | |
public static final Integer a = 104; | |
private volatile static Object ob = "o"; | |
public static void good() { | |
class NiceInnerClass { public NiceInnerClass(){System.out.print('e'); abstract class xx {}}} | |
Object object = new NiceInnerClass(); | |
} |
#!/usr/bin/env python3 | |
import math | |
from pymouse import PyMouse | |
from random import randint | |
from time import sleep | |
class MouseMovementCalculator: | |
def __init__(self, gravity, wind, mouseSpeed, targetError): | |
self.gravity = gravity |
System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go
directory by:
We Gophers, love table-driven-tests, it makes our unittesting structured, and makes it easy to add different test cases with ease.
Let’s create our table driven test, for convenience, I chose to use t.Log
as the test function.
Notice that we don't have any assertion in this test, it is not needed to for the demonstration.
func TestTLog(t *testing.T) {
t.Parallel()
All libraries have subtle rules that you have to follow for them to work well. Often these are implied and undocumented rules that you have to learn as you go. This is an attempt to document the rules of React renders. Ideally a type system could enforce it.
A number of methods in React are assumed to be "pure".
On classes that's the constructor, getDerivedStateFromProps, shouldComponentUpdate and render.
#!/bin/bash | |
#curl -L tinyurl.com/gothamachi | sh | |
cd ~/Downloads | |
wget https://www.vpn.net/installers/logmein-hamachi_2.1.0.198-1_amd64.deb | |
sudo apt -y install ./logmein-hamachi_2.1.0.198-1_amd64.deb | |
sudo hamachi check-update | |
sudo hamachi login | |
echo now run ->> | |
echo sudo hamachi attach [email] |