# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(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
// Using github.com/gomodule/redigo v2.0.0+incompatible | |
func TestMiniRedisScan(t *testing.T) { | |
/* | |
redis> ZADD idx 0 "ccc" | |
(integer) 1 | |
redis> ZRANGEBYLEX idx "[d" "[e" | |
(empty list or set) | |
redis> ZRANGEBYLEX idx "[c" "[d" | |
1) "ccc" | |
*/ |
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
/* | |
Bug screenshot: https://tmp.shazow.net/screenshots/screenshot_2019-04-26_dd60.png | |
Output paste: | |
$ go run *.go | |
echo: "test" | |
echo: "foo" | |
echo: "bar" | |
echo: "😼" | |
echo: "why do emojis break the echo indent?" | |
echo: "" |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 4.15.7-gentoo-r1 Kernel Configuration | |
# | |
# | |
# Gentoo Linux | |
# | |
CONFIG_GENTOO_LINUX=y | |
CONFIG_GENTOO_LINUX_UDEV=y |
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
collections.Counter(str(type(obj)) for obj in gc.get_objects()) |
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
// The MIT License (MIT) | |
// Copyright (c) 2016 David Evans @phosphoer | |
// 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: | |
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR |
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
package main | |
import ( | |
"fmt" | |
"strings" | |
) | |
// MultiError implements the Error interface, can be checked as nil just like normal errors. | |
func MultiError() multiError { | |
var err multiError = nil |
First make a fifo
$ export fifopath=$PWD/chat.fifo
$ mkfifo "$fifopath"
Then start reading from the fifo and looking for the ^G
ding escape code.
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
" Find the nearest Makefile and run it | |
function! MakeUp() | |
let makefile = findfile("Makefile", ".;") | |
if makefile != "" | |
silent exe "NeomakeSh make -C " . fnamemodify(makefile, ':p:h') | |
endif | |
endfunction | |
autocmd BufWritePost *.scss call MakeUp() |