Skip to content

Instantly share code, notes, and snippets.

View menon92's full-sized avatar
🏠
Working from home

Mehadi Hasan Menon menon92

🏠
Working from home
View GitHub Profile

FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

What's an Effective Engineer?

About

Usefull docker command that i go throught

Login to Specefic user

docker login -u <user name>

Set netwrok during starting container

package scraper;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.text.SimpleDateFormat;
# coding:utf-8
import cv2
import numpy as np
def WaveletTransformAxisY(img):
row, col = img.shape[:2]
size = row / 2
img_even = img[1::2]
img_odd = img[0::2]
if len(img_even) != len(img_odd):
@menon92
menon92 / .vimrc
Created August 26, 2019 17:42
My vim setup
" Don't try to be vi compatible
set nocompatible
" Turn on syntax highlighting
syntax on
" Show line numbers
set number
" Encoding
class Account {
float principal;
float rate;
int daysActive;
int accountType;
public static final int STANDARD = 0;
public static final int BUDGET = 1;
public static final int PREMIUM = 2;
public static final int PREMIUM_PLUS = 3;
class Account {
float principal;
float rate;
int daysActive;
int accountType;
public static final int STANDARD = 0;
public static final int BUDGET = 1;
public static final int PREMIUM = 2;
public static final int PREMIUM_PLUS = 3;
class Account {
float principal;
float rate;
int daysActive;
int accountType;
public static final int STANDARD = 0;
public static final int BUDGET = 1;
public static final int PREMIUM = 2;
public static final int PREMIUM_PLUS = 3;
class Account {
float principal;
float rate;
int daysActive;
int accountType;
public static final int STANDARD = 0;
public static final int BUDGET = 1;
public static final int PREMIUM = 2;
public static final int PREMIUM_PLUS = 3;