From e93ced299c8095e56af52ee68b22954c86d3b51b Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Fri, 13 Mar 2020 15:30:31 +0530 Subject: changes --- weechat/.weechat/alias.conf | 47 +++ weechat/.weechat/buflist.conf | 39 +++ weechat/.weechat/charset.conf | 18 + weechat/.weechat/irc.conf | 201 +++++++++++ weechat/.weechat/logger.conf | 36 ++ weechat/.weechat/logs/core.weechat.weechatlog | 4 + .../.weechat/logs/irc.lunarbnc.##linux.weechatlog | 160 +++++++++ .../logs/irc.lunarbnc.##security.weechatlog | 119 +++++++ .../.weechat/logs/irc.lunarbnc.#gentoo.weechatlog | 140 ++++++++ .../logs/irc.lunarbnc.#lobsters.weechatlog | 91 +++++ .../.weechat/logs/irc.server.lunarbnc.weechatlog | 386 +++++++++++++++++++++ weechat/.weechat/perl.conf | 14 + weechat/.weechat/plugins.conf | 14 + weechat/.weechat/python.conf | 14 + weechat/.weechat/script.conf | 56 +++ weechat/.weechat/sec.conf | 18 + weechat/.weechat/weechat.log | 40 +++ 17 files changed, 1397 insertions(+) create mode 100644 weechat/.weechat/alias.conf create mode 100644 weechat/.weechat/buflist.conf create mode 100644 weechat/.weechat/charset.conf create mode 100644 weechat/.weechat/irc.conf create mode 100644 weechat/.weechat/logger.conf create mode 100644 weechat/.weechat/logs/core.weechat.weechatlog create mode 100644 weechat/.weechat/logs/irc.lunarbnc.##linux.weechatlog create mode 100644 weechat/.weechat/logs/irc.lunarbnc.##security.weechatlog create mode 100644 weechat/.weechat/logs/irc.lunarbnc.#gentoo.weechatlog create mode 100644 weechat/.weechat/logs/irc.lunarbnc.#lobsters.weechatlog create mode 100644 weechat/.weechat/logs/irc.server.lunarbnc.weechatlog create mode 100644 weechat/.weechat/perl.conf create mode 100644 weechat/.weechat/plugins.conf create mode 100644 weechat/.weechat/python.conf create mode 100644 weechat/.weechat/script.conf create mode 100644 weechat/.weechat/sec.conf create mode 100644 weechat/.weechat/weechat.log (limited to 'weechat') diff --git a/weechat/.weechat/alias.conf b/weechat/.weechat/alias.conf new file mode 100644 index 0000000..0a02da3 --- /dev/null +++ b/weechat/.weechat/alias.conf @@ -0,0 +1,47 @@ +# +# weechat -- alias.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[cmd] +AAWAY = "allserv /away" +ANICK = "allserv /nick" +BEEP = "print -beep" +BYE = "quit" +C = "buffer clear" +CHAT = "dcc chat" +CL = "buffer clear" +CLOSE = "buffer close" +EXIT = "quit" +IG = "ignore" +J = "join" +K = "kick" +KB = "kickban" +LEAVE = "part" +M = "msg" +MSGBUF = "command -buffer $1 * /input send $2-" +MUB = "unban *" +N = "names" +Q = "query" +REDRAW = "window refresh" +SAY = "msg *" +SIGNOFF = "quit" +T = "topic" +UB = "unban" +UMODE = "mode $nick" +V = "command core version" +W = "who" +WC = "window close" +WI = "whois" +WII = "whois $1 $1" +WM = "window merge" +WW = "whowas" + +[completion] +MSGBUF = "%(buffers_plugins_names)" diff --git a/weechat/.weechat/buflist.conf b/weechat/.weechat/buflist.conf new file mode 100644 index 0000000..d285f89 --- /dev/null +++ b/weechat/.weechat/buflist.conf @@ -0,0 +1,39 @@ +# +# weechat -- buflist.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +add_newline = on +auto_scroll = 50 +display_conditions = "${buffer.hidden}==0" +enabled = on +mouse_jump_visited_buffer = off +mouse_move_buffer = on +mouse_wheel = on +nick_prefix = off +nick_prefix_empty = on +signals_refresh = "" +sort = "number,-active" + +[format] +buffer = "${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}" +buffer_current = "${color:,blue}${format_buffer}" +hotlist = " ${color:green}(${hotlist}${color:green})" +hotlist_highlight = "${color:magenta}" +hotlist_low = "${color:white}" +hotlist_message = "${color:brown}" +hotlist_none = "${color:default}" +hotlist_private = "${color:green}" +hotlist_separator = "${color:default}," +indent = " " +lag = " ${color:green}[${color:brown}${lag}${color:green}]" +name = "${name}" +nick_prefix = "${color_nick_prefix}${nick_prefix}" +number = "${color:green}${number}${if:${number_displayed}?.: }" diff --git a/weechat/.weechat/charset.conf b/weechat/.weechat/charset.conf new file mode 100644 index 0000000..00d304c --- /dev/null +++ b/weechat/.weechat/charset.conf @@ -0,0 +1,18 @@ +# +# weechat -- charset.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[default] +decode = "iso-8859-1" +encode = "" + +[decode] + +[encode] diff --git a/weechat/.weechat/irc.conf b/weechat/.weechat/irc.conf new file mode 100644 index 0000000..55b8e0e --- /dev/null +++ b/weechat/.weechat/irc.conf @@ -0,0 +1,201 @@ +# +# weechat -- irc.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +buffer_open_before_autojoin = on +buffer_open_before_join = off +buffer_switch_autojoin = on +buffer_switch_join = on +color_nicks_in_names = off +color_nicks_in_nicklist = off +color_nicks_in_server_messages = on +color_pv_nick_like_channel = on +ctcp_time_format = "%a, %d %b %Y %T %z" +display_away = local +display_ctcp_blocked = on +display_ctcp_reply = on +display_ctcp_unknown = on +display_host_join = on +display_host_join_local = on +display_host_quit = on +display_join_message = "329,332,333,366" +display_old_topic = on +display_pv_away_once = on +display_pv_back = on +display_pv_warning_address = off +highlight_channel = "$nick" +highlight_pv = "$nick" +highlight_server = "$nick" +highlight_tags_restrict = "irc_privmsg,irc_notice" +item_channel_modes_hide_args = "k" +item_display_server = buffer_plugin +item_nick_modes = on +item_nick_prefix = on +join_auto_add_chantype = off +msgbuffer_fallback = current +new_channel_position = none +new_pv_position = none +nick_completion_smart = speakers +nick_mode = prefix +nick_mode_empty = off +nicks_hide_password = "nickserv" +notice_as_pv = auto +notice_welcome_redirect = on +notice_welcome_tags = "" +notify_tags_ison = "notify_message" +notify_tags_whois = "notify_message" +part_closes_buffer = off +pv_buffer = independent +pv_tags = "notify_private" +raw_messages = 256 +server_buffer = merge_with_core +smart_filter = on +smart_filter_chghost = on +smart_filter_delay = 5 +smart_filter_join = on +smart_filter_join_unmask = 30 +smart_filter_mode = "+" +smart_filter_nick = on +smart_filter_quit = on +temporary_servers = off +topic_strip_colors = off + +[color] +input_nick = lightcyan +item_channel_modes = default +item_lag_counting = default +item_lag_finished = yellow +item_nick_modes = default +message_chghost = brown +message_join = green +message_kick = red +message_quit = red +mirc_remap = "1,-1:darkgray" +nick_prefixes = "y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue" +notice = green +reason_kick = default +reason_quit = default +topic_current = default +topic_new = white +topic_old = default + +[network] +autoreconnect_delay_growing = 2 +autoreconnect_delay_max = 600 +ban_mask_default = "*!$ident@$host" +colors_receive = on +colors_send = on +lag_check = 60 +lag_max = 1800 +lag_min_show = 500 +lag_reconnect = 300 +lag_refresh_interval = 1 +notify_check_ison = 1 +notify_check_whois = 5 +sasl_fail_unavailable = on +send_unknown_commands = off +whois_double_nick = off + +[msgbuffer] + +[ctcp] + +[ignore] + +[server_default] +addresses = "" +anti_flood_prio_high = 2 +anti_flood_prio_low = 2 +autoconnect = off +autojoin = "" +autoreconnect = on +autoreconnect_delay = 10 +autorejoin = off +autorejoin_delay = 30 +away_check = 0 +away_check_max_nicks = 25 +capabilities = "" +charset_message = message +command = "" +command_delay = 0 +connection_timeout = 60 +ipv6 = on +local_hostname = "" +msg_kick = "" +msg_part = "WeeChat ${info:version}" +msg_quit = "WeeChat ${info:version}" +nicks = "fd0e,fd0e1,fd0e2,fd0e3,fd0e4" +nicks_alternate = on +notify = "" +password = "" +proxy = "" +realname = "" +sasl_fail = continue +sasl_key = "" +sasl_mechanism = plain +sasl_password = "" +sasl_timeout = 15 +sasl_username = "" +split_msg_max_length = 512 +ssl = off +ssl_cert = "" +ssl_dhkey_size = 2048 +ssl_fingerprint = "" +ssl_password = "" +ssl_priorities = "NORMAL:-VERS-SSL3.0" +ssl_verify = on +usermode = "" +username = "fd0e" + +[server] +lunarbnc.addresses = "de.lunarbnc.net/8080" +lunarbnc.proxy +lunarbnc.ipv6 +lunarbnc.ssl = on +lunarbnc.ssl_cert +lunarbnc.ssl_password +lunarbnc.ssl_priorities +lunarbnc.ssl_dhkey_size +lunarbnc.ssl_fingerprint +lunarbnc.ssl_verify +lunarbnc.password = "Shubham...1" +lunarbnc.capabilities +lunarbnc.sasl_mechanism +lunarbnc.sasl_username +lunarbnc.sasl_password +lunarbnc.sasl_key +lunarbnc.sasl_timeout +lunarbnc.sasl_fail +lunarbnc.autoconnect +lunarbnc.autoreconnect +lunarbnc.autoreconnect_delay +lunarbnc.nicks +lunarbnc.nicks_alternate +lunarbnc.username = "anon6405/freenode" +lunarbnc.realname +lunarbnc.local_hostname +lunarbnc.usermode +lunarbnc.command +lunarbnc.command_delay +lunarbnc.autojoin +lunarbnc.autorejoin +lunarbnc.autorejoin_delay +lunarbnc.connection_timeout +lunarbnc.anti_flood_prio_high +lunarbnc.anti_flood_prio_low +lunarbnc.away_check +lunarbnc.away_check_max_nicks +lunarbnc.msg_kick +lunarbnc.msg_part +lunarbnc.msg_quit +lunarbnc.notify +lunarbnc.split_msg_max_length +lunarbnc.charset_message diff --git a/weechat/.weechat/logger.conf b/weechat/.weechat/logger.conf new file mode 100644 index 0000000..d0d3218 --- /dev/null +++ b/weechat/.weechat/logger.conf @@ -0,0 +1,36 @@ +# +# weechat -- logger.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +backlog = 20 +backlog_conditions = "" + +[color] +backlog_end = default +backlog_line = default + +[file] +auto_log = on +color_lines = off +flush_delay = 120 +fsync = off +info_lines = off +mask = "$plugin.$name.weechatlog" +name_lower_case = on +nick_prefix = "" +nick_suffix = "" +path = "%h/logs/" +replacement_char = "_" +time_format = "%Y-%m-%d %H:%M:%S" + +[level] + +[mask] diff --git a/weechat/.weechat/logs/core.weechat.weechatlog b/weechat/.weechat/logs/core.weechat.weechatlog new file mode 100644 index 0000000..6abe209 --- /dev/null +++ b/weechat/.weechat/logs/core.weechat.weechatlog @@ -0,0 +1,4 @@ +2020-03-13 13:28:32 Plugins loaded: alias, buflist, charset, irc, logger, perl, python, script +2020-03-13 13:29:53 irc: server de.lunarbnc.net/8080 added +2020-03-13 13:30:07 irc: server de.lunarbnc.net/8080 has been deleted +2020-03-13 13:30:17 irc: server lunarbnc added diff --git a/weechat/.weechat/logs/irc.lunarbnc.##linux.weechatlog b/weechat/.weechat/logs/irc.lunarbnc.##linux.weechatlog new file mode 100644 index 0000000..8bbeb41 --- /dev/null +++ b/weechat/.weechat/logs/irc.lunarbnc.##linux.weechatlog @@ -0,0 +1,160 @@ +2020-03-13 13:30:22 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##linux +2020-03-13 13:30:22 i Topic for ##linux is "Channel website: https://freenode.linux.community | Pastebin: " | nc termbin.com 9999" | Need an op? Join ##linux-ops" +2020-03-13 13:30:22 i Topic set by sauvin on Wed, 08 Jan 2020 13:39:39 +2020-03-13 13:30:22 i Channel ##linux: 1896 nicks (0 ops, 0 voices, 1896 normals) +2020-03-13 13:30:22 *** Buffer Playback... +2020-03-13 13:30:22 rouji does the graphical thing also show flatpaks or something? +2020-03-13 13:30:22 *buffextras culver!~lz@103.137.210.94 quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 gambl0re https://i.imgur.com/55639NC.png +2020-03-13 13:30:22 *buffextras DarkTrick!~DarkTrick@pl-768-132.bunbun.ne.jp joined +2020-03-13 13:30:22 *buffextras con3!~con3@165.255.107.147 joined +2020-03-13 13:30:22 *buffextras chrisccoulson!~chrisccou@ubuntu/member/chrisccoulson joined +2020-03-13 13:30:22 *buffextras truthr!~truthr@unaffiliated/truthr joined +2020-03-13 13:30:22 *buffextras Freejack_!~quassel@unaffiliated/freejack quit: Quit: No Ping reply in 180 seconds. +2020-03-13 13:30:22 *buffextras Freejack_!~quassel@unaffiliated/freejack joined +2020-03-13 13:30:22 *buffextras TheFuzzball!~TheFuzzba@81.2.155.27 joined +2020-03-13 13:30:22 *buffextras arptiw!~Thunderbi@118.185.145.130 joined +2020-03-13 13:30:22 *buffextras c0c0!~coco@212-51-137-149.fiber7.init7.net joined +2020-03-13 13:30:22 *buffextras TheFuzzball!~TheFuzzba@81.2.155.27 quit: Client Quit +2020-03-13 13:30:22 *buffextras CraneZ!~CZhou@101.87.139.80 quit: Quit: WeeChat 2.1 +2020-03-13 13:30:22 *buffextras Armand!~Armand@194.168.13.12 joined +2020-03-13 13:30:22 *buffextras Data909!~Data909@2a02-ab04-1db9-5d00-39a1-cd66-e937-c064.dynamic.v6.chello.sk joined +2020-03-13 13:30:22 *buffextras nobo!~nobo@APN-123-245-90-gprs.simobil.net joined +2020-03-13 13:30:22 *buffextras deicide-!~deicide-@unaffiliated/deicide- joined +2020-03-13 13:30:22 *buffextras linusw_!uid330592@linaro/linusw joined +2020-03-13 13:30:22 *buffextras sQVe!~sQVe@unaffiliated/sqve joined +2020-03-13 13:30:22 *buffextras black_ant!~antilope@unaffiliated/black-ant/x-1505394 joined +2020-03-13 13:30:22 *buffextras deicide-!~deicide-@unaffiliated/deicide- quit: Remote host closed the connection +2020-03-13 13:30:22 currybullen gambl0re: output of 'dnf search firefox'? +2020-03-13 13:30:22 currybullen gambl0re: it may be as rouji says, that the graphical software installer also shows flatpaks (maybe even snaps if you've got snapd installed) +2020-03-13 13:30:22 *buffextras nlpqda!~kwz@unaffiliated/nlpqda quit: Quit: Lost terminal +2020-03-13 13:30:22 *buffextras psutcliffe!~psutcliff@2a00:801:205:660a:5455:d2d0:8884:6f28 joined +2020-03-13 13:30:22 currybullen hence it would show the snap, flatpak and rpm versions of firefox +2020-03-13 13:30:22 *buffextras swift110!~swift110@unaffiliated/swift110 quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 akik why on earth would you hide that information ??? +2020-03-13 13:30:22 gambl0re https://termbin.com/kobf +2020-03-13 13:30:22 *buffextras otisolsen71!~otisolsen@x50d248d8.cust.hiper.dk joined +2020-03-13 13:30:22 akik in trying to make the system usable for normal people, you crap on the advanced users +2020-03-13 13:30:22 *buffextras acelogic2!~acelogic@129.3.149.126 joined +2020-03-13 13:30:22 rouji the 4th one is oddly specific +2020-03-13 13:30:22 *buffextras arptiw!~Thunderbi@118.185.145.130 quit: Quit: arptiw +2020-03-13 13:30:22 *buffextras cmj!~c@2603:3023:30a:f300::c0ff:ee quit: Ping timeout: 272 seconds +2020-03-13 13:30:22 gambl0re i know right +2020-03-13 13:30:22 *buffextras cmj!~c@2603:3023:30a:f300::c0ff:ee joined +2020-03-13 13:30:22 *buffextras TheFuzzball!~TheFuzzba@81.2.155.27 joined +2020-03-13 13:30:22 *buffextras InspectorCluseau!~Inspector@97-127-30-166.mpls.qwest.net joined +2020-03-13 13:30:22 *buffextras acelogic!~acelogic@129.3.148.200 quit: Ping timeout: 265 seconds +2020-03-13 13:30:22 currybullen gambl0re: i'm not sure exactly how the kde software gui works, i'm on fedora 31 gnome and their software gui doesn't display any flatpaks or snaps at least +2020-03-13 13:30:22 *buffextras DarkTrick!~DarkTrick@pl-768-132.bunbun.ne.jp quit: Ping timeout: 258 seconds +2020-03-13 13:30:22 *buffextras Neo-Andersson!~ac110001@h-2-225.A240.priv.bahnhof.se joined +2020-03-13 13:30:22 *buffextras otisolsen71!~otisolsen@x50d248d8.cust.hiper.dk quit: Ping timeout: 268 seconds +2020-03-13 13:30:22 currybullen gambl0re: look through the settings, maybe check that 'sources' button thats on the lower left in the screenshot you sent and see if you can find any references to flatkap or snap. you can also ask in #plasma +2020-03-13 13:30:22 *buffextras self!~elf@unaffiliated/elf joined +2020-03-13 13:30:22 *buffextras AquaL1te!~AquaL1te@unaffiliated/aqual1te joined +2020-03-13 13:30:22 *buffextras MonoMonkey!~MonoMonke@p57801a65.dip0.t-ipconnect.de joined +2020-03-13 13:30:22 *buffextras Your_Dog!677b294b@unaffiliated/your-dog/x-6037946 quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 *** Playback Complete. +2020-03-13 13:30:22 i Channel created on Sat, 10 Feb 2001 04:46:24 +2020-03-13 13:31:18 → slash_ (~slash_@030-245-128-083.dynamic.caiway.nl) has joined ##linux +2020-03-13 13:31:50 ← bunnypuncher (~user@c-24-129-35-148.hsd1.fl.comcast.net) has quit (Ping timeout: 258 seconds) +2020-03-13 13:33:02 ← ijens (~ijens@unaffiliated/ijens) has quit (Remote host closed the connection) +2020-03-13 13:33:48 → Whirled420_ (~whirled42@cpe-72-131-100-173.wi.res.rr.com) has joined ##linux +2020-03-13 13:33:52 → peetaur (~peter@pD953ED56.dip0.t-ipconnect.de) has joined ##linux +2020-03-13 13:34:13 ← Whirled420 (~whirled42@cpe-72-131-100-173.wi.res.rr.com) has quit (Ping timeout: 255 seconds) +2020-03-13 13:35:26 ← ghostzec (ghostzec@gateway/vpn/mullvad/ghostzec) has quit (Ping timeout: 256 seconds) +2020-03-13 13:35:46 → ImQ009 (~ImQ009@unaffiliated/imq009) has joined ##linux +2020-03-13 13:37:13 → cs02rm0 (~rich@richandsian.plus.com) has joined ##linux +2020-03-13 13:37:18 ← Artistics (~Artistics@unaffiliated/user49) has quit (Ping timeout: 260 seconds) +2020-03-13 13:37:22 → drzacek (~drzacek@b941c009.business.dg-w.de) has joined ##linux +2020-03-13 13:37:29 ← knidos (~knidos@85.98.159.26) has quit (Remote host closed the connection) +2020-03-13 13:38:07 ← JanC (~janc@lugwv/member/JanC) has quit (Remote host closed the connection) +2020-03-13 13:39:07 ← cliluw (~cliluw@unaffiliated/cliluw) has quit (Ping timeout: 258 seconds) +2020-03-13 13:39:10 ← linelevel_ (linelevel@gateway/vpn/privateinternetaccess/linelevel) has quit (Ping timeout: 260 seconds) +2020-03-13 13:39:19 → chap (~chap@unaffiliated/chap) has joined ##linux +2020-03-13 13:39:40 ← Neo-Andersson (~ac110001@h-2-225.A240.priv.bahnhof.se) has quit (Quit: Bye, bye.) +2020-03-13 13:39:50 → linelevel (linelevel@gateway/vpn/privateinternetaccess/linelevel) has joined ##linux +2020-03-13 13:40:10 → Artistics (~Artistics@unaffiliated/user49) has joined ##linux +2020-03-13 13:40:20 i irc: disconnected from server +2020-03-13 13:40:32 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##linux +2020-03-13 13:40:32 i Topic for ##linux is "Channel website: https://freenode.linux.community | Pastebin: " | nc termbin.com 9999" | Need an op? Join ##linux-ops" +2020-03-13 13:40:32 i Topic set by sauvin on Wed, 08 Jan 2020 13:39:39 +2020-03-13 13:40:32 i Channel ##linux: 1893 nicks (0 ops, 0 voices, 1893 normals) +2020-03-13 13:40:32 *** Buffer Playback... +2020-03-13 13:40:32 *buffextras acelogic2!~acelogic@129.3.149.126 quit: Ping timeout: 268 seconds +2020-03-13 13:40:32 psutcliffe ZombieChicken, no. they're just morons +2020-03-13 13:40:32 *buffextras HerbY_NL2!~HerbY_NL2@2001:67c:2564:518:3cb5:89c:bd27:ee69 quit: Quit: Leaving +2020-03-13 13:40:32 psutcliffe they don't want to sit around with shitty butts when the world economy collapses +2020-03-13 13:40:32 *** Playback Complete. +2020-03-13 13:40:34 → knidos (~knidos@85.98.159.26) has joined ##linux +2020-03-13 13:40:40 i Channel created on Sat, 10 Feb 2001 04:46:24 +2020-03-13 13:41:00 → ArchitectZ (~Architect@135-23-100-130.cpe.pppoe.ca) has joined ##linux +2020-03-13 13:41:06 ← knidos (~knidos@85.98.159.26) has quit (Client Quit) +2020-03-13 13:42:10 → Jackneill (~Jackneill@unaffiliated/jackneill) has joined ##linux +2020-03-13 13:42:19 ← gkamathe (~gkamathe@unaffiliated/gkamathe) has quit (Ping timeout: 255 seconds) +2020-03-13 13:43:26 → cgp (~Thunderbi@141.8.40.112) has joined ##linux +2020-03-13 13:44:28 ← ArchitectZ (~Architect@135-23-100-130.cpe.pppoe.ca) has quit (Client Quit) +2020-03-13 13:44:35 ← Beam_Inn (~Beam_Inn@unaffiliated/beam-inn/x-3943829) has quit (Remote host closed the connection) +2020-03-13 13:44:54 → ArchitectZ (~Architect@135-23-100-130.cpe.pppoe.ca) has joined ##linux +2020-03-13 13:45:22 ← instantp10neer (~instantp1@unaffiliated/instantp10neer) has quit (Quit: Leaving) +2020-03-13 13:47:06 → operateur (~operateur@91.143.220.230) has joined ##linux +2020-03-13 13:47:21 ← bjelleklang (~c@wikipedia/Bjelleklang) has quit (Quit: Leaving) +2020-03-13 13:47:47 ← Data909 (~Data909@2a02-ab04-1db9-5d00-39a1-cd66-e937-c064.dynamic.v6.chello.sk) has quit (Read error: Connection reset by peer) +2020-03-13 13:48:07 → z8z (~x@ac230029.ppp.asahi-net.or.jp) has joined ##linux +2020-03-13 13:48:22 → makaveli7 (~makaveli7@unaffiliated/makaveli7) has joined ##linux +2020-03-13 13:49:37 ← snimavat (~snimavat@219.91.191.174) has quit (Quit: snimavat) +2020-03-13 13:49:48 → _0xDEADBEEF (~hamidnaza@121-200-4-166.79c804.syd.nbn.aussiebb.net) has joined ##linux +2020-03-13 13:51:09 gambl0re currybullen: i think its getting packages from snap and flatpak +2020-03-13 13:51:18 → tsaka__ (~torstein@2a02:587:8102:ca00:145e:52a9:485a:3afa) has joined ##linux +2020-03-13 13:52:09 ← dmo139 (~dmo@2a02:8071:3e87:700:6d17:4e3b:233b:b4b9) has quit (Ping timeout: 240 seconds) +2020-03-13 13:52:15 currybullen gambl0re: well there's the explanation then :) +2020-03-13 13:52:26 ← peetaur (~peter@pD953ED56.dip0.t-ipconnect.de) has quit (Ping timeout: 256 seconds) +2020-03-13 13:53:08 → Beam_Inn (~Beam_Inn@unaffiliated/beam-inn/x-3943829) has joined ##linux +2020-03-13 13:53:16 → peetaur (~peter@pD953ED56.dip0.t-ipconnect.de) has joined ##linux +2020-03-13 13:53:19 → ignapk (sid413777@gateway/web/irccloud.com/x-cltprlihzkxaecif) has joined ##linux +2020-03-13 13:53:30 ← hekel (~hekel@unaffiliated/hekel) has quit (Remote host closed the connection) +2020-03-13 13:53:53 ← Necktwi (~necktwi@157.48.89.237) has quit (Read error: Connection reset by peer) +2020-03-13 13:54:04 → bomb-on (~bomb-on@139-142-17-89.fiber.hringdu.is) has joined ##linux +2020-03-13 13:54:17 i irc: disconnected from server +2020-03-13 13:54:46 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##linux +2020-03-13 13:54:46 i Topic for ##linux is "Channel website: https://freenode.linux.community | Pastebin: " | nc termbin.com 9999" | Need an op? Join ##linux-ops" +2020-03-13 13:54:46 i Topic set by sauvin on Wed, 08 Jan 2020 13:39:39 +2020-03-13 13:55:03 i Channel ##linux: 1895 nicks (0 ops, 0 voices, 1895 normals) +2020-03-13 13:55:17 → hekel (~hekel@unaffiliated/hekel) has joined ##linux +2020-03-13 13:56:04 i Channel created on Sat, 10 Feb 2001 04:46:24 +2020-03-13 13:56:04 → fivegruel (~fivegruel@ufr-132-230-195-201.uni-nat.uni-freiburg.de) has joined ##linux +2020-03-13 13:56:04 → cschneid (~cschneid@c-73-78-144-189.hsd1.co.comcast.net) has joined ##linux +2020-03-13 13:56:04 i irc: disconnected from server +2020-03-13 13:56:15 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##linux +2020-03-13 13:56:15 i Topic for ##linux is "Channel website: https://freenode.linux.community | Pastebin: " | nc termbin.com 9999" | Need an op? Join ##linux-ops" +2020-03-13 13:56:15 i Topic set by sauvin on Wed, 08 Jan 2020 13:39:39 +2020-03-13 13:56:16 i Channel ##linux: 1898 nicks (0 ops, 0 voices, 1898 normals) +2020-03-13 13:56:23 i Channel created on Sat, 10 Feb 2001 04:46:24 +2020-03-13 13:56:48 ← cschneid_ (~cschneid@c-73-78-144-189.hsd1.co.comcast.net) has quit (Ping timeout: 265 seconds) +2020-03-13 13:57:17 → horseface (~horseface@unaffiliated/horseface) has joined ##linux +2020-03-13 13:57:54 ← first-order (~Arch-Star@24-139-45-27.fidnet.com) has quit (Ping timeout: 258 seconds) +2020-03-13 13:59:31 ← daex (daex@gateway/vpn/protonvpn/daex) has quit (Ping timeout: 255 seconds) +2020-03-13 13:59:31 ← psutcliffe (~psutcliff@2a00:801:205:660a:5455:d2d0:8884:6f28) has quit (Ping timeout: 272 seconds) +2020-03-13 13:59:31 → Necktwi (~necktwi@157.48.89.237) has joined ##linux +2020-03-13 13:59:31 i irc: disconnected from server +2020-03-13 14:01:52 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##linux +2020-03-13 14:01:52 i Topic for ##linux is "Channel website: https://freenode.linux.community | Pastebin: " | nc termbin.com 9999" | Need an op? Join ##linux-ops" +2020-03-13 14:01:52 i Topic set by sauvin on Wed, 08 Jan 2020 13:39:39 +2020-03-13 14:01:52 i Channel ##linux: 1899 nicks (0 ops, 0 voices, 1899 normals) +2020-03-13 14:01:52 *** Buffer Playback... +2020-03-13 14:01:52 *buffextras vqrs!~vqrs@learnprogramming/regular/vqrs quit: Ping timeout: 246 seconds +2020-03-13 14:01:52 *buffextras Beam_Inn_!~Beam_Inn@unaffiliated/beam-inn/x-3943829 joined +2020-03-13 14:01:52 *buffextras chap!~chap@unaffiliated/chap quit: Quit: I laugh with many, but don't trust any. +2020-03-13 14:01:52 *buffextras trens!~trens@cpe-184-54-204-115.swo.res.rr.com joined +2020-03-13 14:01:52 *buffextras self!~elf@unaffiliated/elf quit: Ping timeout: 260 seconds +2020-03-13 14:01:52 *buffextras vqrs!~vqrs@learnprogramming/regular/vqrs joined +2020-03-13 14:01:52 *buffextras NetTerminalGene!~NetTermin@unaffiliated/dontknow joined +2020-03-13 14:01:52 *buffextras horseface_!~horseface@unaffiliated/horseface joined +2020-03-13 14:01:52 *buffextras daex!daex@gateway/vpn/protonvpn/daex joined +2020-03-13 14:01:52 *** Playback Complete. +2020-03-13 14:02:00 i Channel created on Sat, 10 Feb 2001 04:46:24 +2020-03-13 14:02:32 ← Beam_Inn (~Beam_Inn@unaffiliated/beam-inn/x-3943829) has quit (Ping timeout: 258 seconds) +2020-03-13 14:02:43 i Beam_Inn_ is now known as Beam_Inn +2020-03-13 14:03:32 → amrx (~zbrute@unaffiliated/amrx) has joined ##linux +2020-03-13 14:03:55 ← peetaur (~peter@pD953ED56.dip0.t-ipconnect.de) has quit (Ping timeout: 255 seconds) +2020-03-13 14:03:55 ← horseface (~horseface@unaffiliated/horseface) has quit (Read error: Connection reset by peer) +2020-03-13 14:03:55 i irc: disconnected from server diff --git a/weechat/.weechat/logs/irc.lunarbnc.##security.weechatlog b/weechat/.weechat/logs/irc.lunarbnc.##security.weechatlog new file mode 100644 index 0000000..a7e9d64 --- /dev/null +++ b/weechat/.weechat/logs/irc.lunarbnc.##security.weechatlog @@ -0,0 +1,119 @@ +2020-03-13 13:30:22 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##security +2020-03-13 13:30:22 i Topic for ##security is "Welcome to Computer, Network & Physical ##Security | Please stay on topic | Jobs: https://bit.ly/2YZtyoY | PasswordsCon live stream: https://www.youtube.com/watch?v=GK17BvaMAb4" +2020-03-13 13:30:22 i Topic set by Kryczek on Mon, 25 Nov 2019 15:49:05 +2020-03-13 13:30:22 i Channel ##security: 966 nicks (6 ops, 0 voices, 960 normals) +2020-03-13 13:30:22 *** Buffer Playback... +2020-03-13 13:30:22 b1tninja (for theroumag__ ) +2020-03-13 13:30:22 *buffextras atoploph!~nibs@184.75.208.114 joined +2020-03-13 13:30:22 *buffextras lif!uid24110@gateway/web/irccloud.com/x-oqwsmchnlpcfvlth joined +2020-03-13 13:30:22 *buffextras yar!~yar@unaffiliated/yar joined +2020-03-13 13:30:22 *buffextras yar!~yar@unaffiliated/yar parted: +2020-03-13 13:30:22 *buffextras waldfee!~waldfee@gunslinger.at joined +2020-03-13 13:30:22 *buffextras horseface_!~horseface@unaffiliated/horseface quit: Read error: Connection reset by peer +2020-03-13 13:30:22 *buffextras Belinnon!~rubik@141.226.212.149 quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras Belinnon!~rubik@141.226.212.149 joined +2020-03-13 13:30:22 *buffextras Logicwrath!~admin@d149-67-41-40.nap.wideopenwest.com quit: Quit: Logicwrath +2020-03-13 13:30:22 *buffextras az0re!~az0re@gateway/tor-sasl/az0re quit: Quit: Leaving +2020-03-13 13:30:22 *buffextras Silverleaf!~Silverlea@unaffiliated/goldenore quit: Ping timeout: 265 seconds +2020-03-13 13:30:22 *buffextras Tyroon!~username@unaffiliated/tyroon joined +2020-03-13 13:30:22 *buffextras Tempesta!Tempesta@unaffiliated/tempesta quit: Read error: Connection reset by peer +2020-03-13 13:30:22 *buffextras Tempesta!Tempesta@unaffiliated/tempesta joined +2020-03-13 13:30:22 *buffextras atomekk!~atomekk@unaffiliated/atomekk joined +2020-03-13 13:30:22 *buffextras carlf!~carlf@47.147.222.127 quit: Read error: Connection reset by peer +2020-03-13 13:30:22 *buffextras carlf!~carlf@47.147.222.127 joined +2020-03-13 13:30:22 *buffextras fookara!~user@37.57.118.55 joined +2020-03-13 13:30:22 *buffextras Silverleaf!~Silverlea@unaffiliated/goldenore joined +2020-03-13 13:30:22 *buffextras aw1!~aw1@unaffiliated/aw1 joined +2020-03-13 13:30:22 *buffextras Deathdealer!~Deathdeal@58.69.101.41 parted: +2020-03-13 13:30:22 *buffextras narispo!~narispo@37.166.239.78 quit: Ping timeout: 265 seconds +2020-03-13 13:30:22 *buffextras narispo!~narispo@37.172.116.70 joined +2020-03-13 13:30:22 *buffextras Logicwrath!~admin@d149-67-41-40.nap.wideopenwest.com joined +2020-03-13 13:30:22 *buffextras theroumag__!~theroumag@2602:306:cca0:9399:a4b3:3c3c:1087:ec43 quit: Ping timeout: 256 seconds +2020-03-13 13:30:22 *buffextras BestSteve!~weechat@gateway/tor-sasl/beststeve joined +2020-03-13 13:30:22 *buffextras realtime!~realtime@unaffiliated/realtime joined +2020-03-13 13:30:22 *buffextras freyrd!uid202114@gateway/web/irccloud.com/x-eaymnccoqouvwvxt joined +2020-03-13 13:30:22 *buffextras HerbY_NL2!~HerbY_NL2@2001:67c:2564:518:3cb5:89c:bd27:ee69 joined +2020-03-13 13:30:22 *buffextras realtime!~realtime@unaffiliated/realtime quit: Read error: Connection reset by peer +2020-03-13 13:30:22 *buffextras Hammering!~SlamHamme@68.81-167-7.customer.lyse.net joined +2020-03-13 13:30:22 *buffextras TikityTik!~TikityTik@unaffiliated/tikitytik quit: Ping timeout: 258 seconds +2020-03-13 13:30:22 *buffextras q-biq!~q-biq@unaffiiliated/q-biq quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras con3!~con3@165.255.107.147 joined +2020-03-13 13:30:22 *buffextras truthr!~truthr@unaffiliated/truthr joined +2020-03-13 13:30:22 *buffextras atoploph!~nibs@184.75.208.114 quit: Ping timeout: 260 seconds +2020-03-13 13:30:22 *buffextras Deacyde!~Deacyde@unaffiliated/deacyde quit: Ping timeout: 256 seconds +2020-03-13 13:30:22 *buffextras Deacyde!~Deacyde@unaffiliated/deacyde joined +2020-03-13 13:30:22 *buffextras lor4x!~lorax@exit-au2.corpvpn.redpiranha.net quit: Ping timeout: 258 seconds +2020-03-13 13:30:22 *buffextras sQVe!~sQVe@unaffiliated/sqve joined +2020-03-13 13:30:22 *buffextras black_ant!~antilope@unaffiliated/black-ant/x-1505394 joined +2020-03-13 13:30:22 *buffextras otisolsen71!~otisolsen@x50d248d8.cust.hiper.dk joined +2020-03-13 13:30:22 *buffextras Carolinamoon!~none@unaffiliated/none/x-4223007 quit: Ping timeout: 260 seconds +2020-03-13 13:30:22 *buffextras Neo-Andersson!~ac110001@h-2-225.A240.priv.bahnhof.se joined +2020-03-13 13:30:22 *buffextras otisolsen71!~otisolsen@x50d248d8.cust.hiper.dk quit: Ping timeout: 268 seconds +2020-03-13 13:30:22 *buffextras zro!~zro@wikimedia/zro quit: Ping timeout: 265 seconds +2020-03-13 13:30:22 *buffextras self!~elf@unaffiliated/elf joined +2020-03-13 13:30:22 *buffextras lor4x!~lorax@exit-au2.corpvpn.redpiranha.net joined +2020-03-13 13:30:22 *buffextras AquaL1te!~AquaL1te@unaffiliated/aqual1te joined +2020-03-13 13:30:22 *** Playback Complete. +2020-03-13 13:30:28 i Channel created on Thu, 20 Jul 2006 02:19:13 +2020-03-13 13:30:47 → az0re (~az0re@gateway/tor-sasl/az0re) has joined ##security +2020-03-13 13:31:17 → slash_ (~slash_@030-245-128-083.dynamic.caiway.nl) has joined ##security +2020-03-13 13:33:02 ← ijens (~ijens@unaffiliated/ijens) has quit (Remote host closed the connection) +2020-03-13 13:34:49 → orotalt (~orotalt@unaffiliated/f4cl3y) has joined ##security +2020-03-13 13:37:22 → wh1tef0x (~u0_a151@183.92.250.210) has joined ##security +2020-03-13 13:38:25 ← pandakekok9 (~pandakeko@110.54.236.28) has quit (Quit: leaving) +2020-03-13 13:38:38 ← wh1tef0x (~u0_a151@183.92.250.210) has left ##security +2020-03-13 13:39:40 ← Neo-Andersson (~ac110001@h-2-225.A240.priv.bahnhof.se) has quit (Quit: Bye, bye.) +2020-03-13 13:40:20 i irc: disconnected from server +2020-03-13 13:40:32 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##security +2020-03-13 13:40:32 i Topic for ##security is "Welcome to Computer, Network & Physical ##Security | Please stay on topic | Jobs: https://bit.ly/2YZtyoY | PasswordsCon live stream: https://www.youtube.com/watch?v=GK17BvaMAb4" +2020-03-13 13:40:32 i Topic set by Kryczek on Mon, 25 Nov 2019 15:49:05 +2020-03-13 13:40:32 i Channel ##security: 965 nicks (6 ops, 0 voices, 959 normals) +2020-03-13 13:40:32 *** Buffer Playback... +2020-03-13 13:40:32 *buffextras HerbY_NL2!~HerbY_NL2@2001:67c:2564:518:3cb5:89c:bd27:ee69 quit: Quit: Leaving +2020-03-13 13:40:32 *** Playback Complete. +2020-03-13 13:40:47 i Channel created on Thu, 20 Jul 2006 02:19:13 +2020-03-13 13:40:48 ← tankman (~tankman@adsl-192.176.58.195.tellas.gr) has quit (Quit: Leaving) +2020-03-13 13:41:00 → ArchitectZ (~Architect@135-23-100-130.cpe.pppoe.ca) has joined ##security +2020-03-13 13:41:40 → zro (~zro@wikimedia/zro) has joined ##security +2020-03-13 13:42:11 → Jackneill (~Jackneill@unaffiliated/jackneill) has joined ##security +2020-03-13 13:44:20 ← redstarcomrade (uid99592@gateway/web/irccloud.com/x-tqejeuyogubnubnd) has quit (Quit: Connection closed for inactivity) +2020-03-13 13:44:28 ← ArchitectZ (~Architect@135-23-100-130.cpe.pppoe.ca) has quit (Client Quit) +2020-03-13 13:44:54 → ArchitectZ (~Architect@135-23-100-130.cpe.pppoe.ca) has joined ##security +2020-03-13 13:47:21 ← bjelleklang (~c@wikipedia/Bjelleklang) has quit (Quit: Leaving) +2020-03-13 13:48:07 → z8z (~x@ac230029.ppp.asahi-net.or.jp) has joined ##security +2020-03-13 13:48:10 ← zro (~zro@wikimedia/zro) has quit (Ping timeout: 255 seconds) +2020-03-13 13:48:23 → makaveli7 (~makaveli7@unaffiliated/makaveli7) has joined ##security +2020-03-13 13:49:37 ← snimavat (~snimavat@219.91.191.174) has quit (Quit: snimavat) +2020-03-13 13:49:48 → _0xDEADBEEF (~hamidnaza@121-200-4-166.79c804.syd.nbn.aussiebb.net) has joined ##security +2020-03-13 13:50:29 ← ilikeyou (uid389024@gateway/web/irccloud.com/x-qlwrsnzfdicsdjzl) has quit (Quit: Connection closed for inactivity) +2020-03-13 13:53:27 ← fookara (~user@37.57.118.55) has quit (Remote host closed the connection) +2020-03-13 13:54:17 i irc: disconnected from server +2020-03-13 13:55:17 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##security +2020-03-13 13:55:17 i Topic for ##security is "Welcome to Computer, Network & Physical ##Security | Please stay on topic | Jobs: https://bit.ly/2YZtyoY | PasswordsCon live stream: https://www.youtube.com/watch?v=GK17BvaMAb4" +2020-03-13 13:55:17 i Topic set by Kryczek on Mon, 25 Nov 2019 15:49:05 +2020-03-13 13:55:17 i Channel ##security: 964 nicks (6 ops, 0 voices, 958 normals) +2020-03-13 13:56:04 i Channel created on Thu, 20 Jul 2006 02:19:13 +2020-03-13 13:56:04 i irc: disconnected from server +2020-03-13 13:56:16 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##security +2020-03-13 13:56:16 i Topic for ##security is "Welcome to Computer, Network & Physical ##Security | Please stay on topic | Jobs: https://bit.ly/2YZtyoY | PasswordsCon live stream: https://www.youtube.com/watch?v=GK17BvaMAb4" +2020-03-13 13:56:16 i Topic set by Kryczek on Mon, 25 Nov 2019 15:49:05 +2020-03-13 13:56:16 i Channel ##security: 964 nicks (6 ops, 0 voices, 958 normals) +2020-03-13 13:56:29 i Channel created on Thu, 20 Jul 2006 02:19:13 +2020-03-13 13:57:15 → horseface (~horseface@unaffiliated/horseface) has joined ##security +2020-03-13 13:59:31 ← daex (daex@gateway/vpn/protonvpn/daex) has quit (Ping timeout: 255 seconds) +2020-03-13 13:59:31 i irc: disconnected from server +2020-03-13 14:01:52 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined ##security +2020-03-13 14:01:52 i Topic for ##security is "Welcome to Computer, Network & Physical ##Security | Please stay on topic | Jobs: https://bit.ly/2YZtyoY | PasswordsCon live stream: https://www.youtube.com/watch?v=GK17BvaMAb4" +2020-03-13 14:01:52 i Topic set by Kryczek on Mon, 25 Nov 2019 15:49:05 +2020-03-13 14:01:52 i Channel ##security: 967 nicks (6 ops, 0 voices, 961 normals) +2020-03-13 14:01:52 *** Buffer Playback... +2020-03-13 14:01:52 *buffextras self!~elf@unaffiliated/elf quit: Ping timeout: 260 seconds +2020-03-13 14:01:52 *buffextras NetTerminalGene!~NetTermin@unaffiliated/dontknow joined +2020-03-13 14:01:52 *buffextras horseface_!~horseface@unaffiliated/horseface joined +2020-03-13 14:01:52 *buffextras daex!daex@gateway/vpn/protonvpn/daex joined +2020-03-13 14:01:52 *buffextras pupskuchen!~pupskuche@unaffiliated/pupskuchen joined +2020-03-13 14:01:52 *** Playback Complete. +2020-03-13 14:02:06 i Channel created on Thu, 20 Jul 2006 02:19:13 +2020-03-13 14:03:55 → amrx (~zbrute@unaffiliated/amrx) has joined ##security +2020-03-13 14:03:55 ← horseface (~horseface@unaffiliated/horseface) has quit (Read error: Connection reset by peer) +2020-03-13 14:03:55 i irc: disconnected from server diff --git a/weechat/.weechat/logs/irc.lunarbnc.#gentoo.weechatlog b/weechat/.weechat/logs/irc.lunarbnc.#gentoo.weechatlog new file mode 100644 index 0000000..064e113 --- /dev/null +++ b/weechat/.weechat/logs/irc.lunarbnc.#gentoo.weechatlog @@ -0,0 +1,140 @@ +2020-03-13 13:30:22 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #gentoo +2020-03-13 13:30:22 i Topic for #gentoo is "Gentoo Linux Support | Can't speak? /j #gentoo-ops | long pastes: wgetpaste or dpaste.com | Perl conflicts? https://goo.gl/7Miost | Be nice! https://goo.gl/gvnCii | Switch to profile 17.1? https://bit.ly/322fxVr | startx permission problems? emerge -1a xorg-server[suid] or use elogind, systemd, or a DM" +2020-03-13 13:30:22 i Topic set by grknight (~grknight@gentoo/developer/grknight) on Wed, 02 Oct 2019 01:53:47 +2020-03-13 13:30:22 i Channel #gentoo: 1042 nicks (3 ops, 53 voices, 986 normals) +2020-03-13 13:30:22 *** Buffer Playback... +2020-03-13 13:30:22 dkjii mic works on other computer jinx_ ? +2020-03-13 13:30:22 dkjii did u use the right device name with arecord +2020-03-13 13:30:22 dkjii ? +2020-03-13 13:30:22 jinx_ Ya, it worked fine on the last PC so I am not sure what I did.. +2020-03-13 13:30:22 jinx_ And not sure, how would I know? +2020-03-13 13:30:22 dkjii arecord -L +2020-03-13 13:30:22 dkjii list devices +2020-03-13 13:30:22 dkjii u might want to install pulseaudio too +2020-03-13 13:30:22 jinx_ OK to the first, no to the later. +2020-03-13 13:30:22 jinx_ Pulse always manages to brake things and pulls in a tone of config files for features I will never use. +2020-03-13 13:30:22 jinx_ Ya, I know about sound quality. I like ALSA's sounds. +2020-03-13 13:30:22 dkjii i dont like pulse that much either but it auto configures things for u and some apps require it +2020-03-13 13:30:22 dkjii also it has slick uis +2020-03-13 13:30:22 jinx_ Ya, I refuse to use those apps. +2020-03-13 13:30:22 dkjii firefox is notoriously bad at using alsa-only systems +2020-03-13 13:30:22 jinx_ Pulse is something I will avoide as long as I am able. +2020-03-13 13:30:22 jinx_ And oh ya, let me see something... +2020-03-13 13:30:22 dkjii pretty sure theres a unresolved bug report for a few years now about ff not respecting asoundrc +2020-03-13 13:30:22 earendil i use apulse as a shim to avoid using audiopus +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 joined +2020-03-13 13:30:22 jinx_ OK< closing FF didn't work. +2020-03-13 13:30:22 *buffextras tdr!tdr@gateway/vpn/privateinternetaccess/tdr joined +2020-03-13 13:30:22 *buffextras iambraindead!imbraindea@gateway/shell/xshellz/x-ijuerumtvuzcozyv joined +2020-03-13 13:30:22 *buffextras tdr!tdr@gateway/vpn/privateinternetaccess/tdr parted: +2020-03-13 13:30:22 *buffextras bowlofeggs!~bowlofegg@fedora/bowlofeggs quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 *buffextras bowlofeggs!~bowlofegg@flag.electronsweatshop.com joined +2020-03-13 13:30:22 *buffextras bowlofeggs!~bowlofegg@flag.electronsweatshop.com quit: Changing host +2020-03-13 13:30:22 *buffextras bowlofeggs!~bowlofegg@fedora/bowlofeggs joined +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras chewyDelicious!~nooblet@ip4d16fc3b.dynamic.kabel-deutschland.de joined +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 joined +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 joined +2020-03-13 13:30:22 jinx_ http://dpaste.com/0NYNDXK +2020-03-13 13:30:22 jinx_ http://dpaste.com/3GZNACP +2020-03-13 13:30:22 jinx_ What did I do wrong now? +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras Ycarus!~Ycarus@2001:bc8:47b0:1b0b::1 joined +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 joined +2020-03-13 13:30:22 *buffextras m0u!~m0u@unaffiliated/m0u joined +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 joined +2020-03-13 13:30:22 *buffextras acelogic2!~acelogic@129.3.149.126 joined +2020-03-13 13:30:22 *buffextras Petrus_Z!~Petrus.Z@unaffiliated/petrus-z/x-5059513 parted: +2020-03-13 13:30:22 *buffextras schplaf!~jcb_@salsa-01.enst-bretagne.fr joined +2020-03-13 13:30:22 *buffextras acelogic!~acelogic@129.3.148.200 quit: Ping timeout: 265 seconds +2020-03-13 13:30:22 *buffextras tuxracer!~mundi@51.154.102.17 joined +2020-03-13 13:30:22 *buffextras autopsy!~autopsy@fedora/autopsy joined +2020-03-13 13:30:22 *buffextras m0u!~m0u@unaffiliated/m0u quit: Ping timeout: 255 seconds +2020-03-13 13:30:22 jinx_ So? No ideas? +2020-03-13 13:30:22 *** Playback Complete. +2020-03-13 13:30:26 i Channel created on Sat, 15 Sep 2001 08:45:36 +2020-03-13 13:31:57 → glongo (uid17594@gateway/web/irccloud.com/x-vokcuwkfatxcxjno) has joined #gentoo +2020-03-13 13:32:07 → m0u (~m0u@unaffiliated/m0u) has joined #gentoo +2020-03-13 13:33:30 → gauge (~gauge@unaffiliated/gauge) has joined #gentoo +2020-03-13 13:33:36 ← gauge (~gauge@unaffiliated/gauge) has quit (Remote host closed the connection) +2020-03-13 13:34:40 hololeap Unknown PCM Snowball +2020-03-13 13:34:48 → orotalt (~orotalt@unaffiliated/f4cl3y) has joined #gentoo +2020-03-13 13:35:25 hololeap hmm. i'm not very good with ALSA actually... +2020-03-13 13:36:34 jinx_ Hhhmmm... Maybe if I do this... +2020-03-13 13:37:21 jinx_ It will take a little while. ^^; +2020-03-13 13:38:21 → oc2k1_ (~oc2k1@62-193-39-77.as16211.net) has joined #gentoo +2020-03-13 13:39:24 → feriman (~feriman@176.104.191.183) has joined #gentoo +2020-03-13 13:40:20 i irc: disconnected from server +2020-03-13 13:40:32 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #gentoo +2020-03-13 13:40:32 i Topic for #gentoo is "Gentoo Linux Support | Can't speak? /j #gentoo-ops | long pastes: wgetpaste or dpaste.com | Perl conflicts? https://goo.gl/7Miost | Be nice! https://goo.gl/gvnCii | Switch to profile 17.1? https://bit.ly/322fxVr | startx permission problems? emerge -1a xorg-server[suid] or use elogind, systemd, or a DM" +2020-03-13 13:40:32 i Topic set by grknight (~grknight@gentoo/developer/grknight) on Wed, 02 Oct 2019 01:53:47 +2020-03-13 13:40:32 i Channel #gentoo: 1046 nicks (3 ops, 53 voices, 990 normals) +2020-03-13 13:40:32 *** Buffer Playback... +2020-03-13 13:40:32 *buffextras acelogic2!~acelogic@129.3.149.126 quit: Ping timeout: 268 seconds +2020-03-13 13:40:32 hololeap jinx_: try --device=front:CARD=Snowball +2020-03-13 13:40:32 *** Playback Complete. +2020-03-13 13:40:44 i Channel created on Sat, 15 Sep 2001 08:45:36 +2020-03-13 13:40:48 ← _CrustY (~crusty@aftr-62-216-209-36.dynamic.mnet-online.de) has quit (Ping timeout: 268 seconds) +2020-03-13 13:42:23 ← jvesely (~jvesely@2601:18a:c100:b820:da9c:67ff:fe43:9d5b) has quit (Quit: jvesely) +2020-03-13 13:43:34 → jkroon (~jkroon@41.114.52.40) has joined #gentoo +2020-03-13 13:43:44 jinx_ Ah, thanks. +2020-03-13 13:44:33 jinx_ It did. +2020-03-13 13:44:38 jinx_ It did work. +2020-03-13 13:44:40 jinx_ So it's Telegram itself. +2020-03-13 13:44:44 jinx_ Good to know./ +2020-03-13 13:44:55 dkjii why front? +2020-03-13 13:45:06 dkjii im confused about also naming schemes +2020-03-13 13:45:11 dkjii nah its not telegram +2020-03-13 13:45:27 dkjii if it didnt work with arecord on its own, it means the default recording device is set wrong +2020-03-13 13:45:32 jinx_ No it is, Telegram did not have that option when selecting input. +2020-03-13 13:45:33 dkjii i mean maybe it is +2020-03-13 13:45:35 hololeap i just guessed. it seemed like the most likely one +2020-03-13 13:45:50 dkjii oh u can select device with telegram? +2020-03-13 13:45:59 jinx_ I kind of understand, but not that much. +2020-03-13 13:46:14 jinx_ Ya, under advanced settings. +2020-03-13 13:46:27 dkjii ah fair, if its not detecting it thats weird +2020-03-13 13:47:09 → gauge (~gauge@unaffiliated/gauge) has joined #gentoo +2020-03-13 13:47:12 ← gauge (~gauge@unaffiliated/gauge) has quit (Read error: Connection reset by peer) +2020-03-13 13:48:23 → makaveli7 (~makaveli7@unaffiliated/makaveli7) has joined #gentoo +2020-03-13 13:52:35 jinx_ Ah! All fixxed. +2020-03-13 13:52:36 ← Cyb3rN4ut (~psybernau@37.142.174.250) has quit (Read error: Connection reset by peer) +2020-03-13 13:53:17 jinx_ Added this if you wanted to know: http://dpaste.com/31ZXC6W +2020-03-13 13:53:18 jinx_ That made it work. +2020-03-13 13:53:41 jinx_ Replace "Snowball" with your mic's ALSA name if you need to do the same. +2020-03-13 13:53:49 jinx_ Anyway, see you all. +2020-03-13 13:53:53 ← Necktwi (~necktwi@157.48.89.237) has quit (Read error: Connection reset by peer) +2020-03-13 13:53:53 → waebbl (~waebbl@2001:a61:3a3b:9e01:2169:e4b5:5c51:889) has joined #gentoo +2020-03-13 13:54:04 ← jinx_ (~jinx@172.58.142.160) has quit (Quit: leaving) +2020-03-13 13:54:17 i irc: disconnected from server +2020-03-13 13:55:03 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #gentoo +2020-03-13 13:55:03 i Topic for #gentoo is "Gentoo Linux Support | Can't speak? /j #gentoo-ops | long pastes: wgetpaste or dpaste.com | Perl conflicts? https://goo.gl/7Miost | Be nice! https://goo.gl/gvnCii | Switch to profile 17.1? https://bit.ly/322fxVr | startx permission problems? emerge -1a xorg-server[suid] or use elogind, systemd, or a DM" +2020-03-13 13:55:03 i Topic set by grknight (~grknight@gentoo/developer/grknight) on Wed, 02 Oct 2019 01:53:47 +2020-03-13 13:55:17 i Channel #gentoo: 1043 nicks (3 ops, 53 voices, 987 normals) +2020-03-13 13:55:17 *** Buffer Playback... +2020-03-13 13:55:17 *buffextras PartierSP!~PartierSP@dhcp-cc-b2-55-d1-46-39.cpe.wightman.ca quit: Quit: O'Brian, beam me up! +2020-03-13 13:55:17 *** Playback Complete. +2020-03-13 13:56:04 i Channel created on Sat, 15 Sep 2001 08:45:36 +2020-03-13 13:56:04 i irc: disconnected from server +2020-03-13 13:56:16 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #gentoo +2020-03-13 13:56:16 i Topic for #gentoo is "Gentoo Linux Support | Can't speak? /j #gentoo-ops | long pastes: wgetpaste or dpaste.com | Perl conflicts? https://goo.gl/7Miost | Be nice! https://goo.gl/gvnCii | Switch to profile 17.1? https://bit.ly/322fxVr | startx permission problems? emerge -1a xorg-server[suid] or use elogind, systemd, or a DM" +2020-03-13 13:56:16 i Topic set by grknight (~grknight@gentoo/developer/grknight) on Wed, 02 Oct 2019 01:53:47 +2020-03-13 13:56:16 i Channel #gentoo: 1043 nicks (3 ops, 53 voices, 987 normals) +2020-03-13 13:56:26 ← m0u (~m0u@unaffiliated/m0u) has quit (Ping timeout: 260 seconds) +2020-03-13 13:56:26 → hijacker (~nikolay@149.235.255.3) has joined #gentoo +2020-03-13 13:56:27 i Channel created on Sat, 15 Sep 2001 08:45:36 +2020-03-13 13:58:07 ← jkroon (~jkroon@41.114.52.40) has quit (Read error: Connection reset by peer) +2020-03-13 13:59:31 → Necktwi (~necktwi@157.48.89.237) has joined #gentoo +2020-03-13 13:59:31 i irc: disconnected from server +2020-03-13 14:01:52 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #gentoo +2020-03-13 14:01:52 i Topic for #gentoo is "Gentoo Linux Support | Can't speak? /j #gentoo-ops | long pastes: wgetpaste or dpaste.com | Perl conflicts? https://goo.gl/7Miost | Be nice! https://goo.gl/gvnCii | Switch to profile 17.1? https://bit.ly/322fxVr | startx permission problems? emerge -1a xorg-server[suid] or use elogind, systemd, or a DM" +2020-03-13 14:01:52 i Topic set by grknight (~grknight@gentoo/developer/grknight) on Wed, 02 Oct 2019 01:53:47 +2020-03-13 14:01:52 i Channel #gentoo: 1045 nicks (3 ops, 53 voices, 989 normals) +2020-03-13 14:01:52 *** Buffer Playback... +2020-03-13 14:01:52 *buffextras _CrustY!~crusty@aftr-62-216-209-36.dynamic.mnet-online.de joined +2020-03-13 14:01:52 *buffextras trens!~trens@cpe-184-54-204-115.swo.res.rr.com joined +2020-03-13 14:01:52 *** Playback Complete. +2020-03-13 14:02:05 i Channel created on Sat, 15 Sep 2001 08:45:36 +2020-03-13 14:03:38 ← kalamaki (~kalamaki@tiamat.uom.gr) has quit (Quit: leaving) +2020-03-13 14:03:55 i irc: disconnected from server diff --git a/weechat/.weechat/logs/irc.lunarbnc.#lobsters.weechatlog b/weechat/.weechat/logs/irc.lunarbnc.#lobsters.weechatlog new file mode 100644 index 0000000..207c59a --- /dev/null +++ b/weechat/.weechat/logs/irc.lunarbnc.#lobsters.weechatlog @@ -0,0 +1,91 @@ +2020-03-13 13:30:22 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #lobsters +2020-03-13 13:30:22 i Topic for #lobsters is "lobste.rs is a technology-focused link aggregation site. For an invite, see https://lobste.rs/chat and tell us what you'd like to contribute. Join #lobsters-feed for story links without chat. Do not publish channel logs without participants' permission. Mockturtle is a bot which posts stories" +2020-03-13 13:30:22 i Topic set by c355e3b (sid212298@lobsters/developer/c355e3b) on Mon, 27 Jan 2020 18:25:20 +2020-03-13 13:30:22 i Channel #lobsters: 480 nicks (0 ops, 0 voices, 480 normals) +2020-03-13 13:30:22 *** Buffer Playback... +2020-03-13 13:30:22 *buffextras glesica!~glesica@68-187-65-209.dhcp.ftwo.tx.charter.com quit: Ping timeout: 265 seconds +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com joined +2020-03-13 13:30:22 *buffextras glesica!~glesica@68-187-65-209.dhcp.ftwo.tx.charter.com joined +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com quit: Ping timeout: 258 seconds +2020-03-13 13:30:22 *buffextras pond-pet!~pond-pet@2605:e000:1300:5141:197a:ea6c:3d05:a6c4 joined +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 260 seconds +2020-03-13 13:30:22 *buffextras tg-z!2d3011e4@cpe-45-48-17-228.socal.res.rr.com joined +2020-03-13 13:30:22 tg-z hey anyone wanna send me an invite? heres my github https://github.com/tg-z and my website https://pond.pet for verification +2020-03-13 13:30:22 mockturtle [ tg-z (tg-z) · GitHub ] - github.com +2020-03-13 13:30:22 mockturtle [ home ] - pond.pet +2020-03-13 13:30:22 *buffextras Jammy_Work!~Jamster_W@ip68-229-145-148.lf.br.cox.net quit: Ping timeout: 260 seconds +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras P1ersson!~P1ersson@h-252-41.A165.priv.bahnhof.se quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 *buffextras Jammy_Work!~Jamster_W@ip68-229-145-148.lf.br.cox.net joined +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 *buffextras atw`!~user@c-73-22-1-166.hsd1.il.comcast.net quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com joined +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 256 seconds +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com quit: Ping timeout: 255 seconds +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 240 seconds +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras jmw!~jmw@unaffiliated/jmw joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com joined +2020-03-13 13:30:22 *buffextras jmw!~jmw@unaffiliated/jmw quit: Client Quit +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 255 seconds +2020-03-13 13:30:22 *buffextras jmw!~jmw@unaffiliated/jmw joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com quit: Ping timeout: 256 seconds +2020-03-13 13:30:22 *buffextras P1ersson!~P1ersson@Kenta.biotech.kth.se joined +2020-03-13 13:30:22 *buffextras znedw!~zachary12@mail.znedw.com quit: Quit: ZNC 1.7.4 - https://znc.in +2020-03-13 13:30:22 *buffextras znedw!~zachary12@mail.znedw.com joined +2020-03-13 13:30:22 *buffextras dmc!~dmc@archlinux/trusteduser/polyzen quit: Remote host closed the connection +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras jmw!~jmw@unaffiliated/jmw quit: Quit: jmw +2020-03-13 13:30:22 *buffextras jmw!~jmw@unaffiliated/jmw joined +2020-03-13 13:30:22 *buffextras jmw!~jmw@unaffiliated/jmw quit: Client Quit +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 255 seconds +2020-03-13 13:30:22 *buffextras VicMackey!~vicmackey@207.43.222.87.dynamic.jazztel.es joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com joined +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 joined +2020-03-13 13:30:22 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com quit: Ping timeout: 260 seconds +2020-03-13 13:30:22 *buffextras creature__!~alex@206.253.136.74 quit: Ping timeout: 268 seconds +2020-03-13 13:30:22 *** Playback Complete. +2020-03-13 13:30:24 i Channel created on Tue, 15 Sep 2015 19:18:34 +2020-03-13 13:33:55 ← csauve (~csauve@node-1w7jr9srv6ifapnkagcn5nrj5.ipv6.telus.net) has quit (Quit: WeeChat 2.7) +2020-03-13 13:40:20 → rusk (~user@89.101.121.89) has joined #lobsters +2020-03-13 13:40:20 i irc: disconnected from server +2020-03-13 13:40:32 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #lobsters +2020-03-13 13:40:32 i Topic for #lobsters is "lobste.rs is a technology-focused link aggregation site. For an invite, see https://lobste.rs/chat and tell us what you'd like to contribute. Join #lobsters-feed for story links without chat. Do not publish channel logs without participants' permission. Mockturtle is a bot which posts stories" +2020-03-13 13:40:32 i Topic set by c355e3b (sid212298@lobsters/developer/c355e3b) on Mon, 27 Jan 2020 18:25:20 +2020-03-13 13:40:32 i Channel #lobsters: 480 nicks (0 ops, 0 voices, 480 normals) +2020-03-13 13:40:42 i Channel created on Tue, 15 Sep 2015 19:18:34 +2020-03-13 13:44:05 → creature__ (~alex@206.253.136.74) has joined #lobsters +2020-03-13 13:46:36 → varjag (~user@122.62-97-226.bkkb.no) has joined #lobsters +2020-03-13 13:48:48 ← creature__ (~alex@206.253.136.74) has quit (Ping timeout: 258 seconds) +2020-03-13 13:54:17 i irc: disconnected from server +2020-03-13 13:55:03 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #lobsters +2020-03-13 13:55:03 i Topic for #lobsters is "lobste.rs is a technology-focused link aggregation site. For an invite, see https://lobste.rs/chat and tell us what you'd like to contribute. Join #lobsters-feed for story links without chat. Do not publish channel logs without participants' permission. Mockturtle is a bot which posts stories" +2020-03-13 13:55:03 i Topic set by c355e3b (sid212298@lobsters/developer/c355e3b) on Mon, 27 Jan 2020 18:25:20 +2020-03-13 13:55:03 i Channel #lobsters: 481 nicks (0 ops, 0 voices, 481 normals) +2020-03-13 13:56:04 i Channel created on Tue, 15 Sep 2015 19:18:34 +2020-03-13 13:56:04 i irc: disconnected from server +2020-03-13 13:56:16 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #lobsters +2020-03-13 13:56:16 i Topic for #lobsters is "lobste.rs is a technology-focused link aggregation site. For an invite, see https://lobste.rs/chat and tell us what you'd like to contribute. Join #lobsters-feed for story links without chat. Do not publish channel logs without participants' permission. Mockturtle is a bot which posts stories" +2020-03-13 13:56:16 i Topic set by c355e3b (sid212298@lobsters/developer/c355e3b) on Mon, 27 Jan 2020 18:25:20 +2020-03-13 13:56:16 i Channel #lobsters: 481 nicks (0 ops, 0 voices, 481 normals) +2020-03-13 13:56:16 → pt1 (~pt1@31-208-142-54.cust.bredband2.com) has joined #lobsters +2020-03-13 13:56:25 i Channel created on Tue, 15 Sep 2015 19:18:34 +2020-03-13 13:59:31 i irc: disconnected from server +2020-03-13 14:01:52 → fd0e (~anon6405@anon6405.powered.by.lunarbnc.net) has joined #lobsters +2020-03-13 14:01:52 i Topic for #lobsters is "lobste.rs is a technology-focused link aggregation site. For an invite, see https://lobste.rs/chat and tell us what you'd like to contribute. Join #lobsters-feed for story links without chat. Do not publish channel logs without participants' permission. Mockturtle is a bot which posts stories" +2020-03-13 14:01:52 i Topic set by c355e3b (sid212298@lobsters/developer/c355e3b) on Mon, 27 Jan 2020 18:25:20 +2020-03-13 14:01:52 i Channel #lobsters: 481 nicks (0 ops, 0 voices, 481 normals) +2020-03-13 14:01:52 *** Buffer Playback... +2020-03-13 14:01:52 *buffextras pt1!~pt1@31-208-142-54.cust.bredband2.com quit: Ping timeout: 256 seconds +2020-03-13 14:01:52 *** Playback Complete. +2020-03-13 14:02:02 i Channel created on Tue, 15 Sep 2015 19:18:34 +2020-03-13 14:03:55 i irc: disconnected from server diff --git a/weechat/.weechat/logs/irc.server.lunarbnc.weechatlog b/weechat/.weechat/logs/irc.server.lunarbnc.weechatlog new file mode 100644 index 0000000..21baca6 --- /dev/null +++ b/weechat/.weechat/logs/irc.server.lunarbnc.weechatlog @@ -0,0 +1,386 @@ +2020-03-13 13:30:20 i irc: connecting to server de.lunarbnc.net/8080 (SSL)... +2020-03-13 13:30:21 i gnutls: connected using 2048-bit Diffie-Hellman shared secret exchange +2020-03-13 13:30:21 i gnutls: receiving 2 certificates +2020-03-13 13:30:21 i - certificate[1] info: +2020-03-13 13:30:21 i - subject `CN=lunarbnc.net', issuer `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', serial 0x049326d58995c88a81f5c6a128c2548a3e87, RSA key 2048 bits, signed using RSA-SHA256, activated `2020-03-01 22:04:44 UTC', expires `2020-05-30 22:04:44 UTC', pin-sha256="oxFlbDpMz4NezfuuHqrv4I/gkkReZwNigCxKwdBPUEg=" +2020-03-13 13:30:21 i - certificate[2] info: +2020-03-13 13:30:21 i - subject `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', issuer `CN=DST Root CA X3,O=Digital Signature Trust Co.', serial 0x0a0141420000015385736a0b85eca708, RSA key 2048 bits, signed using RSA-SHA256, activated `2016-03-17 16:40:46 UTC', expires `2021-03-17 16:40:46 UTC', pin-sha256="YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=" +2020-03-13 13:30:21 i gnutls: peer's certificate is trusted +2020-03-13 13:30:21 i irc: connected to de.lunarbnc.net/8080 (136.243.35.58) +2020-03-13 13:30:21 i Welcome to the freenode Internet Relay Chat Network fd0e +2020-03-13 13:30:21 i Your host is wilhelm.freenode.net[2001:41d0:401:3100::5136/6667], running version ircd-seven-1.1.9 +2020-03-13 13:30:21 i This server was created Tue Feb 4 2020 at 21:22:25 UTC +2020-03-13 13:30:21 i wilhelm.freenode.net ircd-seven-1.1.9 DOQRSZaghilopsuwz CFILMPQSbcefgijklmnopqrstuvz bkloveqjfI +2020-03-13 13:30:21 i CHANTYPES=#~ EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstuz CHANLIMIT=#:120 PREFIX=(ov)@+ MAXLIST=bqeI:100 MODES=4 NETWORK=freenode STATUSMSG=@+ CALLERID=g CASEMAPPING=rfc1459 :are supported by this server +2020-03-13 13:30:21 i CHARSET=ascii NICKLEN=16 CHANNELLEN=50 TOPICLEN=390 DEAF=D FNC TARGMAX=NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:4,NOTICE:4,ACCEPT:,MONITOR: EXTBAN=$,ajrxz CLIENTVER=3.0 CPRIVMSG CNOTICE SAFELIST :are supported by this server +2020-03-13 13:30:21 i ELIST=CTU WHOX ETRACE KNOCK :are supported by this server +2020-03-13 13:30:21 i There are 96 users and 87579 invisible on 29 servers +2020-03-13 13:30:21 i 34 :IRC Operators online +2020-03-13 13:30:21 i 43813 :channels formed +2020-03-13 13:30:21 i I have 6548 clients and 1 servers +2020-03-13 13:30:21 i 6548 7511 :Current local users 6548, max 7511 +2020-03-13 13:30:21 i 87675 87796 :Current global users 87675, max 87796 +2020-03-13 13:30:21 i Highest connection count: 7512 (7511 clients) (217430 connections received) +2020-03-13 13:30:21 i - wilhelm.freenode.net Message of the Day - +2020-03-13 13:30:21 i - Welcome to wilhelm.freenode.net in Strasbourg, France. +2020-03-13 13:30:21 i - Thanks to http://digitaltreemedia.co.uk/ for sponsoring +2020-03-13 13:30:21 i - this server! +2020-03-13 13:30:21 i - +2020-03-13 13:30:21 i - Welcome to freenode - supporting the free and open source +2020-03-13 13:30:21 i - software communities since 1998. +2020-03-13 13:30:21 i - +2020-03-13 13:30:21 i - By connecting to freenode you indicate that you have read and +2020-03-13 13:30:21 i - accept our policies and guidelines as set out on https://freenode.net +2020-03-13 13:30:21 i - +2020-03-13 13:30:21 i - In the event that you observe behaviour that contravenes our policies, +2020-03-13 13:30:21 i - please notify a volunteer staff member via private message, or send us an +2020-03-13 13:30:21 i - e-mail to complaints@freenode.net -- we will do our best to address the +2020-03-13 13:30:21 i - situation within a reasonable period of time, and we may request further +2020-03-13 13:30:21 i - information or, as appropriate, involve other parties such as channel operators +2020-03-13 13:30:21 i - Group Contacts representing an on-topic group. +2020-03-13 13:30:21 i - +2020-03-13 13:30:21 i - freenode runs an open proxy scanner. +2020-03-13 13:30:21 i - +2020-03-13 13:30:21 i - If you are looking for assistance, you may be able to find a list of +2020-03-13 13:30:21 i - volunteer staff on '/stats p' (shows only on-call staff) or by joining +2020-03-13 13:30:21 i - #freenode and using the '/who freenode/staff/*' command. You may message +2020-03-13 13:30:21 i - any of us at any time. Please note that freenode predominantly provides +2020-03-13 13:30:21 i - assistance via private message, and while we have a network channel the +2020-03-13 13:30:21 i - primary venue for support requests is via private message to a member +2020-03-13 13:30:21 i - of the volunteer staff team. +2020-03-13 13:30:21 i - +2020-03-13 13:30:21 i - From time to time, volunteer staff may send server-wide notices relating to +2020-03-13 13:30:21 i - the project, or the communities that we host. The majority of such notices +2020-03-13 13:30:21 i - will be sent as wallops, and you can '/mode +w' to ensure that you +2020-03-13 13:30:22 i - do not miss them. Important messages relating to the freenode project, including +2020-03-13 13:30:22 i - notices of upcoming maintenance and other scheduled downtime will be issued as +2020-03-13 13:30:22 i - global notices. +2020-03-13 13:30:22 i - +2020-03-13 13:30:22 i - Representing an on-topic project? Don't forget to register, more information +2020-03-13 13:30:22 i - can be found on the https://freenode.net website under "Group Registration". +2020-03-13 13:30:22 i - +2020-03-13 13:30:22 i - Thank you also to our server sponsors for the sustained support in keeping the +2020-03-13 13:30:22 i - network going for close to two decades. +2020-03-13 13:30:22 i - +2020-03-13 13:30:22 i - Thank you for using freenode! +2020-03-13 13:30:22 i End of /MOTD command. +2020-03-13 13:30:22 i User mode [+i] by fd0e +2020-03-13 13:30:22 i *status (znc@znc.in): Welcome to LunarBNC's free ZNC service. × If you like the service and want to support the quality of it, please donate: https://lunarbnc.net/donate × Thank you, The LunarBNC Administrators +2020-03-13 13:40:20 ! Closing link: Timeout +2020-03-13 13:40:20 ! irc: reading data on socket: error 0 (connection closed by peer) +2020-03-13 13:40:20 i irc: disconnecting from server... +2020-03-13 13:40:20 i irc: disconnected from server +2020-03-13 13:40:20 i irc: reconnecting to server in 10 seconds +2020-03-13 13:40:30 i irc: reconnecting to server... +2020-03-13 13:40:30 i irc: connecting to server de.lunarbnc.net/8080 (SSL)... +2020-03-13 13:40:31 i gnutls: connected using 2048-bit Diffie-Hellman shared secret exchange +2020-03-13 13:40:31 i gnutls: receiving 2 certificates +2020-03-13 13:40:31 i - certificate[1] info: +2020-03-13 13:40:31 i - subject `CN=lunarbnc.net', issuer `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', serial 0x049326d58995c88a81f5c6a128c2548a3e87, RSA key 2048 bits, signed using RSA-SHA256, activated `2020-03-01 22:04:44 UTC', expires `2020-05-30 22:04:44 UTC', pin-sha256="oxFlbDpMz4NezfuuHqrv4I/gkkReZwNigCxKwdBPUEg=" +2020-03-13 13:40:31 i - certificate[2] info: +2020-03-13 13:40:31 i - subject `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', issuer `CN=DST Root CA X3,O=Digital Signature Trust Co.', serial 0x0a0141420000015385736a0b85eca708, RSA key 2048 bits, signed using RSA-SHA256, activated `2016-03-17 16:40:46 UTC', expires `2021-03-17 16:40:46 UTC', pin-sha256="YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=" +2020-03-13 13:40:31 i gnutls: peer's certificate is trusted +2020-03-13 13:40:31 i irc: connected to de.lunarbnc.net/8080 (136.243.35.58) +2020-03-13 13:40:32 i Welcome to the freenode Internet Relay Chat Network fd0e +2020-03-13 13:40:32 i Your host is wilhelm.freenode.net[2001:41d0:401:3100::5136/6667], running version ircd-seven-1.1.9 +2020-03-13 13:40:32 i This server was created Tue Feb 4 2020 at 21:22:25 UTC +2020-03-13 13:40:32 i wilhelm.freenode.net ircd-seven-1.1.9 DOQRSZaghilopsuwz CFILMPQSbcefgijklmnopqrstuvz bkloveqjfI +2020-03-13 13:40:32 i CHANTYPES=#~ EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstuz CHANLIMIT=#:120 PREFIX=(ov)@+ MAXLIST=bqeI:100 MODES=4 NETWORK=freenode STATUSMSG=@+ CALLERID=g CASEMAPPING=rfc1459 :are supported by this server +2020-03-13 13:40:32 i CHARSET=ascii NICKLEN=16 CHANNELLEN=50 TOPICLEN=390 DEAF=D FNC TARGMAX=NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:4,NOTICE:4,ACCEPT:,MONITOR: EXTBAN=$,ajrxz CLIENTVER=3.0 CPRIVMSG CNOTICE SAFELIST :are supported by this server +2020-03-13 13:40:32 i ELIST=CTU WHOX ETRACE KNOCK :are supported by this server +2020-03-13 13:40:32 i There are 96 users and 87579 invisible on 29 servers +2020-03-13 13:40:32 i 34 :IRC Operators online +2020-03-13 13:40:32 i 43813 :channels formed +2020-03-13 13:40:32 i I have 6548 clients and 1 servers +2020-03-13 13:40:32 i 6548 7511 :Current local users 6548, max 7511 +2020-03-13 13:40:32 i 87675 87796 :Current global users 87675, max 87796 +2020-03-13 13:40:32 i Highest connection count: 7512 (7511 clients) (217430 connections received) +2020-03-13 13:40:32 i - wilhelm.freenode.net Message of the Day - +2020-03-13 13:40:32 i - Welcome to wilhelm.freenode.net in Strasbourg, France. +2020-03-13 13:40:32 i - Thanks to http://digitaltreemedia.co.uk/ for sponsoring +2020-03-13 13:40:32 i - this server! +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - Welcome to freenode - supporting the free and open source +2020-03-13 13:40:32 i - software communities since 1998. +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - By connecting to freenode you indicate that you have read and +2020-03-13 13:40:32 i - accept our policies and guidelines as set out on https://freenode.net +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - In the event that you observe behaviour that contravenes our policies, +2020-03-13 13:40:32 i - please notify a volunteer staff member via private message, or send us an +2020-03-13 13:40:32 i - e-mail to complaints@freenode.net -- we will do our best to address the +2020-03-13 13:40:32 i - situation within a reasonable period of time, and we may request further +2020-03-13 13:40:32 i - information or, as appropriate, involve other parties such as channel operators +2020-03-13 13:40:32 i - Group Contacts representing an on-topic group. +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - freenode runs an open proxy scanner. +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - If you are looking for assistance, you may be able to find a list of +2020-03-13 13:40:32 i - volunteer staff on '/stats p' (shows only on-call staff) or by joining +2020-03-13 13:40:32 i - #freenode and using the '/who freenode/staff/*' command. You may message +2020-03-13 13:40:32 i - any of us at any time. Please note that freenode predominantly provides +2020-03-13 13:40:32 i - assistance via private message, and while we have a network channel the +2020-03-13 13:40:32 i - primary venue for support requests is via private message to a member +2020-03-13 13:40:32 i - of the volunteer staff team. +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - From time to time, volunteer staff may send server-wide notices relating to +2020-03-13 13:40:32 i - the project, or the communities that we host. The majority of such notices +2020-03-13 13:40:32 i - will be sent as wallops, and you can '/mode +w' to ensure that you +2020-03-13 13:40:32 i - do not miss them. Important messages relating to the freenode project, including +2020-03-13 13:40:32 i - notices of upcoming maintenance and other scheduled downtime will be issued as +2020-03-13 13:40:32 i - global notices. +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - Representing an on-topic project? Don't forget to register, more information +2020-03-13 13:40:32 i - can be found on the https://freenode.net website under "Group Registration". +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - Thank you also to our server sponsors for the sustained support in keeping the +2020-03-13 13:40:32 i - network going for close to two decades. +2020-03-13 13:40:32 i - +2020-03-13 13:40:32 i - Thank you for using freenode! +2020-03-13 13:40:32 i End of /MOTD command. +2020-03-13 13:40:32 i User mode [+i] by fd0e +2020-03-13 13:40:32 i *status (znc@znc.in): Welcome to LunarBNC's free ZNC service. × If you like the service and want to support the quality of it, please donate: https://lunarbnc.net/donate × Thank you, The LunarBNC Administrators +2020-03-13 13:50:37 i [icyphox] (~icyphox@139.59.93.193): Anirudh +2020-03-13 13:50:37 i [icyphox] #lobsters +2020-03-13 13:50:37 i [icyphox] niven.freenode.net (London, UK, EU) +2020-03-13 13:50:37 i [icyphox] is using a secure connection +2020-03-13 13:50:37 i [icyphox] is logged in as Icyphox +2020-03-13 13:50:37 i [icyphox] End of /WHOIS list. +2020-03-13 13:54:16 ! Closing link: Timeout +2020-03-13 13:54:16 ! irc: reading data on socket: error 0 (connection closed by peer) +2020-03-13 13:54:16 i irc: disconnecting from server... +2020-03-13 13:54:17 i irc: disconnected from server +2020-03-13 13:54:17 i irc: reconnecting to server in 10 seconds +2020-03-13 13:54:27 i irc: reconnecting to server... +2020-03-13 13:54:27 i irc: connecting to server de.lunarbnc.net/8080 (SSL)... +2020-03-13 13:54:35 i gnutls: connected using 2048-bit Diffie-Hellman shared secret exchange +2020-03-13 13:54:35 i gnutls: receiving 2 certificates +2020-03-13 13:54:35 i - certificate[1] info: +2020-03-13 13:54:35 i - subject `CN=lunarbnc.net', issuer `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', serial 0x049326d58995c88a81f5c6a128c2548a3e87, RSA key 2048 bits, signed using RSA-SHA256, activated `2020-03-01 22:04:44 UTC', expires `2020-05-30 22:04:44 UTC', pin-sha256="oxFlbDpMz4NezfuuHqrv4I/gkkReZwNigCxKwdBPUEg=" +2020-03-13 13:54:35 i - certificate[2] info: +2020-03-13 13:54:35 i - subject `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', issuer `CN=DST Root CA X3,O=Digital Signature Trust Co.', serial 0x0a0141420000015385736a0b85eca708, RSA key 2048 bits, signed using RSA-SHA256, activated `2016-03-17 16:40:46 UTC', expires `2021-03-17 16:40:46 UTC', pin-sha256="YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=" +2020-03-13 13:54:35 i gnutls: peer's certificate is trusted +2020-03-13 13:54:35 i irc: connected to de.lunarbnc.net/8080 (136.243.35.58) +2020-03-13 13:54:46 i Welcome to the freenode Internet Relay Chat Network fd0e +2020-03-13 13:54:46 i Your host is wilhelm.freenode.net[2001:41d0:401:3100::5136/6667], running version ircd-seven-1.1.9 +2020-03-13 13:54:46 i This server was created Tue Feb 4 2020 at 21:22:25 UTC +2020-03-13 13:54:46 i wilhelm.freenode.net ircd-seven-1.1.9 DOQRSZaghilopsuwz CFILMPQSbcefgijklmnopqrstuvz bkloveqjfI +2020-03-13 13:54:46 i CHANTYPES=#~ EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstuz CHANLIMIT=#:120 PREFIX=(ov)@+ MAXLIST=bqeI:100 MODES=4 NETWORK=freenode STATUSMSG=@+ CALLERID=g CASEMAPPING=rfc1459 :are supported by this server +2020-03-13 13:54:46 i CHARSET=ascii NICKLEN=16 CHANNELLEN=50 TOPICLEN=390 DEAF=D FNC TARGMAX=NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:4,NOTICE:4,ACCEPT:,MONITOR: EXTBAN=$,ajrxz CLIENTVER=3.0 CPRIVMSG CNOTICE SAFELIST :are supported by this server +2020-03-13 13:54:46 i ELIST=CTU WHOX ETRACE KNOCK :are supported by this server +2020-03-13 13:54:46 i There are 96 users and 87579 invisible on 29 servers +2020-03-13 13:54:46 i 34 :IRC Operators online +2020-03-13 13:54:46 i 43813 :channels formed +2020-03-13 13:54:46 i I have 6548 clients and 1 servers +2020-03-13 13:54:46 i 6548 7511 :Current local users 6548, max 7511 +2020-03-13 13:54:46 i 87675 87796 :Current global users 87675, max 87796 +2020-03-13 13:54:46 i Highest connection count: 7512 (7511 clients) (217430 connections received) +2020-03-13 13:54:46 i - wilhelm.freenode.net Message of the Day - +2020-03-13 13:54:46 i - Welcome to wilhelm.freenode.net in Strasbourg, France. +2020-03-13 13:54:46 i - Thanks to http://digitaltreemedia.co.uk/ for sponsoring +2020-03-13 13:54:46 i - this server! +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - Welcome to freenode - supporting the free and open source +2020-03-13 13:54:46 i - software communities since 1998. +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - By connecting to freenode you indicate that you have read and +2020-03-13 13:54:46 i - accept our policies and guidelines as set out on https://freenode.net +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - In the event that you observe behaviour that contravenes our policies, +2020-03-13 13:54:46 i - please notify a volunteer staff member via private message, or send us an +2020-03-13 13:54:46 i - e-mail to complaints@freenode.net -- we will do our best to address the +2020-03-13 13:54:46 i - situation within a reasonable period of time, and we may request further +2020-03-13 13:54:46 i - information or, as appropriate, involve other parties such as channel operators +2020-03-13 13:54:46 i - Group Contacts representing an on-topic group. +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - freenode runs an open proxy scanner. +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - If you are looking for assistance, you may be able to find a list of +2020-03-13 13:54:46 i - volunteer staff on '/stats p' (shows only on-call staff) or by joining +2020-03-13 13:54:46 i - #freenode and using the '/who freenode/staff/*' command. You may message +2020-03-13 13:54:46 i - any of us at any time. Please note that freenode predominantly provides +2020-03-13 13:54:46 i - assistance via private message, and while we have a network channel the +2020-03-13 13:54:46 i - primary venue for support requests is via private message to a member +2020-03-13 13:54:46 i - of the volunteer staff team. +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - From time to time, volunteer staff may send server-wide notices relating to +2020-03-13 13:54:46 i - the project, or the communities that we host. The majority of such notices +2020-03-13 13:54:46 i - will be sent as wallops, and you can '/mode +w' to ensure that you +2020-03-13 13:54:46 i - do not miss them. Important messages relating to the freenode project, including +2020-03-13 13:54:46 i - notices of upcoming maintenance and other scheduled downtime will be issued as +2020-03-13 13:54:46 i - global notices. +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - Representing an on-topic project? Don't forget to register, more information +2020-03-13 13:54:46 i - can be found on the https://freenode.net website under "Group Registration". +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - Thank you also to our server sponsors for the sustained support in keeping the +2020-03-13 13:54:46 i - network going for close to two decades. +2020-03-13 13:54:46 i - +2020-03-13 13:54:46 i - Thank you for using freenode! +2020-03-13 13:54:46 i End of /MOTD command. +2020-03-13 13:54:46 i User mode [+i] by fd0e +2020-03-13 13:55:17 i *status (znc@znc.in): Welcome to LunarBNC's free ZNC service. × If you like the service and want to support the quality of it, please donate: https://lunarbnc.net/donate × Thank you, The LunarBNC Administrators +2020-03-13 13:56:04 ! Closing link: Timeout +2020-03-13 13:56:04 ! irc: reading data on socket: error 0 (connection closed by peer) +2020-03-13 13:56:04 i irc: disconnecting from server... +2020-03-13 13:56:04 i irc: disconnected from server +2020-03-13 13:56:04 i irc: reconnecting to server in 10 seconds +2020-03-13 13:56:14 i irc: reconnecting to server... +2020-03-13 13:56:14 i irc: connecting to server de.lunarbnc.net/8080 (SSL)... +2020-03-13 13:56:14 i gnutls: connected using 2048-bit Diffie-Hellman shared secret exchange +2020-03-13 13:56:14 i gnutls: receiving 2 certificates +2020-03-13 13:56:14 i - certificate[1] info: +2020-03-13 13:56:14 i - subject `CN=lunarbnc.net', issuer `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', serial 0x049326d58995c88a81f5c6a128c2548a3e87, RSA key 2048 bits, signed using RSA-SHA256, activated `2020-03-01 22:04:44 UTC', expires `2020-05-30 22:04:44 UTC', pin-sha256="oxFlbDpMz4NezfuuHqrv4I/gkkReZwNigCxKwdBPUEg=" +2020-03-13 13:56:14 i - certificate[2] info: +2020-03-13 13:56:14 i - subject `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', issuer `CN=DST Root CA X3,O=Digital Signature Trust Co.', serial 0x0a0141420000015385736a0b85eca708, RSA key 2048 bits, signed using RSA-SHA256, activated `2016-03-17 16:40:46 UTC', expires `2021-03-17 16:40:46 UTC', pin-sha256="YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=" +2020-03-13 13:56:14 i gnutls: peer's certificate is trusted +2020-03-13 13:56:14 i irc: connected to de.lunarbnc.net/8080 (136.243.35.58) +2020-03-13 13:56:15 i Welcome to the freenode Internet Relay Chat Network fd0e +2020-03-13 13:56:15 i Your host is wilhelm.freenode.net[2001:41d0:401:3100::5136/6667], running version ircd-seven-1.1.9 +2020-03-13 13:56:15 i This server was created Tue Feb 4 2020 at 21:22:25 UTC +2020-03-13 13:56:15 i wilhelm.freenode.net ircd-seven-1.1.9 DOQRSZaghilopsuwz CFILMPQSbcefgijklmnopqrstuvz bkloveqjfI +2020-03-13 13:56:15 i CHANTYPES=#~ EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstuz CHANLIMIT=#:120 PREFIX=(ov)@+ MAXLIST=bqeI:100 MODES=4 NETWORK=freenode STATUSMSG=@+ CALLERID=g CASEMAPPING=rfc1459 :are supported by this server +2020-03-13 13:56:15 i CHARSET=ascii NICKLEN=16 CHANNELLEN=50 TOPICLEN=390 DEAF=D FNC TARGMAX=NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:4,NOTICE:4,ACCEPT:,MONITOR: EXTBAN=$,ajrxz CLIENTVER=3.0 CPRIVMSG CNOTICE SAFELIST :are supported by this server +2020-03-13 13:56:15 i ELIST=CTU WHOX ETRACE KNOCK :are supported by this server +2020-03-13 13:56:15 i There are 96 users and 87579 invisible on 29 servers +2020-03-13 13:56:15 i 34 :IRC Operators online +2020-03-13 13:56:15 i 43813 :channels formed +2020-03-13 13:56:15 i I have 6548 clients and 1 servers +2020-03-13 13:56:15 i 6548 7511 :Current local users 6548, max 7511 +2020-03-13 13:56:15 i 87675 87796 :Current global users 87675, max 87796 +2020-03-13 13:56:15 i Highest connection count: 7512 (7511 clients) (217430 connections received) +2020-03-13 13:56:15 i - wilhelm.freenode.net Message of the Day - +2020-03-13 13:56:15 i - Welcome to wilhelm.freenode.net in Strasbourg, France. +2020-03-13 13:56:15 i - Thanks to http://digitaltreemedia.co.uk/ for sponsoring +2020-03-13 13:56:15 i - this server! +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - Welcome to freenode - supporting the free and open source +2020-03-13 13:56:15 i - software communities since 1998. +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - By connecting to freenode you indicate that you have read and +2020-03-13 13:56:15 i - accept our policies and guidelines as set out on https://freenode.net +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - In the event that you observe behaviour that contravenes our policies, +2020-03-13 13:56:15 i - please notify a volunteer staff member via private message, or send us an +2020-03-13 13:56:15 i - e-mail to complaints@freenode.net -- we will do our best to address the +2020-03-13 13:56:15 i - situation within a reasonable period of time, and we may request further +2020-03-13 13:56:15 i - information or, as appropriate, involve other parties such as channel operators +2020-03-13 13:56:15 i - Group Contacts representing an on-topic group. +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - freenode runs an open proxy scanner. +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - If you are looking for assistance, you may be able to find a list of +2020-03-13 13:56:15 i - volunteer staff on '/stats p' (shows only on-call staff) or by joining +2020-03-13 13:56:15 i - #freenode and using the '/who freenode/staff/*' command. You may message +2020-03-13 13:56:15 i - any of us at any time. Please note that freenode predominantly provides +2020-03-13 13:56:15 i - assistance via private message, and while we have a network channel the +2020-03-13 13:56:15 i - primary venue for support requests is via private message to a member +2020-03-13 13:56:15 i - of the volunteer staff team. +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - From time to time, volunteer staff may send server-wide notices relating to +2020-03-13 13:56:15 i - the project, or the communities that we host. The majority of such notices +2020-03-13 13:56:15 i - will be sent as wallops, and you can '/mode +w' to ensure that you +2020-03-13 13:56:15 i - do not miss them. Important messages relating to the freenode project, including +2020-03-13 13:56:15 i - notices of upcoming maintenance and other scheduled downtime will be issued as +2020-03-13 13:56:15 i - global notices. +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - Representing an on-topic project? Don't forget to register, more information +2020-03-13 13:56:15 i - can be found on the https://freenode.net website under "Group Registration". +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - Thank you also to our server sponsors for the sustained support in keeping the +2020-03-13 13:56:15 i - network going for close to two decades. +2020-03-13 13:56:15 i - +2020-03-13 13:56:15 i - Thank you for using freenode! +2020-03-13 13:56:15 i End of /MOTD command. +2020-03-13 13:56:15 i User mode [+i] by fd0e +2020-03-13 13:56:16 i *status (znc@znc.in): Welcome to LunarBNC's free ZNC service. × If you like the service and want to support the quality of it, please donate: https://lunarbnc.net/donate × Thank you, The LunarBNC Administrators +2020-03-13 13:59:31 ! Closing link: Timeout +2020-03-13 13:59:31 ! irc: reading data on socket: error 0 (connection closed by peer) +2020-03-13 13:59:31 i irc: disconnecting from server... +2020-03-13 13:59:31 i irc: disconnected from server +2020-03-13 13:59:31 i irc: reconnecting to server in 10 seconds +2020-03-13 13:59:41 i irc: reconnecting to server... +2020-03-13 13:59:41 i irc: connecting to server de.lunarbnc.net/8080 (SSL)... +2020-03-13 13:59:51 ! irc: address "de.lunarbnc.net" not found +2020-03-13 13:59:51 ! irc: error: Temporary failure in name resolution +2020-03-13 13:59:51 i irc: reconnecting to server in 20 seconds +2020-03-13 14:00:11 i irc: reconnecting to server... +2020-03-13 14:00:11 i irc: connecting to server de.lunarbnc.net/8080 (SSL)... +2020-03-13 14:01:11 ! irc: timeout +2020-03-13 14:01:11 i irc: reconnecting to server in 40 seconds +2020-03-13 14:01:51 i irc: reconnecting to server... +2020-03-13 14:01:51 i irc: connecting to server de.lunarbnc.net/8080 (SSL)... +2020-03-13 14:01:51 i gnutls: connected using 2048-bit Diffie-Hellman shared secret exchange +2020-03-13 14:01:51 i gnutls: receiving 2 certificates +2020-03-13 14:01:51 i - certificate[1] info: +2020-03-13 14:01:51 i - subject `CN=lunarbnc.net', issuer `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', serial 0x049326d58995c88a81f5c6a128c2548a3e87, RSA key 2048 bits, signed using RSA-SHA256, activated `2020-03-01 22:04:44 UTC', expires `2020-05-30 22:04:44 UTC', pin-sha256="oxFlbDpMz4NezfuuHqrv4I/gkkReZwNigCxKwdBPUEg=" +2020-03-13 14:01:51 i - certificate[2] info: +2020-03-13 14:01:51 i - subject `CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US', issuer `CN=DST Root CA X3,O=Digital Signature Trust Co.', serial 0x0a0141420000015385736a0b85eca708, RSA key 2048 bits, signed using RSA-SHA256, activated `2016-03-17 16:40:46 UTC', expires `2021-03-17 16:40:46 UTC', pin-sha256="YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=" +2020-03-13 14:01:51 i gnutls: peer's certificate is trusted +2020-03-13 14:01:51 i irc: connected to de.lunarbnc.net/8080 (136.243.35.58) +2020-03-13 14:01:52 i Welcome to the freenode Internet Relay Chat Network fd0e +2020-03-13 14:01:52 i Your host is wilhelm.freenode.net[2001:41d0:401:3100::5136/6667], running version ircd-seven-1.1.9 +2020-03-13 14:01:52 i This server was created Tue Feb 4 2020 at 21:22:25 UTC +2020-03-13 14:01:52 i wilhelm.freenode.net ircd-seven-1.1.9 DOQRSZaghilopsuwz CFILMPQSbcefgijklmnopqrstuvz bkloveqjfI +2020-03-13 14:01:52 i CHANTYPES=#~ EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstuz CHANLIMIT=#:120 PREFIX=(ov)@+ MAXLIST=bqeI:100 MODES=4 NETWORK=freenode STATUSMSG=@+ CALLERID=g CASEMAPPING=rfc1459 :are supported by this server +2020-03-13 14:01:52 i CHARSET=ascii NICKLEN=16 CHANNELLEN=50 TOPICLEN=390 DEAF=D FNC TARGMAX=NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:4,NOTICE:4,ACCEPT:,MONITOR: EXTBAN=$,ajrxz CLIENTVER=3.0 CPRIVMSG CNOTICE SAFELIST :are supported by this server +2020-03-13 14:01:52 i ELIST=CTU WHOX ETRACE KNOCK :are supported by this server +2020-03-13 14:01:52 i There are 96 users and 87579 invisible on 29 servers +2020-03-13 14:01:52 i 34 :IRC Operators online +2020-03-13 14:01:52 i 43813 :channels formed +2020-03-13 14:01:52 i I have 6548 clients and 1 servers +2020-03-13 14:01:52 i 6548 7511 :Current local users 6548, max 7511 +2020-03-13 14:01:52 i 87675 87796 :Current global users 87675, max 87796 +2020-03-13 14:01:52 i Highest connection count: 7512 (7511 clients) (217430 connections received) +2020-03-13 14:01:52 i - wilhelm.freenode.net Message of the Day - +2020-03-13 14:01:52 i - Welcome to wilhelm.freenode.net in Strasbourg, France. +2020-03-13 14:01:52 i - Thanks to http://digitaltreemedia.co.uk/ for sponsoring +2020-03-13 14:01:52 i - this server! +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - Welcome to freenode - supporting the free and open source +2020-03-13 14:01:52 i - software communities since 1998. +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - By connecting to freenode you indicate that you have read and +2020-03-13 14:01:52 i - accept our policies and guidelines as set out on https://freenode.net +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - In the event that you observe behaviour that contravenes our policies, +2020-03-13 14:01:52 i - please notify a volunteer staff member via private message, or send us an +2020-03-13 14:01:52 i - e-mail to complaints@freenode.net -- we will do our best to address the +2020-03-13 14:01:52 i - situation within a reasonable period of time, and we may request further +2020-03-13 14:01:52 i - information or, as appropriate, involve other parties such as channel operators +2020-03-13 14:01:52 i - Group Contacts representing an on-topic group. +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - freenode runs an open proxy scanner. +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - If you are looking for assistance, you may be able to find a list of +2020-03-13 14:01:52 i - volunteer staff on '/stats p' (shows only on-call staff) or by joining +2020-03-13 14:01:52 i - #freenode and using the '/who freenode/staff/*' command. You may message +2020-03-13 14:01:52 i - any of us at any time. Please note that freenode predominantly provides +2020-03-13 14:01:52 i - assistance via private message, and while we have a network channel the +2020-03-13 14:01:52 i - primary venue for support requests is via private message to a member +2020-03-13 14:01:52 i - of the volunteer staff team. +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - From time to time, volunteer staff may send server-wide notices relating to +2020-03-13 14:01:52 i - the project, or the communities that we host. The majority of such notices +2020-03-13 14:01:52 i - will be sent as wallops, and you can '/mode +w' to ensure that you +2020-03-13 14:01:52 i - do not miss them. Important messages relating to the freenode project, including +2020-03-13 14:01:52 i - notices of upcoming maintenance and other scheduled downtime will be issued as +2020-03-13 14:01:52 i - global notices. +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - Representing an on-topic project? Don't forget to register, more information +2020-03-13 14:01:52 i - can be found on the https://freenode.net website under "Group Registration". +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - Thank you also to our server sponsors for the sustained support in keeping the +2020-03-13 14:01:52 i - network going for close to two decades. +2020-03-13 14:01:52 i - +2020-03-13 14:01:52 i - Thank you for using freenode! +2020-03-13 14:01:52 i End of /MOTD command. +2020-03-13 14:01:52 i User mode [+i] by fd0e +2020-03-13 14:01:52 i *status (znc@znc.in): Welcome to LunarBNC's free ZNC service. × If you like the service and want to support the quality of it, please donate: https://lunarbnc.net/donate × Thank you, The LunarBNC Administrators +2020-03-13 14:03:55 ! Closing link: Timeout +2020-03-13 14:03:55 ! irc: reading data on socket: error 0 (connection closed by peer) +2020-03-13 14:03:55 i irc: disconnecting from server... +2020-03-13 14:03:55 i irc: disconnected from server +2020-03-13 14:03:55 i irc: reconnecting to server in 10 seconds +2020-03-13 14:04:01 irc: auto-reconnection is cancelled +2020-03-13 14:04:01 i irc: disconnected from server diff --git a/weechat/.weechat/perl.conf b/weechat/.weechat/perl.conf new file mode 100644 index 0000000..31924b9 --- /dev/null +++ b/weechat/.weechat/perl.conf @@ -0,0 +1,14 @@ +# +# weechat -- perl.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +check_license = off +eval_keep_context = on diff --git a/weechat/.weechat/plugins.conf b/weechat/.weechat/plugins.conf new file mode 100644 index 0000000..9f3aa9f --- /dev/null +++ b/weechat/.weechat/plugins.conf @@ -0,0 +1,14 @@ +# +# weechat -- plugins.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[var] + +[desc] diff --git a/weechat/.weechat/python.conf b/weechat/.weechat/python.conf new file mode 100644 index 0000000..187b778 --- /dev/null +++ b/weechat/.weechat/python.conf @@ -0,0 +1,14 @@ +# +# weechat -- python.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +check_license = off +eval_keep_context = on diff --git a/weechat/.weechat/script.conf b/weechat/.weechat/script.conf new file mode 100644 index 0000000..121f189 --- /dev/null +++ b/weechat/.weechat/script.conf @@ -0,0 +1,56 @@ +# +# weechat -- script.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[look] +columns = "%s %n %V %v %u | %d | %t" +diff_color = on +diff_command = "auto" +display_source = on +quiet_actions = on +sort = "i,p,n" +translate_description = on +use_keys = on + +[color] +status_autoloaded = cyan +status_held = white +status_installed = lightcyan +status_obsolete = lightmagenta +status_popular = yellow +status_running = lightgreen +status_unknown = lightred +text = default +text_bg = default +text_bg_selected = red +text_date = default +text_date_selected = white +text_delimiters = default +text_description = default +text_description_selected = white +text_extension = default +text_extension_selected = white +text_name = cyan +text_name_selected = lightcyan +text_selected = white +text_tags = brown +text_tags_selected = yellow +text_version = magenta +text_version_loaded = default +text_version_loaded_selected = white +text_version_selected = lightmagenta + +[scripts] +autoload = on +cache_expire = 1440 +download_timeout = 30 +hold = "" +path = "%h/script" +url = "https://weechat.org/files/plugins.xml.gz" diff --git a/weechat/.weechat/sec.conf b/weechat/.weechat/sec.conf new file mode 100644 index 0000000..8c60d03 --- /dev/null +++ b/weechat/.weechat/sec.conf @@ -0,0 +1,18 @@ +# +# weechat -- sec.conf +# +# WARNING: It is NOT recommended to edit this file by hand, +# especially if WeeChat is running. +# +# Use /set or similar command to change settings in WeeChat. +# +# For more info, see: https://weechat.org/doc/quickstart +# + +[crypt] +cipher = aes256 +hash_algo = sha256 +passphrase_file = "" +salt = on + +[data] diff --git a/weechat/.weechat/weechat.log b/weechat/.weechat/weechat.log new file mode 100644 index 0000000..e74ffbe --- /dev/null +++ b/weechat/.weechat/weechat.log @@ -0,0 +1,40 @@ +[2020-03-13 13:28:32] WeeChat 2.7.1 (compiled on Feb 20 2020 23:47:25) +[2020-03-13 13:28:32] Writing configuration file sec.conf (default options) +[2020-03-13 13:28:32] Reading configuration file sec.conf +[2020-03-13 13:28:32] Reading configuration file weechat.conf +[2020-03-13 13:28:32] Writing configuration file plugins.conf (default options) +[2020-03-13 13:28:32] Reading configuration file plugins.conf +[2020-03-13 13:28:32] Writing configuration file charset.conf (default options) +[2020-03-13 13:28:32] Reading configuration file charset.conf +[2020-03-13 13:28:32] Writing configuration file logger.conf (default options) +[2020-03-13 13:28:32] Reading configuration file logger.conf +[2020-03-13 13:28:32] Writing configuration file alias.conf (default options) +[2020-03-13 13:28:32] Reading configuration file alias.conf +[2020-03-13 13:28:32] Writing configuration file buflist.conf (default options) +[2020-03-13 13:28:32] Reading configuration file buflist.conf +[2020-03-13 13:28:32] Writing configuration file irc.conf (default options) +[2020-03-13 13:28:32] Reading configuration file irc.conf +[2020-03-13 13:28:32] Writing configuration file perl.conf (default options) +[2020-03-13 13:28:32] Reading configuration file perl.conf +[2020-03-13 13:28:32] Writing configuration file python.conf (default options) +[2020-03-13 13:28:32] Reading configuration file python.conf +[2020-03-13 13:28:32] Writing configuration file script.conf (default options) +[2020-03-13 13:28:32] Reading configuration file script.conf +[2020-03-13 13:30:20] irc: connecting to server de.lunarbnc.net/8080 (SSL)... +[2020-03-13 13:40:30] irc: connecting to server de.lunarbnc.net/8080 (SSL)... +[2020-03-13 13:54:27] irc: connecting to server de.lunarbnc.net/8080 (SSL)... +[2020-03-13 13:56:14] irc: connecting to server de.lunarbnc.net/8080 (SSL)... +[2020-03-13 13:59:41] irc: connecting to server de.lunarbnc.net/8080 (SSL)... +[2020-03-13 14:00:11] irc: connecting to server de.lunarbnc.net/8080 (SSL)... +[2020-03-13 14:01:51] irc: connecting to server de.lunarbnc.net/8080 (SSL)... +[2020-03-13 14:04:03] Writing configuration file plugins.conf +[2020-03-13 14:04:03] Writing configuration file buflist.conf +[2020-03-13 14:04:03] Writing configuration file python.conf +[2020-03-13 14:04:03] Writing configuration file charset.conf +[2020-03-13 14:04:03] Writing configuration file perl.conf +[2020-03-13 14:04:03] Writing configuration file script.conf +[2020-03-13 14:04:03] Writing configuration file logger.conf +[2020-03-13 14:04:03] Writing configuration file alias.conf +[2020-03-13 14:04:03] Writing configuration file irc.conf +[2020-03-13 14:04:03] Writing configuration file weechat.conf +[2020-03-13 14:04:03] Writing configuration file sec.conf -- cgit v1.2.3