Skip to content

Instantly share code, notes, and snippets.

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

Khairul kahirul

🏠
Working from home
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kahirul
kahirul / airflow-webserver.ini
Created June 27, 2020 09:23
cat /etc/systemd/system/airflow-webserver.service
[Unit]
Description=Airflow webserver daemon
After=network.target
[Service]
EnvironmentFile=/etc/environment
User=ubuntu
Group=ubuntu
Type=simple
ExecStart=/bin/bash -c 'source /home/ubuntu/.miniconda3/etc/profile.d/conda.sh && conda activate airflow && airflow webserver'
@kahirul
kahirul / airflow-scheduler.ini
Created June 27, 2020 09:22
cat /etc/systemd/system/airflow-scheduler.service
[Unit]
Description=Airflow scheduler daemon
After=network.target
[Service]
EnvironmentFile=/etc/environment
User=ubuntu
Group=ubuntu
Type=simple
ExecStart=/bin/bash -c 'source /home/ubuntu/.miniconda3/etc/profile.d/conda.sh && conda activate airflow && airflow scheduler'
@kahirul
kahirul / parser.rb
Last active November 28, 2018 08:02
Cuk
{
formats: [
{
format: "$date$ $time$ $level$ ip-$ip$ --- \\[$thread$\\] $logger$ : $timestamp$ $method$ $url$ STATUS:$status$",
halt: true
},
{
format: "$date$ $time$ $level$ ip-$ip$ --- \\[$thread$\\] $logger$ : $trace$",
halt: true
}
@kahirul
kahirul / postgres_queries_and_commands.sql
Created March 13, 2018 10:31 — forked from rgreenjr/postgres_queries_and_commands.sql
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(query_start, clock_timestamp()), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(query_start, clock_timestamp()), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'
@kahirul
kahirul / stopwords.rb
Created January 22, 2018 09:01
Sklearn EN Stopwords
stops = ["a", "about", "above", "across", "after", "afterwards", "again", "against", "all", "almost", "alone", "along", "already", "also", "although", "always", "am", "among", "amongst", "amoungst", "amount", "an", "and", "another", "any", "anyhow", "anyone", "anything", "anyway", "anywhere", "are", "around", "as", "at", "back", "be", "became", "because", "become", "becomes", "becoming", "been", "before", "beforehand", "behind", "being", "below", "beside", "besides", "between", "beyond", "bill", "both", "bottom", "but", "by", "call", "can", "cannot", "cant", "co", "con", "could", "couldnt", "cry", "de", "describe", "detail", "do", "done", "down", "due", "during", "each", "eg", "eight", "either", "eleven", "else", "elsewhere", "empty", "enough", "etc", "even", "ever", "every", "everyone", "everything", "everywhere", "except", "few", "fifteen", "fifty", "fill", "find", "fire", "first", "five", "for", "former", "formerly", "forty", "found", "four", "from", "front", "full", "further", "get", "give", "go", "had",
@kahirul
kahirul / udemy_dl.py
Last active October 12, 2022 19:10
UdemyDL. Udemy downloader. Customize for UFB (Udemy For Bussiness). Fix csrf token handling
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Main script for udemy-dl."""
from __future__ import unicode_literals
from __future__ import print_function
from builtins import str
from builtins import input
import json
import re
@kahirul
kahirul / Dockerfile
Created August 15, 2016 09:01 — forked from yefim/Dockerrun.aws.json
Build a Docker image, push it to AWS EC2 Container Registry, then deploy it to AWS Elastic Beanstalk
# Example Dockerfile
FROM hello-world
@kahirul
kahirul / signup_location.rb
Last active October 9, 2015 05:20
Create Signup Location
def create_signup_location
glist = Gibbon::API.new.lists
list_ids = glist.list(filters: { list_name: 'register' })['data'].map {|m| m['id'] }
list_ids.each do |list_id|
payload = {
id: list_id,
tag: 'SIGNUP_LOC',
name: 'Signup Location',
options: {