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 racket | |
#lang scripty | |
#:dependencies '("base" "gregor-lib") | |
------------------------------------------ | |
#lang typed/racket | |
(require/typed gregor | |
[#:opaque Date date?] | |
[date (-> Integer Integer Integer Date)]) |
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 OverloadedStrings #-} | |
module Main (blah) where | |
import qualified Data.Map as M | |
-- comentário | |
-- | haddock | |
data Bah m = MkBah { bah :: m Text |
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
/* ==UserStyle== | |
@name www.tweag.io - 4/21/2021, 1:55:30 PM | |
@namespace github.com/thalesmg | |
@version 1.0.2 | |
@description tweag.io dark, easier to read | |
@author thalesmg | |
@homepageURL https://gist.github.com/thalesmg/5f437d1f2d5df45b314cdedf146a4eb6#file-tweag-io-user-css | |
@updateURL https://gist.github.com/thalesmg/5f437d1f2d5df45b314cdedf146a4eb6/raw/tweag.io.user.css | |
==/UserStyle== */ | |
@-moz-document domain("www.tweag.io") { |
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
{ pkgs ? import <nixpkgs> {} }: | |
with pkgs; | |
let | |
elixir_1_12 = { mkDerivation }: | |
mkDerivation rec { | |
version = "1.12.0"; | |
sha256 = "00dc3szjn2k552jp7n1c98kjab6wac9d49v2gr43pf3yzcyv8mk1"; | |
minimumOTPVersion = "24"; |
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
From Coq Require Import Lists.List. Import ListNotations. | |
Inductive Object := | |
| Wolf | |
| Goat | |
| Cabbage. | |
Inductive Direction := | |
| Right | |
| Left. |
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
From Coq Require Import Lists.List. Import ListNotations. | |
Inductive Object := | |
| Wolf | |
| Goat | |
| Cabbage. | |
Inductive Direction := | |
| Right | |
| Left. |
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
{- | |
An alternative to the (almost) never ending looping problem | |
using the @ContT@ monad transformer. | |
Based on the post by Drew Olson: | |
https://blog.drewolson.org/adventures-in-looping | |
-} | |
module Main where |
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 python3 | |
import os | |
import paramiko | |
ssh_key_filename = os.getenv('HOME') + '/.ssh/id_rsa' | |
jumpbox_public_addr = '168.128.52.199' | |
jumpbox_private_addr = '10.0.5.10' | |
target_addr = '10.0.5.20' |
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
%%%------------------------------------------------------------------- | |
%%% @author Ahmad Baitalmal | |
%%% @copyright (C) 2017, Ahmad Baitalmal | |
%%% Permission is hereby granted, free of charge, to any person obtaining | |
%%% a copy of this software and associated documentation files | |
%%% (the “Software”), to deal in the Software without restriction, | |
%%% including without limitation the rights to use, copy, modify, merge, | |
%%% publish, distribute, sublicense, and/or sell copies of the Software, | |
%%% and to permit persons to whom the Software is furnished to do so, | |
%%% subject to the following conditions: |
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
# Alloy is developed by the Software Design Group at MIT. | |
# See https://sdg.csail.mit.edu/ or http://alloytools.org | |
# Maintainer: Markus Legner <[email protected]> | |
# Contributor: Ivan Kuraj <kaptoxic _at_ yahoo _dot_ com > | |
# Contributor: Rodney Price <[email protected]> | |
pkgname="alloy" | |
pkgver=6.0.0 | |
pkgrel=1 | |
pkgdesc="A lightweight modelling language for software design." |