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
Jan 9 04:22:08 localhost dbus[12815]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper) | |
Jan 9 04:22:08 localhost dbus[12815]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1 | |
Jan 9 04:26:02 localhost dbus[12815]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper) | |
Jan 9 04:26:02 localhost dbus[12815]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1 | |
Jan 9 04:26:04 localhost dbus[12815]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper) | |
Jan 9 04:26:04 localhost dbus[12815]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1 | |
Jan 9 04:28:09 localhost dbus[12815]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper) | |
Jan 9 04:28:09 localhost dbus[12815]: [system] Act |
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
Jan 9 04:09:39 localhost pptp[30625]: anon log[decaps_gre:pptp_gre.c:414]: buffering packet 2050 (expecting 2043, lost or reordered) | |
Jan 9 04:09:39 localhost pptp[30625]: anon log[decaps_gre:pptp_gre.c:414]: buffering packet 2051 (expecting 2043, lost or reordered) | |
Jan 9 04:09:39 localhost pptp[30625]: anon log[decaps_gre:pptp_gre.c:414]: buffering packet 2053 (expecting 2043, lost or reordered) | |
Jan 9 04:09:39 localhost pptp[30625]: anon log[decaps_gre:pptp_gre.c:414]: buffering packet 2054 (expecting 2043, lost or reordered) | |
Jan 9 04:09:43 localhost dbus[12815]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper) | |
Jan 9 04:09:43 localhost dbus[12815]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1 | |
Jan 9 04:09:45 localhost dbus[12815]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper) | |
Jan 9 04:09:45 localhost dbus[12815]: [system] Activated service 'org.freedesk |
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
# non default port to prevent worm attacks! | |
port 11194 | |
proto tcp | |
dev tun | |
ca privnet/ca.crt | |
cert privnet/server.crt | |
key privnet/server.key | |
dh privnet/dh1024.pem | |
server 10.7.0.0 255.255.255.0 | |
ifconfig-pool-persist ipp.txt |
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
(defun read-list () | |
(if (not (eq ?\( (following-char))) | |
(read (current-buffer)) | |
(forward-char 1) | |
(prog1 | |
(let (elements) | |
(while (not (memq (following-char) '(?\) ?\.))) | |
(push (read (current-buffer)) elements)) | |
(setq elements (nreverse elements)) | |
(if (eq ?\. (following-char)) |
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
(add-hook 'eval-expression-minibuffer-setup-hook | |
(defun setup-repeat () | |
(local-set-key (this-command-keys) | |
(lambda nil (interactive) | |
(command-execute 'previous-history-element) | |
(command-execute 'exit-minibuffer nil (vconcat (kbd "RET"))))))) |
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
"\n\\s-*\"\"\"\\s-*\n\\(?:\\\\\"\"\"\\|[^\"]\"\"\\|[^\"]\"\\|[^\"]\\)+?\"\"\"" |
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
(ncaa/add-handler | |
:for window | |
:name ncaa/selected-window-if-changed | |
(lambda (fn &rest args) | |
((starting-window (selected-window))) | |
(unless (eq starting-window (selected-window)) | |
(prog1 (selected-window) | |
(select-window starting-window))))) | |
(ncaa/add-handler |
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
(there-could-be-any number of args | |
on | |
first | |
line | |
) | |
(and-i-want following lines to continue | |
with | |
minimal | |
indent) |
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
(defun names-introspect-replace-labels (fn form) | |
(let* ((vars names--var-list) | |
(bindings (--> (-map 'symbol-value vars) | |
(-interleave vars it) | |
(-partition 2 it)))) | |
`(lexical-let ,bindings ',@form))) | |
(lexical-let ((names--name new-) | |
(names--regexp "\\`new-") | |
(names--bound nil) |
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
(defun names-introspect-replace-labels (fn form) | |
(let* ((vars names--var-list) | |
(bindings (--> (-map 'symbol-value vars) | |
(-interleave vars it) | |
(-partition 2 it)))) | |
`(lexical-let ,bindings ,form) | |
)) | |
(defmacro names-introspect-replace-labels-1 (bindings form) |
OlderNewer