sudo apt-get install direwolf ax25-apps ax25-tools
Direwolf is our software TNC
| /* | |
| I wrote a quick script to download lyrics for an artist from Genius and then feed it into GPT2 runs to try to generate the next Friday by Rebecca Black. The robot version of YTCracker raps a lot like a spam version of YTCracker himself. It's pretty amazing. | |
| */ | |
| ======== SAMPLE 1 ======== | |
| done so just say so | |
| The more I thought about itI could feel the pull of love | |
| Because when it was happening to a girl my eyes rolled | |
| I can't deny this love's a bit raw | |
| But in spite of myself I still pulled back |
| Originally from: http://erlang.org/pipermail/erlang-questions/2017-August/093170.html | |
| For a safe and fast Erlang SSL server, there's a few | |
| configuration values you might want by default: | |
| [{ciphers, CipherList}, % see below | |
| {honor_cipher_order, true}, % pick the server-defined order of ciphers | |
| {secure_renegotiate, true}, % prevent renegotiation hijacks | |
| {client_renegotiation, false}, % prevent clients DoSing w/ renegs | |
| {versions, ['tlsv1.2', 'tlsv1.1']}, % add tlsv1 if you must |
| # LVDB - LLOOGG Memory DB | |
| # Copyriht (C) 2009 Salvatore Sanfilippo <antirez@gmail.com> | |
| # All Rights Reserved | |
| # TODO | |
| # - cron with cleanup of timedout clients, automatic dump | |
| # - the dump should use array startsearch to write it line by line | |
| # and may just use gets to read element by element and load the whole state. | |
| # - 'help','stopserver','saveandstopserver','save','load','reset','keys' commands. | |
| # - ttl with milliseconds resolution 'ttl a 1000'. Check ttl in dump! |
| diff --git a/src/rxvt.h b/src/rxvt.h | |
| index 5c7cf66..2751ba3 100644 | |
| --- a/src/rxvt.h | |
| +++ b/src/rxvt.h | |
| @@ -646,7 +646,7 @@ enum { | |
| #define PrivMode_ExtMouseRight (1UL<<24) // xterm pseudo-utf-8, but works in non-utf-8-locales | |
| #define PrivMode_BlinkingCursor (1UL<<25) | |
| -#define PrivMode_mouse_report (PrivMode_MouseX10|PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent) | |
| +#define PrivMode_mouse_report 0 /* (PrivMode_MouseX10|PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent) */ |
| <?php | |
| $registration_ids = [ | |
| 'You', | |
| 'Only' | |
| ]; | |
| $data = ['title' => 'Live', 'message' => 'Once!']; | |
| $payload = json_encode([ |
| Superfish uses an SDK from Komodia to do SSL MITM. That's probably known by now. | |
| Superfish isn't the only product to use that sdk. there's others too. | |
| Each product that uses the Komodia SDK to MITM, has its OWN CA cert and private | |
| key pair. Seems a lot of people think they all use the superfish cert. That is | |
| NOT the case. | |
| First thing I checked was komodia's own parental control software, | |
| Keep My Family Secure. (mentioned on komodia's own website). |
| localhost ~ # cat <<EOF> /etc/wpa_supplicant.conf | |
| ctrl_interface=DIR=/run/wpa_supplicant GROUP=wheel | |
| update_config=1 | |
| EOF | |
| localhost ~ # wpa_supplicant -iwlp1s0 -Dnl80211 -c/etc/wpa_supplicant.conf -B | |
| Successfully initialized wpa_supplicant | |
| localhost ~ # wpa_cli | |
| wpa_cli v2.0 | |
| Copyright (c) 2004-2012, Jouni Malinen <j@w1.fi> and contributors |
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
| $stack, $draws = [], {} | |
| def method_missing *args | |
| return if args[0][/^to_/] | |
| $stack << args.map { |a| a or $stack.pop } | |
| $draws[$stack.pop(2)[0][0]] = args[1] if args[0] == :< | |
| end | |
| class Array | |
| def +@ |