Skip to content
View LinuxIsCool's full-sized avatar
💭
Preparing the ship.
💭
Preparing the ship.

Organizations

@TokenEngineeringCommunity
Block or Report

Block or report LinuxIsCool

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. configuration configuration Public

    🧪 My system configuration and dotfiles. Can easily be installed with gnu stow.

    Vim Script 4 1

  2. drei drei Public

    Forked from pmndrs/drei

    🌭 useful helpers for react-three-fiber

    JavaScript

  3. dopamine dopamine Public

    Forked from google/dopamine

    Dopamine is a research framework for fast prototyping of reinforcement learning algorithms.

    Jupyter Notebook

  4. sdg-network-modelling sdg-network-modelling Public

    A UN API wrapper and network modelling project that I made to explore UN SDG data in February 2020.

    Jupyter Notebook

  5. Interactively loop audio with fzf an... Interactively loop audio with fzf and fish shell. I use this function to play audio on my headphones and bluetooth speakers at the same time. I do this by selecting my system output to be the speakers, and then looping the speaker output into my headphones.
    1
    function pacmd-loopback --description 'Loop a pacmd source into a pacmd sink interactively.'
    2
      if test (set source (pacmd list-sources | grep name: | awk '{ print $2 }' | cut -d'<' -f2 | cut -d'>' -f1 | fzf-tmux --header="Select a source" --phony); set sink (pacmd list-sinks | grep name: | awk '{ print $2 }' | cut -d'<' -f2 | cut -d'>' -f1 | fzf-tmux --header="Select a sink:"); printf "No\nYes" | fzf-tmux --header="CONFIRM: <$source> -> <$sink>") = "Yes"                                                                                                                         
    3
        pacmd load-module module-loopback source=$source sink=$sink                                                                                                                          
    4
      else                                                                                                                                                                                 
    5
        echo "Aborted."                                                                                                                                                                      
  6. Canadian mock SIN number generator Canadian mock SIN number generator
    1
    
    
    2
    # Shawn Anderson October 12 2019
    3
    # Inspired by https://github.com/corbanworks/fng-sin-tools/blob/master/fngsin.class.php
    4
    
    
    5
    import random