Skip to content

Instantly share code, notes, and snippets.

View anhldbk's full-sized avatar
🌴
Calm

Anh Le (Andy) anhldbk

🌴
Calm
View GitHub Profile
@anhldbk
anhldbk / install.md
Last active December 2, 2015 03:45
SBT with local maven

Install Jar file to local

mvn install:install-file -Dfile=spark-redis-master-assembly-0.1.0.jar -DgroupId=com.redislabs -DartifactId=spark-redis -Dversion=0.5.1 -Dpackaging=jar

Enable local maven

Put resolvers += Resolver.mavenLocal in your build.sbt file

name := "Wordy"
@anhldbk
anhldbk / executorService.java
Last active January 7, 2016 15:53
Using executor services
public class LimitedQueue<E> extends LinkedBlockingQueue<E>
{
public LimitedQueue(int maxSize)
{
super(maxSize);
}
@Override
public boolean offer(E e)
@anhldbk
anhldbk / install.sh
Created January 25, 2016 01:49
Install zmq on Centos
sudo yum install -f libtool
cd autoconf-2.68
chmod +x configure
./configure
chmod +x build-aux/git-version-gen
sudo make
sudo make install
cd ..
@anhldbk
anhldbk / jwt.md
Last active April 7, 2016 08:36
JWT APIs

Token Based APIs

Overview

1. Token Loves Cookie

Reference: Token Based Authentication for Single Page Apps

I see a lot of discussions where cookies are pitted against access tokens. While we’ve all been burned by systems that store a session ID in a cookie, and that cookie is not secured and thus gets stolen. That sucks, but its not a reason to use tokens. Its a reason to avoid non-secure, non-https cookies.

@anhldbk
anhldbk / ths.md
Last active April 20, 2016 17:34
HWS

Notes for startup

@anhldbk
anhldbk / remove_mqtt_retained_msgs.md
Last active December 25, 2023 20:38
Remove MQTT retained messages using MQTT.js version 1.10.x
var mqtt    = require('mqtt');
var lodash = require('lodash');
var client  = mqtt.connect({ host: 'localhost', port: 1883 });

client.on('connect', function () {
  console.log('Connected')
  client.subscribe('presence');
});
@anhldbk
anhldbk / binder.js
Last active August 22, 2022 13:55
Bind this for all methods in ES6 classes
'use strict';
class Binder {}
Binder.getAllMethods = function(instance, cls) {
return Object.getOwnPropertyNames(Object.getPrototypeOf(instance))
.filter(name => {
let method = instance[name];
return !(!(method instanceof Function) || method === cls);
});
@anhldbk
anhldbk / wifi.md
Last active June 15, 2016 10:08
Install non-free wifi driver on my Ubuntu (Dell N4010)

Motivation

My Dell N4010's wifi driver seems not to work well on Ubuntu.

1. Run command

sudo vim /etc/apt/sources.list

2. Add following lines: