Name | Status | Libre Alternatives | Description |
---|---|---|---|
android-sdk-platform-tools | nonfree | ||
cowsay | nonfree | cowsay | website of the source code is unavaiable |
dropbox | nonfree | proprietary EULA, built from binaries, unavailable sources, non-free artwork | |
faac | nonfree | [FIXME:description] is a GPL'ed package, but has non free code that can't be distributed under the GPL | |
flashplugin | nonfree | nonfree, nondistributable, built from binary installers, etc | |
intel-ucode | nonfree | no modification, use restrictions | |
jdk7 | nonfree | ||
opencl-nvidia | nonfree | nonfree, nondistributable, built from binary installers, etc |
This file contains hidden or 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
man -M $MEMCACHED_HOME/share/man memcached |
This file contains hidden or 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
python proxy.py |
This file contains hidden or 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
python3 -m http.server |
This file contains hidden or 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
error: failed to commit transaction (conflicting files) | |
initscripts: /etc/profile.d/locale.sh exists in filesystem | |
Errors occurred, no packages were upgraded. | |
sudo mv /etc/profile.d/locale.sh{,-backup} | |
yaourt -Syua |
This file contains hidden or 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
#lang racket | |
(* | |
(+ | |
(*) | |
(* | |
(+ | |
(*) | |
(*) | |
(*) | |
(*) |
This file contains hidden or 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
racket@> (= "str" "str") | |
2|=: contract violation | |
3| expected: number? | |
4| given: "str" | |
5| argument position: 1st | |
6| other arguments...: | |
7| "str" | |
8| context...: | |
9| /usr/share/racket/collects/racket/private/misc.rkt:87:7 |
This file contains hidden or 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
#lang racket | |
(require json) | |
(define filename "combined.json") | |
(define timezone-data (call-with-input-file filename read-json)) | |
(define (random-sample object [max-size 5]) | |
(cond | |
((hash? object) |
I've been working with Kafka for over 7 years. I inevitably find myself doing the same set of activities while I'm developing or working with someone else's system. Here's a set of Kafka productivity hacks for doing a few things way faster than you're probably doing them now. 🔥
This file contains hidden or 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
#lang typed/racket | |
(require x64asm) | |
(define-cast ->int | |
#:type (-> Integer) | |
#:ctype (_fun -> _int)) | |
(define-λ! get-1000 ->int | |
(mov rax (imm32 1000)) | |
(ret)) |
OlderNewer