Skip to content

Instantly share code, notes, and snippets.

@Jim-Lin
Jim-Lin / file0.txt
Last active January 5, 2018 04:19
[Keras] Digit Recognizer competition on Kaggle using Neural Network ref: https://qiita.com/SHUAI/items/25b7eb1919e944534a90
# Dockerfile
FROM gw000/keras:2.0.5-py3-tf-cpu
# install dependencies from debian packages
RUN apt-get update -qq \
&& apt-get install --no-install-recommends -y \
python-matplotlib \
python-pillow
@Jim-Lin
Jim-Lin / file0.py
Created October 2, 2017 05:24
[Linux] note of SO_REUSEADDR & SO_REUSEPORT ref: http://qiita.com/SHUAI/items/07573e8a2be37bf3e8d1
def listener_work(num):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, SO_REUSEPORT, 1) # set SO_REUSEPORT
s.bind(("", PORT))
...
@Jim-Lin
Jim-Lin / DateExtensions.java
Last active September 19, 2017 07:51
interview-sample1
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
/**
* Created by Jim on 2017/9/15.
*/
public class DateExtensions {
@Jim-Lin
Jim-Lin / file0.java
Created September 13, 2017 09:25
[Spring Framework] Servlet streaming back pressure against blocking ref: http://qiita.com/SHUAI/items/298939b6d879037e8b45
@RestController
public class CarLocationController {
private final CarRepository repository;
public CarLocationController(CarRepository repository) {
this.repository = repository;
}
// Java
interface Collection<E> ... {
void addAll(Collection<E> items);
}
void copyAll(Collection<Object> to, Collection<String> from) {
to.addAll(from); // !!! Would not compile with the naive declaration of addAll
}
@Jim-Lin
Jim-Lin / file0.java
Last active October 9, 2017 09:19
[Java] Runtime Data Areas of JVM ref: http://qiita.com/SHUAI/items/9cd4b78f874f5a11c48c
public void add(java.lang.String);
Code:
Stack=2, Locals=2, Args_size=2
0: aload_0
1: getfield #15; //Field admin:Lcom/nhn/user/UserAdmin;
4: aload_1
5: invokevirtual #23; //Method com/nhn/user/UserAdmin.addUser:(Ljava/lang/String;)Lcom/nhn/user/User;
8: pop
9: return LineNumberTable:
line 14: 0
@Jim-Lin
Jim-Lin / file0.txt
Created September 3, 2016 04:47
[Phabricator] Installation Guide with Docker ref: http://qiita.com/SHUAI/items/34d225d0b75cbd039d57
$ mkdir <work_dir>
$ cd <work_dir>
$ git clone https://github.com/phacility/libphutil.git
$ git clone https://github.com/phacility/arcanist.git
$ git clone https://github.com/phacility/phabricator.git
@Jim-Lin
Jim-Lin / file0.java
Last active May 23, 2016 08:08
[Java] Fork/Join compute vs join ref: http://qiita.com/SHUAI/items/1ff257f4136416a2c9df
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.RecursiveTask;
public class Main {
public static void main(String[] args) {
int poolSize = Runtime.getRuntime().availableProcessors();
System.out.println("poolSize: " + poolSize);
/**
@Jim-Lin
Jim-Lin / file0.java
Created May 15, 2016 09:23
[Spring MVC] Callable vs DeferredResult ref: http://qiita.com/SHUAI/items/205fc5e3064a70f1c22e
@RestController
public class AsyncCallableController {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
private final TaskService taskService;
@Autowired
public AsyncCallableController(TaskService taskService) {
this.taskService = taskService;
}
@Jim-Lin
Jim-Lin / file0.js
Last active March 21, 2016 16:33
[JavaScript] Reactive vs Promises ref: http://qiita.com/SHUAI/items/798ca865f5c853d2362c
console.clear();
var promise = new Promise((resolve) => {
setTimeout(() => {
resolve(42);
}, 500);
console.log('promise started');
});