Skip to content

Instantly share code, notes, and snippets.

View inscapist's full-sized avatar

Felx inscapist

  • Penang, Malaysia
View GitHub Profile
@inscapist
inscapist / p_np_np_complete.md
Last active September 16, 2022 03:23
P, NP, NP Complete (note to self)

Preamble

First, we can check the time needed to complete the following algorithm class:

  1. O(N) -> say it requires 1 second to process N=100
  2. O(N^3) -> 3 nested loops -> now requires N^3=1000000/100 * 1_second = 10000 seconds = ~ 3 hours
  3. O(2^N) -> N levels (binary tree) of computations -> 2^N = 1.26e+30 seconds
  4. O(n!) -> N levels (of increasing branches, 1x2x3x...xN) of computations -> 9.332622e+157 seconds

All about P

@inscapist
inscapist / xorg.conf
Created August 29, 2022 01:57
Xorg config for alienware x15 (Nvidia Prime Render Offload)
# https://web.mit.edu/rhel-doc/4/RH-DOCS/rhel-rg-en-4/s1-x-server-configuration.html
Section "ServerLayout"
Identifier "layout"
Screen 0 "laptopscreen"
Option "AllowNVIDIAGPUScreens"
EndSection
Section "Device"
# Option "PrimaryGPU" "no"
# BusID "PCI:1:0:0"
@inscapist
inscapist / reinstall-grub.sh
Last active August 26, 2022 07:19
Reinstall broken bootloader (arch) - Grub2 UEFI
# in livedisk terminal:
# refer gparted for diskids (look for root and boot/esp)
# mount root
sudo mount /dev/nvme1n1p2 /mnt
# mount boot/esp
# refer `cat /mnt/etc/fstab` to ensure correct efi path
sudo mount /dev/nvme1n1p1 /mnt/boot/efi
@inscapist
inscapist / Dockerfile
Created June 12, 2022 07:46
python3.5 with gcc4.8
FROM gcc:4
ENV PATH /usr/local/bin:$PATH
ENV LANG C.UTF-8
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
netbase \
&& rm -rf /var/lib/apt/lists/*
ENV GPG_KEY 97FC712E4C024BBEA48A61ED3A5CA953F73C700D
  • What do Etcd, Consul, and Zookeeper do?
    • Service Registration:
      • Host, port number, and sometimes authentication credentials, protocols, versions numbers, and/or environment details.
    • Service Discovery:
      • Ability for client application to query the central registry to learn of service location.
    • Consistent and durable general-purpose K/V store across distributed system.
      • Some solutions support this better than others.
      • Based on Paxos or some derivative (i.e. Raft) algorithm to quickly converge to a consistent state.
  • Centralized locking can be based on this K/V store.
@inscapist
inscapist / easings.cljs
Created May 16, 2022 14:02
Easing Function in clojurescript
(def ^:private easing-fns
{:linear identity
:sine-in #(- 1 (js/Math.cos (/ (* % (.-PI js/Math)) 2)))
:sine-out #(js/Math.sin (/ (* % (.-PI js/Math)) 2))
:sine-in-out #(/ (- (dec (js/Math.cos (* (.-PI js/Math) %)))) 2)
:quad-in #(* % %)
:quad-out #(* % (- 2 %))
:quad-in-out #(if (< % 0.5) (* 2 % %)
(dec (* (- 4 (* 2 %)) %)))
:cubic-out #(inc (apply * (map dec [% % %])))
@inscapist
inscapist / better_dumps.py
Created May 11, 2022 07:55
Better json.dumps supporting set, datetime, timedelta, decimal, object, and sqlalchemy objects
__all__ = ["better_dumps", "better_dump", "json_debug"]
import dataclasses
import datetime
import decimal
import json
from inspect import ismethod
import jsonpickle
from loguru import logger
@inscapist
inscapist / sample_babashka_scripting.clj
Created January 12, 2022 14:29
Simple babashka script with CSV, JSON, str, regex manipulation
#!/usr/bin/env bb
;; https://book.babashka.org
;; https://book.babashka.org/#built-in-namespaces
(ns parse-country-codes
(:require
[cheshire.core :as json]
[clojure.data.csv :as csv]
[clojure.java.io :as io]
[clojure.string :as str]))
@inscapist
inscapist / box-shadow.html
Created January 4, 2022 15:10 — forked from ocean90/box-shadow.html
CSS3 Box Shadow, only top/right/bottom/left and all
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;
@inscapist
inscapist / readme.md
Created December 6, 2021 12:57
Fixes broken brightness control in Arch Linux, on systems with Intel and Nvidia

My machine Spec:

  • Alienware X15 R1
  • QHD w/ GSync
  • RTX3070 MaxQ

It is definitely not an easy process, as everyone is posting this issue yet there is virtually no one posting their config when their setup is working. So I hope this helps someone with a setup like mine: Intel + Nvidia + Advanced Optimus.

I will list the steps I do here:

  1. Disable Advanced Optimus through BIOS (mine is V1.4.0), use only dGPU mode (until Nvidia fixes hybrid)