(About 6 servings)
Make this lentil chile with or without meat; it’s substantial either way.
- 2 ½ cups (1 lb.) lentils
- About 1 ½ quarts (6 cups), boiling, salted water
| obj-m = zen_workaround.o | |
| all: | |
| make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules | |
| clean: | |
| make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean |
| #!/bin/bash | |
| # === INFO === | |
| # NoVPN | |
| # Description: Bypass VPN tunnel for applications run through this tool. | |
| VERSION="3.0.0" | |
| # Author: KrisWebDev | |
| # Requirements: Linux with kernel > 2.6.4 (released in 2008). | |
| # This version is tested on Ubuntu 14.04 and 19.10 with bash. | |
| # Main dependencies are automatically installed. |
| CREAM CHEESE BROWNIES | |
| Preheat oven to 350; coat 8 x 8 pan with non-stick spray. | |
| BROWNIE LAYER: (See NOTE) | |
| 6 oz. Baker's German semi-sweet chocolate | |
| 1/2 c. (1-4 oz.stick) butter | |
| 3/4 c. sugar | |
| 3 eggs | |
| 1 ½ tsp. vanilla | |
| ¾ c. all-purpose flour |
| #!./tclkit | |
| ## prepare runtime environment | |
| proc init {} { | |
| ## mount optional.pak (for tcltwofish) | |
| set optionalPak installbuilder/paks/optional.pak | |
| vfs::mk4::Mount $optionalPak $optionalPak -readonly | |
| ## adjust library search path | |
| set ::auto_path [list $tcl::kitpath/lib/tcl$::tcl_version $tcl::kitpath/lib $tcl::kitpath/libraries $optionalPak/linux-x64 $tcl::kitpath] |
| #!/usr/bin/env tclkit | |
| # | |
| # Bitrock unpacking script | |
| # | |
| # This script must be executed using 32-bit tclkit | |
| # | |
| # Author : mickael9 <mickael9 at gmail dot com> | |
| # | |
| # Latest version can be found at: | |
| # https://gist.github.com/mickael9/0b902da7c13207d1b86e |
The cornbread recipe is easy; it's right off the Alber's Yellow Cornmeal box.
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| if test -f .merlin; then | |
| echo ".merlin already exists, bailing out ..." >&2 | |
| exit 1 | |
| else | |
| # You could add your default EXT's and such to this list: |
| # locale bug workaround | |
| [ -e "$HOME/.nix-profile/lib/locale/locale-archive" ] \ | |
| && export LOCALE_ARCHIVE="$HOME/.nix-profile/lib/locale/locale-archive" | |
| # needed for GHC, Cabal, etc. to find stuff properly | |
| # requires nix's patched ghc-paths package | |
| if [ -e "$HOME/.nix-profile/bin/ghc" ]; then | |
| export NIX_GHC="$HOME/.nix-profile/bin/ghc" | |
| export NIX_GHCPKG="$HOME/.nix-profile/bin/ghc-pkg" | |
| export NIX_GHC_DOCDIR="$HOME/.nix-profile/share/doc/ghc/html" |