Skip to content

Instantly share code, notes, and snippets.

View redacted-dev's full-sized avatar

Emi redacted-dev

  • Evil Corp.
  • Costa Rica
View GitHub Profile
@redacted-dev
redacted-dev / pre-commit
Last active December 1, 2019 21:29 — forked from linhmtran168/pre-commit-eslint
Pre-commit hook to lint rubocop
#!/bin/sh
STAGED_FILES=$(git diff --cached --name-only | grep ".rb\|.rake")
if [[ "$STAGED_FILES" = "" ]]; then
exit 0
fi
PASS=true
@redacted-dev
redacted-dev / docker-help.md
Created November 12, 2019 00:22 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

Keybase proof

I hereby claim:

  • I am egm24 on github.
  • I am akaemi (https://keybase.io/akaemi) on keybase.
  • I have a public key ASAtMBmYMsqAJTfmFzsEfHapMWZWb_iUpO9AI3MogPxFmQo

To claim this, I am signing this object:

@redacted-dev
redacted-dev / arch-linux-install
Created August 7, 2018 03:09 — forked from binaerbaum/arch-linux-install
Minimal instructions for installing arch linux on an UEFI NVMe system with full system encryption using dm-crypt and luks
# Install ARCH Linux with encrypted file-system and UEFI
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
# Download the archiso image from https://www.archlinux.org/
# Copy to a usb-drive
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration.
# Set swiss-french keymap
@redacted-dev
redacted-dev / 0-Some interesting son of Jetbrains.md
Last active August 16, 2019 02:13
Passing data across sockets with Kotlin (JVM)

[Redacted]

[Redacted]

  • main.kt
  • methods.kt
  • data.kt

Main is where I run the app. This is a threaded one. I wanted to know how to Implement in Kotling.