Skip to content

Instantly share code, notes, and snippets.

View baleen37's full-sized avatar
🎯
Focusing

jito(지토) baleen37

🎯
Focusing
View GitHub Profile
adb shell pm disable-user --user 0 com.android.hplayer
adb shell pm disable-user --user 0 com.android.browser
adb shell pm disable-user --user 0 com.android.calendar
adb shell pm disable-user --user 0 com.android.contacts
adb shell pm disable-user --user 0 com.android.firewall
adb shell pm disable-user --user 0 com.android.hplayer
adb shell pm disable-user --user 0 com.android.providers.downloads.ui
adb shell pm disable-user --user 0 com.android.sos
adb shell pm disable-user --user 0 com.hmct.account
@baleen37
baleen37 / del_cluster.sh
Created March 25, 2023 03:46 — forked from btamayo/del_cluster.sh
delete proxmox cluster
# source: https://forum.proxmox.com/threads/removing-deleting-a-created-cluster.18887/
#/bin/sh
# stop service
systemctl stop pvestatd.service
systemctl stop pvedaemon.service
systemctl stop pve-cluster.service
systemctl stop corosync
systemctl stop pve-cluster
killall pmxcfs
@baleen37
baleen37 / zn
Created September 19, 2022 16:01 — forked from benevidesh/zn
Zettelkasten Workflow (WIP)
#!/usr/bin/bash
# zn - as zettell
# new export variables EDITOR for your editor and
#+ NOTES for your notes folder.
main () {
note_id=$(date +'%Y%m%d%H%M%S')
$EDITOR $NOTES/"$note_id".md
}
@baleen37
baleen37 / Dockfile
Created July 5, 2019 09:58
pintos dockerfile
FROM ubuntu:16.04
# Install set up tools
RUN apt-get update && \
DEBIAN_FRONTEND=noninterative \
apt-get install -y --no-install-recommends \
curl \
tar
WORKDIR /tmp
@baleen37
baleen37 / mac.md
Created August 7, 2018 02:11 — forked from lornajane/mac.md
Keyboard Only OS X

Keyboard-only Mac Cheatsheet

Hi, I'm Lorna and I don't use a mouse. I have had RSI issues since a bad workstation setup at work in 2006. I've tried a number of extra hardware modifications but what works best for me is to use the keyboard and only the keyboard, so I'm in a good position and never reaching for anything else (except my coffee cup!). I rather unwisely took a job which required me to use a mac (I've been a linux user until now and also had the ability to choose my tools carefully) so here is my cheatsheet of the apps, tricks and keyboard shortcuts I'm using, mostly for my own reference. Since keyboard-only use is also great for productivity, you may also find some of these ideas useful, in which case at least something good has come of this :)

Apps List

There's more detail on a few of these apps but here is a quick overview of the tools I've installed and found helpful

Tool Link Comments
@baleen37
baleen37 / gist:b5156edb005ee781b8ca09f65bd00590
Created July 3, 2018 09:34 — forked from psayre23/gist:c30a821239f4818b0709
Runtime Complexity of Java Collections
Below are the Big O performance of common functions of different Java Collections.
List | Add | Remove | Get | Contains | Next | Data Structure
---------------------|------|--------|------|----------|------|---------------
ArrayList | O(1) | O(n) | O(1) | O(n) | O(1) | Array
LinkedList | O(1) | O(1) | O(n) | O(n) | O(1) | Linked List
CopyOnWriteArrayList | O(n) | O(n) | O(1) | O(n) | O(1) | Array
@baleen37
baleen37 / gist:baf9b3e5a186f9826a96118fa453d4e0
Created July 3, 2018 09:34 — forked from psayre23/gist:c30a821239f4818b0709
Runtime Complexity of Java Collections
Below are the Big O performance of common functions of different Java Collections.
List | Add | Remove | Get | Contains | Next | Data Structure
---------------------|------|--------|------|----------|------|---------------
ArrayList | O(1) | O(n) | O(1) | O(n) | O(1) | Array
LinkedList | O(1) | O(1) | O(n) | O(n) | O(1) | Linked List
CopyOnWriteArrayList | O(n) | O(n) | O(1) | O(n) | O(1) | Array
#/bin/bash
docker-machine stop default
VBoxManage list bridgedifs
VBoxManage modifyvm dinghy --nic3 bridged --bridgeadapter3 en0
docker-machine start default
docker-machine regenerate-certs default
eval "$(docker-machine env default)"
import pytz
from sqlalchemy import types
from sqlalchemy.types import TypeDecorator
tz = pytz.timezone('Asia/Seoul')
class TZDateTime(TypeDecorator):
impl = types.DateTime
public class SpacesItemDecoration extends RecyclerView.ItemDecoration {
private final int itemSplitMarginEven;
private final int itemSplitMarginLarge;
private final int itemSplitMarginSmall;
private final int verticalSpacing;
public static SpacesItemDecoration newInstance(int horizontalSpacing, int verticalSpacing, int spanCount) {
int maxNumberOfSpaces = spanCount - 1;