start new:
tmux
start new with session name:
tmux new -s myname
foo | bar | baz | |
---|---|---|---|
a | 1 | ||
b | 2 | ||
c | |||
4 | |||
e | 5 |
<details> | |
<summary>Detail information:</summary> | |
``` | |
Opening: /home/kafran/Dropbox/PPGP/Docear/projects/PPGP/_data/15A06A9812F266QCVN96A7OXRBJEXYVIJOMS/default_files/PPGP.bib | |
Uncaught exception Occurred in Thread[AWT-EventQueue-0,6,main] | |
com.google.common.util.concurrent.UncheckedExecutionException: java.time.format.DateTimeParseException: Text 'D:20170512224019-03'00'' could not be parsed at index 0 | |
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2217) | |
at com.google.common.cache.LocalCache.get(LocalCache.java:4154) | |
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4158) |
#!/bin/bash | |
cd /tmp && \ | |
/usr/lib/apt/apt-helper download-file http://debian.sur5r.net/i3/pool/main/s/sur5r-keyring/sur5r-keyring_2017.01.02_all.deb keyring.deb SHA256:4c3c6685b1181d83efe3a479c5ae38a2a44e23add55e16a328b8c8560bf05e5f && \ | |
sudo dpkg -i ./keyring.deb && \ | |
echo "deb http://debian.sur5r.net/i3/ $(grep '^DISTRIB_CODENAME=' /etc/lsb-release | cut -f2 -d=) universe" | sudo tee /etc/apt/sources.list.d/sur5r-i3.list && \ | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 0DF731E45CE24F27EEEB1450EFDC8610341D9410 && \ | |
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list && \ | |
sudo apt-get update && \ |
# .config/i3/config | |
# 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). | |
# | |
# i3 config file (v4) | |
# | |
# Please see https://i3wm.org/docs/userguide.html for a complete reference! |
kafran@i5447:~$ mate-screensaver --no-daemon --debug | |
[gs_debug_init] gs-debug.c:109 (22:05:25): Debugging enabled | |
[main] mate-screensaver.c:92 (22:05:25): initializing mate-screensaver 1.18.0 | |
[init_session_id] gs-listener-dbus.c:2406 (22:05:25): Got session-id: /org/freedesktop/login1/session/c2 | |
[gs_fade_init] gs-fade.c:908 (22:05:25): Fade type: 3 | |
** (mate-screensaver:4347): WARNING **: Failed to get session presence proxy: Could not get owner of name 'org.gnome.SessionManager': no such name | |
[gs_watcher_set_active] gs-watcher-x11.c:289 (22:05:25): turning watcher: ON | |
[listener_dbus_handle_system_message] gs-listener-dbus.c:1633 (22:05:25): obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus method=NameAcquired destination=:1.776 | |
[on_bg_changed] gs-manager.c:1038 (22:05:25): background changed |
#!/bin/bash | |
# PATH TO THE SCRIPT FOLDER | |
BASE="/home/user/ScanFolder" | |
START=0 | |
if [ -z "$1" ]; then | |
echo "Usage: $0 <jobid> <start_page>" | |
echo | |
echo "Please provide unique jobid name as first parameter" |
--- /home/kafran/Downloads/biblatex-abnt-3.1/latex/cbx/abnt.cbx | |
+++ /home/kafran/Downloads/biblatex-abnt-3.1/latex/cbx/abnt-changed.cbx | |
@@ -70,12 +70,12 @@ | |
{\namepartgiveni}% | |
{\namepartprefix}% | |
{\namepartsuffixi}}% | |
- {\usebibmacro{name:given-family}% | |
+ {\usebibmacro{name:family-given}% | |
{\iftoggle{sccite}% | |
{\textsc{\MakeLowercase{\namepartfamily}}}% |
import json | |
import base64 | |
import os | |
# make sure the output directory exists before running! | |
folder = os.path.join(os.getcwd(), "imgs") | |
with open("scr.har", "r") as f: | |
har = json.loads(f.read()) |