Skip to content
View innateessence's full-sized avatar
🏠
Working from home
🏠
Working from home

Sponsoring

@Homebrew
@ChristianChiarulli
@neovim
Block or Report

Block or report innateessence

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. dotfiles dotfiles Public

    My cross-platform dotfiles: zsh, lvim, tmux

    Shell 1

  2. pycron pycron Public

    cron in python-land

    Python 1

  3. chainable.py - Implement pipe operat... chainable.py - Implement pipe operator + currying
    1
    #!/usr/bin/env python3
    2
    
    
    3
    '''
    4
    Just a fun project one night after work.
    5
    I enjoy this syntax.
  4. ArchLinux ARM installer script for r... ArchLinux ARM installer script for raspberry pi's
    1
    #!/bin/bash
    2
    
    
    3
    function runtime_check(){
    4
    	if [[ $(whoami) != "root" ]]; then
    5
    		echo "[-] Error: Must run this script as root   :("
  5. Reacts' useEffect hook, written in p... Reacts' useEffect hook, written in python [naive implementation]
    1
    #!/usr/bin/env python3
    2
    
    
    3
    
    
    4
    class Observable:
    5
        def __init__(self, value):
  6. Esoteric Language Interpreter [brain... Esoteric Language Interpreter [brainfuck language] [naive implementation]
    1
    #!/usr/bin/env python
    2
    
    
    3
    '''
    4
    5
    author: JackofSpades