Skip to content

Instantly share code, notes, and snippets.

View hrchu's full-sized avatar
:octocat:
Have an Octotastic day!

petertc hrchu

:octocat:
Have an Octotastic day!
View GitHub Profile
@hrchu
hrchu / docker_ubuntu_install.sh
Created April 30, 2019 03:41
Install docker and docker-compose on ubuntu 16.04 in one shot.
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo curl -L "https://github.com/docker/compose/releases/download/1.24.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
@hrchu
hrchu / 1. basic flow with auth code and access token
Last active February 21, 2024 09:27
OAuth 2.0 / OpenID Connect flow diagrams. Build it by http://www.plantuml.com/plantuml/uml/
@startuml
skinparam handwritten true
"You/Browser" -> slack.com: 1. I would like to access my files on Google Drive via your interface.
slack.com -> "You/Browser": 2. You should apply the "Authorization Code" from Google for me first.
"You/Browser" -> account.google.com: 3. I would like to permit slack.com to access my files.
account.google.com -> "You/Browser": 4. Are you sure?
"You/Browser" -> account.google.com: 5. [Y]
account.google.com -> "You/Browser": 6. Okay. Here is the "Authorization Code." Plz give it back to slack.com now.
"You/Browser" -> slack.com: 7. You can do what I asked now (with the Authorization Code which is just received from Google.)
slack.com -> account.google.com: 8. I would like to exchange the "Authorization Code" for the "Access Token."
@hrchu
hrchu / consumer.py
Created March 15, 2019 11:41
confluent-python-kafka High-level Consumer understanding
from confluent_kafka import Consumer, KafkaError
c = Consumer({
'bootstrap.servers': 'mybroker',
'group.id': 'mygroup',
'auto.offset.reset': 'largest'
})
c.subscribe(['mytopic'], on_assign=print_assignment) # do not thing here
@hrchu
hrchu / thread_safe_queue.py
Created November 21, 2018 02:28
The synchronize lock decorator in python, implementing Stack using Queues as Example
from functools import wraps
from multiprocessing import Lock
def synchronized(tlockname):
"""A decorator to place an instance based lock around a method """
def _synched(func):
@wraps(func)
def _synchronizer(self, *args, **kwargs):
tlock = self.__getattribute__(tlockname)
from confluent_kafka import Consumer, KafkaError
c = Consumer({
'bootstrap.servers': 'mybroker',
'group.id': 'mygroup',
'default.topic.config': {
'auto.offset.reset': 'smallest'
}
})
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
<appender name="logstash" class="org.apache.log4j.net.SocketAppender">
<param name="Port" value="9527"/>
<param name="RemoteHost" value="127.0.0.1"/>
</appender>
Given max locate time is 102s and available size per wrap is 57.7GB, define the following formulas:
g(x) = 1 - x/57.7
f(x) = {
(1 - ⌊x⌋ - x) * 102, if ⌊x⌋ = 2k + 1
(⌊x⌋ - x) * 102, if ⌊x⌋ = 2k
}
Estimated locate time is (f ∘ g)(x) where x is the used size in the tape and k is integer.
@hrchu
hrchu / README
Last active May 30, 2018 09:15
documents extracted from cygwin.com/packages/x86_64/mt/mt-2.5.2-1
*mt 2.5*
------
- system
- All x86 and x64 Windows versions supported by Cygwin 1.7 and later.
- notes
- The default device name is "/dev/tape". Since that doesn't
exist in Cygwin by default, just create a convenient symlink.
It's done the same way on Linux.
17 sudo apt-get remove docker docker-engine docker.io
18 apt-get install docker-ce
19 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
20 $(lsb_release -cs) \
21 stable"
22 apt update
23 sudo curl -L https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
24 sudo chmod +x /usr/local/bin/docker-compose
25 docker-compose --version
26 cd
@hrchu
hrchu / mhVTL_install_ubuntu.sh
Last active September 19, 2022 19:57
mhVTL install script for Ubuntu 16.04 (tested on the kernel version that less or equal 4.15.0)
#!/bin/sh
# Script to download, compile and install mhvtl
# Tested on ubuntu 16.04
# Origin: http://mhvtl-a-linux-virtual-tape-library.966029.n3.nabble.com/Easy-Install-for-Debian-Ubuntu-td4025413.html
# 03/04/13
# Added libconfig-general-perl (ensures tgt-admin can run)
# 04/04/13
# Added line to append www-data to sudoers automatically
# Added check for sudo/root
# Added copy for tgt-admin in sbin (fixes persistant config in tgt mhvtl-gui)