CLICK ME
yes, even hidden code blocks!
print("hello world!")
# Tabula installer for Ubuntu 12.10 | |
# This script will build a working install of Tabula in your cwd. I run this | |
# entire script as root because of the number of software installs. If you're | |
# not comfortable with that, you're probably able to figure out how to do this | |
# as a regular user. | |
# These scripts prefer apt packages that are available by default under Ubuntu | |
# 12.10, but will fall back to using source distributions where packages are not | |
# available in the default Ubuntu repositories. |
-- Use this file to profile GHC itself while compiling a certain file, i.e., | |
-- it's equivalent to running something like the following: | |
-- | |
-- ghc --make <MYTARGET> [<MYFLAG> ...] +RTS -p | |
-- | |
-- Except that the standard ghc binary doesn't support the RTS option "-p". | |
-- Note that <MYTARGET> and <MYFLAGS> are hardcoded in the binary. If you | |
-- change one of these, you need to recompile this binary. | |
-- | |
-- |
{-# LANGUAGE ConstraintKinds #-} | |
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
{-# LANGUAGE PartialTypeSignatures #-} | |
{-# LANGUAGE TemplateHaskell #-} | |
{-# LANGUAGE TypeApplications #-} | |
{-# LANGUAGE TypeFamilies #-} |
let List/map = | |
https://prelude.dhall-lang.org/List/map sha256:dd845ffb4568d40327f2a817eb42d1c6138b929ca758d50bc33112ef3c885680 | |
let Text/concat = | |
https://prelude.dhall-lang.org/Text/concat sha256:731265b0288e8a905ecff95c97333ee2db614c39d69f1514cb8eed9259745fc0 | |
let JSON = | |
https://prelude.dhall-lang.org/JSON/package.dhall sha256:0c3c40a63108f2e6ad59f23b789c18eb484d0e9aebc9416c5a4f338c6753084b | |
let Map = |
These are my rough notes when preparing for a Haskell livestream that I
thought would be worth sharing. Some things are general comments on
contributing to the open source ecosystem whereas other notes are specific
to the stream (e.g. Haskell and the streamly
package)
How things look from a maintainer's point of view (for highly active projects):
As projects become more active the maintainer's "inbox" gets pretty large. A
I'm writing this post to publicly come out as trans (specifically: I wish to transition to become a woman).
This post won't be as polished or edited as my usual posts, because that's kind of the point: I'm tired of having to edit myself to make myself acceptable to others.
I'm a bit scared to let people know that I'm trans, especially because I'm not yet in a position where I can transition (for reasons I don't want to share, at least not in public) and it's really shameful. However, I'm getting really
The purpose of this document is to specify a baseline set of functional programming features that users can request and that programming languages can advertise support for. This feature set strives to be "JSON-like" and "purely functional".
The goals of this specification are (in descending order of importance):