cipher key: 0123456789abcdef0123456789abcdef
IV: 0123456789ABCDEF
padding character: fs
(ASCII=34 -> FILE SEPARATOR
)
secret message: this information is confidential, for your eyes only
diff --git a/rc/base/lint.kak b/rc/base/lint.kak | |
index 41ad1144..ec390738 100644 | |
--- a/rc/base/lint.kak | |
+++ b/rc/base/lint.kak | |
@@ -45,11 +45,11 @@ define-command lint -docstring 'Parse the current buffer with a linter' %{ | |
errors = errors ":" $2 "." $3 "," $2 "." $3 "|" substr($4,2) | |
# fix case where $5 is not the last field because of extra :s in the message | |
for (i=5; i<=NF; i++) errors = errors "\\:" $i | |
- errors = substr(errors, 1, length(errors)-1) " (col " $3 ")" | |
+ errors = substr(errors, 1, length(errors)) " (col " $3 ")" |
I hereby claim:
To claim this, I am signing this object:
import datetime as dt | |
def last_month(): | |
last_eom = dt.date.today().replace(day=1) - dt.timedelta(days=1) | |
to_date = last_eom + dt.timedelta(days=1) | |
from_date = last_eom.replace(day=1) | |
return from_date, to_date | |
# >>> print(dt.date.today()) | |
# 2017-01-18 |
#!/bin/sh | |
# Check with the examples from the spec (http://vimdoc.sourceforge.net/htmldoc/options.html#modeline) | |
# ./test_re.sh 'vi:noai:sw=3 ts=6' '/\* vim: set ai tw=75: \*/' '# kak: se ft=sh' | |
old_parse() { | |
printf %s\\n "$1" | gsed -r \ | |
-e 's/^(.+\s\w+:\s?(set?)?\s)//' \ | |
-e 's/:?\s[^a-zA-Z0-9_=-]+$//' \ | |
-e 's/:/ /g' |
#!/usr/bin/env python2 | |
import sys | |
terse = "-t" in sys.argv[1:] or "--terse" in sys.argv[1:] | |
for i in range(2 if terse else 10): | |
for j in range(30, 38): | |
for k in range(40, 48): | |
if terse: |
package main | |
/* | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
typedef char** args_t; | |
args_t args_new(int n) { |
import os | |
import re | |
FlagsNames = { | |
'c': 'CFLAGS', | |
'c++': 'CXXFLAGS', | |
'objective-c': 'OBJCFLAGS', | |
} | |
def FlagsFromMakefile(var, flags): |
I hereby claim:
To claim this, I am signing this object: