This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module AssocList where | |
import Data.List (List(..)) | |
import Data.Record (delete, get) | |
import Data.Symbol (class IsSymbol, SProxy(..), reflectSymbol) | |
import Data.Tuple (Tuple(..)) | |
import Type.Row (class RowLacks, class RowToList, Cons, Nil, RLProxy(RLProxy), kind RowList) | |
class RLToList | |
(rl :: RowList) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Prelude | |
import Data.Lens (LensP(), (+~), lens) | |
import Control.Monad.Aff (runAff, later, later') | |
import Control.Monad.Eff (Eff()) | |
import Control.Monad.Eff.Exception (throwException) | |
import Control.Monad.Rec.Class (forever) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Data.Function | |
import Debug.Trace | |
import Control.Monad.Trans | |
import Control.Monad.Cont.Trans | |
import Control.Monad.Eff | |
foreign import data Timeout :: ! | |
type Milliseconds = Number |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Do not edit this file, it will be overwritten on install. | |
Copy the file to $HOME/.config/openbox/ instead. --> | |
<openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude"> | |
<resistance> | |
<strength>10</strength> | |
<screen_edge_strength>20</screen_edge_strength> | |
</resistance> | |
<focus> | |
<focusNew>yes</focusNew> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
############## | |
# PRELIMINARIES | |
############## | |
user=$(id -u) | |
INSTALL_PATH="$HOME/Popcorn-Time" | |
DESKTOP_PATH="$HOME/.local/share/applications" | |
ICON_PATH="$HOME/.local/share/icons/hicolor/256x256/apps" |