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
# Maintainer: Brian Bidulock <[email protected]> | |
# Contributor: Jan de Groot <[email protected]> | |
# Contributor: Aline Freitas <[email protected]> | |
pkgname=polkit-git | |
_pkgname=polkit | |
pkgver=121.r10.g4e937fd | |
pkgrel=1 | |
epoch=1 | |
pkgdesc="Application development toolkit for controlling system-wide privileges" |
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
# Maintainer: Jonathon Fernyhough <jonathon at_m2x+dev> | |
# Contributor: Aleksej Komarov <[email protected]> | |
# Contributor: MKzero <info[at]linux-web-development[dot]de> | |
# Contributor: Evergreen <evergreenubuntu[at]gmail[dot]com> | |
# Upstream: Bitwig GmbH <[email protected]> | |
# Original PKGBUILD taken wholesale from stylemistake's bitwig-studio package | |
# JF added a prepare() to allow side-by-side installation with release version | |
pkgname=bitwig-studio-beta |
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
#!/usr/bin/env bash | |
# terminal application launcher for sway, using fzf | |
# Based on: https://gitlab.com/FlyingWombat/my-scripts/blob/master/sway-launcher | |
# https://gist.github.com/Biont/40ef59652acf3673520c7a03c9f22d2a | |
shopt -s nullglob | |
if [[ "$1" == 'describe' ]]; then | |
shift | |
if [[ $2 == 'command' ]]; then | |
title=$1 |
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
" == VIM PLUG ================================ | |
call plug#begin('~/.vim/plugged') | |
"------------------------ COC ------------------------ | |
" coc for tslinting, auto complete and prettier | |
Plug 'neoclide/coc.nvim', {'do': 'yarn install --frozen-lockfile'} | |
" coc extensions | |
let g:coc_global_extensions = ['coc-eslint', 'coc-tsserver', 'coc-emmet', 'coc-css', 'coc-html', 'coc-json', 'coc-yank', 'coc-prettier', 'coc-import-cost', 'coc-svg', 'coc-gitignore', 'coc-lists', 'coc-snippets', 'coc-git', 'coc-pairs', 'coc-marketplace', 'coc-stylelint', 'coc-jest', 'coc-project', 'coc-vimlsp'] | |
"------------------------ VIM TSX ------------------------ |
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 exposing (..) | |
import Html exposing (Html, program, text) | |
import MountableProgram as Mountable exposing (Mountable, mountableProgram) | |
import Time | |
type alias Model = | |
() |
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 exposing (..) | |
type alias Point = | |
( Int, Int ) | |
printNums = | |
let | |
( x1, y1 ) = |
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
type bn; | |
type bigNumber; | |
type hex = | |
| Hex(string); | |
type address = | |
| Address(string); |
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
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE QuasiQuotes #-} | |
import Network.Ethereum.Web3 | |
import Network.Ethereum.Web3.TH | |
import System.Environment (getEnv) | |
import Control.Monad.IO.Class (liftIO) | |
import Data.Text (unpack) | |
import Data.String (fromString) |
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 Command | |
open ServiceA | |
open ServiceB | |
let run params = | |
// How do I refer to the ServiceConfig modules in here? |
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 Echo = { | |
include ReactRe.Component.Stateful; | |
let name = "Echo"; | |
type props = unit; | |
type state = {message: option string}; | |
let getInitialState _ => {message: None}; | |
let handleChange _ event => { | |
let value = (ReactDOMRe.domElementToObj (ReactEventRe.Form.target event))##value; | |
Some {message: Some value} | |
}; |
NewerOlder