Searching from 2024-08-01 00:00:00 to 2024-08-01 23:59:59.999999.
Query completed in 0.58 seconds
[2024-08-01 00:07:32] <-- Juest has quit (Read error: Connection reset by peer)
[2024-08-01 00:07:54] --> Juest has joined the channel
[2024-08-01 01:27:23] <armagetronbridge> 06discord:Syn| I’m something of a front end focused dev
[2024-08-01 01:27:23] <armagetron-bridge> 06discord:Syn| I’m something of a front end focused dev
[2024-08-01 01:27:36] <armagetronbridge> 06discord:Syn| Not strictly a designer but love designing and building interfaces
[2024-08-01 01:27:36] <armagetron-bridge> 06discord:Syn| Not strictly a designer but love designing and building interfaces
[2024-08-01 02:15:54] <armagetronbridge> 06discord:Syn| but typescript is my one true love
[2024-08-01 02:15:54] <armagetron-bridge> 06discord:Syn| but typescript is my one true love
[2024-08-01 02:16:27] <armagetronbridge> 08discord:Teko| I like it too, sounds great to me
[2024-08-01 02:16:27] <armagetron-bridge> 08discord:Teko| I like it too, sounds great to me
[2024-08-01 02:18:46] --> Lucifer_arma_ has joined the channel
[2024-08-01 02:19:33] <armagetronbridge> 06discord:Syn| one of my more controversial points (besides politics ๐คฃ ) is that javascript/typescript is the ideal one man army language if you had to pick one to learn today
[2024-08-01 02:19:33] <armagetron-bridge> 06discord:Syn| one of my more controversial points (besides politics ๐คฃ ) is that javascript/typescript is the ideal one man army language if you had to pick one to learn today
[2024-08-01 02:20:02] <armagetronbridge> 08discord:Teko| Python isn't? D':<
[2024-08-01 02:20:03] <armagetron-bridge> 08discord:Teko| Python isn't? D':<
[2024-08-01 02:21:45] <armagetronbridge> 06discord:Syn| difficult to make compelling shareable web experiences with python out of the box
[2024-08-01 02:21:45] <armagetron-bridge> 06discord:Syn| difficult to make compelling shareable web experiences with python out of the box
[2024-08-01 02:21:58] <armagetronbridge> 06discord:Syn| https://www.fastht.ml/ this is brand new and threatens to change that
[2024-08-01 02:21:59] <armagetron-bridge> 06discord:Syn| https://www.fastht.ml/ this is brand new and threatens to change that
[2024-08-01 02:22:02] <armagetronbridge> 06discord:Syn| we'll see though
[2024-08-01 02:22:02] <armagetron-bridge> 06discord:Syn| we'll see though
[2024-08-01 02:23:23] <armagetronbridge> 06discord:Syn| but it has code snippets like
[2024-08-01 02:23:24] <armagetron-bridge> 06discord:Syn| but it has code snippets like
[2024-08-01 02:23:24] <armagetron-bridge> 06discord:Syn| ```python
[2024-08-01 02:23:25] <armagetronbridge> 06discord:Syn| ```python
[2024-08-01 02:23:26] <armagetron-bridge> 06discord:Syn| def card_3d_demo():
[2024-08-01 02:23:26] <armagetronbridge> 06discord:Syn| def card_3d_demo():
[2024-08-01 02:23:27] <armagetron-bridge> 06discord:Syn| """This is a standalone isolated Python component.
[2024-08-01 02:23:27] <armagetronbridge> 06discord:Syn| """This is a standalone isolated Python component.
[2024-08-01 02:23:28] <armagetron-bridge> 06discord:Syn| Behavior and styling is scoped to the component."""
[2024-08-01 02:23:29] <armagetronbridge> 06discord:Syn| Behavior and styling is scoped to the component."""
[2024-08-01 02:23:30] <armagetron-bridge> 06discord:Syn| def card_3d(text, background, amt, left_align):
[2024-08-01 02:23:30] <armagetronbridge> 06discord:Syn| def card_3d(text, background, amt, left_align):
[2024-08-01 02:23:31] <armagetron-bridge> 06discord:Syn| # JS and CSS can be defined inline or in a file
[2024-08-01 02:23:32] <armagetronbridge> 06discord:Syn| # JS and CSS can be defined inline or in a file
[2024-08-01 02:23:32] <armagetron-bridge> 06discord:Syn| scr = ScriptX('card3d.js', amt=amt)
[2024-08-01 02:23:33] <armagetronbridge> 06discord:Syn| scr = ScriptX('card3d.js', amt=amt)
[2024-08-01 02:23:34] <armagetronbridge> 06discord:Syn| align='left' if left_align else 'right'
[2024-08-01 02:23:34] <armagetron-bridge> 06discord:Syn| align='left' if left_align else 'right'
[2024-08-01 02:23:35] <armagetron-bridge> 06discord:Syn| sty = StyleX('card3d.css', background=f'url({background})', align=align)
[2024-08-01 02:23:35] <armagetronbridge> 06discord:Syn| sty = StyleX('card3d.css', background=f'url({background})', align=align)
[2024-08-01 02:23:36] <armagetron-bridge> 06discord:Syn| return Div(text, Div(), sty, scr)
[2024-08-01 02:23:37] <armagetronbridge> 06discord:Syn| return Div(text, Div(), sty, scr)
[2024-08-01 02:23:38] <armagetronbridge> 06discord:Syn| # Design credit: https://codepen.io/markmiro/pen/wbqMPa
[2024-08-01 02:23:38] <armagetron-bridge> 06discord:Syn| # Design credit: https://codepen.io/markmiro/pen/wbqMPa
[2024-08-01 02:23:39] <armagetron-bridge> 06discord:Syn| card = card_3d("Mouseover me", bgurl, amt=1.5, left_align=True)
[2024-08-01 02:23:39] <armagetronbridge> 06discord:Syn| card = card_3d("Mouseover me", bgurl, amt=1.5, left_align=True)
[2024-08-01 02:23:40] <armagetron-bridge> 06discord:Syn| return Div(card, style=cardcss)
[2024-08-01 02:23:41] <armagetronbridge> 06discord:Syn| return Div(card, style=cardcss)
[2024-08-01 02:23:41] <armagetron-bridge> 06discord:Syn| ```
[2024-08-01 02:23:42] <armagetronbridge> 06discord:Syn| ```
[2024-08-01 02:23:43] <armagetron-bridge> 06discord:Syn| `'card3d.js'`
[2024-08-01 02:23:44] <armagetronbridge> 06discord:Syn| `'card3d.js'`
[2024-08-01 02:23:44] <armagetron-bridge> 06discord:Syn| ๐คข
[2024-08-01 02:23:45] <armagetronbridge> 06discord:Syn| ๐คข
[2024-08-01 02:24:04] <armagetronbridge> 06discord:Syn| eventually all these python frameworks give way and they just ask you to fill in the gaps with javascript
[2024-08-01 02:24:04] <armagetron-bridge> 06discord:Syn| eventually all these python frameworks give way and they just ask you to fill in the gaps with javascript
[2024-08-01 02:25:17] <armagetronbridge> 08discord:Teko| I have this theory that all the codes are just different ways to express logical packages so one day there will be the "definite source language"
[2024-08-01 02:25:18] <armagetron-bridge> 08discord:Teko| I have this theory that all the codes are just different ways to express logical packages so one day there will be the "definite source language"
[2024-08-01 02:25:34] <armagetronbridge> 08discord:Teko| Or ultimate source language
[2024-08-01 02:25:35] <armagetron-bridge> 08discord:Teko| Or ultimate source language
[2024-08-01 02:25:59] <armagetronbridge> 08discord:Teko| Everything on the same console
[2024-08-01 02:25:59] <armagetron-bridge> 08discord:Teko| Everything on the same console
[2024-08-01 02:28:07] <armagetronbridge> 06discord:Syn| for sure
[2024-08-01 02:28:07] <armagetron-bridge> 06discord:Syn| for sure
[2024-08-01 02:28:17] <armagetronbridge> 06discord:Syn| i mean ultimately logic and reason is bound by language
[2024-08-01 02:28:18] <armagetron-bridge> 06discord:Syn| i mean ultimately logic and reason is bound by language
[2024-08-01 02:28:33] <armagetronbridge> 06discord:Syn| makes sense that we work towards some unified framework
[2024-08-01 02:28:33] <armagetron-bridge> 06discord:Syn| makes sense that we work towards some unified framework
[2024-08-01 02:28:41] <armagetronbridge> 06discord:Syn| difficult to contend that with cultural preservation though
[2024-08-01 02:28:41] <armagetron-bridge> 06discord:Syn| difficult to contend that with cultural preservation though
[2024-08-01 02:29:25] <armagetronbridge> 08discord:Teko| Because of the purpose of the code, but somehow the commands are the same
[2024-08-01 02:29:25] <armagetron-bridge> 08discord:Teko| Because of the purpose of the code, but somehow the commands are the same
[2024-08-01 02:29:32] <armagetronbridge> 08discord:Teko| Not to mention the symbols
[2024-08-01 02:29:32] <armagetron-bridge> 08discord:Teko| Not to mention the symbols
[2024-08-01 02:30:47] <armagetronbridge> 08discord:Teko| I mean, what's the difference between
[2024-08-01 02:30:47] <armagetron-bridge> 08discord:Teko| I mean, what's the difference between
[2024-08-01 02:30:48] <armagetron-bridge> 08discord:Teko| If(this)then
[2024-08-01 02:30:48] <armagetronbridge> 08discord:Teko| If(this)then
[2024-08-01 02:30:49] <armagetron-bridge> 08discord:Teko| That
[2024-08-01 02:30:49] <armagetronbridge> 08discord:Teko| That
[2024-08-01 02:30:50] <armagetron-bridge> 08discord:Teko| Else
[2024-08-01 02:30:51] <armagetronbridge> 08discord:Teko| Else
[2024-08-01 02:30:52] <armagetron-bridge> 08discord:Teko| Nothing
[2024-08-01 02:30:52] <armagetronbridge> 08discord:Teko| Nothing
[2024-08-01 02:30:53] <armagetron-bridge> 08discord:Teko| End
[2024-08-01 02:30:53] <armagetronbridge> 08discord:Teko| End
[2024-08-01 02:31:16] <armagetronbridge> 08discord:Teko| And
[2024-08-01 02:31:16] <armagetron-bridge> 08discord:Teko| And
[2024-08-01 02:31:16] <armagetron-bridge> 08discord:Teko| If(this;that;nothing)
[2024-08-01 02:31:17] <armagetronbridge> 08discord:Teko| If(this;that;nothing)
[2024-08-01 02:31:36] <armagetronbridge> 06discord:Syn| lots of pedantic arguments ๐คฃ
[2024-08-01 02:31:36] <armagetron-bridge> 06discord:Syn| lots of pedantic arguments ๐คฃ
[2024-08-01 02:31:41] <armagetronbridge> 06discord:Syn| as a serious question to whats the difference
[2024-08-01 02:31:42] <armagetron-bridge> 06discord:Syn| as a serious question to whats the difference
[2024-08-01 02:31:48] <armagetronbridge> 06discord:Syn| they are emotionally bound to their syntax
[2024-08-01 02:31:48] <armagetron-bridge> 06discord:Syn| they are emotionally bound to their syntax
[2024-08-01 02:31:53] <armagetronbridge> 06discord:Syn| to them it is the same as culture
[2024-08-01 02:31:53] <armagetron-bridge> 06discord:Syn| to them it is the same as culture
[2024-08-01 02:32:09] <armagetronbridge> 06discord:Syn| whats the difference between Hallo and Hello
[2024-08-01 02:32:09] <armagetron-bridge> 06discord:Syn| whats the difference between Hallo and Hello
[2024-08-01 02:32:13] <armagetronbridge> 08discord:Teko| Exactly, but in the background makes the same
[2024-08-01 02:32:13] <armagetron-bridge> 08discord:Teko| Exactly, but in the background makes the same
[2024-08-01 02:32:14] <armagetron-bridge> 06discord:Syn| und jetzt
[2024-08-01 02:32:14] <armagetronbridge> 06discord:Syn| und jetzt
[2024-08-01 02:32:39] <armagetronbridge> 06discord:Syn| im not so sure it makes exactly the same in the background
[2024-08-01 02:32:39] <armagetron-bridge> 06discord:Syn| im not so sure it makes exactly the same in the background
[2024-08-01 02:32:50] <armagetronbridge> 06discord:Syn| like the little sprinkles on top add nuances to the flavours which are mostly the same
[2024-08-01 02:32:50] <armagetron-bridge> 06discord:Syn| like the little sprinkles on top add nuances to the flavours which are mostly the same
[2024-08-01 02:33:51] <armagetronbridge> 06discord:Syn| but with a certain je ne sais quoi
[2024-08-01 02:33:51] <armagetron-bridge> 06discord:Syn| but with a certain je ne sais quoi
[2024-08-01 02:45:44] <Lucifer_arma_> there are lots of differences, actually
[2024-08-01 02:45:44] <armagetronbridge> 06irc:Lucifer_arma_| there are lots of differences, actually
[2024-08-01 02:47:00] <Lucifer_arma_> the reason you have, say, for(int i=0, i < 20, i++) in C is because that turns into very tight machine language. It's a bit to read, but it compiles down to something really small and efficient
[2024-08-01 02:47:00] <armagetronbridge> 06irc:Lucifer_arma_| the reason you have, say, for(int i=0, i < 20, i++) in C is because that turns into very tight machine language. It's a bit to read, but it compiles down to something really small and efficient
[2024-08-01 02:47:43] <Lucifer_arma_> python doesn't even have a construct like that, but because of the way that construct works in C/C++, when you use iterators, you get something similar to python's for item in alist construct
[2024-08-01 02:47:43] <armagetronbridge> 06irc:Lucifer_arma_| python doesn't even have a construct like that, but because of the way that construct works in C/C++, when you use iterators, you get something similar to python's for item in alist construct
[2024-08-01 02:47:58] <Lucifer_arma_> but because of the use of pointers, it's much much faster than anything python can do
[2024-08-01 02:47:58] <armagetronbridge> 06irc:Lucifer_arma_| but because of the use of pointers, it's much much faster than anything python can do
[2024-08-01 02:48:25] <Lucifer_arma_> except that down in the C library, python's for item in alist construct becomes that same thing in C, a lot of the time
[2024-08-01 02:48:25] <armagetronbridge> 06irc:Lucifer_arma_| except that down in the C library, python's for item in alist construct becomes that same thing in C, a lot of the time
[2024-08-01 02:49:02] <armagetronbridge> 08discord:Teko| I'm sure you're right, but my point is you can translate the whole instructions to another language and the most considerable change is the form of the expression
[2024-08-01 02:49:02] <armagetron-bridge> 08discord:Teko| I'm sure you're right, but my point is you can translate the whole instructions to another language and the most considerable change is the form of the expression
[2024-08-01 02:49:22] <Lucifer_arma_> meanwhile, java has C-like syntax for much the same reasons that C has it in the first place. It compiles down to bytecode very nicely, which is one reason java is able to reach C levels of performance
[2024-08-01 02:49:22] <armagetronbridge> 06irc:Lucifer_arma_| meanwhile, java has C-like syntax for much the same reasons that C has it in the first place. It compiles down to bytecode very nicely, which is one reason java is able to reach C levels of performance
[2024-08-01 02:49:41] <armagetronbridge> 08discord:Teko| I know it implies additional functions like iterations, but those could be fixed with more instructions, or less depending on the language
[2024-08-01 02:49:41] <armagetron-bridge> 08discord:Teko| I know it implies additional functions like iterations, but those could be fixed with more instructions, or less depending on the language
[2024-08-01 02:49:44] <Lucifer_arma_> once you start making it more flexible, you add complexity to the compiler
[2024-08-01 02:49:45] <armagetronbridge> 06irc:Lucifer_arma_| once you start making it more flexible, you add complexity to the compiler
[2024-08-01 02:50:15] <Lucifer_arma_> now, with solid RISC CPUs and really good compilers, none of it matters because of the optimizations the compiler can do
[2024-08-01 02:50:15] <armagetronbridge> 06irc:Lucifer_arma_| now, with solid RISC CPUs and really good compilers, none of it matters because of the optimizations the compiler can do
[2024-08-01 02:50:46] <Lucifer_arma_> but you have to remember where things were when each language was made. When C was invented, they wanted a general purpose language that had the flexibility of assembly, but wasn't assembly
[2024-08-01 02:50:46] <armagetronbridge> 06irc:Lucifer_arma_| but you have to remember where things were when each language was made. When C was invented, they wanted a general purpose language that had the flexibility of assembly, but wasn't assembly
[2024-08-01 02:51:02] <Lucifer_arma_> so a lot of the syntax that C has is there because it translates nearly directly to assembly
[2024-08-01 02:51:02] <armagetronbridge> 06irc:Lucifer_arma_| so a lot of the syntax that C has is there because it translates nearly directly to assembly
[2024-08-01 02:51:38] <Lucifer_arma_> in fact, that's why the ++ operator exists in the first place. If the target arch has it, (they all do, now) i++ gets compiled directly to a single CPU instruction
[2024-08-01 02:51:38] <armagetronbridge> 06irc:Lucifer_arma_| in fact, that's why the ++ operator exists in the first place. If the target arch has it, (they all do, now) i++ gets compiled directly to a single CPU instruction
[2024-08-01 02:51:53] <Lucifer_arma_> ++i is different, in fact. It's annoying, but it's there
[2024-08-01 02:51:53] <armagetronbridge> 06irc:Lucifer_arma_| ++i is different, in fact. It's annoying, but it's there
[2024-08-01 02:52:12] <Lucifer_arma_> i = i +1 can sometimes be caught and turned into i++, but not always
[2024-08-01 02:52:12] <armagetronbridge> 06irc:Lucifer_arma_| i = i +1 can sometimes be caught and turned into i++, but not always
[2024-08-01 02:52:58] <Lucifer_arma_> programming languages are much more like spoken languages, and we're not seeing a convergence to a single spoken language. We're seeing some convergence, but there's also significant divergence still happening
[2024-08-01 02:52:58] <armagetronbridge> 06irc:Lucifer_arma_| programming languages are much more like spoken languages, and we're not seeing a convergence to a single spoken language. We're seeing some convergence, but there's also significant divergence still happening
[2024-08-01 02:53:37] <armagetronbridge> 06discord:Syn| yep
[2024-08-01 02:53:37] <armagetron-bridge> 06discord:Syn| yep
[2024-08-01 02:53:43] <armagetronbridge> 06discord:Syn| mostly my point around cultural preservation
[2024-08-01 02:53:44] <armagetron-bridge> 06discord:Syn| mostly my point around cultural preservation
[2024-08-01 02:54:01] <armagetronbridge> 06discord:Syn| even if you *could* converge it's not obvious that you would want to
[2024-08-01 02:54:01] <armagetron-bridge> 06discord:Syn| even if you *could* converge it's not obvious that you would want to
[2024-08-01 02:54:32] <armagetronbridge> 06discord:Syn| we do see langauge standardisation over time though when restricted to geographical areas
[2024-08-01 02:54:33] <armagetron-bridge> 06discord:Syn| we do see langauge standardisation over time though when restricted to geographical areas
[2024-08-01 02:54:35] <Lucifer_arma_> each language can't be summarized as pros and cons. They have different designs because they exist for different reasons. Python stands to become the One to Rule Them All, but until it gets adopted as a web standard, javascript is always going to rise above it in popularity
[2024-08-01 02:54:35] <armagetronbridge> 06irc:Lucifer_arma_| each language can't be summarized as pros and cons. They have different designs because they exist for different reasons. Python stands to become the One to Rule Them All, but until it gets adopted as a web standard, javascript is always going to rise above it in popularity
[2024-08-01 02:55:05] <Lucifer_arma_> we do, but there are still like 4 different standard Englishes, and that's ignoring the hundreds or thousands of dialects
[2024-08-01 02:55:05] <armagetronbridge> 06irc:Lucifer_arma_| we do, but there are still like 4 different standard Englishes, and that's ignoring the hundreds or thousands of dialects
[2024-08-01 02:56:06] <Lucifer_arma_> also, while python is great for data mining and processing, especially when you add in a couple of libraries that made it even better for that, R is still the go-to language in science because it's built for scientists
[2024-08-01 02:56:06] <armagetronbridge> 06irc:Lucifer_arma_| also, while python is great for data mining and processing, especially when you add in a couple of libraries that made it even better for that, R is still the go-to language in science because it's built for scientists
[2024-08-01 02:56:52] <Lucifer_arma_> and there's still ada waiting patiently for a CPU that can finally implement the entire language. That's going to be an awesome language that's too late to be relevant because it was developed too early to be useful
[2024-08-01 02:56:52] <armagetronbridge> 06irc:Lucifer_arma_| and there's still ada waiting patiently for a CPU that can finally implement the entire language. That's going to be an awesome language that's too late to be relevant because it was developed too early to be useful
[2024-08-01 02:57:52] <Lucifer_arma_> C and C++ will continue to dominate overall because C is the closest to the metal you can possibly get, and C++ has all the flexibility of every language that exists with C-like performance
[2024-08-01 02:57:52] <armagetronbridge> 06irc:Lucifer_arma_| C and C++ will continue to dominate overall because C is the closest to the metal you can possibly get, and C++ has all the flexibility of every language that exists with C-like performance
[2024-08-01 02:59:02] <Lucifer_arma_> I don't even think Rust will displace either of them. Instead, it will serve as a test platform for the kind of safety features that are "lacking" in C/C++, and the solutions that come out of Rust will make their way into C/C++
[2024-08-01 02:59:02] <armagetronbridge> 06irc:Lucifer_arma_| I don't even think Rust will displace either of them. Instead, it will serve as a test platform for the kind of safety features that are "lacking" in C/C++, and the solutions that come out of Rust will make their way into C/C++
[2024-08-01 03:00:41] <Lucifer_arma_> oddly, I helped a guy today who spoke spanish that I understood just fine, but he had an accent that I didn't understand
[2024-08-01 03:00:42] <armagetronbridge> 06irc:Lucifer_arma_| oddly, I helped a guy today who spoke spanish that I understood just fine, but he had an accent that I didn't understand
[2024-08-01 03:04:01] <Lucifer_arma_> I didn't have another spanish speaker nearby who might have been able to identify the accent, so I don't know what it was, but I'm pretty sure the guy was high, too, so maybe he was just slurring his words badly because of that
[2024-08-01 03:04:01] <armagetronbridge> 06irc:Lucifer_arma_| I didn't have another spanish speaker nearby who might have been able to identify the accent, so I don't know what it was, but I'm pretty sure the guy was high, too, so maybe he was just slurring his words badly because of that
[2024-08-01 03:04:58] <armagetronbridge> 06discord:Syn| these days i see products advertise the fact they're *not* built in C/C++ due to "dangerous side effects"
[2024-08-01 03:04:59] <armagetron-bridge> 06discord:Syn| these days i see products advertise the fact they're *not* built in C/C++ due to "dangerous side effects"
[2024-08-01 03:06:22] <Lucifer_arma_> really? I haven't seen that. Of course, that's mostly kind of silly, because the "dangerous side effects" have been mostly fixed. The thing is, C/C++ still allow you to do whatever, so it's up to the programmer to choose appropriate techniques/libraries to avoid those "side effects"
[2024-08-01 03:06:22] <armagetronbridge> 06irc:Lucifer_arma_| really? I haven't seen that. Of course, that's mostly kind of silly, because the "dangerous side effects" have been mostly fixed. The thing is, C/C++ still allow you to do whatever, so it's up to the programmer to choose appropriate techniques/libraries to avoid those "side effects"
[2024-08-01 03:07:00] <armagetronbridge> 06discord:Syn| yeah it was some database software im struggling to recall right now
[2024-08-01 03:07:00] <armagetron-bridge> 06discord:Syn| yeah it was some database software im struggling to recall right now
[2024-08-01 03:07:55] <Lucifer_arma_> I think the biggest problems we're still having with C/C++ are a combination of older programmers not updating their skills to use newer versions of the language that have more memory safety and educators not teaching those newer memory safety techniques
[2024-08-01 03:07:55] <armagetronbridge> 06irc:Lucifer_arma_| I think the biggest problems we're still having with C/C++ are a combination of older programmers not updating their skills to use newer versions of the language that have more memory safety and educators not teaching those newer memory safety techniques
[2024-08-01 03:08:53] <Lucifer_arma_> it's still not perfect, mind you, but C18 (19? Most recent fully published spec) has enough memory safety in it to eliminate 99.9% of all previous bugs caused by memory issues
[2024-08-01 03:08:53] <armagetronbridge> 06irc:Lucifer_arma_| it's still not perfect, mind you, but C18 (19? Most recent fully published spec) has enough memory safety in it to eliminate 99.9% of all previous bugs caused by memory issues
[2024-08-01 03:09:54] <Lucifer_arma_> I might be exaggerating a little bit, but seriously, between what the language provides and what the programmer can do, we don't *need* something like Rust, we need people to switch to newer language revisions
[2024-08-01 03:09:54] <armagetronbridge> 06irc:Lucifer_arma_| I might be exaggerating a little bit, but seriously, between what the language provides and what the programmer can do, we don't *need* something like Rust, we need people to switch to newer language revisions
[2024-08-01 03:10:39] <armagetronbridge> 06discord:Syn| a unique take. i like it
[2024-08-01 03:10:39] <armagetron-bridge> 06discord:Syn| a unique take. i like it
[2024-08-01 03:12:06] <Lucifer_arma_> heh, we can't get away from them. Not only are all compilers written in either C or C++, but so are the very interpreters these so-called "safe" languages use.
[2024-08-01 03:12:07] <armagetronbridge> 06irc:Lucifer_arma_| heh, we can't get away from them. Not only are all compilers written in either C or C++, but so are the very interpreters these so-called "safe" languages use.
[2024-08-01 03:12:34] <Lucifer_arma_> I'm not sure Rust even has a fully 100% Rust compiler yet, but I honestly lost interest in Rust after I started looking at auto pointers in C++
[2024-08-01 03:12:35] <armagetronbridge> 06irc:Lucifer_arma_| I'm not sure Rust even has a fully 100% Rust compiler yet, but I honestly lost interest in Rust after I started looking at auto pointers in C++
[2024-08-01 03:16:43] <Lucifer_arma_> ok, of course the rust compiler is implemented in rust, I feel like an idiot again
[2024-08-01 03:16:43] <armagetronbridge> 06irc:Lucifer_arma_| ok, of course the rust compiler is implemented in rust, I feel like an idiot again
[2024-08-01 03:19:54] <armagetronbridge> 06discord:Syn| its actually important to the community that is the compiler was implemented in rust
[2024-08-01 03:19:54] <armagetron-bridge> 06discord:Syn| its actually important to the community that is the compiler was implemented in rust
[2024-08-01 03:20:19] <armagetronbridge> 06discord:Syn| there were complicated theorycrafting documents about C based compilation inefficiencies/vulnerabilities they were keen to avoid
[2024-08-01 03:20:19] <armagetron-bridge> 06discord:Syn| there were complicated theorycrafting documents about C based compilation inefficiencies/vulnerabilities they were keen to avoid
[2024-08-01 03:21:52] <Lucifer_arma_> that's why I feel like an idiot. a compiled language isn't considered viable until it can compile itself
[2024-08-01 03:21:52] <armagetronbridge> 06irc:Lucifer_arma_| that's why I feel like an idiot. a compiled language isn't considered viable until it can compile itself
[2024-08-01 03:22:19] <Lucifer_arma_> I knew that, I've just had my head buried in this AC unit that I'm building
[2024-08-01 03:22:19] <armagetronbridge> 06irc:Lucifer_arma_| I knew that, I've just had my head buried in this AC unit that I'm building
[2024-08-01 03:22:54] <Lucifer_arma_> I'm pumping ice water from my cooler through a heater core and using a blower to blow air over it
[2024-08-01 03:22:55] <armagetronbridge> 06irc:Lucifer_arma_| I'm pumping ice water from my cooler through a heater core and using a blower to blow air over it
[2024-08-01 03:22:55] <armagetron-bridge> 06discord:Syn| i think it took a while though
[2024-08-01 03:22:56] <armagetronbridge> 06discord:Syn| i think it took a while though
[2024-08-01 03:23:00] <armagetronbridge> 06discord:Syn| AC unit building is cool
[2024-08-01 03:23:00] <armagetron-bridge> 06discord:Syn| AC unit building is cool
[2024-08-01 03:23:08] <armagetronbridge> 06discord:Syn| getting real hot here in London. could do with one of those
[2024-08-01 03:23:08] <armagetron-bridge> 06discord:Syn| getting real hot here in London. could do with one of those
[2024-08-01 03:23:16] <Lucifer_arma_> the idea is that I'm going to use the phase change from solid to liquid to grab the heat instead of liquid to gas
[2024-08-01 03:23:16] <armagetronbridge> 06irc:Lucifer_arma_| the idea is that I'm going to use the phase change from solid to liquid to grab the heat instead of liquid to gas
[2024-08-01 03:23:39] <Lucifer_arma_> it's more energy efficient inside the van, but will require me to continue regularly buying ice and draining the cooler
[2024-08-01 03:23:39] <armagetronbridge> 06irc:Lucifer_arma_| it's more energy efficient inside the van, but will require me to continue regularly buying ice and draining the cooler
[2024-08-01 03:24:17] <Lucifer_arma_> I'm in serious need of a 12V air conditioner that can run off batteries/solar panels, and I only have 400W of solar panels
[2024-08-01 03:24:17] <armagetronbridge> 06irc:Lucifer_arma_| I'm in serious need of a 12V air conditioner that can run off batteries/solar panels, and I only have 400W of solar panels
[2024-08-01 03:26:56] <Lucifer_arma_> I've also looked into a heating element I can add to the cooler at some point to turn it into a heater in the winter. I'm trying to get away from having to run a 3.8L V6 and burning all the gas that that entails just to have hvac
[2024-08-01 03:26:57] <armagetronbridge> 06irc:Lucifer_arma_| I've also looked into a heating element I can add to the cooler at some point to turn it into a heater in the winter. I'm trying to get away from having to run a 3.8L V6 and burning all the gas that that entails just to have hvac
[2024-08-01 03:34:59] <-- Lucifer_arma_ has quit (Read error: No route to host)
[2024-08-01 03:43:26] <armagetronbridge> 06discord:Syn| ๐ ๐ฌ๐ง ๐
[2024-08-01 03:43:27] <armagetronbridge> 06discord:Syn| https://cdn.discordapp.com/attachments/209759416604426242/1268474157763395678/IMG_1290.jpg?ex=66ac8e1e&is=66ab3c9e&hm=78b19e7cd5bcd274553615464f31d1a122e107cd0271efd6a6ba18adc53507f6&
[2024-08-01 03:43:27] <armagetron-bridge> 06discord:Syn| ๐ ๐ฌ๐ง ๐
[2024-08-01 03:43:27] <armagetron-bridge> 06discord:Syn| https://cdn.discordapp.com/attachments/209759416604426242/1268474157763395678/IMG_1290.jpg?ex=66ac8e1e&is=66ab3c9e&hm=78b19e7cd5bcd274553615464f31d1a122e107cd0271efd6a6ba18adc53507f6&
[2024-08-01 04:44:09] <armagetronbridge> 10discord:justkoala| fake, i see clear sky
[2024-08-01 04:44:09] <armagetron-bridge> 10discord:justkoala| fake, i see clear sky
[2024-08-01 05:53:05] <armagetronbridge> 14discord:monkey_arma| If I can just add to the programming language by saying a few things:
[2024-08-01 05:53:05] <armagetron-bridge> 14discord:monkey_arma| If I can just add to the programming language by saying a few things:
[2024-08-01 05:53:06] <armagetron-bridge> 14discord:monkey_arma| 1) C and C++ are different in that C++ is far larger and more complex. This is why C++ is a disease and should not be used for anything at all ever.
[2024-08-01 05:53:06] <armagetronbridge> 14discord:monkey_arma| 1) C and C++ are different in that C++ is far larger and more complex. This is why C++ is a disease and should not be used for anything at all ever.
[2024-08-01 05:53:07] <armagetron-bridge> 14discord:monkey_arma| 2) Python with its indents=syntax can f**k off too.
[2024-08-01 05:53:07] <armagetronbridge> 14discord:monkey_arma| 2) Python with its indents=syntax can f**k off too.
[2024-08-01 05:53:08] <armagetron-bridge> 14discord:monkey_arma| 3) Java reaching C levels of performance? I think not. I'm not sure what compilers you know of that can do this but, IMO, Java is slow...that's one of the reasons no one uses it for anything sensible. The concept of a virtual machine is, however, a nice concept. Oh, and Java is now developed/owned by Oracle, who can also f**k off.
[2024-08-01 05:53:09] <armagetronbridge> 14discord:monkey_arma| 3) Java reaching C levels of performance? I think not. I'm not sure what compilers you know of that can do this but, IMO, Java is slow...that's one of the reasons no one uses it for anything sensible. The concept of a virtual machine is, however, a nice concept. Oh, and Java is now developed/owned by Oracle, who can also f**k off.
[2024-08-01 05:54:10] <armagetronbridge> 14discord:monkey_arma| Mini rant over...
[2024-08-01 05:54:10] <armagetron-bridge> 14discord:monkey_arma| Mini rant over...
[2024-08-01 05:54:51] --> monr0e has joined the channel
[2024-08-01 05:56:51] --> delinquent has joined the channel
[2024-08-01 05:58:22] <armagetronbridge> 14discord:monkey_arma| I'd like to see less programming languages. We don't need millions of languages with differing bits here and there.
[2024-08-01 05:58:22] <armagetron-bridge> 14discord:monkey_arma| I'd like to see less programming languages. We don't need millions of languages with differing bits here and there.
[2024-08-01 05:58:37] <armagetronbridge> 14discord:monkey_arma| Morning Deli ๐
[2024-08-01 05:58:37] <armagetron-bridge> 14discord:monkey_arma| Morning Deli ๐
[2024-08-01 05:58:43] <armagetronbridge> 14discord:monkey_arma| i can see you typing
[2024-08-01 05:58:44] <armagetron-bridge> 14discord:monkey_arma| i can see you typing
[2024-08-01 06:00:22] <armagetronbridge> 08discord:delinquent| hoi :)
[2024-08-01 06:00:22] <armagetron-bridge> 08discord:delinquent| hoi :)
[2024-08-01 06:00:23] <armagetron-bridge> 08discord:delinquent| openjdk. But no, it';s not fast. Rust has a few people problems that make it largely unviable for anything standardised at the moment.
[2024-08-01 06:00:23] <armagetronbridge> 08discord:delinquent| openjdk. But no, it';s not fast. Rust has a few people problems that make it largely unviable for anything standardised at the moment.
[2024-08-01 06:00:24] <armagetron-bridge> 08discord:delinquent| What are we needing with respect to website stuff, what are we needing? I have the capability to host simple websites here, or on other parts of my infra. If they're not getting hammered with requests 24/7, I don't mind doing that for free. Or, get a free oracle/amazon/azure instance and host it yourself - although that's more complicated. I can walk you through the process of pr <clipped message>
[2024-08-01 06:00:24] <armagetronbridge> 08discord:delinquent| What are we needing with respect to website stuff, what are we needing? I have the capability to host simple websites here, or on other parts of my infra. If they're not getting hammered with requests 24/7, I don't mind doing that for free. Or, get a free oracle/amazon/azure instance and host it yourself - although that's more complicated. I can walk you through the process of pr <clipped message>
[2024-08-01 06:00:25] <armagetron-bridge> 08discord:delinquent| operly setting up apache/nginx/caddy/whatever.
[2024-08-01 06:00:25] <armagetronbridge> 08discord:delinquent| operly setting up apache/nginx/caddy/whatever.
[2024-08-01 06:00:27] <armagetronbridge> 06discord:Syn| Java is ridiculously fast
[2024-08-01 06:00:27] <armagetron-bridge> 06discord:Syn| Java is ridiculously fast
[2024-08-01 06:00:36] <armagetronbridge> 06discord:Syn| https://github.com/gunnarmorling/1brc
[2024-08-01 06:00:36] <armagetron-bridge> 06discord:Syn| https://github.com/gunnarmorling/1brc
[2024-08-01 06:01:49] <armagetronbridge> 14discord:monkey_arma| "rediculously fast" compared to what ?
[2024-08-01 06:01:50] <armagetron-bridge> 14discord:monkey_arma| "rediculously fast" compared to what ?
[2024-08-01 06:02:08] <armagetronbridge> 08discord:delinquent| Syn, 1.5s vs 0.9 seconds. 0.9 is c#, and that is *not* an efficient language
[2024-08-01 06:02:08] <armagetron-bridge> 08discord:delinquent| Syn, 1.5s vs 0.9 seconds. 0.9 is c#, and that is *not* an efficient language
[2024-08-01 06:02:28] <armagetronbridge> 14discord:monkey_arma| c# is MS version of C++
[2024-08-01 06:02:28] <armagetron-bridge> 14discord:monkey_arma| c# is MS version of C++
[2024-08-01 06:02:37] <armagetronbridge> 08discord:delinquent| also, 1brc is not necessarily a real-world challenge. JSP is... not great
[2024-08-01 06:02:37] <armagetron-bridge> 08discord:delinquent| also, 1brc is not necessarily a real-world challenge. JSP is... not great
[2024-08-01 06:03:23] <armagetronbridge> 08discord:delinquent| hmmm. I'd contest that a bit. C# is built on *top* of C, but its more high level than C++ is
[2024-08-01 06:03:23] <armagetron-bridge> 08discord:delinquent| hmmm. I'd contest that a bit. C# is built on *top* of C, but its more high level than C++ is
[2024-08-01 06:04:03] <armagetronbridge> 03discord:ninjapotato1080| always heard it as MS-Java ๐
[2024-08-01 06:04:03] <armagetron-bridge> 03discord:ninjapotato1080| always heard it as MS-Java ๐
[2024-08-01 06:04:07] <armagetronbridge> 08discord:delinquent| lol
[2024-08-01 06:04:07] <armagetron-bridge> 08discord:delinquent| lol
[2024-08-01 06:04:08] <armagetronbridge> 14discord:monkey_arma| haha
[2024-08-01 06:04:09] <armagetron-bridge> 14discord:monkey_arma| haha
[2024-08-01 06:04:55] <armagetronbridge> 08discord:delinquent| Franly, if any open-source lang got the level of dedication given to it that c# has had, we'd be smashing it out the park with lang avialability. The syntax for c# is somthing I like very much, hence my slowly-progressing move to D
[2024-08-01 06:04:55] <armagetron-bridge> 08discord:delinquent| Franly, if any open-source lang got the level of dedication given to it that c# has had, we'd be smashing it out the park with lang avialability. The syntax for c# is somthing I like very much, hence my slowly-progressing move to D
[2024-08-01 06:05:29] <armagetronbridge> 08discord:delinquent| also, ms-java would be J# @ninjapotato1080
[2024-08-01 06:05:30] <armagetron-bridge> 08discord:delinquent| also, ms-java would be J# @ninjapotato1080
[2024-08-01 06:05:59] <armagetronbridge> 03discord:ninjapotato1080| hah fair, I don't know enough java to confirm or deny it myself ๐
[2024-08-01 06:05:59] <armagetron-bridge> 03discord:ninjapotato1080| hah fair, I don't know enough java to confirm or deny it myself ๐
[2024-08-01 06:06:46] <armagetronbridge> 14discord:monkey_arma| you dont really need java. just program for portability using the right libraries, tools and techniques and you should be pretty good to go...
[2024-08-01 06:06:46] <armagetron-bridge> 14discord:monkey_arma| you dont really need java. just program for portability using the right libraries, tools and techniques and you should be pretty good to go...
[2024-08-01 06:07:20] <armagetronbridge> 14discord:monkey_arma| not saying that is super easy but nowadays we can do that
[2024-08-01 06:07:20] <armagetron-bridge> 14discord:monkey_arma| not saying that is super easy but nowadays we can do that
[2024-08-01 06:08:06] <armagetronbridge> 08discord:delinquent| Java sucks, because it doesn't permit overloading
[2024-08-01 06:08:06] <armagetron-bridge> 08discord:delinquent| Java sucks, because it doesn't permit overloading
[2024-08-01 06:08:21] <armagetronbridge> 14discord:monkey_arma| operator overloading you mean?
[2024-08-01 06:08:21] <armagetron-bridge> 14discord:monkey_arma| operator overloading you mean?
[2024-08-01 06:08:54] <armagetronbridge> 08discord:delinquent| no, method overloading
[2024-08-01 06:08:54] <armagetron-bridge> 08discord:delinquent| no, method overloading
[2024-08-01 06:08:55] <armagetron-bridge> 14discord:monkey_arma| also IIRC, it only has single inheritance
[2024-08-01 06:08:55] <armagetronbridge> 14discord:monkey_arma| also IIRC, it only has single inheritance
[2024-08-01 06:09:17] <armagetronbridge> 14discord:monkey_arma| if ur gonna do object oriented then at least do it fully
[2024-08-01 06:09:17] <armagetron-bridge> 14discord:monkey_arma| if ur gonna do object oriented then at least do it fully
[2024-08-01 06:10:29] <armagetronbridge> 08discord:delinquent| ```c#
[2024-08-01 06:10:30] <armagetron-bridge> 08discord:delinquent| ```c#
[2024-08-01 06:10:30] <armagetron-bridge> 08discord:delinquent| bool iHaveOneParameter(string truth)
[2024-08-01 06:10:30] <armagetronbridge> 08discord:delinquent| bool iHaveOneParameter(string truth)
[2024-08-01 06:10:31] <armagetron-bridge> 08discord:delinquent| {
[2024-08-01 06:10:31] <armagetronbridge> 08discord:delinquent| {
[2024-08-01 06:10:32] <armagetron-bridge> 08discord:delinquent| return true;
[2024-08-01 06:10:33] <armagetronbridge> 08discord:delinquent| return true;
[2024-08-01 06:10:34] <armagetron-bridge> 08discord:delinquent| }
[2024-08-01 06:10:34] <armagetronbridge> 08discord:delinquent| }
[2024-08-01 06:10:35] <armagetron-bridge> 08discord:delinquent| bool iHaveOneParameter(string truth, int lie)
[2024-08-01 06:10:35] <armagetronbridge> 08discord:delinquent| bool iHaveOneParameter(string truth, int lie)
[2024-08-01 06:10:36] <armagetron-bridge> 08discord:delinquent| {
[2024-08-01 06:10:36] <armagetronbridge> 08discord:delinquent| {
[2024-08-01 06:10:38] <armagetron-bridge> 08discord:delinquent| return false;
[2024-08-01 06:10:38] <armagetronbridge> 08discord:delinquent| return false;
[2024-08-01 06:10:39] <armagetron-bridge> 08discord:delinquent| }
[2024-08-01 06:10:39] <armagetronbridge> 08discord:delinquent| }
[2024-08-01 06:10:40] <armagetron-bridge> 08discord:delinquent| ```
[2024-08-01 06:10:40] <armagetronbridge> 08discord:delinquent| ```
[2024-08-01 06:11:00] <armagetronbridge> 08discord:delinquent| Method overloading permits the implementation of multiple methods by the same call, dependent ont eh number of parameters passed
[2024-08-01 06:11:01] <armagetron-bridge> 08discord:delinquent| Method overloading permits the implementation of multiple methods by the same call, dependent ont eh number of parameters passed
[2024-08-01 06:11:11] <armagetronbridge> 14discord:monkey_arma| ah yes
[2024-08-01 06:11:11] <armagetron-bridge> 14discord:monkey_arma| ah yes
[2024-08-01 06:11:25] <armagetronbridge> 08discord:delinquent| anyway, whats this about a website?
[2024-08-01 06:11:26] <armagetron-bridge> 08discord:delinquent| anyway, whats this about a website?
[2024-08-01 06:11:31] <armagetronbridge> 08discord:delinquent| Teke wanna put up a portfolio?
[2024-08-01 06:11:31] <armagetron-bridge> 08discord:delinquent| Teke wanna put up a portfolio?
[2024-08-01 06:12:15] <armagetronbridge> 14discord:monkey_arma| ah right, so teke wants one or more websites as he is a freelancer in several professions
[2024-08-01 06:12:15] <armagetron-bridge> 14discord:monkey_arma| ah right, so teke wants one or more websites as he is a freelancer in several professions
[2024-08-01 06:12:45] <armagetronbridge> 14discord:monkey_arma| i spent some time last night with him looking at stuff, including vultr, which nanu recommended
[2024-08-01 06:12:45] <armagetron-bridge> 14discord:monkey_arma| i spent some time last night with him looking at stuff, including vultr, which nanu recommended
[2024-08-01 06:13:10] <armagetronbridge> 08discord:delinquent| Vultr is passable, but can he afford it?
[2024-08-01 06:13:10] <armagetron-bridge> 08discord:delinquent| Vultr is passable, but can he afford it?
[2024-08-01 06:13:16] <armagetronbridge> 14discord:monkey_arma| so they do have openbsd as an option too. have you heard of them and what is ur opinion?
[2024-08-01 06:13:16] <armagetron-bridge> 14discord:monkey_arma| so they do have openbsd as an option too. have you heard of them and what is ur opinion?
[2024-08-01 06:13:41] <armagetronbridge> 14discord:monkey_arma| for a fairly simple website it will be about $6 per month including VAT. i will pay for half
[2024-08-01 06:13:41] <armagetron-bridge> 14discord:monkey_arma| for a fairly simple website it will be about $6 per month including VAT. i will pay for half
[2024-08-01 06:13:45] <armagetronbridge> 08discord:delinquent| Mine costs me about four quid a month, which is the instance I stood up revolt on, but that translates into maybe $10
[2024-08-01 06:13:45] <armagetron-bridge> 08discord:delinquent| Mine costs me about four quid a month, which is the instance I stood up revolt on, but that translates into maybe $10
[2024-08-01 06:13:55] <armagetronbridge> 08discord:delinquent| at the most anyway
[2024-08-01 06:13:55] <armagetron-bridge> 08discord:delinquent| at the most anyway
[2024-08-01 06:14:05] <armagetronbridge> 08discord:delinquent| iunno how the exchange rate works in Venezuela
[2024-08-01 06:14:06] <armagetron-bridge> 08discord:delinquent| iunno how the exchange rate works in Venezuela
[2024-08-01 06:14:11] <armagetronbridge> 14discord:monkey_arma| who are you with if you dont mind me asking?
[2024-08-01 06:14:11] <armagetron-bridge> 14discord:monkey_arma| who are you with if you dont mind me asking?
[2024-08-01 06:14:23] <armagetronbridge> 14discord:monkey_arma| we will pay using paypal
[2024-08-01 06:14:23] <armagetron-bridge> 14discord:monkey_arma| we will pay using paypal
[2024-08-01 06:15:09] <armagetronbridge> 08discord:delinquent| My business infra is mine, with physical hardware. My IP lease is from Oracle, the revolt instance is wth Vultr, and there's a few bits and pieces dotted aroudn that I'm slowly moving to my own infra
[2024-08-01 06:15:10] <armagetron-bridge> 08discord:delinquent| My business infra is mine, with physical hardware. My IP lease is from Oracle, the revolt instance is wth Vultr, and there's a few bits and pieces dotted aroudn that I'm slowly moving to my own infra
[2024-08-01 06:15:31] <armagetronbridge> 08discord:delinquent| only reason I have vultr is because I couldn't get revolt to work on aarch64
[2024-08-01 06:15:31] <armagetron-bridge> 08discord:delinquent| only reason I have vultr is because I couldn't get revolt to work on aarch64
[2024-08-01 06:15:40] <armagetronbridge> 14discord:monkey_arma| ah ok
[2024-08-01 06:15:40] <armagetron-bridge> 14discord:monkey_arma| ah ok
[2024-08-01 06:15:50] <armagetronbridge> 14discord:monkey_arma| so you have bare metal?
[2024-08-01 06:15:50] <armagetron-bridge> 14discord:monkey_arma| so you have bare metal?
[2024-08-01 06:15:52] <armagetronbridge> 14discord:monkey_arma| nice!
[2024-08-01 06:15:53] <armagetron-bridge> 14discord:monkey_arma| nice!
[2024-08-01 06:15:57] <armagetronbridge> 08discord:delinquent| Weeel
[2024-08-01 06:15:57] <armagetron-bridge> 08discord:delinquent| Weeel
[2024-08-01 06:16:06] <armagetronbridge> 08discord:delinquent| technically yes, but there's a *lot* of xen
[2024-08-01 06:16:06] <armagetron-bridge> 08discord:delinquent| technically yes, but there's a *lot* of xen
[2024-08-01 06:16:10] <armagetronbridge> 14discord:monkey_arma| aha
[2024-08-01 06:16:11] <armagetron-bridge> 14discord:monkey_arma| aha
[2024-08-01 06:17:32] <armagetronbridge> 08discord:delinquent| each customer gets their own little walled off space on each platform, and a bunch of prefabbed VMs spin up with all the agent workers and whatnot installed. I'm doing that by hand at the moment, until I'm more confident in not having to babysit the lot, but eventually that wll be an entirely automated process.
[2024-08-01 06:17:32] <armagetron-bridge> 08discord:delinquent| each customer gets their own little walled off space on each platform, and a bunch of prefabbed VMs spin up with all the agent workers and whatnot installed. I'm doing that by hand at the moment, until I'm more confident in not having to babysit the lot, but eventually that wll be an entirely automated process.
[2024-08-01 06:18:12] <armagetronbridge> 14discord:monkey_arma| oh nice, so you're effectively doing what vultr does yourself?
[2024-08-01 06:18:12] <armagetron-bridge> 14discord:monkey_arma| oh nice, so you're effectively doing what vultr does yourself?
[2024-08-01 06:20:54] <armagetronbridge> 08discord:delinquent| Well, no texactly. It's more like purpose-built stuff, like, say, s3 from amazon. The VM that gets spun up has a very basic, stripped down linux on it, which is only accessible via the application or via vlan-local ssh. The vlan stuff is also a bit of amess at teh moment too, each "group" of machines has an encompassing network, then there's a bunch of networks inside it. If I w <clipped message>
[2024-08-01 06:20:54] <armagetron-bridge> 08discord:delinquent| Well, no texactly. It's more like purpose-built stuff, like, say, s3 from amazon. The VM that gets spun up has a very basic, stripped down linux on it, which is only accessible via the application or via vlan-local ssh. The vlan stuff is also a bit of amess at teh moment too, each "group" of machines has an encompassing network, then there's a bunch of networks inside it. If I w <clipped message>
[2024-08-01 06:20:55] <armagetron-bridge> 08discord:delinquent| ant to access any one machine, it's a bit of a centipede of ssh tunnels and certificates
[2024-08-01 06:20:55] <armagetronbridge> 08discord:delinquent| ant to access any one machine, it's a bit of a centipede of ssh tunnels and certificates
[2024-08-01 06:21:18] <armagetronbridge> 08discord:delinquent| If I were a proper sysadmin I might have a better solution ngl
[2024-08-01 06:21:18] <armagetron-bridge> 08discord:delinquent| If I were a proper sysadmin I might have a better solution ngl
[2024-08-01 06:22:12] <armagetronbridge> 06discord:Syn| tfw i want to get involved in code talk but i have to actually code
[2024-08-01 06:22:13] <armagetron-bridge> 06discord:Syn| tfw i want to get involved in code talk but i have to actually code
[2024-08-01 06:22:37] <armagetronbridge> 08discord:delinquent| Anyway, I would avoid using BSD in a prod environment like that. I'd either stick with Ubuntu or Debian, purely for the sake of compatibility. I'd say the former over hte latter too, there are some fairly important patches to apache of late
[2024-08-01 06:22:37] <armagetron-bridge> 08discord:delinquent| Anyway, I would avoid using BSD in a prod environment like that. I'd either stick with Ubuntu or Debian, purely for the sake of compatibility. I'd say the former over hte latter too, there are some fairly important patches to apache of late
[2024-08-01 06:23:24] <armagetronbridge> 14discord:monkey_arma| na, openbsd has everything Teke needs...they have openhttpd and opensmtpd
[2024-08-01 06:23:24] <armagetron-bridge> 14discord:monkey_arma| na, openbsd has everything Teke needs...they have openhttpd and opensmtpd
[2024-08-01 06:23:32] <armagetronbridge> 14discord:monkey_arma| apache will be overkill
[2024-08-01 06:23:32] <armagetron-bridge> 14discord:monkey_arma| apache will be overkill
[2024-08-01 06:23:48] <armagetronbridge> 08discord:delinquent| if he wants multiple sites, apache is much easier to use
[2024-08-01 06:23:48] <armagetron-bridge> 08discord:delinquent| if he wants multiple sites, apache is much easier to use
[2024-08-01 06:23:50] <armagetronbridge> 14discord:monkey_arma| plus is more secure
[2024-08-01 06:23:50] <armagetron-bridge> 14discord:monkey_arma| plus is more secure
[2024-08-01 06:24:00] <armagetronbridge> 14discord:monkey_arma| have you used openhttpd?
[2024-08-01 06:24:00] <armagetron-bridge> 14discord:monkey_arma| have you used openhttpd?
[2024-08-01 06:24:05] <armagetronbridge> 08discord:delinquent| plus, certbot works wiht apache, so SSL for free and automated renewals
[2024-08-01 06:24:05] <armagetron-bridge> 08discord:delinquent| plus, certbot works wiht apache, so SSL for free and automated renewals
[2024-08-01 06:24:31] <armagetronbridge> 08discord:delinquent| does openhttpd support virtualhosts in config files in the same way that apache and nginx do?
[2024-08-01 06:24:31] <armagetron-bridge> 08discord:delinquent| does openhttpd support virtualhosts in config files in the same way that apache and nginx do?
[2024-08-01 06:24:34] <armagetronbridge> 14discord:monkey_arma| he only wants something simple..maybe not even dynamic...or possibly just a touch
[2024-08-01 06:24:35] <armagetron-bridge> 14discord:monkey_arma| he only wants something simple..maybe not even dynamic...or possibly just a touch
[2024-08-01 06:24:42] <armagetronbridge> 08discord:delinquent| Still needs ssl
[2024-08-01 06:24:42] <armagetron-bridge> 08discord:delinquent| Still needs ssl
[2024-08-01 06:25:02] <armagetronbridge> 14discord:monkey_arma| of course
[2024-08-01 06:25:02] <armagetron-bridge> 14discord:monkey_arma| of course
[2024-08-01 06:25:52] <armagetronbridge> 14discord:monkey_arma| if the openbsd guys can run their sites with it..and they deal with much more traffic and complicated situations than we will..then it will be fine
[2024-08-01 06:25:52] <armagetron-bridge> 14discord:monkey_arma| if the openbsd guys can run their sites with it..and they deal with much more traffic and complicated situations than we will..then it will be fine
[2024-08-01 06:26:22] <armagetronbridge> 14discord:monkey_arma| IF we ever needed nginx or apache, they are available too in openbsd
[2024-08-01 06:26:22] <armagetron-bridge> 14discord:monkey_arma| IF we ever needed nginx or apache, they are available too in openbsd
[2024-08-01 06:27:09] <armagetronbridge> 08discord:delinquent| Well, if you want to do so, do so - but bear in mind you'll be practically the only port of call for him if shit goes TITSUP
[2024-08-01 06:27:09] <armagetron-bridge> 08discord:delinquent| Well, if you want to do so, do so - but bear in mind you'll be practically the only port of call for him if shit goes TITSUP
[2024-08-01 06:27:58] <armagetronbridge> 14discord:monkey_arma| im fine with that..firstly i have the time and energy to do it...secondly i'll back everything up so if he wants to change it can be done easily
[2024-08-01 06:27:58] <armagetron-bridge> 14discord:monkey_arma| im fine with that..firstly i have the time and energy to do it...secondly i'll back everything up so if he wants to change it can be done easily
[2024-08-01 06:28:18] <armagetronbridge> 08discord:delinquent| riger dodger
[2024-08-01 06:28:18] <armagetron-bridge> 08discord:delinquent| riger dodger
[2024-08-01 06:28:20] <armagetronbridge> 14discord:monkey_arma| plus i know it better than linux
[2024-08-01 06:28:20] <armagetron-bridge> 14discord:monkey_arma| plus i know it better than linux
[2024-08-01 06:28:25] <armagetronbridge> 08discord:delinquent| ew i cant type today
[2024-08-01 06:28:25] <armagetron-bridge> 08discord:delinquent| ew i cant type today
[2024-08-01 06:29:50] <armagetronbridge> 08discord:delinquent| Oh and also, email is a bit of a different beast today. I strongly suggest using something like mailcow for the sake of simplicity. Vultr does support rdns, but you'll have to handle spf, dkim, and dmarc all yourself
[2024-08-01 06:29:50] <armagetron-bridge> 08discord:delinquent| Oh and also, email is a bit of a different beast today. I strongly suggest using something like mailcow for the sake of simplicity. Vultr does support rdns, but you'll have to handle spf, dkim, and dmarc all yourself
[2024-08-01 06:30:29] <armagetronbridge> 08discord:delinquent| and use an email form, rather than a mailto address. Crawlers are *everywhere* these days and they straight up ignore robots.txt
[2024-08-01 06:30:30] <armagetron-bridge> 08discord:delinquent| and use an email form, rather than a mailto address. Crawlers are *everywhere* these days and they straight up ignore robots.txt
[2024-08-01 06:32:13] <armagetronbridge> 14discord:monkey_arma| ok i will look into all that..before i do anything major i'll check here with you guys too. im assuming openbsd has what we need for email in the base system, if not then i will use ports
[2024-08-01 06:32:13] <armagetron-bridge> 14discord:monkey_arma| ok i will look into all that..before i do anything major i'll check here with you guys too. im assuming openbsd has what we need for email in the base system, if not then i will use ports
[2024-08-01 06:32:39] <armagetronbridge> 14discord:monkey_arma| i gtg, the gf is going nuts with me for not getting ready lol
[2024-08-01 06:32:39] <armagetron-bridge> 14discord:monkey_arma| i gtg, the gf is going nuts with me for not getting ready lol
[2024-08-01 06:32:48] <armagetronbridge> 08discord:delinquent| Honestly, don't use built-in mail agents. *pleasepleaseplease*
[2024-08-01 06:32:48] <armagetron-bridge> 08discord:delinquent| Honestly, don't use built-in mail agents. *pleasepleaseplease*
[2024-08-01 06:33:18] <armagetronbridge> 14discord:monkey_arma| i'll look into it deli, gtg now
[2024-08-01 06:33:18] <armagetron-bridge> 14discord:monkey_arma| i'll look into it deli, gtg now
[2024-08-01 07:37:02] <armagetronbridge> 06discord:Syn| https://cdn.discordapp.com/attachments/209759416604426242/1268532943135969342/GT5CV-4XIAAnsX7.png?ex=66acc4dd&is=66ab735d&hm=d05e01be31871115ec2f30a1480643af7765a0ed3f407ef77cd25cca38245a45&
[2024-08-01 07:37:02] <armagetron-bridge> 06discord:Syn| https://cdn.discordapp.com/attachments/209759416604426242/1268532943135969342/GT5CV-4XIAAnsX7.png?ex=66acc4dd&is=66ab735d&hm=d05e01be31871115ec2f30a1480643af7765a0ed3f407ef77cd25cca38245a45&
[2024-08-01 07:37:24] <armagetronbridge> 06discord:Syn| xd
[2024-08-01 07:37:25] <armagetron-bridge> 06discord:Syn| xd
[2024-08-01 07:37:25] <armagetron-bridge> 06discord:Syn| https://cdn.discordapp.com/attachments/209759416604426242/1268533038581547060/FqU1kdGXgAIAAbD.png?ex=66acc4f4&is=66ab7374&hm=d0e907f68ea15584a9006ed0531c1937e22fb88c6e913c3a6a181de4e88f7abe&
[2024-08-01 07:37:26] <armagetronbridge> 06discord:Syn| https://cdn.discordapp.com/attachments/209759416604426242/1268533038581547060/FqU1kdGXgAIAAbD.png?ex=66acc4f4&is=66ab7374&hm=d0e907f68ea15584a9006ed0531c1937e22fb88c6e913c3a6a181de4e88f7abe&
[2024-08-01 07:37:38] <armagetronbridge> 06discord:Syn| remember when graphics cards were esoteric gamer gear
[2024-08-01 07:37:38] <armagetron-bridge> 06discord:Syn| remember when graphics cards were esoteric gamer gear
[2024-08-01 07:39:44] <armagetronbridge> 06discord:Syn| personally im trying to get closer to the cliff edge
[2024-08-01 07:39:44] <armagetron-bridge> 06discord:Syn| personally im trying to get closer to the cliff edge
[2024-08-01 10:34:39] <armagetronbridge> 14discord:monkey_arma| @northernscrub So, OpenSMTPD has been around since 2013 and is highly portable, working on pretty much all UNIX-like OSes, including Linux. It's in Debian, Arch, etc, I have checked. It looks good so far.
[2024-08-01 10:34:39] <armagetron-bridge> 14discord:monkey_arma| @northernscrub So, OpenSMTPD has been around since 2013 and is highly portable, working on pretty much all UNIX-like OSes, including Linux. It's in Debian, Arch, etc, I have checked. It looks good so far.
[2024-08-01 10:40:09] -!- Juest changed nick to Guest1857
[2024-08-01 10:40:18] --> Juest has joined the channel
[2024-08-01 10:47:51] <-- Guest1857 has quit (Ping timeout: 480 seconds)
[2024-08-01 10:53:40] <-- Juest has quit (Ping timeout: 265 seconds)
[2024-08-01 10:53:58] <armagetronbridge> 08discord:delinquent| the reason I suggested mailcow is because it's a complete mail package, not just an smtp relay. It even includes web access, hsould it be required. It can also accept routing through apache, which makes configuring SSL for your mailserver much, *much* easier
[2024-08-01 10:53:58] <armagetron-bridge> 08discord:delinquent| the reason I suggested mailcow is because it's a complete mail package, not just an smtp relay. It even includes web access, hsould it be required. It can also accept routing through apache, which makes configuring SSL for your mailserver much, *much* easier
[2024-08-01 10:54:45] <armagetronbridge> 08discord:delinquent| It also includes ClamAV, as well as r.... I forget, the anti-spam thing
[2024-08-01 10:54:45] <armagetron-bridge> 08discord:delinquent| It also includes ClamAV, as well as r.... I forget, the anti-spam thing
[2024-08-01 10:56:34] --> Juest has joined the channel
[2024-08-01 12:42:36] <armagetronbridge> 14discord:monkey_arma| there are other daemons/programs in openbsd that do those things, such as spamd, openhttpd, etc. if i do need to use a non-base daemon/program for some functionality then so be it. i'll keep learning what i need to for now and i'll soon find out what i do and dont need. i'll still put here what im thinking of using so you can say what you think. i'll try use tools that are cross-platform etc
[2024-08-01 12:42:36] <armagetron-bridge> 14discord:monkey_arma| there are other daemons/programs in openbsd that do those things, such as spamd, openhttpd, etc. if i do need to use a non-base daemon/program for some functionality then so be it. i'll keep learning what i need to for now and i'll soon find out what i do and dont need. i'll still put here what im thinking of using so you can say what you think. i'll try use tools that are cross-platform etc
[2024-08-01 12:43:07] <armagetronbridge> 14discord:monkey_arma| i have to go again lol but i will be on later for longer
[2024-08-01 12:43:07] <armagetron-bridge> 14discord:monkey_arma| i have to go again lol but i will be on later for longer
[2024-08-01 13:59:37] --> Sauss-Ente has joined the channel
[2024-08-01 15:17:24] <armagetronbridge> 08discord:Teko| I've been reading you guys, trying to figure out the details, but I understand the thing in general.
[2024-08-01 15:17:24] <armagetron-bridge> 08discord:Teko| I've been reading you guys, trying to figure out the details, but I understand the thing in general.
[2024-08-01 15:17:24] <armagetron-bridge> 08discord:Teko| I guess both are trying to apply your knowledge on what's important, also consider it's just the beginning, and I'm like the only worker of my company so adding a lot of things from the very beginning could be overwelming(?)
[2024-08-01 15:17:25] <armagetronbridge> 08discord:Teko| I guess both are trying to apply your knowledge on what's important, also consider it's just the beginning, and I'm like the only worker of my company so adding a lot of things from the very beginning could be overwelming(?)
[2024-08-01 15:17:26] <armagetron-bridge> 08discord:Teko| So trying to make some order, consider I just want a space to post what I can do as an engineer and musician to offer those services to the most people I can reach, hopefully in the future I may hire someone and make it grow, but I believe for this year, something like a portfolio or a catalogue could work
[2024-08-01 15:17:26] <armagetronbridge> 08discord:Teko| So trying to make some order, consider I just want a space to post what I can do as an engineer and musician to offer those services to the most people I can reach, hopefully in the future I may hire someone and make it grow, but I believe for this year, something like a portfolio or a catalogue could work
[2024-08-01 15:19:12] <armagetron-bridge> 08discord:Teko| I know there's a lot more going on in the background, but remember to consider the size of the project so you can agree more on small decisions
[2024-08-01 15:19:12] <armagetronbridge> 08discord:Teko| I know there's a lot more going on in the background, but remember to consider the size of the project so you can agree more on small decisions
[2024-08-01 15:21:31] <armagetronbridge> 08discord:delinquent| If monkey's gonna do the do with you, then it's probably he who will make the call on the structure of the webserver. We're just grumbling about it, that's all :D
[2024-08-01 15:21:31] <armagetron-bridge> 08discord:delinquent| If monkey's gonna do the do with you, then it's probably he who will make the call on the structure of the webserver. We're just grumbling about it, that's all :D
[2024-08-01 15:26:47] <-- monr0e has quit (Remote host closed the connection)
[2024-08-01 15:26:47] <-- delinquent has quit (Remote host closed the connection)
[2024-08-01 15:31:53] <armagetronbridge> 08discord:Teko| Got it
[2024-08-01 15:31:53] <armagetron-bridge> 08discord:Teko| Got it
[2024-08-01 16:25:03] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-01 18:11:54] <armagetronbridge> 14discord:monkey_arma| Something to remember is that any code, setup files,etc has to be maintained into the future. I am trying to keep things both simple and cross platform at the same time. I do listen to everyone...whether i agree or disagree is another matter ๐
[2024-08-01 18:11:54] <armagetron-bridge> 14discord:monkey_arma| Something to remember is that any code, setup files,etc has to be maintained into the future. I am trying to keep things both simple and cross platform at the same time. I do listen to everyone...whether i agree or disagree is another matter ๐
[2024-08-01 18:14:57] <armagetronbridge> 14discord:monkey_arma| @amazing_stories We would love to have you on board, offering as much or as little time and energy as you have for this project btw.
[2024-08-01 18:14:58] <armagetron-bridge> 14discord:monkey_arma| @amazing_stories We would love to have you on board, offering as much or as little time and energy as you have for this project btw.
[2024-08-01 18:17:05] <armagetronbridge> 06discord:sine.wav| What project? I haven't been reading chat lately, can you link to the start of the conversation? I've been pretty busy with other projects, and I haven't even played this game since probably January.
[2024-08-01 18:17:05] <armagetron-bridge> 06discord:sine.wav| What project? I haven't been reading chat lately, can you link to the start of the conversation? I've been pretty busy with other projects, and I haven't even played this game since probably January.
[2024-08-01 18:19:40] <armagetronbridge> 14discord:monkey_arma| https://discord.com/channels/209759416604426242/209759416604426242/1268344971195584532
[2024-08-01 18:19:40] <armagetron-bridge> 14discord:monkey_arma| https://discord.com/channels/209759416604426242/209759416604426242/1268344971195584532
[2024-08-01 18:20:18] <armagetronbridge> 14discord:monkey_arma| There is a lot to read. If you want a summary i could do that instead..up to u
[2024-08-01 18:20:18] <armagetron-bridge> 14discord:monkey_arma| There is a lot to read. If you want a summary i could do that instead..up to u
[2024-08-01 18:34:32] <armagetronbridge> 06discord:sine.wav| Oh wow. I can't really get involved with something like that right now. I've basically stopped making websites, which is one of the reasons I passed retrocycles.net over to Z-Man. My focus lately is positioning myself to buy the company I work for (a broker for the printing industry). It is taking a lot of my time. I'm basically trying to set up some easy work I can do until I re <clipped message>
[2024-08-01 18:34:32] <armagetron-bridge> 06discord:sine.wav| Oh wow. I can't really get involved with something like that right now. I've basically stopped making websites, which is one of the reasons I passed retrocycles.net over to Z-Man. My focus lately is positioning myself to buy the company I work for (a broker for the printing industry). It is taking a lot of my time. I'm basically trying to set up some easy work I can do until I re <clipped message>
[2024-08-01 18:34:33] <armagetron-bridge> 06discord:sine.wav| tire. I'm an old man now, you see.
[2024-08-01 18:34:33] <armagetronbridge> 06discord:sine.wav| tire. I'm an old man now, you see.
[2024-08-01 18:35:16] <armagetronbridge> 06discord:sine.wav| Although the company might go out of business before I can buy it...
[2024-08-01 18:35:16] <armagetron-bridge> 06discord:sine.wav| Although the company might go out of business before I can buy it...
[2024-08-01 18:36:29] <armagetronbridge> 14discord:monkey_arma| No probs sine. Even if you just give us some good advice on things when needed it would be appreciated. Good luck with your aquisition!
[2024-08-01 18:36:29] <armagetron-bridge> 14discord:monkey_arma| No probs sine. Even if you just give us some good advice on things when needed it would be appreciated. Good luck with your aquisition!
[2024-08-01 18:37:16] <armagetronbridge> 14discord:monkey_arma| For what it's worth, retrocycles.net is a pretty cool site
[2024-08-01 18:37:17] <armagetron-bridge> 14discord:monkey_arma| For what it's worth, retrocycles.net is a pretty cool site
[2024-08-01 18:37:24] <armagetronbridge> 06discord:sine.wav| ok I'll try to watch this channel
[2024-08-01 18:37:24] <armagetron-bridge> 06discord:sine.wav| ok I'll try to watch this channel
[2024-08-01 18:37:52] <armagetronbridge> 14discord:monkey_arma| ok. we will ping you for advice from time to time if that helps
[2024-08-01 18:37:52] <armagetron-bridge> 14discord:monkey_arma| ok. we will ping you for advice from time to time if that helps
[2024-08-01 18:37:58] <armagetronbridge> 06discord:sine.wav| k
[2024-08-01 18:37:58] <armagetron-bridge> 06discord:sine.wav| k
[2024-08-01 18:38:04] <armagetronbridge> 14discord:monkey_arma| you wise old man u
[2024-08-01 18:38:04] <armagetron-bridge> 14discord:monkey_arma| you wise old man u
[2024-08-01 18:39:13] <armagetronbridge> 06discord:sine.wav| I'm so goddamn old...
[2024-08-01 18:39:13] <armagetron-bridge> 06discord:sine.wav| I'm so goddamn old...
[2024-08-01 18:41:41] <armagetronbridge> 14discord:monkey_arma| what did you use to make retrocycles.net sine?
[2024-08-01 18:41:41] <armagetron-bridge> 14discord:monkey_arma| what did you use to make retrocycles.net sine?
[2024-08-01 19:19:30] <-- Armanelgtron_ has quit (No Ping reply in 180 seconds.)
[2024-08-01 19:20:34] --> Armanelgtron has joined the channel
[2024-08-01 19:20:34] -!- Topic for #armagetron is "Armagetron Advanced | http://www.armagetronad.org/ | Welcome to IRC"
[2024-08-01 19:20:34] -!- Topic set by ChanServ!services@services.oftc.net on 2024-07-16 04:51:12 UTC
[2024-08-01 19:20:36] -!- larich.oftc.net set mode #armagetron +nt
[2024-08-01 19:20:36] -!- Channel #armagetron created on 2021-04-20 19:56:37 UTC
[2024-08-01 20:02:37] <armagetronbridge> 10discord:NorthernScrub| Lol magi I tried our analogue of that ear stuff you have. Absolutely worthless and my ears crackled all day no matter how many times I rinsed them out
[2024-08-01 20:02:37] <armagetron-bridge> 10discord:NorthernScrub| Lol magi I tried our analogue of that ear stuff you have. Absolutely worthless and my ears crackled all day no matter how many times I rinsed them out
[2024-08-01 20:02:44] <armagetronbridge> 10discord:NorthernScrub| Weirdest sensation too
[2024-08-01 20:02:44] <armagetron-bridge> 10discord:NorthernScrub| Weirdest sensation too
[2024-08-01 21:09:14] <armagetronbridge> 08discord:Teko| If you ever try an art attack project, you are, else, you're not xd
[2024-08-01 21:09:14] <armagetron-bridge> 08discord:Teko| If you ever try an art attack project, you are, else, you're not xd
[2024-08-01 21:49:02] <-- Juest has quit (Ping timeout: 255 seconds)
[2024-08-01 21:58:10] --> Juest has joined the channel
[2024-08-01 23:15:43] <armagetronbridge> 06discord:sine.wav| The whole site is a single HTML file with some CSS. Not even any JavaScript. Here is the whole thing zipped at 2.8MB, and 2.4 of it is just a font.
[2024-08-01 23:15:43] <armagetron-bridge> 06discord:sine.wav| The whole site is a single HTML file with some CSS. Not even any JavaScript. Here is the whole thing zipped at 2.8MB, and 2.4 of it is just a font.
[2024-08-01 23:15:43] <armagetron-bridge> 06discord:sine.wav| https://cdn.discordapp.com/attachments/209759416604426242/1268769170212913172/website.zip?ex=66ada0de&is=66ac4f5e&hm=eed2e1f24351a11d675df3b045bba60b25ce073a5dab519032954e3e045c806b&
[2024-08-01 23:15:43] <armagetronbridge> 06discord:sine.wav| https://cdn.discordapp.com/attachments/209759416604426242/1268769170212913172/website.zip?ex=66ada0de&is=66ac4f5e&hm=eed2e1f24351a11d675df3b045bba60b25ce073a5dab519032954e3e045c806b&
[2024-08-01 23:16:54] <armagetronbridge> 06discord:sine.wav| I've never heard of this, sounds interesting!
[2024-08-01 23:16:55] <armagetron-bridge> 06discord:sine.wav| I've never heard of this, sounds interesting!
[2024-08-01 23:18:27] <armagetronbridge> 08discord:Teko| Then you're not old enough. There was a discovery program where a guy made art with "things you can find at home" called Art attack
[2024-08-01 23:18:27] <armagetron-bridge> 08discord:Teko| Then you're not old enough. There was a discovery program where a guy made art with "things you can find at home" called Art attack
[2024-08-01 23:18:42] <armagetronbridge> 08discord:Teko| Very popular in the 90's
[2024-08-01 23:18:42] <armagetron-bridge> 08discord:Teko| Very popular in the 90's
[2024-08-01 23:19:22] <armagetronbridge> 08discord:Teko| I'm pretty sure you've watched even one episode once
[2024-08-01 23:19:22] <armagetron-bridge> 08discord:Teko| I'm pretty sure you've watched even one episode once
[2024-08-01 23:19:35] <armagetronbridge> 06discord:sine.wav| Ah, this means I'm actually too old. Art Attack in the 90s means I was already in my 20's working as an artist professionally.
[2024-08-01 23:19:35] <armagetron-bridge> 06discord:sine.wav| Ah, this means I'm actually too old. Art Attack in the 90s means I was already in my 20's working as an artist professionally.
[2024-08-01 23:19:55] <armagetronbridge> 06discord:sine.wav| I'm 52!
[2024-08-01 23:19:56] <armagetron-bridge> 06discord:sine.wav| I'm 52!
[2024-08-01 23:20:13] <armagetronbridge> 08discord:Teko| Dayum!
[2024-08-01 23:20:13] <armagetron-bridge> 08discord:Teko| Dayum!
[2024-08-01 23:20:14] <armagetronbridge> 08discord:Teko| Lmao
[2024-08-01 23:20:14] <armagetron-bridge> 08discord:Teko| Lmao
[2024-08-01 23:20:27] <armagetronbridge> 06discord:sine.wav| I'll be 53 on Oct 16
[2024-08-01 23:20:27] <armagetron-bridge> 06discord:sine.wav| I'll be 53 on Oct 16
[2024-08-01 23:21:07] <armagetronbridge> 08discord:Teko| Well i'm 31 and I make noises when i get a seat on couches, "old" is a perception xd
[2024-08-01 23:21:08] <armagetron-bridge> 08discord:Teko| Well i'm 31 and I make noises when i get a seat on couches, "old" is a perception xd
[2024-08-01 23:21:14] <armagetronbridge> 06discord:sine.wav| ha.
[2024-08-01 23:21:15] <armagetron-bridge> 06discord:sine.wav| ha.
[2024-08-01 23:25:05] <armagetronbridge> 08discord:Teko| Actually I wouldn't guess you were over 40 tbh
[2024-08-01 23:25:05] <armagetron-bridge> 08discord:Teko| Actually I wouldn't guess you were over 40 tbh
[2024-08-01 23:51:19] <armagetronbridge> 06discord:sine.wav| It's because A) I'm rather immature and B) I'm probably younger, culturally, due to my interests.
[2024-08-01 23:51:20] <armagetron-bridge> 06discord:sine.wav| It's because A) I'm rather immature and B) I'm probably younger, culturally, due to my interests.
[2024-08-01 23:54:35] <armagetronbridge> 08discord:Teko| If we think about it deeper, it's like the time concept.
[2024-08-01 23:54:35] <armagetron-bridge> 08discord:Teko| If we think about it deeper, it's like the time concept.
[2024-08-01 23:54:35] <armagetron-bridge> 08discord:Teko| If you have 10.000 years but anything changes
[2024-08-01 23:54:36] <armagetronbridge> 08discord:Teko| If you have 10.000 years but anything changes
[2024-08-01 23:54:37] <armagetron-bridge> 08discord:Teko| And on the other side you have one day but everything happens
[2024-08-01 23:54:37] <armagetronbridge> 08discord:Teko| And on the other side you have one day but everything happens
[2024-08-01 23:54:38] <armagetron-bridge> 08discord:Teko| You probably feel like time "happens" faster on that day than in those 10.000 years, bc time is a perception of change
[2024-08-01 23:54:38] <armagetronbridge> 08discord:Teko| You probably feel like time "happens" faster on that day than in those 10.000 years, bc time is a perception of change
[2024-08-01 23:55:53] <armagetronbridge> 08discord:Teko| So, age perception is based on how much you can still do with your time
[2024-08-01 23:55:53] <armagetron-bridge> 08discord:Teko| So, age perception is based on how much you can still do with your time
[2024-08-01 23:56:51] <armagetronbridge> 08discord:Teko| Since you still do a lot of things and are planning to do even more things, there is the perception that you're younger
[2024-08-01 23:56:51] <armagetron-bridge> 08discord:Teko| Since you still do a lot of things and are planning to do even more things, there is the perception that you're younger
[2024-08-01 23:57:00] <armagetronbridge> 08discord:Teko| But that's a good thing anyway
[2024-08-01 23:57:00] <armagetron-bridge> 08discord:Teko| But that's a good thing anyway
[2024-08-01 23:58:59] <armagetronbridge> 08discord:Teko| Fun fact, people that often develop skills in different areas are probably forced to be mature bc you need a lot of discipline and auto-motivation and stress management so I don't think you're immature at all xd
[2024-08-01 23:59:00] <armagetron-bridge> 08discord:Teko| Fun fact, people that often develop skills in different areas are probably forced to be mature bc you need a lot of discipline and auto-motivation and stress management so I don't think you're immature at all xd
Searching from 2024-08-02 00:00:00 to 2024-08-02 23:59:59.999999.
Query completed in 0.58 seconds
[2024-08-02 01:08:18] --> Juesto has joined the channel
[2024-08-02 01:09:44] <-- Juest has quit (Ping timeout: 247 seconds)
[2024-08-02 01:10:44] -!- Juesto changed nick to Juest
[2024-08-02 04:16:08] --> Sauss-Ente has joined the channel
[2024-08-02 04:43:33] <-- guru3 has quit (Quit: leaving)
[2024-08-02 06:18:33] <armagetronbridge> 06discord:Syn| sql and js is all u need and if u need more you're overengineering
[2024-08-02 06:18:33] <armagetron-bridge> 06discord:Syn| sql and js is all u need and if u need more you're overengineering
[2024-08-02 07:23:46] --> fcs has joined the channel
[2024-08-02 07:24:58] <-- fcs has quit ()
[2024-08-02 07:28:17] --> guru3 has joined the channel
[2024-08-02 08:49:45] --> monr0e has joined the channel
[2024-08-02 10:27:33] <armagetronbridge> 08discord:Teko| I haven't got to that point because I don't know the tools of each software, for me, Excel and Python are the same with different commands, maybe because I'm using them in lower levels(?) but still the main goal is to develop something small to show pictures and a few functions like receiving and sending emails at least
[2024-08-02 10:27:34] <armagetron-bridge> 08discord:Teko| I haven't got to that point because I don't know the tools of each software, for me, Excel and Python are the same with different commands, maybe because I'm using them in lower levels(?) but still the main goal is to develop something small to show pictures and a few functions like receiving and sending emails at least
[2024-08-02 11:18:31] <armagetronbridge> 06discord:Syn| there are amazing managed services like firebase and vercel and supabase for those solopreneurs
[2024-08-02 11:18:31] <armagetron-bridge> 06discord:Syn| there are amazing managed services like firebase and vercel and supabase for those solopreneurs
[2024-08-02 11:19:02] <armagetronbridge> 06discord:Syn| developed ui libraries like shadcn and tailwind offer quick and elegant admin applications
[2024-08-02 11:19:02] <armagetron-bridge> 06discord:Syn| developed ui libraries like shadcn and tailwind offer quick and elegant admin applications
[2024-08-02 11:19:30] <armagetronbridge> 06discord:Syn| i’m always preaching react for web development
[2024-08-02 11:19:30] <armagetron-bridge> 06discord:Syn| i’m always preaching react for web development
[2024-08-02 11:19:45] <armagetronbridge> 06discord:Syn| i know it comes with lots of biases and opinions but the ecosystem is just very mature
[2024-08-02 11:19:46] <armagetron-bridge> 06discord:Syn| i know it comes with lots of biases and opinions but the ecosystem is just very mature
[2024-08-02 11:56:31] -!- Juest changed nick to Guest1952
[2024-08-02 11:56:41] --> Juest has joined the channel
[2024-08-02 12:01:36] <-- Guest1952 has quit (Ping timeout: 480 seconds)
[2024-08-02 15:24:05] <armagetronbridge> 08discord:Teko| OMG open things are a whole universe
[2024-08-02 15:24:05] <armagetron-bridge> 08discord:Teko| OMG open things are a whole universe
[2024-08-02 15:24:47] <armagetronbridge> 08discord:Teko| I'm trying to learn CFD (fluid mechanics simulations) and I have installed like 4 programs to just start
[2024-08-02 15:24:47] <armagetron-bridge> 08discord:Teko| I'm trying to learn CFD (fluid mechanics simulations) and I have installed like 4 programs to just start
[2024-08-02 15:25:31] <armagetronbridge> 08discord:Teko| At least I know that's everything I need, but I feel like I'm learnin sourcery**
[2024-08-02 15:25:31] <armagetron-bridge> 08discord:Teko| At least I know that's everything I need, but I feel like I'm learnin sourcery**
[2024-08-02 15:25:51] <armagetronbridge> 08discord:Teko| Ba dum tzz
[2024-08-02 15:25:51] <armagetron-bridge> 08discord:Teko| Ba dum tzz
[2024-08-02 16:40:44] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-02 17:03:45] <-- monr0e has quit (Remote host closed the connection)
[2024-08-02 17:10:29] <-- Juest has quit (Read error: Connection reset by peer)
[2024-08-02 17:13:09] --> Juest has joined the channel
[2024-08-02 23:06:37] --> Armanelgtron has joined the channel
[2024-08-02 23:06:37] -!- Topic for #armagetron is "Armagetron Advanced | http://www.armagetronad.org/ | Welcome to IRC"
[2024-08-02 23:06:37] -!- Topic set by ChanServ!services@services.oftc.net on 2024-07-16 04:51:12 UTC
[2024-08-02 23:06:39] -!- weber.oftc.net set mode #armagetron +nt
[2024-08-02 23:06:39] -!- Channel #armagetron created on 2021-04-20 19:56:37 UTC
Searching from 2024-08-03 00:00:00 to 2024-08-03 23:59:59.999999.
Query completed in 0.56 seconds
[2024-08-03 03:10:46] --> Sauss-Ente has joined the channel
[2024-08-03 08:57:33] --> monr0e has joined the channel
[2024-08-03 11:51:29] <armagetronbridge> 08discord:Teko| How I didn't used Linux before?? I mean, it's exactly what I like from Android over Windows or IOS
[2024-08-03 11:51:29] <armagetron-bridge> 08discord:Teko| How I didn't used Linux before?? I mean, it's exactly what I like from Android over Windows or IOS
[2024-08-03 11:52:30] <armagetronbridge> 08discord:Teko| It's a bit overwhelming bc there's a loooot of information and customization, but I always used Windows like an Ubuntu user
[2024-08-03 11:52:30] <armagetron-bridge> 08discord:Teko| It's a bit overwhelming bc there's a loooot of information and customization, but I always used Windows like an Ubuntu user
[2024-08-03 12:01:39] <armagetronbridge> 14discord:monkey_arma| Are you someone that prefers the command line or GUIs?
[2024-08-03 12:01:39] <armagetron-bridge> 14discord:monkey_arma| Are you someone that prefers the command line or GUIs?
[2024-08-03 12:03:20] <armagetronbridge> 08discord:Teko| I like both, I enjoy source commands for my mind and also thankful with a nice looking graphical interface for my soul
[2024-08-03 12:03:20] <armagetron-bridge> 08discord:Teko| I like both, I enjoy source commands for my mind and also thankful with a nice looking graphical interface for my soul
[2024-08-03 12:03:35] <armagetronbridge> 08discord:Teko| Can't decide which is better
[2024-08-03 12:03:35] <armagetron-bridge> 08discord:Teko| Can't decide which is better
[2024-08-03 12:03:56] <armagetronbridge> 08discord:Teko| But deep inside I rather lines bc I feel more control
[2024-08-03 12:03:56] <armagetron-bridge> 08discord:Teko| But deep inside I rather lines bc I feel more control
[2024-08-03 12:10:16] <armagetronbridge> 08discord:Teko| xD also I'm always used to try complicated things from the very beginning. Like playing tron of course
[2024-08-03 12:10:16] <armagetron-bridge> 08discord:Teko| xD also I'm always used to try complicated things from the very beginning. Like playing tron of course
[2024-08-03 12:11:12] <armagetronbridge> 08discord:Teko| I remember when I started to play it was easier for me to HEAR the bikes to avoid them haha bc I couldn't react by sight
[2024-08-03 12:11:12] <armagetron-bridge> 08discord:Teko| I remember when I started to play it was easier for me to HEAR the bikes to avoid them haha bc I couldn't react by sight
[2024-08-03 12:12:00] <armagetronbridge> 06discord:Syn| i play with headphones and often no music so i can hear the cycles x)
[2024-08-03 12:12:00] <armagetron-bridge> 06discord:Syn| i play with headphones and often no music so i can hear the cycles x)
[2024-08-03 12:13:22] <armagetronbridge> 08discord:Teko| I don't like games to preffer graphical over gameplay options(?) but i definitely would like arma to have an upgrade in therms of sound and background
[2024-08-03 12:13:22] <armagetron-bridge> 08discord:Teko| I don't like games to preffer graphical over gameplay options(?) but i definitely would like arma to have an upgrade in therms of sound and background
[2024-08-03 12:13:30] <armagetronbridge> 08discord:Teko| Even if its a retrogame
[2024-08-03 12:13:30] <armagetron-bridge> 08discord:Teko| Even if its a retrogame
[2024-08-03 12:13:49] <armagetronbridge> 08discord:Teko| Could be refreshing
[2024-08-03 12:13:49] <armagetron-bridge> 08discord:Teko| Could be refreshing
[2024-08-03 12:14:08] <armagetronbridge> 08discord:Teko| Like that sound it makes when you bind xd
[2024-08-03 12:14:08] <armagetron-bridge> 08discord:Teko| Like that sound it makes when you bind xd
[2024-08-03 12:14:51] <armagetronbridge> 08discord:Teko| But when I could make mazes it all changed
[2024-08-03 12:14:52] <armagetron-bridge> 08discord:Teko| But when I could make mazes it all changed
[2024-08-03 12:15:17] <armagetronbridge> 08discord:Teko| I think I don't actually "look" but record by memory the steps
[2024-08-03 12:15:17] <armagetron-bridge> 08discord:Teko| I think I don't actually "look" but record by memory the steps
[2024-08-03 12:15:31] <armagetronbridge> 08discord:Teko| And the timing(?)
[2024-08-03 12:15:31] <armagetron-bridge> 08discord:Teko| And the timing(?)
[2024-08-03 14:53:18] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-03 19:17:51] <armagetronbridge> 14discord:monkey_arma| This site has a lot of information on different Linux Distributions and other info too: https://distrowatch.com
[2024-08-03 19:17:51] <armagetron-bridge> 14discord:monkey_arma| This site has a lot of information on different Linux Distributions and other info too: https://distrowatch.com
[2024-08-03 19:36:35] <armagetronbridge> 05discord:schplorf| https://tenor.com/view/linux-arch-linux-thanos-linux-user-gif-20727042
[2024-08-03 19:36:35] <armagetron-bridge> 05discord:schplorf| https://tenor.com/view/linux-arch-linux-thanos-linux-user-gif-20727042
[2024-08-03 19:38:38] <armagetronbridge> 08discord:delinquent| @tekeyoyo have a deeks at EndeavourOS. It *is* arch based, so there might be some package mismatching occasionally, but it comes with some very nice theming and UI options
[2024-08-03 19:38:39] <armagetron-bridge> 08discord:delinquent| @tekeyoyo have a deeks at EndeavourOS. It *is* arch based, so there might be some package mismatching occasionally, but it comes with some very nice theming and UI options
[2024-08-03 19:41:10] <armagetronbridge> 14discord:monkey_arma| Since we're plugging OSs, take a look at the *cough* BSD OSs too *cough*
[2024-08-03 19:41:11] <armagetron-bridge> 14discord:monkey_arma| Since we're plugging OSs, take a look at the *cough* BSD OSs too *cough*
[2024-08-03 19:51:13] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-04 00:00:00 to 2024-08-04 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-04 00:09:06] <-- Juest has quit (Read error: Connection reset by peer)
[2024-08-04 00:12:08] --> Juesto has joined the channel
[2024-08-04 00:14:18] -!- Juesto changed nick to Juest
[2024-08-04 06:42:04] --> monr0e has joined the channel
[2024-08-04 08:21:21] <-- monr0e has quit (Remote host closed the connection)
[2024-08-04 08:21:40] --> monr0e has joined the channel
[2024-08-04 19:47:06] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-05 00:00:00 to 2024-08-05 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-05 03:49:05] <armagetronbridge> 06discord:Syn| js belongs in the linux kernel
[2024-08-05 03:49:05] <armagetron-bridge> 06discord:Syn| js belongs in the linux kernel
[2024-08-05 07:18:38] --> monr0e has joined the channel
[2024-08-05 07:19:08] <armagetronbridge> 08discord:delinquent| I will hurt you
[2024-08-05 07:19:08] <armagetron-bridge> 08discord:delinquent| I will hurt you
[2024-08-05 08:49:39] <armagetronbridge> 06discord:Syn| ban me from your subreddit*
[2024-08-05 08:49:40] <armagetron-bridge> 06discord:Syn| ban me from your subreddit*
[2024-08-05 08:49:42] <armagetronbridge> 06discord:Syn| ๐คฃ
[2024-08-05 08:49:42] <armagetron-bridge> 06discord:Syn| ๐คฃ
[2024-08-05 12:36:57] --> Sauss-Ente has joined the channel
[2024-08-05 15:04:13] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-05 18:17:12] <armagetronbridge> 05discord:juesto| hey how its going?
[2024-08-05 18:17:12] <armagetron-bridge> 05discord:juesto| hey how its going?
[2024-08-05 18:17:26] <armagetronbridge> 05discord:juesto| i sorta got a musical idea developed with a structure down and im scared to record it :p
[2024-08-05 18:17:26] <armagetron-bridge> 05discord:juesto| i sorta got a musical idea developed with a structure down and im scared to record it :p
[2024-08-05 20:44:08] <-- monr0e has quit (Remote host closed the connection)
[2024-08-05 23:18:47] <armagetronbridge> 08discord:Teko| Why?
[2024-08-05 23:18:47] <armagetron-bridge> 08discord:Teko| Why?
[2024-08-05 23:24:43] --> Lucifer_arma_ has joined the channel
Searching from 2024-08-06 00:00:00 to 2024-08-06 23:59:59.999999.
Query completed in 0.65 seconds
[2024-08-06 01:29:37] <armagetronbridge> 05discord:juesto| ah just weird irrational dislike to record/store things in this world in one way or another
[2024-08-06 01:29:37] <armagetron-bridge> 05discord:juesto| ah just weird irrational dislike to record/store things in this world in one way or another
[2024-08-06 01:30:30] <armagetronbridge> 05discord:juesto| i've put stuff on https://juest.bandcamp.com and https://soundcloud.com/juest0/tracks
[2024-08-06 01:30:30] <armagetron-bridge> 05discord:juesto| i've put stuff on https://juest.bandcamp.com and https://soundcloud.com/juest0/tracks
[2024-08-06 02:54:52] <-- Lucifer_arma_ has quit (Read error: Connection reset by peer)
[2024-08-06 07:15:27] --> monr0e has joined the channel
[2024-08-06 14:04:03] <-- monr0e has quit (Remote host closed the connection)
[2024-08-06 14:05:35] --> monr0e has joined the channel
[2024-08-06 16:56:22] <-- Juest has quit ()
[2024-08-06 17:02:40] --> Juest has joined the channel
[2024-08-06 19:41:44] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-07 00:00:00 to 2024-08-07 23:59:59.999999.
Query completed in 0.58 seconds
[2024-08-07 05:59:31] --> monr0e has joined the channel
[2024-08-07 13:55:42] <armagetronbridge> 08discord:delinquent| my city is so dead rn its creepy
[2024-08-07 13:55:42] <armagetron-bridge> 08discord:delinquent| my city is so dead rn its creepy
[2024-08-07 14:09:43] <armagetronbridge> 05discord:juesto| why?
[2024-08-07 14:09:43] <armagetron-bridge> 05discord:juesto| why?
[2024-08-07 14:30:35] <armagetronbridge> 08discord:delinquent| There's a fair amount of civil unrest at the moment across our country. A russian misinformation channel posted a false identity for an individual who attacked and killed several children in southport a week or so ago, and the far-right groups leapt on it (or were perhaps sent it directly) as an excuse to "protest" the current state of our immigration services. In reality, they'v <clipped message>
[2024-08-07 14:30:36] <armagetron-bridge> 08discord:delinquent| There's a fair amount of civil unrest at the moment across our country. A russian misinformation channel posted a false identity for an individual who attacked and killed several children in southport a week or so ago, and the far-right groups leapt on it (or were perhaps sent it directly) as an excuse to "protest" the current state of our immigration services. In reality, they'v <clipped message>
[2024-08-07 14:30:36] <armagetron-bridge> 08discord:delinquent| e been allegedly hiding weapons in bushes and gardens and shit along a route, and everyone's gone turtle.
[2024-08-07 14:30:36] <armagetronbridge> 08discord:delinquent| e been allegedly hiding weapons in bushes and gardens and shit along a route, and everyone's gone turtle.
[2024-08-07 14:34:03] <armagetronbridge> 05discord:juesto| Rip
[2024-08-07 14:34:04] <armagetron-bridge> 05discord:juesto| Rip
[2024-08-07 14:34:07] <armagetronbridge> 05discord:juesto| that sucks
[2024-08-07 14:34:08] <armagetron-bridge> 05discord:juesto| that sucks
[2024-08-07 14:36:57] <armagetronbridge> 08discord:delinquent| Hm. I just found a live... tiktok? I think. The counter protest is already there and everyone is chilling and chuckling with each other. I actually hope the edl kids don't bother and everyone just has a nice lil street party
[2024-08-07 14:36:58] <armagetron-bridge> 08discord:delinquent| Hm. I just found a live... tiktok? I think. The counter protest is already there and everyone is chilling and chuckling with each other. I actually hope the edl kids don't bother and everyone just has a nice lil street party
[2024-08-07 14:42:51] <armagetronbridge> 08discord:delinquent| The street party in question:
[2024-08-07 14:42:52] <armagetronbridge> 08discord:delinquent| https://cdn.discordapp.com/attachments/209759416604426242/1270814433630748812/GUZhdKYXsAA8LZ2.jpeg?ex=66b511ab&is=66b3c02b&hm=69b26fb908891f6cb11b8b952066a95bf9cf7d18125d6b07201edd37c47b5191&
[2024-08-07 14:42:52] <armagetron-bridge> 08discord:delinquent| The street party in question:
[2024-08-07 14:42:52] <armagetron-bridge> 08discord:delinquent| https://cdn.discordapp.com/attachments/209759416604426242/1270814433630748812/GUZhdKYXsAA8LZ2.jpeg?ex=66b511ab&is=66b3c02b&hm=69b26fb908891f6cb11b8b952066a95bf9cf7d18125d6b07201edd37c47b5191&
[2024-08-07 15:37:42] <armagetronbridge> 03discord:ellis| damn
[2024-08-07 15:37:42] <armagetron-bridge> 03discord:ellis| damn
[2024-08-07 15:44:23] <armagetronbridge> 08discord:delinquent| lol they still haven't shown up yet. They're over an hour late
[2024-08-07 15:44:24] <armagetron-bridge> 08discord:delinquent| lol they still haven't shown up yet. They're over an hour late
[2024-08-07 15:56:47] <armagetronbridge> 08discord:delinquent| lol. This one dude tried to tear down a flag that was on a roundabout sign. Pretty gently moved on and very quietly arrested. I actually love my city rn
[2024-08-07 15:56:47] <armagetron-bridge> 08discord:delinquent| lol. This one dude tried to tear down a flag that was on a roundabout sign. Pretty gently moved on and very quietly arrested. I actually love my city rn
[2024-08-07 15:58:05] <armagetronbridge> 04discord:olive2306| nothing as heartwarming as solidarity against fascists
[2024-08-07 15:58:05] <armagetron-bridge> 04discord:olive2306| nothing as heartwarming as solidarity against fascists
[2024-08-07 15:59:51] <armagetronbridge> 08discord:delinquent| It's quite literally been an afternoon of chilling and chatting by all accounts. Saturday is the big test though
[2024-08-07 15:59:51] <armagetron-bridge> 08discord:delinquent| It's quite literally been an afternoon of chilling and chatting by all accounts. Saturday is the big test though
[2024-08-07 16:01:18] <armagetronbridge> 08discord:delinquent| that's their "official" day. Tonight was more of a reaction to posts that had been advertising a march. Also no idea whats happening in the back streets of fenham rn, so
[2024-08-07 16:01:18] <armagetron-bridge> 08discord:delinquent| that's their "official" day. Tonight was more of a reaction to posts that had been advertising a march. Also no idea whats happening in the back streets of fenham rn, so
[2024-08-07 16:01:59] <armagetronbridge> 08discord:delinquent| they wrapping up now. EDL didn't bother showing up. massive egg on their faces
[2024-08-07 16:01:59] <armagetron-bridge> 08discord:delinquent| they wrapping up now. EDL didn't bother showing up. massive egg on their faces
[2024-08-07 16:02:49] <armagetronbridge> 14discord:monkey_arma| We had fake news so the police showed up in riot gear but the EDL didn't even come.
[2024-08-07 16:02:49] <armagetron-bridge> 14discord:monkey_arma| We had fake news so the police showed up in riot gear but the EDL didn't even come.
[2024-08-07 16:03:29] <armagetronbridge> 08discord:delinquent| Oh I definitely think they were planning on showing up tonight, but hte massive community backlash against them has very clearly demonstrated that we don't tolerate their ilk.
[2024-08-07 16:03:29] <armagetron-bridge> 08discord:delinquent| Oh I definitely think they were planning on showing up tonight, but hte massive community backlash against them has very clearly demonstrated that we don't tolerate their ilk.
[2024-08-07 16:07:18] <armagetronbridge> 14discord:monkey_arma| Well that's something at least
[2024-08-07 16:07:18] <armagetron-bridge> 14discord:monkey_arma| Well that's something at least
[2024-08-07 17:18:37] <armagetronbridge> 14discord:Grimm| Curious what is far right where you are .. And what is edl?
[2024-08-07 17:18:37] <armagetron-bridge> 14discord:Grimm| Curious what is far right where you are .. And what is edl?
[2024-08-07 17:28:08] <armagetronbridge> 08discord:delinquent| The far right are the likes of Farage and co, and anyone further along the spectrum. The EDL stands for teh English Defence League, a *very* far right, or perhaps alt-right, islamophobic organisation. The EDL specifically are now defunct, but the groups that they inspired are generally referred to with the same name. You may possibly have heard of Tommy Robinson (real name Stephe <clipped message>
[2024-08-07 17:28:08] <armagetron-bridge> 08discord:delinquent| The far right are the likes of Farage and co, and anyone further along the spectrum. The EDL stands for teh English Defence League, a *very* far right, or perhaps alt-right, islamophobic organisation. The EDL specifically are now defunct, but the groups that they inspired are generally referred to with the same name. You may possibly have heard of Tommy Robinson (real name Stephe <clipped message>
[2024-08-07 17:28:08] <armagetron-bridge> 08discord:delinquent| n Yaxley-Lennon), who was a prominent figure in the EDL. CNN seems to love tommy, but he's the pinnacle of calling-for-violence-without-calling-for-violence. His most recent schtick is playing the victim card, putting out "documentaries" about him being silenced when his film was refused classification and barred from larger media outlets for very good reasons.
[2024-08-07 17:28:08] <armagetronbridge> 08discord:delinquent| n Yaxley-Lennon), who was a prominent figure in the EDL. CNN seems to love tommy, but he's the pinnacle of calling-for-violence-without-calling-for-violence. His most recent schtick is playing the victim card, putting out "documentaries" about him being silenced when his film was refused classification and barred from larger media outlets for very good reasons.
[2024-08-07 17:28:10] <armagetron-bridge> 08discord:delinquent| EDL and its offshoots have been known to incite, but not directly partake in, violent unrest. They, along with tommy and a few other figures, have been particularly active over this recent "cause" for unrest, citing a falsified news report of russian origin that incorrectly names the perpetrator of the southport murders as a... I think syrian refugee? I forget. Anyway, that's the <clipped message>
[2024-08-07 17:28:10] <armagetronbridge> 08discord:delinquent| EDL and its offshoots have been known to incite, but not directly partake in, violent unrest. They, along with tommy and a few other figures, have been particularly active over this recent "cause" for unrest, citing a falsified news report of russian origin that incorrectly names the perpetrator of the southport murders as a... I think syrian refugee? I forget. Anyway, that's the <clipped message>
[2024-08-07 17:28:11] <armagetron-bridge> 08discord:delinquent| sort of shite that's going on, and my city soundly rejected it.
[2024-08-07 17:28:11] <armagetronbridge> 08discord:delinquent| sort of shite that's going on, and my city soundly rejected it.
[2024-08-07 17:30:20] <armagetronbridge> 14discord:Grimm| Was just curious because our far right .. Is generally not the protesters here in us
[2024-08-07 17:30:20] <armagetron-bridge> 14discord:Grimm| Was just curious because our far right .. Is generally not the protesters here in us
[2024-08-07 17:30:27] <armagetronbridge> 04discord:olive2306| the pm in nl was posing with tommy...
[2024-08-07 17:30:27] <armagetron-bridge> 04discord:olive2306| the pm in nl was posing with tommy...
[2024-08-07 17:30:56] <armagetronbridge> 04discord:olive2306| they apparently tried to delete the old photo but Streisand effect
[2024-08-07 17:30:57] <armagetron-bridge> 04discord:olive2306| they apparently tried to delete the old photo but Streisand effect
[2024-08-07 17:31:23] <armagetronbridge> 04discord:olive2306| the left punchable face right?
[2024-08-07 17:31:23] <armagetron-bridge> 04discord:olive2306| the left punchable face right?
[2024-08-07 17:31:23] <armagetron-bridge> 04discord:olive2306| https://cdn.discordapp.com/attachments/209759416604426242/1270856843765350563/gus7bkyxgaac1dq-66b261a676d8a.png?ex=66b5392a&is=66b3e7aa&hm=ecb2d35a1d564cb3d84dd2eff31599fb3af23bc1d69643609ad497eef5c21df9&
[2024-08-07 17:31:23] <armagetronbridge> 04discord:olive2306| https://cdn.discordapp.com/attachments/209759416604426242/1270856843765350563/gus7bkyxgaac1dq-66b261a676d8a.png?ex=66b5392a&is=66b3e7aa&hm=ecb2d35a1d564cb3d84dd2eff31599fb3af23bc1d69643609ad497eef5c21df9&
[2024-08-07 17:33:19] <armagetronbridge> 03discord:ninjapotato1080| they both look punchable tbh
[2024-08-07 17:33:19] <armagetron-bridge> 03discord:ninjapotato1080| they both look punchable tbh
[2024-08-07 17:33:49] <armagetronbridge> 14discord:Grimm| And deli usually all protesters are peaceful during the day.. Its the night when they can not be seen shit happens
[2024-08-07 17:33:49] <armagetron-bridge> 14discord:Grimm| And deli usually all protesters are peaceful during the day.. Its the night when they can not be seen shit happens
[2024-08-07 17:34:19] <armagetronbridge> 04discord:olive2306| wilders is utmost punchable
[2024-08-07 17:34:19] <armagetron-bridge> 04discord:olive2306| wilders is utmost punchable
[2024-08-07 17:34:57] <armagetronbridge> 04discord:olive2306| no tolerance for intolerance
[2024-08-07 17:34:58] <armagetron-bridge> 04discord:olive2306| no tolerance for intolerance
[2024-08-07 17:35:26] <armagetronbridge> 08discord:delinquent| Oh believe me, we have protests from all sides of the spectrum. We aren't quite on the level of the French (*spits*), but we've had some damned good ones. The giant protest against the war in the East back in 03 was in the millions, I heard something about local insfrastructure taking several days to recover.
[2024-08-07 17:35:27] <armagetronbridge> 08discord:delinquent| We had huge turnouts after George Floyd too. In fact, there's a fantastic picture of this giant black dude picking up a "counter protester" who's passed out and getting him to safety. That's one of the times an EDL offshoot tried to paint everyone brown as violent, when in reality they were the ones making noise about the statue of Earl Grey (who, in actual fact, was a rather pro <clipped message>
[2024-08-07 17:35:27] <armagetron-bridge> 08discord:delinquent| Oh believe me, we have protests from all sides of the spectrum. We aren't quite on the level of the French (*spits*), but we've had some damned good ones. The giant protest against the war in the East back in 03 was in the millions, I heard something about local insfrastructure taking several days to recover.
[2024-08-07 17:35:27] <armagetron-bridge> 08discord:delinquent| We had huge turnouts after George Floyd too. In fact, there's a fantastic picture of this giant black dude picking up a "counter protester" who's passed out and getting him to safety. That's one of the times an EDL offshoot tried to paint everyone brown as violent, when in reality they were the ones making noise about the statue of Earl Grey (who, in actual fact, was a rather pro <clipped message>
[2024-08-07 17:35:28] <armagetron-bridge> 08discord:delinquent| gressive individual, and the left quite likes him).
[2024-08-07 17:35:28] <armagetronbridge> 08discord:delinquent| gressive individual, and the left quite likes him).
[2024-08-07 17:35:29] <armagetron-bridge> 08discord:delinquent| North east don't fuck about when it comes to cunts. We might be rough as fuck, but most of us love everyone.
[2024-08-07 17:35:29] <armagetronbridge> 08discord:delinquent| North east don't fuck about when it comes to cunts. We might be rough as fuck, but most of us love everyone.
[2024-08-07 17:36:14] <armagetronbridge> 08discord:delinquent| ya that was the case with the birmingham riots, unfortunately. They marched in teh day, then set birmingham on fire in teh night.
[2024-08-07 17:36:14] <armagetron-bridge> 08discord:delinquent| ya that was the case with the birmingham riots, unfortunately. They marched in teh day, then set birmingham on fire in teh night.
[2024-08-07 17:36:27] <armagetronbridge> 08discord:delinquent| Of course, it was birmingham, so they improved the city substantially
[2024-08-07 17:36:27] <armagetron-bridge> 08discord:delinquent| Of course, it was birmingham, so they improved the city substantially
[2024-08-07 17:36:48] <armagetronbridge> 04discord:olive2306| lmao
[2024-08-07 17:36:49] <armagetron-bridge> 04discord:olive2306| lmao
[2024-08-07 17:37:54] <armagetronbridge> 14discord:Grimm| Our left groups tend to protest everything while our right side .. Continues on with work life and wishes a farmer would just chop em up with a combine
[2024-08-07 17:37:55] <armagetron-bridge> 14discord:Grimm| Our left groups tend to protest everything while our right side .. Continues on with work life and wishes a farmer would just chop em up with a combine
[2024-08-07 17:38:29] <armagetronbridge> 08discord:delinquent| I've seen some of your more right-leaning rallies mind you
[2024-08-07 17:38:29] <armagetron-bridge> 08discord:delinquent| I've seen some of your more right-leaning rallies mind you
[2024-08-07 17:38:54] <armagetronbridge> 08discord:delinquent| but your history is substantially different to ours, I'm not surprised in all honesty
[2024-08-07 17:38:55] <armagetron-bridge> 08discord:delinquent| but your history is substantially different to ours, I'm not surprised in all honesty
[2024-08-07 17:39:11] <armagetronbridge> 08discord:delinquent| not necessarily a jab, just an observtatin
[2024-08-07 17:39:11] <armagetron-bridge> 08discord:delinquent| not necessarily a jab, just an observtatin
[2024-08-07 17:39:20] <armagetronbridge> 14discord:Grimm| I dont know of too many right rallies
[2024-08-07 17:39:20] <armagetron-bridge> 14discord:Grimm| I dont know of too many right rallies
[2024-08-07 17:40:52] <armagetronbridge> 08discord:delinquent| I saw one a couple years ago, something to do with trump and biden winning that election against him. Some minor scuffles
[2024-08-07 17:40:52] <armagetron-bridge> 08discord:delinquent| I saw one a couple years ago, something to do with trump and biden winning that election against him. Some minor scuffles
[2024-08-07 17:41:02] <armagetronbridge> 08discord:delinquent| also, tbf, that insurrection was a pretty big one
[2024-08-07 17:41:02] <armagetron-bridge> 08discord:delinquent| also, tbf, that insurrection was a pretty big one
[2024-08-07 17:41:09] <armagetronbridge> 14discord:Grimm| Oh January 6th ?
[2024-08-07 17:41:10] <armagetron-bridge> 14discord:Grimm| Oh January 6th ?
[2024-08-07 17:41:17] <armagetronbridge> 08discord:delinquent| I think so? The capitol?
[2024-08-07 17:41:17] <armagetron-bridge> 08discord:delinquent| I think so? The capitol?
[2024-08-07 17:41:27] <armagetronbridge> 08discord:delinquent| (the one we burnt down? :D)
[2024-08-07 17:41:28] <armagetron-bridge> 08discord:delinquent| (the one we burnt down? :D)
[2024-08-07 17:41:44] <armagetronbridge> 14discord:Grimm| Lol
[2024-08-07 17:41:44] <armagetron-bridge> 14discord:Grimm| Lol
[2024-08-07 17:42:02] <armagetronbridge> 14discord:Grimm| Unfortunately we got 50 more lol
[2024-08-07 17:42:02] <armagetron-bridge> 14discord:Grimm| Unfortunately we got 50 more lol
[2024-08-07 17:43:07] <armagetronbridge> 14discord:Grimm| I don't believe the Jan 6th thing was actually non peaceful I think it was more terrifying for government who thought they were coming to burn it down
[2024-08-07 17:43:08] <armagetron-bridge> 14discord:Grimm| I don't believe the Jan 6th thing was actually non peaceful I think it was more terrifying for government who thought they were coming to burn it down
[2024-08-07 17:44:27] <armagetronbridge> 08discord:delinquent| I do remember people coming with plasticuffs, ostensibly intending to "arrest" members of... gop? senate? forgive me I don't actually know as much as I could about the inner workings of your government
[2024-08-07 17:44:27] <armagetron-bridge> 08discord:delinquent| I do remember people coming with plasticuffs, ostensibly intending to "arrest" members of... gop? senate? forgive me I don't actually know as much as I could about the inner workings of your government
[2024-08-07 17:45:12] <armagetronbridge> 14discord:Grimm| Well that's why I asked .. About yours what your right stands for might be our left
[2024-08-07 17:45:12] <armagetron-bridge> 14discord:Grimm| Well that's why I asked .. About yours what your right stands for might be our left
[2024-08-07 17:47:45] <armagetron-bridge> 08discord:delinquent| Oh, that's fairly well established, in general the US is rather furhter to the right than the UK, and the UK more so than most of Northern Europe. Italy is somewhat further to the right htan we, though, as far as I know, and leanings fluctuate quit ea lot.
[2024-08-07 17:47:46] <armagetronbridge> 08discord:delinquent| Oh, that's fairly well established, in general the US is rather furhter to the right than the UK, and the UK more so than most of Northern Europe. Italy is somewhat further to the right htan we, though, as far as I know, and leanings fluctuate quit ea lot.
[2024-08-07 17:47:46] <armagetron-bridge> 08discord:delinquent| Also, the disposition of political "sides" differs somewhat, I think. Nationalism is a common theme to some degree, but our approaches are very different. Religion is far more prominent in teh US, as far as I know, than over here, which also plays into political stances a fair bit
[2024-08-07 17:47:46] <armagetronbridge> 08discord:delinquent| Also, the disposition of political "sides" differs somewhat, I think. Nationalism is a common theme to some degree, but our approaches are very different. Religion is far more prominent in teh US, as far as I know, than over here, which also plays into political stances a fair bit
[2024-08-07 17:51:00] <armagetronbridge> 14discord:Grimm| Generally our two sides are split because one believes every individual has rights .. Given by God and government shouldn't interfere with those rights and other side believes what's good for the group is all that matters
[2024-08-07 17:51:00] <armagetron-bridge> 14discord:Grimm| Generally our two sides are split because one believes every individual has rights .. Given by God and government shouldn't interfere with those rights and other side believes what's good for the group is all that matters
[2024-08-07 17:51:31] <armagetronbridge> 08discord:delinquent| That's... that's a much wider split than we have, ng;
[2024-08-07 17:51:31] <armagetron-bridge> 08discord:delinquent| That's... that's a much wider split than we have, ng;
[2024-08-07 17:52:28] <armagetronbridge> 14discord:Grimm| Mean both sides got their .. Almost gone crazy leaning side
[2024-08-07 17:52:28] <armagetron-bridge> 14discord:Grimm| Mean both sides got their .. Almost gone crazy leaning side
[2024-08-07 17:52:57] <armagetronbridge> 14discord:Grimm| Our sides don't agree because of like 3 or 4 things
[2024-08-07 17:52:57] <armagetron-bridge> 14discord:Grimm| Our sides don't agree because of like 3 or 4 things
[2024-08-07 17:54:05] <armagetronbridge> 14discord:Grimm| And they are things there isn't much of a middle ground.. Like abortion immigration
[2024-08-07 17:54:05] <armagetron-bridge> 14discord:Grimm| And they are things there isn't much of a middle ground.. Like abortion immigration
[2024-08-07 18:36:24] <armagetronbridge> 14discord:Grimm| I feel every country don't know much about how their government works .. They know how it's supposed to work .. But that is never what happens
[2024-08-07 18:36:24] <armagetron-bridge> 14discord:Grimm| I feel every country don't know much about how their government works .. They know how it's supposed to work .. But that is never what happens
[2024-08-07 19:00:43] <-- monr0e has quit (Remote host closed the connection)
[2024-08-07 19:37:53] <armagetronbridge> 05discord:juesto| oof
[2024-08-07 19:37:54] <armagetron-bridge> 05discord:juesto| oof
[2024-08-07 19:38:04] <armagetronbridge> 05discord:juesto| the world is too weird i guess
[2024-08-07 19:38:04] <armagetron-bridge> 05discord:juesto| the world is too weird i guess
[2024-08-07 19:38:36] <armagetronbridge> 14discord:monkey_arma| Weird is a nice way of saying the world is fucked up.
[2024-08-07 19:38:36] <armagetron-bridge> 14discord:monkey_arma| Weird is a nice way of saying the world is fucked up.
[2024-08-07 19:38:41] <armagetronbridge> 14discord:monkey_arma| which is true
[2024-08-07 19:38:42] <armagetron-bridge> 14discord:monkey_arma| which is true
[2024-08-07 19:40:55] <armagetronbridge> 05discord:juesto| lol
[2024-08-07 19:40:55] <armagetron-bridge> 05discord:juesto| lol
[2024-08-07 19:41:08] <armagetronbridge> 05discord:juesto| i've been having a shitty day
[2024-08-07 19:41:08] <armagetron-bridge> 05discord:juesto| i've been having a shitty day
[2024-08-07 19:41:22] <armagetronbridge> 05discord:juesto| barely interacting with the people i wanted to hang out with because they were unavailable
[2024-08-07 19:41:22] <armagetron-bridge> 05discord:juesto| barely interacting with the people i wanted to hang out with because they were unavailable
[2024-08-07 19:41:55] <armagetronbridge> 14discord:monkey_arma| oh, i hope your day gets better
[2024-08-07 19:41:55] <armagetron-bridge> 14discord:monkey_arma| oh, i hope your day gets better
[2024-08-07 19:45:50] <armagetronbridge> 05discord:juesto| its night here
[2024-08-07 19:45:50] <armagetron-bridge> 05discord:juesto| its night here
[2024-08-07 19:45:59] <armagetronbridge> 05discord:juesto| so i doubt it can get better than before
[2024-08-07 19:45:59] <armagetron-bridge> 05discord:juesto| so i doubt it can get better than before
[2024-08-07 19:46:08] <armagetronbridge> 05discord:juesto| tomorrow will be another day, i hope
[2024-08-07 19:46:08] <armagetron-bridge> 05discord:juesto| tomorrow will be another day, i hope
[2024-08-07 19:46:10] <armagetronbridge> 05discord:juesto| if i sleep well
[2024-08-07 19:46:10] <armagetron-bridge> 05discord:juesto| if i sleep well
[2024-08-07 19:46:16] <armagetronbridge> 05discord:juesto| i feel really upset with myself
[2024-08-07 19:46:16] <armagetron-bridge> 05discord:juesto| i feel really upset with myself
[2024-08-07 19:46:34] <armagetronbridge> 05discord:juesto| because i dont want to feel emotions by doing good/positive things i've been holding off
[2024-08-07 19:46:34] <armagetron-bridge> 05discord:juesto| because i dont want to feel emotions by doing good/positive things i've been holding off
[2024-08-07 19:46:50] <armagetronbridge> 14discord:monkey_arma| why?
[2024-08-07 19:46:50] <armagetron-bridge> 14discord:monkey_arma| why?
[2024-08-07 19:47:04] <armagetronbridge> 05discord:juesto| i dont understand why
[2024-08-07 19:47:04] <armagetron-bridge> 05discord:juesto| i dont understand why
[2024-08-07 19:47:21] <armagetronbridge> 05discord:juesto| its too uncomfortable to feel it and be vulnerable
[2024-08-07 19:47:22] <armagetron-bridge> 05discord:juesto| its too uncomfortable to feel it and be vulnerable
[2024-08-07 19:47:38] <armagetronbridge> 05discord:juesto| i dont want to worry absolutely anyone at all including myself through crying
[2024-08-07 19:47:38] <armagetron-bridge> 05discord:juesto| i dont want to worry absolutely anyone at all including myself through crying
[2024-08-07 19:48:23] <armagetronbridge> 05discord:juesto| i dont even want to sing no matter how tempting it is now that im listening to good music, even with that i dont feel comfortable nor relaxed with
[2024-08-07 19:48:23] <armagetron-bridge> 05discord:juesto| i dont even want to sing no matter how tempting it is now that im listening to good music, even with that i dont feel comfortable nor relaxed with
[2024-08-07 19:48:46] <armagetronbridge> 14discord:monkey_arma| are you ok?
[2024-08-07 19:48:46] <armagetron-bridge> 14discord:monkey_arma| are you ok?
[2024-08-07 19:49:35] <armagetronbridge> 05discord:juesto| what do you think?
[2024-08-07 19:49:35] <armagetron-bridge> 05discord:juesto| what do you think?
[2024-08-07 19:49:41] <armagetron-bridge> 14discord:monkey_arma| i think you are not ok
[2024-08-07 19:49:42] <armagetronbridge> 14discord:monkey_arma| i think you are not ok
[2024-08-07 19:49:51] <armagetronbridge> 05discord:juesto| its not terribly bad all things considered
[2024-08-07 19:49:52] <armagetron-bridge> 05discord:juesto| its not terribly bad all things considered
[2024-08-07 19:50:10] <armagetronbridge> 05discord:juesto| im causing this to myself unnecessarily
[2024-08-07 19:50:10] <armagetron-bridge> 05discord:juesto| im causing this to myself unnecessarily
[2024-08-07 19:51:07] <armagetronbridge> 14discord:monkey_arma| are you tired? sleep might help a bit idk
[2024-08-07 19:51:07] <armagetron-bridge> 14discord:monkey_arma| are you tired? sleep might help a bit idk
[2024-08-07 19:51:41] <armagetronbridge> 14discord:monkey_arma| im tired, i couldnt sleep last night myself
[2024-08-07 19:51:41] <armagetron-bridge> 14discord:monkey_arma| im tired, i couldnt sleep last night myself
[2024-08-07 19:55:12] <armagetronbridge> 05discord:juesto| i guess? it doesnt seem to matter apparently?
[2024-08-07 19:55:12] <armagetron-bridge> 05discord:juesto| i guess? it doesnt seem to matter apparently?
[2024-08-07 19:55:14] <armagetronbridge> 05discord:juesto| im an idiot
[2024-08-07 19:55:14] <armagetron-bridge> 05discord:juesto| im an idiot
[2024-08-07 19:56:14] <armagetronbridge> 14discord:monkey_arma| i wouldnt say you're an idiot, why do you think that?
[2024-08-07 19:56:14] <armagetron-bridge> 14discord:monkey_arma| i wouldnt say you're an idiot, why do you think that?
[2024-08-07 19:56:33] <armagetronbridge> 05discord:juesto| is it not obvious?
[2024-08-07 19:56:33] <armagetron-bridge> 05discord:juesto| is it not obvious?
[2024-08-07 19:56:41] <armagetronbridge> 14discord:monkey_arma| um no
[2024-08-07 19:56:41] <armagetron-bridge> 14discord:monkey_arma| um no
[2024-08-07 20:01:49] <armagetronbridge> 05discord:juesto| its whatever
[2024-08-07 20:01:50] <armagetron-bridge> 05discord:juesto| its whatever
[2024-08-07 20:01:54] <armagetronbridge> 05discord:juesto| im not feeling well
[2024-08-07 20:01:55] <armagetron-bridge> 05discord:juesto| im not feeling well
[2024-08-07 20:02:04] <armagetronbridge> 05discord:juesto| sorry for being vague and weird
[2024-08-07 20:02:05] <armagetron-bridge> 05discord:juesto| sorry for being vague and weird
[2024-08-07 20:02:16] <armagetronbridge> 05discord:juesto| clearly im in a bad state
[2024-08-07 20:02:16] <armagetron-bridge> 05discord:juesto| clearly im in a bad state
[2024-08-07 20:05:10] <armagetronbridge> 14discord:monkey_arma| no need to apologise
[2024-08-07 20:05:11] <armagetron-bridge> 14discord:monkey_arma| no need to apologise
[2024-08-07 20:06:33] <armagetronbridge> 05discord:juesto| eh, if i didnt it would leave a worse vibe
[2024-08-07 20:06:33] <armagetron-bridge> 05discord:juesto| eh, if i didnt it would leave a worse vibe
[2024-08-07 20:08:18] <armagetronbridge> 14discord:monkey_arma| its ok to be down, happens to all of us
[2024-08-07 20:08:18] <armagetron-bridge> 14discord:monkey_arma| its ok to be down, happens to all of us
Searching from 2024-08-08 00:00:00 to 2024-08-08 23:59:59.999999.
Query completed in 11.41 seconds
[2024-08-08 00:01:43] --> Lucifer_arma_ has joined the channel
[2024-08-08 00:38:49] <-- Lucifer_arma_ has quit (Read error: No route to host)
[2024-08-08 06:23:14] --> monr0e has joined the channel
[2024-08-08 12:18:19] <armagetronbridge> 04discord:olive2306| I โค๏ธ you Juesto. Monke is right, everyone has to vent sometimes
[2024-08-08 12:18:19] <armagetron-bridge> 04discord:olive2306| I โค๏ธ you Juesto. Monke is right, everyone has to vent sometimes
[2024-08-08 12:43:03] <armagetronbridge> 05discord:juesto| anyone have a clue about hrt and its effects?
[2024-08-08 12:43:03] <armagetron-bridge> 05discord:juesto| anyone have a clue about hrt and its effects?
[2024-08-08 12:53:02] <armagetronbridge> 14discord:Grimm| By sure anyone's an expert on it if that's what you mean..
[2024-08-08 12:53:02] <armagetron-bridge> 14discord:Grimm| By sure anyone's an expert on it if that's what you mean..
[2024-08-08 13:01:12] <armagetronbridge> 14discord:Grimm| What's problem mood swings depression?
[2024-08-08 13:01:12] <armagetron-bridge> 14discord:Grimm| What's problem mood swings depression?
[2024-08-08 13:16:27] <armagetronbridge> 05discord:juesto| im curious about the production/effects of relaxin in transfem therapy/on male bodies
[2024-08-08 13:16:27] <armagetron-bridge> 05discord:juesto| im curious about the production/effects of relaxin in transfem therapy/on male bodies
[2024-08-08 13:16:49] <armagetronbridge> 05discord:juesto| grimm, not necessarily implying that, its fine
[2024-08-08 13:16:49] <armagetron-bridge> 05discord:juesto| grimm, not necessarily implying that, its fine
[2024-08-08 13:18:14] <armagetronbridge> 14discord:Grimm| Meaning the progressions of the therapy?
[2024-08-08 13:18:14] <armagetron-bridge> 14discord:Grimm| Meaning the progressions of the therapy?
[2024-08-08 13:21:04] <armagetronbridge> 05discord:juesto| what?
[2024-08-08 13:21:04] <armagetron-bridge> 05discord:juesto| what?
[2024-08-08 13:21:14] <armagetron-bridge> 05discord:juesto| relaxin is a particular hormone
[2024-08-08 13:21:15] <armagetronbridge> 05discord:juesto| relaxin is a particular hormone
[2024-08-08 13:22:39] <armagetronbridge> 14discord:Grimm| Yeah usually involves joint flexibilty and widening of hips to help with child birth
[2024-08-08 13:22:40] <armagetron-bridge> 14discord:Grimm| Yeah usually involves joint flexibilty and widening of hips to help with child birth
[2024-08-08 13:44:35] <armagetronbridge> 14discord:Grimm| I would assume they are using it to prevent blood clots from other hormones maybe you are taking or will be taking later
[2024-08-08 13:44:35] <armagetron-bridge> 14discord:Grimm| I would assume they are using it to prevent blood clots from other hormones maybe you are taking or will be taking later
[2024-08-08 13:49:34] <armagetronbridge> 05discord:juesto| i would like to know if the positive outcomes outweight the potential negatives. and im wondering if the breast tissue in males does produce relaxin as well or not
[2024-08-08 13:49:34] <armagetron-bridge> 05discord:juesto| i would like to know if the positive outcomes outweight the potential negatives. and im wondering if the breast tissue in males does produce relaxin as well or not
[2024-08-08 13:50:57] <armagetron-bridge> 05discord:juesto| and if the physiological changes that it produces does yield better stool passage
[2024-08-08 13:50:58] <armagetronbridge> 05discord:juesto| and if the physiological changes that it produces does yield better stool passage
[2024-08-08 14:13:16] <armagetronbridge> 07discord:Nanu| I asked my transfem dr. friend, they linked https://diyhrt.wiki/
[2024-08-08 14:13:16] <armagetron-bridge> 07discord:Nanu| I asked my transfem dr. friend, they linked https://diyhrt.wiki/
[2024-08-08 14:13:17] <armagetron-bridge> 07discord:Nanu| "Gives people resources to buy their own, and helps manage dosage, expectation timelines, bloodwork, etc"
[2024-08-08 14:13:17] <armagetronbridge> 07discord:Nanu| "Gives people resources to buy their own, and helps manage dosage, expectation timelines, bloodwork, etc"
[2024-08-08 14:13:18] <armagetron-bridge> 07discord:Nanu| "I always recommend seeing a physician though to make sure that there's no severe health risks (which is rare)"
[2024-08-08 14:13:18] <armagetronbridge> 07discord:Nanu| "I always recommend seeing a physician though to make sure that there's no severe health risks (which is rare)"
[2024-08-08 14:13:33] <armagetronbridge> 05discord:juesto| so they don't know either
[2024-08-08 14:13:33] <armagetron-bridge> 05discord:juesto| so they don't know either
[2024-08-08 14:14:14] <armagetronbridge> 07discord:Nanu| yea they weren't sure on your exact questions
[2024-08-08 14:14:14] <armagetron-bridge> 07discord:Nanu| yea they weren't sure on your exact questions
[2024-08-08 14:14:50] <armagetronbridge> 05discord:juesto| i gather the relaxin effects on trans people hasnt been studied
[2024-08-08 14:14:50] <armagetron-bridge> 05discord:juesto| i gather the relaxin effects on trans people hasnt been studied
[2024-08-08 14:15:56] <armagetronbridge> 05discord:juesto| that looks like a canned response of sorts :/
[2024-08-08 14:15:56] <armagetron-bridge> 05discord:juesto| that looks like a canned response of sorts :/
[2024-08-08 14:17:36] <armagetronbridge> 05discord:juesto| @dorianv what do they know about relaxin and its effects on male bodies?
[2024-08-08 14:17:36] <armagetron-bridge> 05discord:juesto| @dorianv what do they know about relaxin and its effects on male bodies?
[2024-08-08 14:39:50] <armagetronbridge> 14discord:Grimm| Also hard to know long term effects when hasn't been long term for the subjects they have
[2024-08-08 14:39:50] <armagetron-bridge> 14discord:Grimm| Also hard to know long term effects when hasn't been long term for the subjects they have
[2024-08-08 16:36:52] <armagetronbridge> 05discord:juesto| ¯\_(ใ)_/¯
[2024-08-08 16:36:53] <armagetron-bridge> 05discord:juesto| ¯\_(ใ)_/¯
[2024-08-08 21:21:44] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-09 00:00:00 to 2024-08-09 23:59:59.999999.
Query completed in 3.77 seconds
[2024-08-09 06:45:53] --> monr0e has joined the channel
[2024-08-09 09:48:20] --> Sauss-Ente has joined the channel
[2024-08-09 14:32:05] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-09 15:31:03] <armagetronbridge> 05discord:juesto| hey
[2024-08-09 15:31:03] <armagetron-bridge> 05discord:juesto| hey
[2024-08-09 15:31:18] <armagetronbridge> 05discord:juesto| any chance of having ppc and risc armagetronad builds?
[2024-08-09 15:31:18] <armagetron-bridge> 05discord:juesto| any chance of having ppc and risc armagetronad builds?
[2024-08-09 15:37:48] <armagetronbridge> 14discord:monkey_arma| @juesto What OS are you on and, just out of interest, how come you want those builds?
[2024-08-09 15:37:49] <armagetron-bridge> 14discord:monkey_arma| @juesto What OS are you on and, just out of interest, how come you want those builds?
[2024-08-09 15:39:50] <armagetronbridge> 14discord:monkey_arma| Also, what version(s) of Arma are you wanting to be prebuilt?
[2024-08-09 15:39:50] <armagetron-bridge> 14discord:monkey_arma| Also, what version(s) of Arma are you wanting to be prebuilt?
[2024-08-09 15:50:33] <armagetronbridge> 05discord:juesto| doesnt matter, effort for adelie
[2024-08-09 15:50:33] <armagetron-bridge> 05discord:juesto| doesnt matter, effort for adelie
[2024-08-09 16:04:41] <armagetronbridge> 14discord:monkey_arma| adelie
[2024-08-09 16:04:41] <armagetron-bridge> 14discord:monkey_arma| adelie
[2024-08-09 16:04:42] <armagetronbridge> 14discord:monkey_arma| ?
[2024-08-09 16:04:43] <armagetron-bridge> 14discord:monkey_arma| ?
[2024-08-09 16:04:56] <armagetronbridge> 14discord:monkey_arma| what is that ?
[2024-08-09 16:04:56] <armagetron-bridge> 14discord:monkey_arma| what is that ?
[2024-08-09 16:18:16] <armagetronbridge> 05discord:juesto| a linux distribution
[2024-08-09 16:18:16] <armagetron-bridge> 05discord:juesto| a linux distribution
[2024-08-09 16:18:21] <armagetronbridge> 05discord:juesto| @monkey_arma
[2024-08-09 16:18:21] <armagetron-bridge> 05discord:juesto| @monkey_arma
[2024-08-09 16:18:30] <armagetronbridge> 14discord:monkey_arma| ah ok
[2024-08-09 16:18:30] <armagetron-bridge> 14discord:monkey_arma| ah ok
[2024-08-09 16:20:43] <armagetronbridge> 14discord:monkey_arma| @juesto so when you say RISC, are you talking RISCV?
[2024-08-09 16:20:43] <armagetron-bridge> 14discord:monkey_arma| @juesto so when you say RISC, are you talking RISCV?
[2024-08-09 16:20:54] <armagetronbridge> 14discord:monkey_arma| or risc in general?
[2024-08-09 16:20:55] <armagetron-bridge> 14discord:monkey_arma| or risc in general?
[2024-08-09 16:21:40] <armagetronbridge> 05discord:juesto| either
[2024-08-09 16:21:40] <armagetron-bridge> 05discord:juesto| either
[2024-08-09 16:22:02] <armagetronbridge> 14discord:monkey_arma| In openbsd, the repos for RISCV and PPC have Armagetronad prebuilt.
[2024-08-09 16:22:02] <armagetron-bridge> 14discord:monkey_arma| In openbsd, the repos for RISCV and PPC have Armagetronad prebuilt.
[2024-08-09 16:22:18] <armagetronbridge> 14discord:monkey_arma| the compile fine on those archs
[2024-08-09 16:22:18] <armagetron-bridge> 14discord:monkey_arma| the compile fine on those archs
[2024-08-09 16:22:38] <armagetronbridge> 14discord:monkey_arma| so for linux they should too
[2024-08-09 16:22:38] <armagetron-bridge> 14discord:monkey_arma| so for linux they should too
[2024-08-09 16:22:39] <armagetronbridge> 05discord:juesto| yeah but there isn't for linux on those archs (yet)
[2024-08-09 16:22:39] <armagetron-bridge> 05discord:juesto| yeah but there isn't for linux on those archs (yet)
[2024-08-09 16:22:47] <armagetronbridge> 14discord:monkey_arma| really wtf how insane
[2024-08-09 16:22:48] <armagetron-bridge> 14discord:monkey_arma| really wtf how insane
[2024-08-09 16:23:00] <armagetronbridge> 05discord:juesto| as in compiles of armagetronad i mean
[2024-08-09 16:23:00] <armagetron-bridge> 05discord:juesto| as in compiles of armagetronad i mean
[2024-08-09 16:23:09] <armagetronbridge> 05discord:juesto| of the game
[2024-08-09 16:23:09] <armagetron-bridge> 05discord:juesto| of the game
[2024-08-09 16:23:12] <armagetronbridge> 14discord:monkey_arma| oh ok that's very strange
[2024-08-09 16:23:12] <armagetron-bridge> 14discord:monkey_arma| oh ok that's very strange
[2024-08-09 16:23:22] <armagetronbridge> 14discord:monkey_arma| doesnt your repo have binaries?
[2024-08-09 16:23:22] <armagetron-bridge> 14discord:monkey_arma| doesnt your repo have binaries?
[2024-08-09 16:23:29] <armagetronbridge> 05discord:juesto| what, its not my repo
[2024-08-09 16:23:29] <armagetron-bridge> 05discord:juesto| what, its not my repo
[2024-08-09 16:23:42] <armagetronbridge> 14discord:monkey_arma| ok sorry adelie's repo
[2024-08-09 16:23:42] <armagetron-bridge> 14discord:monkey_arma| ok sorry adelie's repo
[2024-08-09 16:23:55] <armagetronbridge> 15discord:Nélg| this game is not very hard to build
[2024-08-09 16:23:55] <armagetron-bridge> 15discord:Nélg| this game is not very hard to build
[2024-08-09 16:24:01] <armagetronbridge> 05discord:juesto| im saying that the download page of armagetronad doesnt have builds of those archs
[2024-08-09 16:24:01] <armagetron-bridge> 05discord:juesto| im saying that the download page of armagetronad doesnt have builds of those archs
[2024-08-09 16:24:14] <armagetronbridge> 05discord:juesto| as in, its not available prebuilt on upstream
[2024-08-09 16:24:14] <armagetron-bridge> 05discord:juesto| as in, its not available prebuilt on upstream
[2024-08-09 16:24:14] <armagetron-bridge> 14discord:monkey_arma| why would it do?
[2024-08-09 16:24:15] <armagetronbridge> 14discord:monkey_arma| why would it do?
[2024-08-09 16:24:18] <armagetronbridge> 05discord:juesto| ¯\_(ใ)_/¯
[2024-08-09 16:24:18] <armagetron-bridge> 05discord:juesto| ¯\_(ใ)_/¯
[2024-08-09 16:24:39] <armagetronbridge> 15discord:Nélg| if you want to build it for those architectures, build it
[2024-08-09 16:24:40] <armagetron-bridge> 15discord:Nélg| if you want to build it for those architectures, build it
[2024-08-09 16:24:40] <armagetron-bridge> 14discord:monkey_arma| in unix and unix-like OSs use binary repos
[2024-08-09 16:24:41] <armagetronbridge> 14discord:monkey_arma| in unix and unix-like OSs use binary repos
[2024-08-09 16:26:03] <armagetronbridge> 14discord:monkey_arma| for example, say debian on x86 has tron, then debian on RISCV should too
[2024-08-09 16:26:04] <armagetron-bridge> 14discord:monkey_arma| for example, say debian on x86 has tron, then debian on RISCV should too
[2024-08-09 16:27:03] <armagetronbridge> 14discord:monkey_arma| and as nelg says, it can be built on pretty much anything easily. if you want a hand in doing it I or others can help you @juesto
[2024-08-09 16:27:03] <armagetron-bridge> 14discord:monkey_arma| and as nelg says, it can be built on pretty much anything easily. if you want a hand in doing it I or others can help you @juesto
[2024-08-09 16:27:47] <armagetronbridge> 05discord:juesto| ok
[2024-08-09 16:27:47] <armagetron-bridge> 05discord:juesto| ok
[2024-08-09 16:27:56] <armagetronbridge> 05discord:juesto| should be as simple as just configure and make?
[2024-08-09 16:27:57] <armagetron-bridge> 05discord:juesto| should be as simple as just configure and make?
[2024-08-09 16:28:08] <armagetronbridge> 05discord:juesto| also is it on windows for arm natively yet?
[2024-08-09 16:28:08] <armagetron-bridge> 05discord:juesto| also is it on windows for arm natively yet?
[2024-08-09 16:28:17] <armagetronbridge> 15discord:Nélg| ./bootstrap.sh, ./configure, make
[2024-08-09 16:28:17] <armagetron-bridge> 15discord:Nélg| ./bootstrap.sh, ./configure, make
[2024-08-09 16:28:37] <armagetronbridge> 14discord:monkey_arma| you might want to pass some flags to configure but yes
[2024-08-09 16:28:38] <armagetron-bridge> 14discord:monkey_arma| you might want to pass some flags to configure but yes
[2024-08-09 16:28:44] <armagetronbridge> 14discord:monkey_arma| we can help with that
[2024-08-09 16:28:44] <armagetron-bridge> 14discord:monkey_arma| we can help with that
[2024-08-09 16:28:53] <armagetronbridge> 14discord:monkey_arma| plus you may need to use git to get the source
[2024-08-09 16:28:53] <armagetron-bridge> 14discord:monkey_arma| plus you may need to use git to get the source
[2024-08-09 16:28:59] <armagetronbridge> 14discord:monkey_arma| its a simple one line command
[2024-08-09 16:29:00] <armagetron-bridge> 14discord:monkey_arma| its a simple one line command
[2024-08-09 16:29:05] <armagetronbridge> 05discord:juesto| tarball will prob work fine
[2024-08-09 16:29:05] <armagetron-bridge> 05discord:juesto| tarball will prob work fine
[2024-08-09 16:29:09] <armagetronbridge> 14discord:monkey_arma| ok
[2024-08-09 16:29:09] <armagetron-bridge> 14discord:monkey_arma| ok
[2024-08-09 16:29:16] <armagetronbridge> 05discord:juesto| rather not git due to commit history size
[2024-08-09 16:29:16] <armagetron-bridge> 05discord:juesto| rather not git due to commit history size
[2024-08-09 16:29:23] <armagetronbridge> 14discord:monkey_arma| er ok
[2024-08-09 16:29:23] <armagetron-bridge> 14discord:monkey_arma| er ok
[2024-08-09 16:29:33] <armagetronbridge> 14discord:monkey_arma| git clone does not use much space
[2024-08-09 16:29:34] <armagetron-bridge> 14discord:monkey_arma| git clone does not use much space
[2024-08-09 16:29:37] <armagetronbridge> 14discord:monkey_arma| but ok
[2024-08-09 16:29:37] <armagetron-bridge> 14discord:monkey_arma| but ok
[2024-08-09 16:29:44] <armagetronbridge> 05discord:juesto| the git repo is large
[2024-08-09 16:29:45] <armagetron-bridge> 05discord:juesto| the git repo is large
[2024-08-09 16:29:56] <armagetronbridge> 05discord:juesto| have to do git clone --single-branch instead
[2024-08-09 16:29:56] <armagetron-bridge> 05discord:juesto| have to do git clone --single-branch instead
[2024-08-09 16:29:59] <armagetronbridge> 14discord:monkey_arma| clone only gets one version
[2024-08-09 16:29:59] <armagetron-bridge> 14discord:monkey_arma| clone only gets one version
[2024-08-09 16:30:05] <armagetronbridge> 14discord:monkey_arma| yeah
[2024-08-09 16:30:05] <armagetron-bridge> 14discord:monkey_arma| yeah
[2024-08-09 16:30:22] <armagetronbridge> 05discord:juesto| again, it fetches the entire repo
[2024-08-09 16:30:22] <armagetron-bridge> 05discord:juesto| again, it fetches the entire repo
[2024-08-09 16:30:31] <armagetronbridge> 14discord:monkey_arma| er i dont think it does
[2024-08-09 16:30:31] <armagetron-bridge> 14discord:monkey_arma| er i dont think it does
[2024-08-09 16:30:35] <armagetronbridge> 14discord:monkey_arma| not on my machine
[2024-08-09 16:30:35] <armagetron-bridge> 14discord:monkey_arma| not on my machine
[2024-08-09 16:30:38] <armagetronbridge> 15discord:Nélg| only one of the branches
[2024-08-09 16:30:38] <armagetron-bridge> 15discord:Nélg| only one of the branches
[2024-08-09 16:30:42] <armagetronbridge> 15discord:Nélg| but all of the revisions for that branch, sure
[2024-08-09 16:30:42] <armagetron-bridge> 15discord:Nélg| but all of the revisions for that branch, sure
[2024-08-09 16:30:50] <armagetronbridge> 14discord:monkey_arma| tron is a small thing
[2024-08-09 16:30:50] <armagetron-bridge> 14discord:monkey_arma| tron is a small thing
[2024-08-09 16:30:58] <armagetronbridge> 05discord:juesto| the history isnt as small
[2024-08-09 16:30:58] <armagetron-bridge> 05discord:juesto| the history isnt as small
[2024-08-09 16:31:12] <armagetronbridge> 15discord:Nélg| there are other projects which are much larger
[2024-08-09 16:31:12] <armagetron-bridge> 15discord:Nélg| there are other projects which are much larger
[2024-08-09 16:31:24] <armagetronbridge> 05discord:juesto| yea which is even worse lol
[2024-08-09 16:31:25] <armagetron-bridge> 05discord:juesto| yea which is even worse lol
[2024-08-09 16:31:38] <armagetronbridge> 14discord:monkey_arma| i run 0.4 tron and its 179MB
[2024-08-09 16:31:39] <armagetron-bridge> 14discord:monkey_arma| i run 0.4 tron and its 179MB
[2024-08-09 16:31:54] <armagetronbridge> 14discord:monkey_arma| plus you can remove it after if you want
[2024-08-09 16:31:54] <armagetron-bridge> 14discord:monkey_arma| plus you can remove it after if you want
[2024-08-09 16:32:10] <armagetronbridge> 05discord:juesto| oh well, i guess tortoisegit and git fetch does fetch all revisions which includes all branches
[2024-08-09 16:32:11] <armagetron-bridge> 05discord:juesto| oh well, i guess tortoisegit and git fetch does fetch all revisions which includes all branches
[2024-08-09 16:32:25] <armagetronbridge> 05discord:juesto| and tags
[2024-08-09 16:32:25] <armagetron-bridge> 05discord:juesto| and tags
[2024-08-09 16:32:37] <armagetronbridge> 14discord:monkey_arma| when i say 179mg i mean all in
[2024-08-09 16:32:38] <armagetron-bridge> 14discord:monkey_arma| when i say 179mg i mean all in
[2024-08-09 16:33:10] <armagetronbridge> 14discord:monkey_arma| and it takes seconds on my comp..ok my net is fast but still...
[2024-08-09 16:33:10] <armagetron-bridge> 14discord:monkey_arma| and it takes seconds on my comp..ok my net is fast but still...
[2024-08-09 16:33:34] <armagetronbridge> 14discord:monkey_arma| but yeah for a linux distro, you can just delete the source after you compile the binary
[2024-08-09 16:33:34] <armagetron-bridge> 14discord:monkey_arma| but yeah for a linux distro, you can just delete the source after you compile the binary
[2024-08-09 16:33:45] <armagetronbridge> 14discord:monkey_arma| if that is what is wantec
[2024-08-09 16:33:45] <armagetron-bridge> 14discord:monkey_arma| if that is what is wantec
[2024-08-09 16:34:13] <armagetronbridge> 05discord:juesto| well actually, the tricky part would be porting armagetronad to musl :D
[2024-08-09 16:34:13] <armagetron-bridge> 05discord:juesto| well actually, the tricky part would be porting armagetronad to musl :D
[2024-08-09 16:34:32] <armagetronbridge> 05discord:juesto| (there is musl llvm)
[2024-08-09 16:34:32] <armagetron-bridge> 05discord:juesto| (there is musl llvm)
[2024-08-09 16:35:27] <armagetronbridge> 14discord:monkey_arma| tf is that ?
[2024-08-09 16:35:27] <armagetron-bridge> 14discord:monkey_arma| tf is that ?
[2024-08-09 16:35:34] <armagetronbridge> 05discord:juesto| musl libc
[2024-08-09 16:35:34] <armagetron-bridge> 05discord:juesto| musl libc
[2024-08-09 16:36:31] <armagetronbridge> 14discord:monkey_arma| nice to see gnu has gone ,gnu stuff is garbage and bloated
[2024-08-09 16:36:31] <armagetron-bridge> 14discord:monkey_arma| nice to see gnu has gone ,gnu stuff is garbage and bloated
[2024-08-09 16:36:40] <armagetronbridge> 05discord:juesto| the lightweight libc implementation https://musl-libc.org
[2024-08-09 16:36:40] <armagetron-bridge> 05discord:juesto| the lightweight libc implementation https://musl-libc.org
[2024-08-09 16:36:44] <armagetronbridge> 14discord:monkey_arma| in openbsd we use openbsd's own libc
[2024-08-09 16:36:45] <armagetron-bridge> 14discord:monkey_arma| in openbsd we use openbsd's own libc
[2024-08-09 16:36:52] <armagetronbridge> 14discord:monkey_arma| yeah i duckduckgo'd it
[2024-08-09 16:36:53] <armagetron-bridge> 14discord:monkey_arma| yeah i duckduckgo'd it
[2024-08-09 16:37:59] <armagetronbridge> 05discord:juesto| ok, armagetronad is in alpine repos
[2024-08-09 16:38:00] <armagetron-bridge> 05discord:juesto| ok, armagetronad is in alpine repos
[2024-08-09 16:38:44] <armagetronbridge> 14discord:monkey_arma| so musl libc looks like it is standard, with extensions, would it not just work to compile it with llvm/clang?
[2024-08-09 16:38:44] <armagetron-bridge> 14discord:monkey_arma| so musl libc looks like it is standard, with extensions, would it not just work to compile it with llvm/clang?
[2024-08-09 16:38:58] <armagetronbridge> 05discord:juesto| iit does work with llvm/clang
[2024-08-09 16:38:58] <armagetron-bridge> 05discord:juesto| iit does work with llvm/clang
[2024-08-09 16:39:03] <armagetronbridge> 14discord:monkey_arma| then no issue right?
[2024-08-09 16:39:04] <armagetron-bridge> 14discord:monkey_arma| then no issue right?
[2024-08-09 16:39:07] <armagetronbridge> 05discord:juesto| i guess
[2024-08-09 16:39:07] <armagetron-bridge> 05discord:juesto| i guess
[2024-08-09 16:39:24] <armagetronbridge> 14discord:monkey_arma| if openbsd can get it to work on openbsd's libc ...
[2024-08-09 16:39:24] <armagetron-bridge> 14discord:monkey_arma| if openbsd can get it to work on openbsd's libc ...
[2024-08-09 16:39:33] <armagetronbridge> 05discord:juesto| could possibly have some issues on platforms that are not tested such as ppc32, sparc, m68k
[2024-08-09 16:39:33] <armagetron-bridge> 05discord:juesto| could possibly have some issues on platforms that are not tested such as ppc32, sparc, m68k
[2024-08-09 16:39:42] <armagetronbridge> 14discord:monkey_arma| maybe
[2024-08-09 16:39:42] <armagetron-bridge> 14discord:monkey_arma| maybe
[2024-08-09 16:40:22] <armagetronbridge> 14discord:monkey_arma| i would be surprised though
[2024-08-09 16:40:23] <armagetron-bridge> 14discord:monkey_arma| i would be surprised though
[2024-08-09 16:40:46] <armagetronbridge> 05discord:juesto| lol, alpine doesnt have the dedicated server built
[2024-08-09 16:40:47] <armagetron-bridge> 05discord:juesto| lol, alpine doesnt have the dedicated server built
[2024-08-09 16:41:05] <armagetronbridge> 05discord:juesto| but ships with the master server
[2024-08-09 16:41:05] <armagetron-bridge> 05discord:juesto| but ships with the master server
[2024-08-09 16:41:45] <armagetronbridge> 14discord:monkey_arma| like nelg said, its easy to compile the dedi server, we can help you at any stage if ur stuck
[2024-08-09 16:41:45] <armagetron-bridge> 14discord:monkey_arma| like nelg said, its easy to compile the dedi server, we can help you at any stage if ur stuck
[2024-08-09 16:42:00] <armagetronbridge> 05discord:juesto| hmm, the abuild fetches from launchpad
[2024-08-09 16:42:00] <armagetron-bridge> 05discord:juesto| hmm, the abuild fetches from launchpad
[2024-08-09 16:42:06] <armagetronbridge> 05discord:juesto| should it be doing from gitlab?
[2024-08-09 16:42:06] <armagetron-bridge> 05discord:juesto| should it be doing from gitlab?
[2024-08-09 16:42:25] <armagetronbridge> 14discord:monkey_arma| yeah it should come from gitlab if uve used git clone
[2024-08-09 16:42:25] <armagetron-bridge> 14discord:monkey_arma| yeah it should come from gitlab if uve used git clone
[2024-08-09 16:42:56] <armagetronbridge> 05discord:juesto| well, its on 0.2.9.1.1 and it has a comment about config.guess being too old to recognize the platform
[2024-08-09 16:42:56] <armagetron-bridge> 05discord:juesto| well, its on 0.2.9.1.1 and it has a comment about config.guess being too old to recognize the platform
[2024-08-09 16:43:00] <armagetronbridge> 14discord:monkey_arma| git clone https://gitlab.com/armagetronad/armagetronad.git $ARMAGETRONAD_VERSION
[2024-08-09 16:43:00] <armagetron-bridge> 14discord:monkey_arma| git clone https://gitlab.com/armagetronad/armagetronad.git $ARMAGETRONAD_VERSION
[2024-08-09 16:43:02] <armagetronbridge> 05discord:juesto| this is for release tarballs
[2024-08-09 16:43:02] <armagetron-bridge> 05discord:juesto| this is for release tarballs
[2024-08-09 16:43:17] <armagetronbridge> 14discord:monkey_arma| just type that in
[2024-08-09 16:43:17] <armagetron-bridge> 14discord:monkey_arma| just type that in
[2024-08-09 16:43:46] <armagetronbridge> 05discord:juesto| its non-git
[2024-08-09 16:43:47] <armagetron-bridge> 05discord:juesto| its non-git
[2024-08-09 16:43:49] <armagetronbridge> 14discord:monkey_arma| where $ARMAGETRONAD_VERSION is the direcory name you want to put it in
[2024-08-09 16:43:49] <armagetron-bridge> 14discord:monkey_arma| where $ARMAGETRONAD_VERSION is the direcory name you want to put it in
[2024-08-09 16:43:57] <armagetronbridge> 14discord:monkey_arma| try git, its easier
[2024-08-09 16:43:57] <armagetron-bridge> 14discord:monkey_arma| try git, its easier
[2024-08-09 16:44:19] <armagetronbridge> 14discord:monkey_arma| thats for 0.4 sorry
[2024-08-09 16:44:19] <armagetron-bridge> 14discord:monkey_arma| thats for 0.4 sorry
[2024-08-09 16:44:26] <armagetronbridge> 14discord:monkey_arma| for 0.2.9 you type:
[2024-08-09 16:44:26] <armagetron-bridge> 14discord:monkey_arma| for 0.2.9 you type:
[2024-08-09 16:49:47] <armagetronbridge> 05discord:juesto| anyways looks like alpine has a outdated version of armagetronad
[2024-08-09 16:49:47] <armagetron-bridge> 05discord:juesto| anyways looks like alpine has a outdated version of armagetronad
[2024-08-09 16:50:20] <armagetronbridge> 14discord:monkey_arma| @wwnelg what's the command to just get 0.2.9 again?
[2024-08-09 16:50:20] <armagetron-bridge> 14discord:monkey_arma| @wwnelg what's the command to just get 0.2.9 again?
[2024-08-09 16:50:52] <armagetronbridge> 14discord:monkey_arma| @juesto with git you can get any version you want..any branch
[2024-08-09 16:50:53] <armagetron-bridge> 14discord:monkey_arma| @juesto with git you can get any version you want..any branch
[2024-08-09 16:51:06] <armagetronbridge> 14discord:monkey_arma| although ive forgotten how today lmao
[2024-08-09 16:51:06] <armagetron-bridge> 14discord:monkey_arma| although ive forgotten how today lmao
[2024-08-09 16:56:05] <armagetronbridge> 05discord:juesto| lol
[2024-08-09 16:56:05] <armagetron-bridge> 05discord:juesto| lol
[2024-08-09 16:56:57] <armagetronbridge> 14discord:monkey_arma| git clone -b legacy_0.2.9 https://gitlab.com/armagetronad/armagetronad.git 0.2.9
[2024-08-09 16:56:57] <armagetron-bridge> 14discord:monkey_arma| git clone -b legacy_0.2.9 https://gitlab.com/armagetronad/armagetronad.git 0.2.9
[2024-08-09 20:56:40] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-10 00:00:00 to 2024-08-10 23:59:59.999999.
Query completed in 0.78 seconds
[2024-08-10 07:16:49] --> monr0e has joined the channel
[2024-08-10 07:30:26] <armagetronbridge> 08discord:delinquent| hm. So far there's a few thousand counter protestors (i.e. the left-oriented lot), and thirty or forty protestors (the right-oriented lot). There's rumours about a few more protestors on teh west road on the way to town though, so we will see.
[2024-08-10 07:30:26] <armagetron-bridge> 08discord:delinquent| hm. So far there's a few thousand counter protestors (i.e. the left-oriented lot), and thirty or forty protestors (the right-oriented lot). There's rumours about a few more protestors on teh west road on the way to town though, so we will see.
[2024-08-10 10:53:05] <armagetronbridge> 08discord:delinquent| Nope. They never showed up. Geordieland appears to be a bastion of community spirit.
[2024-08-10 10:53:05] <armagetron-bridge> 08discord:delinquent| Nope. They never showed up. Geordieland appears to be a bastion of community spirit.
[2024-08-10 14:28:31] --> armagetron-bridge_ has joined the channel
[2024-08-10 14:28:36] -!- armagetron-bridge changed nick to Guest81
[2024-08-10 14:28:36] -!- armagetron-bridge_ changed nick to armagetron-bridge
[2024-08-10 14:32:54] <-- Guest81 has quit (Ping timeout: 480 seconds)
[2024-08-10 14:42:29] <armagetronbridge> 08discord:delinquent| Am I alone in thinking this new tron film is going to be unbearable without Daft Punk?
[2024-08-10 14:42:29] <armagetron-bridge> 08discord:delinquent| Am I alone in thinking this new tron film is going to be unbearable without Daft Punk?
[2024-08-10 14:57:36] <armagetronbridge> 05discord:juesto| huh
[2024-08-10 14:57:36] <armagetron-bridge> 05discord:juesto| huh
[2024-08-10 14:57:42] <armagetronbridge> 05discord:juesto| there's a new tron flim?
[2024-08-10 14:57:43] <armagetron-bridge> 05discord:juesto| there's a new tron flim?
[2024-08-10 14:57:49] <armagetronbridge> 05discord:juesto| film*
[2024-08-10 14:57:49] <armagetron-bridge> 05discord:juesto| film*
[2024-08-10 15:15:46] <armagetronbridge> 08discord:delinquent| ye
[2024-08-10 15:15:46] <armagetron-bridge> 08discord:delinquent| ye
[2024-08-10 15:15:51] <armagetronbridge> 08discord:delinquent| tron ares
[2024-08-10 15:15:51] <armagetron-bridge> 08discord:delinquent| tron ares
[2024-08-10 15:15:54] <armagetronbridge> 08discord:delinquent| 2025 apparently
[2024-08-10 15:15:55] <armagetron-bridge> 08discord:delinquent| 2025 apparently
[2024-08-10 18:57:01] <-- monr0e has quit (Remote host closed the connection)
[2024-08-10 19:12:38] <armagetronbridge> 14discord:monkey_arma| I haven't seen any of the Tron films strangely, even though I have one on limited edition DVD.
[2024-08-10 19:12:38] <armagetron-bridge> 14discord:monkey_arma| I haven't seen any of the Tron films strangely, even though I have one on limited edition DVD.
[2024-08-10 19:46:26] <armagetronbridge> 05discord:juesto| huh
[2024-08-10 19:46:27] <armagetron-bridge> 05discord:juesto| huh
[2024-08-10 19:47:48] <armagetronbridge> 14discord:monkey_arma| I'll get round to watching them eventually though.
[2024-08-10 19:47:48] <armagetron-bridge> 14discord:monkey_arma| I'll get round to watching them eventually though.
[2024-08-10 22:13:13] <armagetronbridge> 14discord:_polybius| !add sbt
[2024-08-10 22:13:14] <armagetron-bridge> 14discord:_polybius| !add sbt
Searching from 2024-08-11 00:00:00 to 2024-08-11 23:59:59.999999.
Query completed in 0.65 seconds
[2024-08-11 07:40:58] --> monr0e has joined the channel
[2024-08-11 07:42:47] <armagetronbridge> 08discord:delinquent| I wouldn't call them *good*, but they do have a certain childish imagination quality to them, just wrapped up in a more adult setting. Legacy's visuals and soundtrack were incredible, even if the storyline was... less than stellar. They really are worth a watch, it's like having your inner kid come to the surface all over again
[2024-08-11 07:42:47] <armagetron-bridge> 08discord:delinquent| I wouldn't call them *good*, but they do have a certain childish imagination quality to them, just wrapped up in a more adult setting. Legacy's visuals and soundtrack were incredible, even if the storyline was... less than stellar. They really are worth a watch, it's like having your inner kid come to the surface all over again
[2024-08-11 07:47:26] <armagetronbridge> 06discord:Syn| dangerous levels of cynicism
[2024-08-11 07:47:27] <armagetron-bridge> 06discord:Syn| dangerous levels of cynicism
[2024-08-11 07:47:46] <armagetronbridge> 06discord:Syn| tron 82 top 5 movie of all time
[2024-08-11 07:47:46] <armagetron-bridge> 06discord:Syn| tron 82 top 5 movie of all time
[2024-08-11 07:48:01] <armagetronbridge> 06discord:Syn| tron legacy soundtrack top 2 of all time and it might not be 2
[2024-08-11 07:48:01] <armagetron-bridge> 06discord:Syn| tron legacy soundtrack top 2 of all time and it might not be 2
[2024-08-11 07:48:20] <armagetronbridge> 06discord:Syn| if you’re playing this game and you haven’t seen em just know you’re in for a treat
[2024-08-11 07:48:20] <armagetron-bridge> 06discord:Syn| if you’re playing this game and you haven’t seen em just know you’re in for a treat
[2024-08-11 10:42:27] <armagetronbridge> 05discord:juesto| lel
[2024-08-11 10:42:27] <armagetron-bridge> 05discord:juesto| lel
[2024-08-11 11:10:47] <armagetronbridge> 14discord:monkey_arma| hmm ok i wont rush to see them just yet lol
[2024-08-11 11:10:48] <armagetron-bridge> 14discord:monkey_arma| hmm ok i wont rush to see them just yet lol
[2024-08-11 13:48:25] --> Sauss-Ente has joined the channel
[2024-08-11 14:15:46] <armagetronbridge> 05discord:juesto| surprisingly, armagetronad isn't in adelie nor alpine
[2024-08-11 14:15:47] <armagetron-bridge> 05discord:juesto| surprisingly, armagetronad isn't in adelie nor alpine
[2024-08-11 14:16:35] <armagetronbridge> 05discord:juesto| however it's in void libux
[2024-08-11 14:16:35] <armagetron-bridge> 05discord:juesto| however it's in void libux
[2024-08-11 14:16:40] <armagetronbridge> 05discord:juesto| linux*
[2024-08-11 14:16:40] <armagetron-bridge> 05discord:juesto| linux*
[2024-08-11 16:26:10] <armagetronbridge> 14discord:monkey_arma| it will be in adelie by the time you have finished though
[2024-08-11 16:26:11] <armagetron-bridge> 14discord:monkey_arma| it will be in adelie by the time you have finished though
[2024-08-11 16:26:49] <armagetronbridge> 14discord:monkey_arma| how's that going btw?
[2024-08-11 16:26:49] <armagetron-bridge> 14discord:monkey_arma| how's that going btw?
[2024-08-11 17:23:07] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-11 19:01:08] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-12 00:00:00 to 2024-08-12 23:59:59.999999.
Query completed in 0.70 seconds
[2024-08-12 00:53:22] --> Lucifer_arma_ has joined the channel
[2024-08-12 03:38:03] <-- Lucifer_arma_ has quit (Read error: Connection reset by peer)
[2024-08-12 09:15:08] --> monr0e has joined the channel
[2024-08-12 14:49:13] <armagetronbridge> 05discord:juesto| eh it's going
[2024-08-12 14:49:13] <armagetron-bridge> 05discord:juesto| eh it's going
[2024-08-12 15:06:19] --> Sauss-Ente has joined the channel
[2024-08-12 15:53:32] <armagetronbridge> 08discord:delinquent| test message
[2024-08-12 15:53:32] <armagetron-bridge> 08discord:delinquent| test message
[2024-08-12 16:10:25] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-12 18:47:50] <armagetronbridge> 14discord:monkey_arma| nice
[2024-08-12 18:47:50] <armagetron-bridge> 14discord:monkey_arma| nice
[2024-08-12 22:40:45] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-13 00:00:00 to 2024-08-13 23:59:59.999999.
Query completed in 0.60 seconds
[2024-08-13 00:06:24] --> Lucifer_arma_ has joined the channel
[2024-08-13 00:07:20] <-- Lucifer_arma_ has quit ()
[2024-08-13 00:08:32] --> Lucifer_arma has joined the channel
[2024-08-13 04:42:58] --> Lucifer_arma_ has joined the channel
[2024-08-13 04:46:36] <-- Lucifer_arma has quit (Ping timeout: 480 seconds)
[2024-08-13 05:10:04] <-- Lucifer_arma_ has quit (Read error: No route to host)
[2024-08-13 08:23:16] --> monr0e has joined the channel
[2024-08-13 10:30:10] <-- monr0e has quit (Ping timeout: 248 seconds)
[2024-08-13 10:30:40] --> monr0e has joined the channel
[2024-08-13 13:39:46] --> Sauss-Ente has joined the channel
[2024-08-13 16:33:47] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-13 17:03:38] -!- Juest changed nick to Guest374
[2024-08-13 17:03:48] --> Juest has joined the channel
[2024-08-13 17:08:46] <-- Guest374 has quit (Ping timeout: 480 seconds)
[2024-08-13 21:13:38] <-- monr0e has quit (Remote host closed the connection)
[2024-08-13 22:04:02] <armagetronbridge> 05discord:juesto| how about you?
[2024-08-13 22:04:02] <armagetron-bridge> 05discord:juesto| how about you?
[2024-08-13 22:07:08] <armagetronbridge> 14discord:monkey_arma| Things are going fine, I'm currently learning 'ed' and then i will master 'vi/ex' (I know vi but i want to know it inside out). Then im gonna attempt to master HTML+CSS, OpenBSD and computer/information security.
[2024-08-13 22:07:08] <armagetron-bridge> 14discord:monkey_arma| Things are going fine, I'm currently learning 'ed' and then i will master 'vi/ex' (I know vi but i want to know it inside out). Then im gonna attempt to master HTML+CSS, OpenBSD and computer/information security.
[2024-08-13 22:07:27] <armagetronbridge> 14discord:monkey_arma| so quite a lot to learn/master lol
[2024-08-13 22:07:28] <armagetron-bridge> 14discord:monkey_arma| so quite a lot to learn/master lol
Searching from 2024-08-14 00:00:00 to 2024-08-14 23:59:59.999999.
Query completed in 0.63 seconds
[2024-08-14 00:14:51] <armagetronbridge> 05discord:juesto| oh cool
[2024-08-14 00:14:51] <armagetron-bridge> 05discord:juesto| oh cool
[2024-08-14 04:08:16] <-- Netsplit between synthon.oftc.net and reticulum.oftc.net. Quit: armagetron-bridge, guru3, Z-Man
[2024-08-14 04:08:46] --> Netsplit between synthon.oftc.net and reticulum.oftc.net ended. Joined: armagetron-bridge, guru3, Z-Man
[2024-08-14 04:21:13] --> Juesto has joined the channel
[2024-08-14 04:24:57] <-- Juest has quit (Ping timeout: 276 seconds)
[2024-08-14 04:25:46] -!- Juesto changed nick to Juest
[2024-08-14 05:56:03] --> monr0e has joined the channel
[2024-08-14 10:26:30] <-- monr0e has quit (Remote host closed the connection)
[2024-08-14 10:39:29] --> monr0e has joined the channel
[2024-08-14 12:57:14] --> Sauss-Ente has joined the channel
[2024-08-14 13:27:08] <-- monr0e has quit (Quit: Leaving)
[2024-08-14 13:27:21] --> monr0e has joined the channel
[2024-08-14 16:22:43] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-14 16:29:24] <-- monr0e has quit (Remote host closed the connection)
[2024-08-14 20:01:37] --> Lucifer_arma_ has joined the channel
[2024-08-14 23:49:14] <-- Lucifer_arma_ has quit (Read error: Connection reset by peer)
Searching from 2024-08-15 00:00:00 to 2024-08-15 23:59:59.999999.
Query completed in 0.60 seconds
[2024-08-15 08:05:11] --> Sauss-Ente has joined the channel
[2024-08-15 08:56:12] --> monr0e has joined the channel
[2024-08-15 15:20:30] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-15 16:23:02] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-16 00:00:00 to 2024-08-16 23:59:59.999999.
Query completed in 0.61 seconds
[2024-08-16 00:23:27] -!- Juest changed nick to Guest589
[2024-08-16 00:23:37] --> Juest has joined the channel
[2024-08-16 00:30:49] <-- Guest589 has quit (Ping timeout: 480 seconds)
[2024-08-16 01:06:05] --> Lucifer_arma_ has joined the channel
[2024-08-16 01:21:20] <-- Lucifer_arma_ has quit (Quit: Core dumped)
[2024-08-16 01:22:28] --> Lucifer_arma has joined the channel
[2024-08-16 04:20:37] <-- Lucifer_arma has quit (Read error: Connection reset by peer)
[2024-08-16 05:14:01] --> monr0e has joined the channel
[2024-08-16 07:10:38] <armagetronbridge> 13discord:Subfocus| Hey there
[2024-08-16 07:10:38] <armagetron-bridge> 13discord:Subfocus| Hey there
[2024-08-16 07:20:54] <armagetronbridge> 06discord:Syn| yooooo
[2024-08-16 07:20:54] <armagetron-bridge> 06discord:Syn| yooooo
[2024-08-16 07:36:04] <armagetronbridge> 08discord:delinquent| The annual appearance! whats new subby?
[2024-08-16 07:36:04] <armagetron-bridge> 08discord:delinquent| The annual appearance! whats new subby?
[2024-08-16 09:14:40] <armagetronbridge> 06discord:ceogran| How old r u guys?
[2024-08-16 09:14:40] <armagetron-bridge> 06discord:ceogran| How old r u guys?
[2024-08-16 09:33:56] <armagetronbridge> 06discord:Syn| <t:1723815231>
[2024-08-16 09:33:57] <armagetron-bridge> 06discord:Syn| <t:1723815231>
[2024-08-16 09:34:42] <armagetronbridge> 08discord:delinquent| I'm 31
[2024-08-16 09:34:42] <armagetron-bridge> 08discord:delinquent| I'm 31
[2024-08-16 09:35:21] <armagetronbridge> 06discord:Syn| I was born <t:1723815313:R>
[2024-08-16 09:35:21] <armagetron-bridge> 06discord:Syn| I was born <t:1723815313:R>
[2024-08-16 09:39:08] --> Sauss-Ente has joined the channel
[2024-08-16 13:21:29] <armagetronbridge> 04discord:olive2306| @subyo.tron oo
[2024-08-16 13:21:29] <armagetron-bridge> 04discord:olive2306| @subyo.tron oo
[2024-08-16 13:21:39] <armagetronbridge> 04discord:olive2306| wait deli how are you the same age as me
[2024-08-16 13:21:40] <armagetron-bridge> 04discord:olive2306| wait deli how are you the same age as me
[2024-08-16 13:22:22] <armagetron-bridge> 04discord:olive2306| you are like twice as mature and thrice as arthritic
[2024-08-16 13:22:22] <armagetronbridge> 04discord:olive2306| you are like twice as mature and thrice as arthritic
[2024-08-16 13:22:52] <armagetronbridge> 08discord:delinquent| mature? idk mang
[2024-08-16 13:22:52] <armagetron-bridge> 08discord:delinquent| mature? idk mang
[2024-08-16 13:40:56] <armagetronbridge> 10discord:justkoala| 31 gang
[2024-08-16 13:40:58] <armagetron-bridge> 10discord:justkoala| 31 gang
[2024-08-16 15:03:03] <-- monr0e has quit (Remote host closed the connection)
[2024-08-16 15:35:27] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-16 16:13:51] <armagetronbridge> 12discord:zman_0| @monkey_arma I may have fixed your multiplayer master server browser bug. Not sure, I got crashes in the same situations, just a different callstack; yours was from the main thread, mine were directly from a background thread where something went wrong; my main thread callstack was only vaguely similar. Possibly hardware differences related, I only had my old dual core laptop for <clipped message>
[2024-08-16 16:13:51] <armagetron-bridge> 12discord:zman_0| @monkey_arma I may have fixed your multiplayer master server browser bug. Not sure, I got crashes in the same situations, just a different callstack; yours was from the main thread, mine were directly from a background thread where something went wrong; my main thread callstack was only vaguely similar. Possibly hardware differences related, I only had my old dual core laptop for <clipped message>
[2024-08-16 16:13:51] <armagetron-bridge> 12discord:zman_0| real hardware tests and a virtual machine.
[2024-08-16 16:13:51] <armagetronbridge> 12discord:zman_0| real hardware tests and a virtual machine.
[2024-08-16 16:13:52] <armagetron-bridge> 12discord:zman_0| The bug was that a mutex lock that was created on the main thread was released from the background thread.
[2024-08-16 16:13:52] <armagetronbridge> 12discord:zman_0| The bug was that a mutex lock that was created on the main thread was released from the background thread.
[2024-08-16 18:15:25] <armagetronbridge> 14discord:monkey_arma| @zman_0 You absolutely have fixed the multiplayer master server browser bug! I've just compiled it and tried it quite a few times and it has worked every single time! Nice one and thanks for going to the effort of fixing it! BTW, I hope you enjoyed OpenBSD ๐
[2024-08-16 18:15:25] <armagetron-bridge> 14discord:monkey_arma| @zman_0 You absolutely have fixed the multiplayer master server browser bug! I've just compiled it and tried it quite a few times and it has worked every single time! Nice one and thanks for going to the effort of fixing it! BTW, I hope you enjoyed OpenBSD ๐
[2024-08-16 18:20:58] <-- paddymahoney has quit (Ping timeout: 480 seconds)
[2024-08-16 18:34:01] --> paddymahoney has joined the channel
[2024-08-16 19:35:53] <armagetronbridge> 12discord:zman_0| I enjoyed most that it briefly revived my old laptop with its full screen resolution, Linux was always just able to drive it at like 1024x768, not even the right aspect ratio, because the GPU was half burned out (a common problem with this model, like the XBox 360 RROD)... now it's completely burned, though, but it lived long enough to give some data and I finally can throw it out.
[2024-08-16 19:35:53] <armagetron-bridge> 12discord:zman_0| I enjoyed most that it briefly revived my old laptop with its full screen resolution, Linux was always just able to drive it at like 1024x768, not even the right aspect ratio, because the GPU was half burned out (a common problem with this model, like the XBox 360 RROD)... now it's completely burned, though, but it lived long enough to give some data and I finally can throw it out.
[2024-08-16 19:35:53] <armagetronbridge> 12discord:zman_0| Other than that, it's some Unix. I installed XFCE this time, which I used on Linux during the long decade where the fancier desktop environments would not work well with games for me, simply omitting every other rendered frame and whatnot. I felt right at home.
[2024-08-16 19:35:53] <armagetron-bridge> 12discord:zman_0| Other than that, it's some Unix. I installed XFCE this time, which I used on Linux during the long decade where the fancier desktop environments would not work well with games for me, simply omitting every other rendered frame and whatnot. I felt right at home.
[2024-08-16 19:40:25] <armagetronbridge> 15discord:Nélg| what particular laptop out of curiosity? old mac with ati graphics?
[2024-08-16 19:40:25] <armagetron-bridge> 15discord:Nélg| what particular laptop out of curiosity? old mac with ati graphics?
[2024-08-16 19:50:49] <armagetronbridge> 14discord:monkey_arma| Yeah what laptop? Mine is an old HP ProBook something-or-other from 2009 that I was given for free from work. It has a dual core intel processor with intel GPU. Currently 4GB of ram (but upgradeable to 8GB) and I put a 250GB SSD in it. It has lots of USB ports, ethernet, HDMI, SD card, etc ports and it runs OpenBSD with Firefox etc fine for my needs. I will upgrade the RAM soon, <clipped message>
[2024-08-16 19:50:49] <armagetronbridge> 14discord:monkey_arma| I was waiting for the price of that type of old RAM to drop first.
[2024-08-16 19:50:49] <armagetron-bridge> 14discord:monkey_arma| Yeah what laptop? Mine is an old HP ProBook something-or-other from 2009 that I was given for free from work. It has a dual core intel processor with intel GPU. Currently 4GB of ram (but upgradeable to 8GB) and I put a 250GB SSD in it. It has lots of USB ports, ethernet, HDMI, SD card, etc ports and it runs OpenBSD with Firefox etc fine for my needs. I will upgrade the RAM soon, <clipped message>
[2024-08-16 19:50:49] <armagetron-bridge> 14discord:monkey_arma| I was waiting for the price of that type of old RAM to drop first.
[2024-08-16 19:50:50] <armagetron-bridge> 14discord:monkey_arma| If I were to get a newer laptop, I wouldn't get an HP as they are real buggers these days with their proprietary nonsense.
[2024-08-16 19:50:50] <armagetronbridge> 14discord:monkey_arma| If I were to get a newer laptop, I wouldn't get an HP as they are real buggers these days with their proprietary nonsense.
[2024-08-16 20:03:59] <armagetronbridge> 15discord:Nélg| DDR2 RAM i assume? I have a Thinkpad T61 I wouldn't mind upgrading, but the cost of 8GB DDR2 doesn't seem worth it. My slightly newer Thinkpad T430 is not only significantly faster than my T61 but its 16 GB of DDR3 RAM cost significantly less than 8GB DDR2 would...
[2024-08-16 20:04:00] <armagetron-bridge> 15discord:Nélg| DDR2 RAM i assume? I have a Thinkpad T61 I wouldn't mind upgrading, but the cost of 8GB DDR2 doesn't seem worth it. My slightly newer Thinkpad T430 is not only significantly faster than my T61 but its 16 GB of DDR3 RAM cost significantly less than 8GB DDR2 would...
[2024-08-16 20:06:41] <armagetron-bridge> 14discord:monkey_arma| Yeah it's DDR2 RAM. It would have cost me around £60 ($70) or so to upgrade to 8GB RAM last time I checked (about 6 months ago).
[2024-08-16 20:06:42] <armagetronbridge> 14discord:monkey_arma| Yeah it's DDR2 RAM. It would have cost me around £60 ($70) or so to upgrade to 8GB RAM last time I checked (about 6 months ago).
[2024-08-16 21:30:04] <-- paddymahoney has quit (Ping timeout: 480 seconds)
[2024-08-16 21:34:21] --> paddymahoney has joined the channel
[2024-08-16 21:53:45] <armagetronbridge> 10discord:NorthernScrub| Fuck me. I just found a fucking GIANT spider in my bedroom at least the size of my hand and now I'm terrified of getting back into bed. Mostly because the spider is under it.
[2024-08-16 21:53:46] <armagetron-bridge> 10discord:NorthernScrub| Fuck me. I just found a fucking GIANT spider in my bedroom at least the size of my hand and now I'm terrified of getting back into bed. Mostly because the spider is under it.
[2024-08-16 21:54:16] <armagetronbridge> 10discord:NorthernScrub| Seriously that thing is HUGE
[2024-08-16 21:54:16] <armagetron-bridge> 10discord:NorthernScrub| Seriously that thing is HUGE
[2024-08-16 21:54:59] <armagetronbridge> 10discord:NorthernScrub| No other choice. Burning down the entire street now
[2024-08-16 21:54:59] <armagetron-bridge> 10discord:NorthernScrub| No other choice. Burning down the entire street now
[2024-08-16 21:55:44] <armagetronbridge> 08discord:Teko| Is it fat or thin?
[2024-08-16 21:55:44] <armagetron-bridge> 08discord:Teko| Is it fat or thin?
[2024-08-16 21:56:52] <armagetronbridge> 10discord:NorthernScrub| It chonky
[2024-08-16 21:56:52] <armagetron-bridge> 10discord:NorthernScrub| It chonky
[2024-08-16 21:57:09] <armagetronbridge> 08discord:Teko| If it's hairy and fat, is harmless, if it's thin and smooth, run
[2024-08-16 21:57:10] <armagetron-bridge> 08discord:Teko| If it's hairy and fat, is harmless, if it's thin and smooth, run
[2024-08-16 21:57:14] <armagetronbridge> 10discord:NorthernScrub| aaaaAAAAAH it just ran off into a cupboard
[2024-08-16 21:57:14] <armagetron-bridge> 10discord:NorthernScrub| aaaaAAAAAH it just ran off into a cupboard
[2024-08-16 21:58:06] <armagetronbridge> 10discord:NorthernScrub| Ah, most UK spiders are only kinda hairy and not observably so until you're up close
[2024-08-16 21:58:06] <armagetron-bridge> 10discord:NorthernScrub| Ah, most UK spiders are only kinda hairy and not observably so until you're up close
[2024-08-16 21:58:44] <armagetronbridge> 08discord:Teko| Get a wet towel
[2024-08-16 21:58:45] <armagetron-bridge> 08discord:Teko| Get a wet towel
[2024-08-16 21:59:07] <armagetronbridge> 10discord:NorthernScrub| I have a cup and an old letter
[2024-08-16 21:59:07] <armagetron-bridge> 10discord:NorthernScrub| I have a cup and an old letter
[2024-08-16 21:59:36] <armagetronbridge> 08discord:Teko| Apparently its harmless but its fuking fast
[2024-08-16 21:59:36] <armagetron-bridge> 08discord:Teko| Apparently its harmless but its fuking fast
[2024-08-16 21:59:46] <armagetronbridge> 10discord:NorthernScrub| Too slow though. I couldn't catch it and now it's in a box of old and semi-broken electronics
[2024-08-16 21:59:46] <armagetron-bridge> 10discord:NorthernScrub| Too slow though. I couldn't catch it and now it's in a box of old and semi-broken electronics
[2024-08-16 22:00:02] <armagetronbridge> 08discord:Teko| It'a gonna be hard to catch
[2024-08-16 22:00:03] <armagetron-bridge> 08discord:Teko| It'a gonna be hard to catch
[2024-08-16 22:00:12] <armagetronbridge> 08discord:Teko| The wet towel can make it easier
[2024-08-16 22:00:12] <armagetron-bridge> 08discord:Teko| The wet towel can make it easier
[2024-08-16 22:00:13] <armagetron-bridge> 10discord:NorthernScrub| Dammit my cat literally doesn't care either
[2024-08-16 22:00:13] <armagetronbridge> 10discord:NorthernScrub| Dammit my cat literally doesn't care either
[2024-08-16 22:00:14] <armagetron-bridge> 08discord:Teko| Like a net
[2024-08-16 22:00:14] <armagetronbridge> 08discord:Teko| Like a net
[2024-08-16 22:00:23] <armagetronbridge> 14discord:Grimm| lmao hes not gonna catch it hes gonna burn the house down lol
[2024-08-16 22:00:23] <armagetron-bridge> 14discord:Grimm| lmao hes not gonna catch it hes gonna burn the house down lol
[2024-08-16 22:00:45] <armagetronbridge> 10discord:NorthernScrub| Ok. Grabbing my duvet and sleeping on the sofa
[2024-08-16 22:00:45] <armagetron-bridge> 10discord:NorthernScrub| Ok. Grabbing my duvet and sleeping on the sofa
[2024-08-16 22:01:25] <armagetronbridge> 08discord:Teko| I'm not an expert but of spiders don't know how to use stairs, they know wall crawling
[2024-08-16 22:01:25] <armagetron-bridge> 08discord:Teko| I'm not an expert but of spiders don't know how to use stairs, they know wall crawling
[2024-08-16 22:01:34] <armagetronbridge> 10discord:NorthernScrub| Man this bridge really needs to show display names and not usernames
[2024-08-16 22:01:34] <armagetron-bridge> 10discord:NorthernScrub| Man this bridge really needs to show display names and not usernames
[2024-08-16 22:01:46] <armagetronbridge> 08discord:Teko| Lol
[2024-08-16 22:01:46] <armagetron-bridge> 08discord:Teko| Lol
[2024-08-16 22:02:09] <armagetronbridge> 10discord:NorthernScrub| I have no idea who "lvlr.grilvllvl" is
[2024-08-16 22:02:09] <armagetron-bridge> 10discord:NorthernScrub| I have no idea who "lvlr.grilvllvl" is
[2024-08-16 22:02:40] <armagetronbridge> 10discord:NorthernScrub| Thankfully I done did another chunk of code for the bridge I'm building to replace it
[2024-08-16 22:02:40] <armagetron-bridge> 10discord:NorthernScrub| Thankfully I done did another chunk of code for the bridge I'm building to replace it
[2024-08-16 22:02:56] <armagetronbridge> 10discord:NorthernScrub| Then we can finally have pickup bridged
[2024-08-16 22:02:56] <armagetron-bridge> 10discord:NorthernScrub| Then we can finally have pickup bridged
[2024-08-16 22:03:21] <armagetronbridge> 14discord:monkey_arma| Are you two going to add fort?
[2024-08-16 22:03:21] <armagetron-bridge> 14discord:monkey_arma| Are you two going to add fort?
[2024-08-16 22:03:37] <armagetronbridge> 14discord:monkey_arma| Spiders hate fort...apparently
[2024-08-16 22:03:37] <armagetron-bridge> 14discord:monkey_arma| Spiders hate fort...apparently
[2024-08-16 22:04:38] <armagetronbridge> 14discord:Grimm| i already did lol just for you monkey
[2024-08-16 22:04:38] <armagetron-bridge> 14discord:Grimm| i already did lol just for you monkey
[2024-08-16 22:04:39] <armagetronbridge> 14discord:Grimm| lol
[2024-08-16 22:04:40] <armagetron-bridge> 14discord:Grimm| lol
[2024-08-16 22:04:51] <armagetronbridge> 14discord:monkey_arma| i know i meant Teko and deli
[2024-08-16 22:04:51] <armagetron-bridge> 14discord:monkey_arma| i know i meant Teko and deli
[2024-08-16 22:05:31] <armagetronbridge> 14discord:Grimm| lol ive got about 4 half dollar fat ones out in the pole barn i left them building cause id rather them catch all the mosquitos lol
[2024-08-16 22:05:31] <armagetron-bridge> 14discord:Grimm| lol ive got about 4 half dollar fat ones out in the pole barn i left them building cause id rather them catch all the mosquitos lol
[2024-08-16 22:06:08] <armagetronbridge> 14discord:Grimm| now they spin that web quick tho i walked in changed headlight connector on the truck and they already spun full web and still working on it lol
[2024-08-16 22:06:08] <armagetron-bridge> 14discord:Grimm| now they spin that web quick tho i walked in changed headlight connector on the truck and they already spun full web and still working on it lol
[2024-08-16 22:06:35] <armagetronbridge> 14discord:monkey_arma| Are they poisonous or not?
[2024-08-16 22:06:35] <armagetron-bridge> 14discord:monkey_arma| Are they poisonous or not?
[2024-08-16 22:07:07] <armagetronbridge> 14discord:Grimm| ones in the pole barn i dont think so they got the big ole abdomens and the striped legs
[2024-08-16 22:07:08] <armagetron-bridge> 14discord:Grimm| ones in the pole barn i dont think so they got the big ole abdomens and the striped legs
[2024-08-16 22:07:18] <armagetronbridge> 14discord:monkey_arma| ok
[2024-08-16 22:07:18] <armagetron-bridge> 14discord:monkey_arma| ok
[2024-08-16 22:08:50] <armagetronbridge> 10discord:NorthernScrub| My computer isn't even on monk
[2024-08-16 22:08:51] <armagetron-bridge> 10discord:NorthernScrub| My computer isn't even on monk
[2024-08-16 22:09:07] <armagetronbridge> 14discord:monkey_arma| Thats why the spider came out
[2024-08-16 22:09:08] <armagetron-bridge> 14discord:monkey_arma| Thats why the spider came out
[2024-08-16 22:09:12] <armagetronbridge> 10discord:NorthernScrub| That's the beauty of revolt, there's even foss android apps for it
[2024-08-16 22:09:12] <armagetron-bridge> 10discord:NorthernScrub| That's the beauty of revolt, there's even foss android apps for it
[2024-08-16 22:09:21] <armagetronbridge> 14discord:monkey_arma| android...ew
[2024-08-16 22:09:21] <armagetron-bridge> 14discord:monkey_arma| android...ew
[2024-08-16 22:10:01] <armagetronbridge> 10discord:NorthernScrub| Also no. Im only awake cause my sleeping pattern is so fucked. Went to sleep about nineish, woke up at half midnight, figured I'd read some more of this Weber trilogy for a bit
[2024-08-16 22:10:01] <armagetron-bridge> 10discord:NorthernScrub| Also no. Im only awake cause my sleeping pattern is so fucked. Went to sleep about nineish, woke up at half midnight, figured I'd read some more of this Weber trilogy for a bit
[2024-08-16 22:11:09] <armagetronbridge> 14discord:monkey_arma| fair enough
[2024-08-16 22:11:09] <armagetron-bridge> 14discord:monkey_arma| fair enough
[2024-08-16 22:11:17] <armagetronbridge> 14discord:monkey_arma| if you still cant sleep though, add for next fort ๐
[2024-08-16 22:11:18] <armagetron-bridge> 14discord:monkey_arma| if you still cant sleep though, add for next fort ๐
[2024-08-16 22:11:18] <armagetron-bridge> 10discord:NorthernScrub| Ye I'd have lineageos on this but the Xperia 5 v doesn't have any builds yet. I settled for rooting it and ADB removing all the bloat
[2024-08-16 22:11:18] <armagetronbridge> 10discord:NorthernScrub| Ye I'd have lineageos on this but the Xperia 5 v doesn't have any builds yet. I settled for rooting it and ADB removing all the bloat
[2024-08-16 22:11:47] <armagetronbridge> 14discord:monkey_arma| soon there will be mainstream phones that can have linux on
[2024-08-16 22:11:48] <armagetron-bridge> 14discord:monkey_arma| soon there will be mainstream phones that can have linux on
[2024-08-16 22:12:03] <armagetronbridge> 10discord:NorthernScrub| Hah. I couldn't play rn. Fingers feel weird and puffy and I guarantee my reactions are about as good as an elderly drunk
[2024-08-16 22:12:04] <armagetron-bridge> 10discord:NorthernScrub| Hah. I couldn't play rn. Fingers feel weird and puffy and I guarantee my reactions are about as good as an elderly drunk
[2024-08-16 22:12:28] <armagetronbridge> 14discord:monkey_arma| ๐ฆ
[2024-08-16 22:12:28] <armagetron-bridge> 14discord:monkey_arma| ๐ฆ
[2024-08-16 22:12:36] <armagetronbridge> 10discord:NorthernScrub| Also I'm trying to exhaust myself not hype myself
[2024-08-16 22:12:36] <armagetron-bridge> 10discord:NorthernScrub| Also I'm trying to exhaust myself not hype myself
[2024-08-16 22:12:58] <armagetronbridge> 14discord:Grimm| shit was chatting in wrong damn window lol
[2024-08-16 22:12:58] <armagetron-bridge> 14discord:Grimm| shit was chatting in wrong damn window lol
[2024-08-16 22:13:00] <armagetronbridge> 14discord:monkey_arma| my sleeping patterns are messed up too
[2024-08-16 22:13:00] <armagetron-bridge> 14discord:monkey_arma| my sleeping patterns are messed up too
[2024-08-16 22:13:00] <armagetronbridge> 10discord:NorthernScrub| I dont fancy ruining my brain with valium
[2024-08-16 22:13:01] <armagetron-bridge> 10discord:NorthernScrub| I dont fancy ruining my brain with valium
[2024-08-16 22:13:12] <armagetronbridge> 14discord:monkey_arma| yeah get sleep if u can
[2024-08-16 22:13:12] <armagetron-bridge> 14discord:monkey_arma| yeah get sleep if u can
[2024-08-16 22:13:44] <armagetronbridge> 10discord:NorthernScrub| The midnight waking thing usually only lasts for a couple days. I'm useless during them though
[2024-08-16 22:13:44] <armagetron-bridge> 10discord:NorthernScrub| The midnight waking thing usually only lasts for a couple days. I'm useless during them though
[2024-08-16 22:14:38] <armagetronbridge> 10discord:NorthernScrub| Gotta get some more of that melatonin stuff at some point. Technically not completely legal buuuuuut it's far better than shit that will destroy my GABA framework
[2024-08-16 22:14:38] <armagetron-bridge> 10discord:NorthernScrub| Gotta get some more of that melatonin stuff at some point. Technically not completely legal buuuuuut it's far better than shit that will destroy my GABA framework
[2024-08-16 22:14:49] <armagetronbridge> 10discord:NorthernScrub| *uns uns UN's uns*
[2024-08-16 22:14:50] <armagetron-bridge> 10discord:NorthernScrub| *uns uns UN's uns*
[2024-08-16 22:15:11] <armagetronbridge> 14discord:Grimm| melatonin is illegal there?
[2024-08-16 22:15:11] <armagetron-bridge> 14discord:Grimm| melatonin is illegal there?
[2024-08-16 22:16:19] <armagetronbridge> 10discord:NorthernScrub| Also technically this phone can run Linux. Jolla ships it with sailfish on it, but the android compatibility stack is closed source so
[2024-08-16 22:16:19] <armagetron-bridge> 10discord:NorthernScrub| Also technically this phone can run Linux. Jolla ships it with sailfish on it, but the android compatibility stack is closed source so
[2024-08-16 22:16:29] <armagetronbridge> 10discord:NorthernScrub| In this dosage it's controlled
[2024-08-16 22:16:29] <armagetron-bridge> 10discord:NorthernScrub| In this dosage it's controlled
[2024-08-16 22:16:42] <armagetron-bridge> 10discord:NorthernScrub| As in, prescription only
[2024-08-16 22:16:42] <armagetronbridge> 10discord:NorthernScrub| As in, prescription only
[2024-08-16 22:16:53] <armagetronbridge> 14discord:Grimm| ah okay ..
[2024-08-16 22:16:53] <armagetron-bridge> 14discord:Grimm| ah okay ..
[2024-08-16 22:16:55] <armagetronbridge> 10discord:NorthernScrub| And since nobody makes it in lower dosages...
[2024-08-16 22:16:56] <armagetron-bridge> 10discord:NorthernScrub| And since nobody makes it in lower dosages...
[2024-08-16 22:17:13] <armagetronbridge> 14discord:Grimm| well here they practically use that shit to put their kids to bed lol
[2024-08-16 22:17:13] <armagetron-bridge> 14discord:Grimm| well here they practically use that shit to put their kids to bed lol
[2024-08-16 22:17:27] <armagetronbridge> 10discord:NorthernScrub| I only use it once every so often too, it doesn't result in the best of sleep ngl
[2024-08-16 22:17:27] <armagetron-bridge> 10discord:NorthernScrub| I only use it once every so often too, it doesn't result in the best of sleep ngl
[2024-08-16 22:17:45] <armagetronbridge> 10discord:NorthernScrub| Makes my migraines pretty bad
[2024-08-16 22:17:45] <armagetron-bridge> 10discord:NorthernScrub| Makes my migraines pretty bad
[2024-08-16 22:17:56] <armagetronbridge> 14discord:Grimm| yeah probably ... i used to never sleep at all brain kept going all the time
[2024-08-16 22:17:56] <armagetron-bridge> 14discord:Grimm| yeah probably ... i used to never sleep at all brain kept going all the time
[2024-08-16 22:18:11] <armagetronbridge> 10discord:NorthernScrub| That's what I got
[2024-08-16 22:18:11] <armagetron-bridge> 10discord:NorthernScrub| That's what I got
[2024-08-16 22:18:14] <armagetronbridge> 10discord:NorthernScrub| Can't switch off
[2024-08-16 22:18:15] <armagetron-bridge> 10discord:NorthernScrub| Can't switch off
[2024-08-16 22:18:44] <armagetronbridge> 10discord:NorthernScrub| I tried a 26 hour day once. Worked wonders for being tired at the right time but it was kinda depressing
[2024-08-16 22:18:44] <armagetron-bridge> 10discord:NorthernScrub| I tried a 26 hour day once. Worked wonders for being tired at the right time but it was kinda depressing
[2024-08-16 22:18:55] <armagetronbridge> 14discord:Grimm| lol yeah
[2024-08-16 22:18:55] <armagetron-bridge> 14discord:Grimm| lol yeah
[2024-08-16 22:19:03] <armagetronbridge> 10discord:NorthernScrub| I did it for like, a month
[2024-08-16 22:19:03] <armagetron-bridge> 10discord:NorthernScrub| I did it for like, a month
[2024-08-16 22:19:15] <armagetronbridge> 14discord:Grimm| honestly i think wife was right i had sleep apnea ..
[2024-08-16 22:19:16] <armagetron-bridge> 14discord:Grimm| honestly i think wife was right i had sleep apnea ..
[2024-08-16 22:19:45] <armagetronbridge> 14discord:Grimm| so actually my brain was keeping me awake to keep my oxygen levels up .. also why i would wake up in the middle of the night the same
[2024-08-16 22:19:45] <armagetron-bridge> 14discord:Grimm| so actually my brain was keeping me awake to keep my oxygen levels up .. also why i would wake up in the middle of the night the same
[2024-08-16 22:19:57] <armagetronbridge> 10discord:NorthernScrub| It was fantastic at first but then as my "day" became the country's night, kinda took a toll
[2024-08-16 22:19:57] <armagetron-bridge> 10discord:NorthernScrub| It was fantastic at first but then as my "day" became the country's night, kinda took a toll
[2024-08-16 22:20:42] <armagetronbridge> 10discord:NorthernScrub| I probably have some degree of that too. I snore a bit. Not so much now j don't smoke anymore, but still a bit
[2024-08-16 22:20:42] <armagetron-bridge> 10discord:NorthernScrub| I probably have some degree of that too. I snore a bit. Not so much now j don't smoke anymore, but still a bit
[2024-08-16 22:21:20] <armagetronbridge> 14discord:Grimm| yeah theres many factors .. but yeah since getting machine few months ago which i hate ... but i do feel more refreshed waking up
[2024-08-16 22:21:20] <armagetron-bridge> 14discord:Grimm| yeah theres many factors .. but yeah since getting machine few months ago which i hate ... but i do feel more refreshed waking up
[2024-08-16 22:21:43] <armagetronbridge> 10discord:NorthernScrub| Oh you got one of them CPAP things?
[2024-08-16 22:21:43] <armagetron-bridge> 10discord:NorthernScrub| Oh you got one of them CPAP things?
[2024-08-16 22:21:51] <armagetronbridge> 14discord:Grimm| yeah i got a bipap
[2024-08-16 22:21:51] <armagetron-bridge> 14discord:Grimm| yeah i got a bipap
[2024-08-16 22:21:59] <armagetronbridge> 14discord:Grimm| same shit other than way it works ..
[2024-08-16 22:21:59] <armagetron-bridge> 14discord:Grimm| same shit other than way it works ..
[2024-08-16 22:22:50] <armagetronbridge> 10discord:NorthernScrub| I have a hard time falling asleep on my back. Don't think I could do it at all with something strapped to my face
[2024-08-16 22:22:51] <armagetron-bridge> 10discord:NorthernScrub| I have a hard time falling asleep on my back. Don't think I could do it at all with something strapped to my face
[2024-08-16 22:23:10] <armagetronbridge> 14discord:Grimm| yeah well your not supposed to sleep on your back with it
[2024-08-16 22:23:11] <armagetron-bridge> 14discord:Grimm| yeah well your not supposed to sleep on your back with it
[2024-08-16 22:23:37] <armagetronbridge> 14discord:Grimm| they prefer the side .. i also used to go to sleep on my back but nowadays i cant sleep like that either ..
[2024-08-16 22:23:38] <armagetron-bridge> 14discord:Grimm| they prefer the side .. i also used to go to sleep on my back but nowadays i cant sleep like that either ..
[2024-08-16 22:25:28] <armagetronbridge> 10discord:NorthernScrub| That's even worse hah. If I sleep on my side I get incredible aches in my shoulders
[2024-08-16 22:25:28] <armagetron-bridge> 10discord:NorthernScrub| That's even worse hah. If I sleep on my side I get incredible aches in my shoulders
[2024-08-16 22:26:02] <armagetronbridge> 10discord:NorthernScrub| It's weird, I cant fall asleep on my back, but I always wake up on my back
[2024-08-16 22:26:03] <armagetron-bridge> 10discord:NorthernScrub| It's weird, I cant fall asleep on my back, but I always wake up on my back
[2024-08-16 22:26:08] <armagetronbridge> 14discord:Grimm| i get bad neck cramps i think alot of mine is my size .. cause when i lay my shoulders make my damn head so high my necks in awkward position
[2024-08-16 22:26:08] <armagetron-bridge> 14discord:Grimm| i get bad neck cramps i think alot of mine is my size .. cause when i lay my shoulders make my damn head so high my necks in awkward position
[2024-08-16 22:27:14] <armagetronbridge> 10discord:NorthernScrub| Fluffier pillows mate
[2024-08-16 22:27:14] <armagetron-bridge> 10discord:NorthernScrub| Fluffier pillows mate
[2024-08-16 22:27:43] <armagetronbridge> 14discord:Grimm| but now i wished i had known about it 20 years ago last 10 years ago i wake up feeling like i got ran over by a truck lol
[2024-08-16 22:27:43] <armagetron-bridge> 14discord:Grimm| but now i wished i had known about it 20 years ago last 10 years ago i wake up feeling like i got ran over by a truck lol
[2024-08-16 22:27:47] <armagetronbridge> 10discord:NorthernScrub| Funnily enough, I changed my pillows about ayear ago and it slightly improved my migraines
[2024-08-16 22:27:48] <armagetron-bridge> 10discord:NorthernScrub| Funnily enough, I changed my pillows about ayear ago and it slightly improved my migraines
[2024-08-16 22:28:08] <armagetronbridge> 14discord:Grimm| have you ever had seizures or anything?
[2024-08-16 22:28:08] <armagetron-bridge> 14discord:Grimm| have you ever had seizures or anything?
[2024-08-16 22:29:02] <armagetronbridge> 10discord:NorthernScrub| Nah. At least not connected to them. I had a heatstroke seizure last year, but I got lucky and did t choke on shit
[2024-08-16 22:29:02] <armagetron-bridge> 10discord:NorthernScrub| Nah. At least not connected to them. I had a heatstroke seizure last year, but I got lucky and did t choke on shit
[2024-08-16 22:29:13] <armagetronbridge> 10discord:NorthernScrub| Terrifying tbh
[2024-08-16 22:29:13] <armagetron-bridge> 10discord:NorthernScrub| Terrifying tbh
[2024-08-16 22:30:09] <armagetronbridge> 14discord:Grimm| yeah i never had migraines till i had seizure in my late early 20's i wish seizures apon no one ...
[2024-08-16 22:30:09] <armagetron-bridge> 14discord:Grimm| yeah i never had migraines till i had seizure in my late early 20's i wish seizures apon no one ...
[2024-08-16 22:30:50] <armagetronbridge> 10discord:NorthernScrub| Ya, I woke up in indescribable fear
[2024-08-16 22:30:50] <armagetron-bridge> 10discord:NorthernScrub| Ya, I woke up in indescribable fear
[2024-08-16 22:30:55] <armagetronbridge> 14discord:Grimm| feel like you lose half of your memories everytime you have one .. and you just get to reload windows all over again and you have to choose what you remember
[2024-08-16 22:30:55] <armagetron-bridge> 14discord:Grimm| feel like you lose half of your memories everytime you have one .. and you just get to reload windows all over again and you have to choose what you remember
[2024-08-16 22:31:11] <armagetronbridge> 10discord:NorthernScrub| Never felt anything like it. And I grew up in... not the best of environments
[2024-08-16 22:31:11] <armagetron-bridge> 10discord:NorthernScrub| Never felt anything like it. And I grew up in... not the best of environments
[2024-08-16 22:31:45] <armagetronbridge> 10discord:NorthernScrub| Ah. Not quite like that for me, just super high on adrenaline and an awful taste in my throat that didn't shift for hours
[2024-08-16 22:31:45] <armagetron-bridge> 10discord:NorthernScrub| Ah. Not quite like that for me, just super high on adrenaline and an awful taste in my throat that didn't shift for hours
[2024-08-16 22:31:59] <armagetronbridge> 10discord:NorthernScrub| And absolutely no desire to try and sleep again
[2024-08-16 22:31:59] <armagetron-bridge> 10discord:NorthernScrub| And absolutely no desire to try and sleep again
[2024-08-16 22:32:37] <armagetronbridge> 14discord:Grimm| well if you had one you might had already slept it off ... to where your brain reloaded .. in which you are lucky
[2024-08-16 22:32:37] <armagetron-bridge> 14discord:Grimm| well if you had one you might had already slept it off ... to where your brain reloaded .. in which you are lucky
[2024-08-16 22:33:24] <armagetronbridge> 10discord:NorthernScrub| Maybe. I don't think it was a huge seizure, just a lil wiggle. That alone was enough to scare the shit out of me
[2024-08-16 22:33:24] <armagetron-bridge> 10discord:NorthernScrub| Maybe. I don't think it was a huge seizure, just a lil wiggle. That alone was enough to scare the shit out of me
[2024-08-16 22:33:40] <armagetronbridge> 14discord:Grimm| might been what they call tremors
[2024-08-16 22:33:40] <armagetron-bridge> 14discord:Grimm| might been what they call tremors
[2024-08-16 22:34:12] <armagetronbridge> 10discord:NorthernScrub| Not a clue. I was sleeping when it happened so
[2024-08-16 22:34:12] <armagetron-bridge> 10discord:NorthernScrub| Not a clue. I was sleeping when it happened so
[2024-08-16 22:34:20] <armagetronbridge> 10discord:NorthernScrub| Overheated in my own damn bed
[2024-08-16 22:34:20] <armagetron-bridge> 10discord:NorthernScrub| Overheated in my own damn bed
[2024-08-16 22:34:37] <armagetronbridge> 10discord:NorthernScrub| Tbf it was like 30 degrees in the UK at the time
[2024-08-16 22:34:37] <armagetron-bridge> 10discord:NorthernScrub| Tbf it was like 30 degrees in the UK at the time
[2024-08-16 22:35:08] <armagetronbridge> 10discord:NorthernScrub| Proper degrees, not that silly buggers units :D
[2024-08-16 22:35:08] <armagetron-bridge> 10discord:NorthernScrub| Proper degrees, not that silly buggers units :D
[2024-08-16 22:35:22] <armagetronbridge> 14discord:Grimm| lol
[2024-08-16 22:35:22] <armagetron-bridge> 14discord:Grimm| lol
[2024-08-16 22:35:49] <armagetronbridge> 14discord:Grimm| 86 f lol
[2024-08-16 22:35:49] <armagetron-bridge> 14discord:Grimm| 86 f lol
[2024-08-16 22:35:54] <armagetronbridge> 14discord:Grimm| had to look it up
[2024-08-16 22:35:54] <armagetron-bridge> 14discord:Grimm| had to look it up
[2024-08-16 22:36:06] <armagetronbridge> 10discord:NorthernScrub| We ain't built for that heat here. Houses all built outta brick and walls as thick as a man's shoulders
[2024-08-16 22:36:06] <armagetron-bridge> 10discord:NorthernScrub| We ain't built for that heat here. Houses all built outta brick and walls as thick as a man's shoulders
[2024-08-16 22:37:01] <armagetronbridge> 14discord:Grimm| wont lie my work gets to 55C normally one moderate day in temp
[2024-08-16 22:37:01] <armagetron-bridge> 14discord:Grimm| wont lie my work gets to 55C normally one moderate day in temp
[2024-08-16 22:37:03] <armagetronbridge> 10discord:NorthernScrub| Although if you have ac, they do stay cool for hours with barely ten minutes on the blower
[2024-08-16 22:37:03] <armagetron-bridge> 10discord:NorthernScrub| Although if you have ac, they do stay cool for hours with barely ten minutes on the blower
[2024-08-16 22:37:11] <armagetron-bridge> 10discord:NorthernScrub| Whut
[2024-08-16 22:37:12] <armagetronbridge> 10discord:NorthernScrub| Whut
[2024-08-16 22:37:18] <armagetronbridge> 10discord:NorthernScrub| 55
[2024-08-16 22:37:18] <armagetron-bridge> 10discord:NorthernScrub| 55
[2024-08-16 22:37:27] <armagetronbridge> 10discord:NorthernScrub| That's obscene
[2024-08-16 22:37:27] <armagetron-bridge> 10discord:NorthernScrub| That's obscene
[2024-08-16 22:37:29] <armagetronbridge> 14discord:Grimm| yeah its about 131 .. usually in there
[2024-08-16 22:37:29] <armagetron-bridge> 14discord:Grimm| yeah its about 131 .. usually in there
[2024-08-16 22:37:37] <armagetronbridge> 14discord:Grimm| lol it is ..
[2024-08-16 22:37:37] <armagetron-bridge> 14discord:Grimm| lol it is ..
[2024-08-16 22:37:44] <armagetronbridge> 14discord:monkey_arma| Do you work in a foundry?
[2024-08-16 22:37:44] <armagetron-bridge> 14discord:monkey_arma| Do you work in a foundry?
[2024-08-16 22:37:53] <armagetronbridge> 10discord:NorthernScrub| Here that would be severely frowned upon by the powers that be
[2024-08-16 22:37:54] <armagetron-bridge> 10discord:NorthernScrub| Here that would be severely frowned upon by the powers that be
[2024-08-16 22:38:11] <armagetronbridge> 14discord:monkey_arma| I worked in a foundry once for a bit it was mental
[2024-08-16 22:38:12] <armagetron-bridge> 14discord:monkey_arma| I worked in a foundry once for a bit it was mental
[2024-08-16 22:38:23] <armagetronbridge> 14discord:Grimm| i dont work in what we call foundry ..
[2024-08-16 22:38:24] <armagetron-bridge> 14discord:Grimm| i dont work in what we call foundry ..
[2024-08-16 22:38:28] <armagetronbridge> 10discord:NorthernScrub| Ah, yeah. There's exceptikns
[2024-08-16 22:38:28] <armagetron-bridge> 10discord:NorthernScrub| Ah, yeah. There's exceptikns
[2024-08-16 22:38:29] <armagetronbridge> 14discord:Grimm| but factory wise yes
[2024-08-16 22:38:29] <armagetron-bridge> 14discord:Grimm| but factory wise yes
[2024-08-16 22:38:41] <armagetronbridge> 10discord:NorthernScrub| Gestamp was similar when I ran QA there
[2024-08-16 22:38:41] <armagetron-bridge> 10discord:NorthernScrub| Gestamp was similar when I ran QA there
[2024-08-16 22:39:00] <armagetronbridge> 10discord:NorthernScrub| Incidentally, never buy a first gen infiniti
[2024-08-16 22:39:00] <armagetron-bridge> 10discord:NorthernScrub| Incidentally, never buy a first gen infiniti
[2024-08-16 22:39:09] <armagetronbridge> 14discord:Grimm| lol
[2024-08-16 22:39:09] <armagetron-bridge> 14discord:Grimm| lol
[2024-08-16 22:39:55] <armagetronbridge> 10discord:NorthernScrub| They're *probably* fine, but I wouldn't chance a rear impact in ome
[2024-08-16 22:39:56] <armagetron-bridge> 10discord:NorthernScrub| They're *probably* fine, but I wouldn't chance a rear impact in ome
[2024-08-16 22:40:04] <armagetronbridge> 14discord:Grimm| my company makes exhausts for .. pretty much every car ... we make certain ones theres just lots of welding ... and bending the pipe itself generates lots of head
[2024-08-16 22:40:05] <armagetron-bridge> 14discord:Grimm| my company makes exhausts for .. pretty much every car ... we make certain ones theres just lots of welding ... and bending the pipe itself generates lots of head
[2024-08-16 22:40:34] <armagetronbridge> 10discord:NorthernScrub| Is it a hotworking plant? Or are these cold bends?
[2024-08-16 22:40:34] <armagetron-bridge> 10discord:NorthernScrub| Is it a hotworking plant? Or are these cold bends?
[2024-08-16 22:40:52] <armagetronbridge> 14discord:Grimm| not sure what your referencing
[2024-08-16 22:40:53] <armagetron-bridge> 14discord:Grimm| not sure what your referencing
[2024-08-16 22:41:07] <armagetronbridge> 14discord:Grimm| meaning whether pipe is preheated?
[2024-08-16 22:41:07] <armagetron-bridge> 14discord:Grimm| meaning whether pipe is preheated?
[2024-08-16 22:41:17] <armagetronbridge> 14discord:Grimm| then bent or .. cold wise
[2024-08-16 22:41:17] <armagetron-bridge> 14discord:Grimm| then bent or .. cold wise
[2024-08-16 22:41:19] <armagetronbridge> 10discord:NorthernScrub| Is the metal heated befor bending, or just formed to a mould or a cornice?
[2024-08-16 22:41:19] <armagetron-bridge> 10discord:NorthernScrub| Is the metal heated befor bending, or just formed to a mould or a cornice?
[2024-08-16 22:41:31] <armagetronbridge> 14discord:Grimm| sometimes we heat only when we cant cold bend
[2024-08-16 22:41:31] <armagetron-bridge> 14discord:Grimm| sometimes we heat only when we cant cold bend
[2024-08-16 22:41:49] <armagetronbridge> 10discord:NorthernScrub| Hm. This app needs fixing. I have to scroll new messages into view manually
[2024-08-16 22:41:49] <armagetron-bridge> 10discord:NorthernScrub| Hm. This app needs fixing. I have to scroll new messages into view manually
[2024-08-16 22:41:54] <armagetronbridge> 14discord:Grimm| they are all generally bent cold .. but cold pipe generally dont bend well
[2024-08-16 22:41:54] <armagetron-bridge> 14discord:Grimm| they are all generally bent cold .. but cold pipe generally dont bend well
[2024-08-16 22:42:03] <armagetronbridge> 10discord:NorthernScrub| Keep getting scrolljacked
[2024-08-16 22:42:04] <armagetron-bridge> 10discord:NorthernScrub| Keep getting scrolljacked
[2024-08-16 22:42:57] <armagetronbridge> 10discord:NorthernScrub| Yeah, no, I know. But making a cornice for a specific pipe for a specific bend can be costly innit. I've seen a few new shops up that essentially forge pipework in-situ
[2024-08-16 22:42:57] <armagetron-bridge> 10discord:NorthernScrub| Yeah, no, I know. But making a cornice for a specific pipe for a specific bend can be costly innit. I've seen a few new shops up that essentially forge pipework in-situ
[2024-08-16 22:43:38] <armagetronbridge> 10discord:NorthernScrub| Hence no need for forms to bend the piping around. It's just sealed, slightly pressurised, and bent mechanically
[2024-08-16 22:43:38] <armagetron-bridge> 10discord:NorthernScrub| Hence no need for forms to bend the piping around. It's just sealed, slightly pressurised, and bent mechanically
[2024-08-16 22:44:00] <armagetronbridge> 10discord:NorthernScrub| Or they use ceramic filler, which I think is probably a better approach
[2024-08-16 22:44:00] <armagetron-bridge> 10discord:NorthernScrub| Or they use ceramic filler, which I think is probably a better approach
[2024-08-16 22:44:04] <armagetronbridge> 14discord:Grimm| yes ours is all bent mechanically
[2024-08-16 22:44:04] <armagetron-bridge> 14discord:Grimm| yes ours is all bent mechanically
[2024-08-16 22:44:24] <armagetronbridge> 14discord:Grimm| we use brass mandrels
[2024-08-16 22:44:24] <armagetron-bridge> 14discord:Grimm| we use brass mandrels
[2024-08-16 22:44:31] <armagetronbridge> 10discord:NorthernScrub| Man I need a lil workshop
[2024-08-16 22:44:31] <armagetron-bridge> 10discord:NorthernScrub| Man I need a lil workshop
[2024-08-16 22:44:31] <armagetron-bridge> 14discord:Grimm| to bend the pipe and hold its shape
[2024-08-16 22:44:31] <armagetronbridge> 14discord:Grimm| to bend the pipe and hold its shape
[2024-08-16 22:45:17] <armagetronbridge> 10discord:NorthernScrub| Mandrel. That's the word I wanted.
[2024-08-16 22:45:17] <armagetron-bridge> 10discord:NorthernScrub| Mandrel. That's the word I wanted.
[2024-08-16 22:45:52] <armagetronbridge> 14discord:Grimm| yeah i understand .. i know theres probably language barrier when we are talking
[2024-08-16 22:45:52] <armagetron-bridge> 14discord:Grimm| yeah i understand .. i know theres probably language barrier when we are talking
[2024-08-16 22:46:01] <armagetronbridge> 10discord:NorthernScrub| The fuck is cornice lmao. Mixing plastering in there
[2024-08-16 22:46:01] <armagetron-bridge> 10discord:NorthernScrub| The fuck is cornice lmao. Mixing plastering in there
[2024-08-16 22:46:15] <armagetronbridge> 14discord:Grimm| dunno i just figured it was our word for shot
[2024-08-16 22:46:15] <armagetron-bridge> 14discord:Grimm| dunno i just figured it was our word for shot
[2024-08-16 22:46:36] <armagetronbridge> 14discord:Grimm| lol if we bend "air gap" pipe we fill the pipes with shot in the middle
[2024-08-16 22:46:36] <armagetron-bridge> 14discord:Grimm| lol if we bend "air gap" pipe we fill the pipes with shot in the middle
[2024-08-16 22:46:40] <armagetronbridge> 10discord:NorthernScrub| Nah. I'm just foggy af cause I enjad six hours of sleep in the past... 56 hours or so
[2024-08-16 22:46:41] <armagetron-bridge> 10discord:NorthernScrub| Nah. I'm just foggy af cause I enjad six hours of sleep in the past... 56 hours or so
[2024-08-16 22:47:28] <armagetronbridge> 14discord:Grimm| alright man you get some sleep ill talk about it another time if ya got questions lol
[2024-08-16 22:47:29] <armagetron-bridge> 14discord:Grimm| alright man you get some sleep ill talk about it another time if ya got questions lol
[2024-08-16 22:47:47] <armagetronbridge> 10discord:NorthernScrub| Ye shot = ceramic. I've heard the term beading too
[2024-08-16 22:47:48] <armagetron-bridge> 10discord:NorthernScrub| Ye shot = ceramic. I've heard the term beading too
[2024-08-16 22:48:02] <armagetronbridge> 10discord:NorthernScrub| Ye imma go read a bit. Gn
[2024-08-16 22:48:03] <armagetron-bridge> 10discord:NorthernScrub| Ye imma go read a bit. Gn
[2024-08-16 23:48:44] --> Lucifer_arma has joined the channel
Searching from 2024-08-17 00:00:00 to 2024-08-17 23:59:59.999999.
Query completed in 0.64 seconds
[2024-08-17 00:47:42] <Lucifer_arma> omg, I'm writing an actual script.
[2024-08-17 00:47:42] <armagetronbridge> 10irc:Lucifer_arma| omg, I'm writing an actual script.
[2024-08-17 03:03:53] <-- Lucifer_arma has quit (Read error: No route to host)
[2024-08-17 04:18:17] <armagetronbridge> 12discord:zman_0| @monkey_arma @wwnelg a Dell Latitude D820 with an NVidia GPU, forgot which one. It's just the GPU that is fried. Replacements would have been available back when the issue first appeared, and the repair would have been easy enough (One of the reasons I picked that model), but I considered it not worth it. I wasn't actually using the machine that much any more anyway. So I just <clipped message>
[2024-08-17 04:18:17] <armagetron-bridge> 12discord:zman_0| @monkey_arma @wwnelg a Dell Latitude D820 with an NVidia GPU, forgot which one. It's just the GPU that is fried. Replacements would have been available back when the issue first appeared, and the repair would have been easy enough (One of the reasons I picked that model), but I considered it not worth it. I wasn't actually using the machine that much any more anyway. So I just <clipped message>
[2024-08-17 04:18:18] <armagetron-bridge> 12discord:zman_0| put it into a configuration where it would be usable in IT emergencies and stored it away.
[2024-08-17 04:18:18] <armagetronbridge> 12discord:zman_0| put it into a configuration where it would be usable in IT emergencies and stored it away.
[2024-08-17 12:08:29] --> monr0e has joined the channel
[2024-08-17 15:15:49] --> Sauss-Ente has joined the channel
[2024-08-17 15:56:16] <armagetronbridge> 08discord:delinquent| lol subby sent one message and disappeared into the ether for another year
[2024-08-17 15:56:16] <armagetron-bridge> 08discord:delinquent| lol subby sent one message and disappeared into the ether for another year
[2024-08-17 15:56:43] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-17 18:56:55] <armagetronbridge> 07discord:xmojavedream| Hey I'm kinda new and have a couple of pretty basic questions if anyone has the time
[2024-08-17 18:56:56] <armagetron-bridge> 07discord:xmojavedream| Hey I'm kinda new and have a couple of pretty basic questions if anyone has the time
[2024-08-17 18:58:02] <armagetronbridge> 08discord:delinquent| sure fire away
[2024-08-17 18:58:03] <armagetron-bridge> 08discord:delinquent| sure fire away
[2024-08-17 19:01:17] <armagetronbridge> 07discord:xmojavedream| 1. Are there any HUD mods for this game? I switched to the beta build or whatever, which does have a nicer HUD, but it's still a little barebones for my taste
[2024-08-17 19:01:17] <armagetron-bridge> 07discord:xmojavedream| 1. Are there any HUD mods for this game? I switched to the beta build or whatever, which does have a nicer HUD, but it's still a little barebones for my taste
[2024-08-17 19:01:18] <armagetron-bridge> 07discord:xmojavedream| 2. Is multiplayer safe? I know that, with some older games, remote code execution can be done just by connecting to a server
[2024-08-17 19:01:18] <armagetronbridge> 07discord:xmojavedream| 2. Is multiplayer safe? I know that, with some older games, remote code execution can be done just by connecting to a server
[2024-08-17 19:11:15] <armagetronbridge> 14discord:monkey_arma| 1 YES
[2024-08-17 19:11:15] <armagetron-bridge> 14discord:monkey_arma| 1 YES
[2024-08-17 19:11:17] <armagetronbridge> 14discord:monkey_arma| 2 NO
[2024-08-17 19:11:17] <armagetron-bridge> 14discord:monkey_arma| 2 NO
[2024-08-17 19:11:21] <armagetronbridge> 14discord:monkey_arma| 3 THE END
[2024-08-17 19:11:21] <armagetron-bridge> 14discord:monkey_arma| 3 THE END
[2024-08-17 19:11:41] <armagetronbridge> 08discord:delinquent| 1: Sort of. We call them "cockpits". The beta channel on Steam is just 0.4, which is the "experimental" branch. There's a mess of cockpits here, and you can build your own when you become more familiar with the xml structure: https://wiki.armagetronad.org/index.php?title=Cockpits_List
[2024-08-17 19:11:42] <armagetron-bridge> 08discord:delinquent| 1: Sort of. We call them "cockpits". The beta channel on Steam is just 0.4, which is the "experimental" branch. There's a mess of cockpits here, and you can build your own when you become more familiar with the xml structure: https://wiki.armagetronad.org/index.php?title=Cockpits_List
[2024-08-17 19:11:42] <armagetron-bridge> 08discord:delinquent| 2: Armagetron runs entirely in unprivileged space, on whichever platform (linux, bsd, macos, windows) you're using. Although the game is originally from the late 90's/early 00's, the targeted C++ libs are rather more recent. We also use modern libSDL wrappers in compatibility mode, which allows for a little mor esecurity in graphical asset management. The console, which runs behi <clipped message>
[2024-08-17 19:11:42] <armagetronbridge> 08discord:delinquent| 2: Armagetron runs entirely in unprivileged space, on whichever platform (linux, bsd, macos, windows) you're using. Although the game is originally from the late 90's/early 00's, the targeted C++ libs are rather more recent. We also use modern libSDL wrappers in compatibility mode, which allows for a little mor esecurity in graphical asset management. The console, which runs behi <clipped message>
[2024-08-17 19:11:43] <armagetron-bridge> 08discord:delinquent| nd the game, relies on a text input/output structure, which somewhat mitigates the possibility of any string being run as client-side code - and even then, the attacker would further have to rely on traditional privilege elevation attacks, assuming the victim wasn't acutely aware of the nonsense and merely closed the window. In any case, an attacker would need to circumvent the s <clipped message>
[2024-08-17 19:11:43] <armagetronbridge> 08discord:delinquent| nd the game, relies on a text input/output structure, which somewhat mitigates the possibility of any string being run as client-side code - and even then, the attacker would further have to rely on traditional privilege elevation attacks, assuming the victim wasn't acutely aware of the nonsense and merely closed the window. In any case, an attacker would need to circumvent the s <clipped message>
[2024-08-17 19:11:44] <armagetron-bridge> 08discord:delinquent| erver-in-the-middle before even looking at the victim's machine, and they'd have to do it all within the server-set character limit - which defaults to 80 chars, and I usually set to 120 or 160 in my servers. That's a tall order, so whilst it's theoretically possible, I'd say its no more likely than any *other* game - or any *modern* game for that matter.
[2024-08-17 19:11:45] <armagetronbridge> 08discord:delinquent| erver-in-the-middle before even looking at the victim's machine, and they'd have to do it all within the server-set character limit - which defaults to 80 chars, and I usually set to 120 or 160 in my servers. That's a tall order, so whilst it's theoretically possible, I'd say its no more likely than any *other* game - or any *modern* game for that matter.
[2024-08-17 19:11:46] <armagetron-bridge> 08discord:delinquent| Of course, theoretically it might be possible to compile a server with some... "changes", and stick it on the master server list - but you'd be again relying on the exploitation of netobjects, which, whilst not impossible, isn't easy. And you'd still need to somehow ensure that a client that connects to the server understands what is going on - which is unlikely, unless you *also <clipped message>
[2024-08-17 19:11:46] <armagetronbridge> 08discord:delinquent| Of course, theoretically it might be possible to compile a server with some... "changes", and stick it on the master server list - but you'd be again relying on the exploitation of netobjects, which, whilst not impossible, isn't easy. And you'd still need to somehow ensure that a client that connects to the server understands what is going on - which is unlikely, unless you *also <clipped message>
[2024-08-17 19:11:47] <armagetron-bridge> 08discord:delinquent| * got the victim to download a customised client. So yeah, in short, *very* unlikely.
[2024-08-17 19:11:47] <armagetronbridge> 08discord:delinquent| * got the victim to download a customised client. So yeah, in short, *very* unlikely.
[2024-08-17 19:19:45] <armagetronbridge> 07discord:xmojavedream| Awesome. Wonderful. Thank you so much
[2024-08-17 19:19:46] <armagetron-bridge> 07discord:xmojavedream| Awesome. Wonderful. Thank you so much
[2024-08-17 19:22:02] <armagetronbridge> 08discord:delinquent| np welcome to tron
[2024-08-17 19:22:03] <armagetron-bridge> 08discord:delinquent| np welcome to tron
[2024-08-17 20:02:19] <armagetronbridge> 14discord:monkey_arma| @northernscrub What was that environment variable or w/e to use instead of vblank_mode?
[2024-08-17 20:02:19] <armagetron-bridge> 14discord:monkey_arma| @northernscrub What was that environment variable or w/e to use instead of vblank_mode?
[2024-08-17 20:02:21] <armagetronbridge> 14discord:monkey_arma| pls
[2024-08-17 20:02:21] <armagetron-bridge> 14discord:monkey_arma| pls
[2024-08-17 20:03:44] <armagetronbridge> 08discord:delinquent| `__GL_SYNC_TO_VBLANK 0`
[2024-08-17 20:03:44] <armagetron-bridge> 08discord:delinquent| `__GL_SYNC_TO_VBLANK 0`
[2024-08-17 20:03:50] <armagetronbridge> 08discord:delinquent| lemme check that and make sure its right
[2024-08-17 20:03:50] <armagetron-bridge> 08discord:delinquent| lemme check that and make sure its right
[2024-08-17 20:04:30] <armagetronbridge> 08discord:delinquent| nop. `__GL_SYNC_TO_VBLANK=0`
[2024-08-17 20:04:30] <armagetron-bridge> 08discord:delinquent| nop. `__GL_SYNC_TO_VBLANK=0`
[2024-08-17 20:04:49] <armagetronbridge> 08discord:delinquent| I use the following to make shit nicer too:
[2024-08-17 20:04:49] <armagetron-bridge> 08discord:delinquent| I use the following to make shit nicer too:
[2024-08-17 20:05:08] <armagetronbridge> 15discord:Nélg| that's an nvidia exclusive btw
[2024-08-17 20:05:08] <armagetron-bridge> 15discord:Nélg| that's an nvidia exclusive btw
[2024-08-17 20:05:23] <armagetronbridge> 08discord:delinquent| ```bash
[2024-08-17 20:05:23] <armagetron-bridge> 08discord:delinquent| ```bash
[2024-08-17 20:05:23] <armagetron-bridge> 08discord:delinquent| __GL_SYNC_TO_VBLANK=o armagetronad
[2024-08-17 20:05:23] <armagetronbridge> 08discord:delinquent| __GL_SYNC_TO_VBLANK=o armagetronad
[2024-08-17 20:05:25] <armagetron-bridge> 08discord:delinquent| sleep 5
[2024-08-17 20:05:25] <armagetronbridge> 08discord:delinquent| sleep 5
[2024-08-17 20:05:26] <armagetron-bridge> 08discord:delinquent| sudo renice -n -20 -p $(pidof armagetronad.real)
[2024-08-17 20:05:26] <armagetronbridge> 08discord:delinquent| sudo renice -n -20 -p $(pidof armagetronad.real)
[2024-08-17 20:05:27] <armagetron-bridge> 08discord:delinquent| ```
[2024-08-17 20:05:28] <armagetronbridge> 08discord:delinquent| ```
[2024-08-17 20:05:34] <armagetronbridge> 15discord:Nélg| would that work?
[2024-08-17 20:05:34] <armagetron-bridge> 15discord:Nélg| would that work?
[2024-08-17 20:05:52] <armagetronbridge> 08discord:delinquent| renice? yes, it gives priority to... everything pretty much
[2024-08-17 20:05:52] <armagetron-bridge> 08discord:delinquent| renice? yes, it gives priority to... everything pretty much
[2024-08-17 20:06:00] <armagetronbridge> 15discord:Nélg| i feel like the renice wouldn't execute until after armagetronad has stopped running
[2024-08-17 20:06:00] <armagetron-bridge> 15discord:Nélg| i feel like the renice wouldn't execute until after armagetronad has stopped running
[2024-08-17 20:06:12] <armagetronbridge> 08discord:delinquent| it does stop running
[2024-08-17 20:06:12] <armagetron-bridge> 08discord:delinquent| it does stop running
[2024-08-17 20:06:20] <armagetronbridge> 08discord:delinquent| remember armagetronad is just a shell script
[2024-08-17 20:06:20] <armagetron-bridge> 08discord:delinquent| remember armagetronad is just a shell script
[2024-08-17 20:06:28] <armagetronbridge> 14discord:monkey_arma| ok so 1) its for nvidia cards, 2) it bypasses X.
[2024-08-17 20:06:28] <armagetron-bridge> 14discord:monkey_arma| ok so 1) its for nvidia cards, 2) it bypasses X.
[2024-08-17 20:06:30] <armagetronbridge> 08discord:delinquent| it launches armagetronad.real
[2024-08-17 20:06:30] <armagetron-bridge> 08discord:delinquent| it launches armagetronad.real
[2024-08-17 20:07:17] <armagetronbridge> 15discord:Nélg| ok but when you launch armagetronad it holds up the shell script yeah?
[2024-08-17 20:07:17] <armagetron-bridge> 15discord:Nélg| ok but when you launch armagetronad it holds up the shell script yeah?
[2024-08-17 20:07:28] <armagetronbridge> 08discord:delinquent| ?
[2024-08-17 20:07:28] <armagetron-bridge> 08discord:delinquent| ?
[2024-08-17 20:07:40] <armagetronbridge> 15discord:Nélg| you're not doing `armagetronad &`
[2024-08-17 20:07:40] <armagetron-bridge> 15discord:Nélg| you're not doing `armagetronad &`
[2024-08-17 20:07:46] <armagetronbridge> 08discord:delinquent| you know how exec works right?
[2024-08-17 20:07:47] <armagetron-bridge> 08discord:delinquent| you know how exec works right?
[2024-08-17 20:08:24] <armagetronbridge> 08discord:delinquent| oh wait
[2024-08-17 20:08:25] <armagetron-bridge> 08discord:delinquent| oh wait
[2024-08-17 20:08:28] <armagetronbridge> 08discord:delinquent| I see what you mean
[2024-08-17 20:08:28] <armagetron-bridge> 08discord:delinquent| I see what you mean
[2024-08-17 20:08:33] <armagetronbridge> 08discord:delinquent| hmm. It might
[2024-08-17 20:08:33] <armagetron-bridge> 08discord:delinquent| hmm. It might
[2024-08-17 20:08:42] <armagetronbridge> 08discord:delinquent| I'll test it later
[2024-08-17 20:08:42] <armagetron-bridge> 08discord:delinquent| I'll test it later
[2024-08-17 20:09:20] <armagetronbridge> 08discord:delinquent| @monkey_arma do you have /etc/drirc on bsd?
[2024-08-17 20:09:20] <armagetron-bridge> 08discord:delinquent| @monkey_arma do you have /etc/drirc on bsd?
[2024-08-17 20:09:36] <armagetronbridge> 14discord:monkey_arma| no
[2024-08-17 20:09:36] <armagetron-bridge> 14discord:monkey_arma| no
[2024-08-17 20:09:39] <armagetronbridge> 08discord:delinquent| hm
[2024-08-17 20:09:39] <armagetron-bridge> 08discord:delinquent| hm
[2024-08-17 20:09:50] <armagetronbridge> 08discord:delinquent| There are a few ways to set this at the driver level, lemme have a deeks
[2024-08-17 20:09:50] <armagetron-bridge> 08discord:delinquent| There are a few ways to set this at the driver level, lemme have a deeks
[2024-08-17 20:10:03] <armagetronbridge> 14discord:monkey_arma| you know im on AMDGPU right?
[2024-08-17 20:10:03] <armagetron-bridge> 14discord:monkey_arma| you know im on AMDGPU right?
[2024-08-17 20:10:11] <armagetronbridge> 08discord:delinquent| ye
[2024-08-17 20:10:11] <armagetron-bridge> 08discord:delinquent| ye
[2024-08-17 20:10:12] <armagetronbridge> 14discord:monkey_arma| not NVIDIA
[2024-08-17 20:10:12] <armagetron-bridge> 14discord:monkey_arma| not NVIDIA
[2024-08-17 20:10:14] <armagetronbridge> 14discord:monkey_arma| kk
[2024-08-17 20:10:14] <armagetron-bridge> 14discord:monkey_arma| kk
[2024-08-17 20:10:19] <armagetronbridge> 08discord:delinquent| hence my hunting
[2024-08-17 20:10:20] <armagetron-bridge> 08discord:delinquent| hence my hunting
[2024-08-17 20:10:33] <armagetronbridge> 08discord:delinquent| you could also set ti at the system exec level
[2024-08-17 20:10:33] <armagetron-bridge> 08discord:delinquent| you could also set ti at the system exec level
[2024-08-17 20:10:35] <armagetronbridge> 08discord:delinquent| piossibly
[2024-08-17 20:10:35] <armagetron-bridge> 08discord:delinquent| piossibly
[2024-08-17 20:11:02] <armagetronbridge> 08discord:delinquent| with `armagetronad.real -vo`, but idk if that's just an xsession shortcut
[2024-08-17 20:11:02] <armagetron-bridge> 08discord:delinquent| with `armagetronad.real -vo`, but idk if that's just an xsession shortcut
[2024-08-17 20:11:54] <armagetronbridge> 14discord:monkey_arma| wtf is armagetronad.real?
[2024-08-17 20:11:55] <armagetron-bridge> 14discord:monkey_arma| wtf is armagetronad.real?
[2024-08-17 20:12:01] <armagetronbridge> 08discord:delinquent| the actual application
[2024-08-17 20:12:01] <armagetron-bridge> 08discord:delinquent| the actual application
[2024-08-17 20:12:06] <armagetronbridge> 08discord:delinquent| armagetronad is just a shell script
[2024-08-17 20:12:06] <armagetron-bridge> 08discord:delinquent| armagetronad is just a shell script
[2024-08-17 20:12:09] <armagetronbridge> 15discord:Nélg| thats a debian only thing
[2024-08-17 20:12:09] <armagetron-bridge> 15discord:Nélg| thats a debian only thing
[2024-08-17 20:12:13] <armagetronbridge> 08discord:delinquent| wat
[2024-08-17 20:12:13] <armagetron-bridge> 08discord:delinquent| wat
[2024-08-17 20:12:15] <armagetronbridge> 08discord:delinquent| ok nvm
[2024-08-17 20:12:15] <armagetron-bridge> 08discord:delinquent| ok nvm
[2024-08-17 20:12:20] <armagetronbridge> 15discord:Nélg| you dont even get that when you build armagetronad like i do
[2024-08-17 20:12:20] <armagetron-bridge> 15discord:Nélg| you dont even get that when you build armagetronad like i do
[2024-08-17 20:12:30] <armagetronbridge> 14discord:monkey_arma| yeah on openbsd there is nothing like that
[2024-08-17 20:12:31] <armagetron-bridge> 14discord:monkey_arma| yeah on openbsd there is nothing like that
[2024-08-17 20:12:43] <armagetronbridge> 08discord:delinquent| what on earth is it doing in debian tho
[2024-08-17 20:12:43] <armagetron-bridge> 08discord:delinquent| what on earth is it doing in debian tho
[2024-08-17 20:12:46] <armagetronbridge> 08discord:delinquent| and whay
[2024-08-17 20:12:47] <armagetron-bridge> 08discord:delinquent| and whay
[2024-08-17 20:14:10] <armagetronbridge> 08discord:delinquent| @monkey_arma out of interest, if you create `~/.drirc` and add the following into it, does it disable vsync?
[2024-08-17 20:14:10] <armagetronbridge> 08discord:delinquent| ```bash
[2024-08-17 20:14:10] <armagetron-bridge> 08discord:delinquent| @monkey_arma out of interest, if you create `~/.drirc` and add the following into it, does it disable vsync?
[2024-08-17 20:14:10] <armagetron-bridge> 08discord:delinquent| ```bash
[2024-08-17 20:14:11] <armagetron-bridge> 08discord:delinquent| <driconf>
[2024-08-17 20:14:11] <armagetronbridge> 08discord:delinquent| <driconf>
[2024-08-17 20:14:12] <armagetron-bridge> 08discord:delinquent| <device screen="0" driver="dri2">
[2024-08-17 20:14:13] <armagetronbridge> 08discord:delinquent| <device screen="0" driver="dri2">
[2024-08-17 20:14:14] <armagetron-bridge> 08discord:delinquent| <application name="armagetronad">
[2024-08-17 20:14:14] <armagetronbridge> 08discord:delinquent| <application name="armagetronad">
[2024-08-17 20:14:15] <armagetron-bridge> 08discord:delinquent| <option name="vblank_mode" value="0" />
[2024-08-17 20:14:15] <armagetronbridge> 08discord:delinquent| <option name="vblank_mode" value="0" />
[2024-08-17 20:14:16] <armagetron-bridge> 08discord:delinquent| </application>
[2024-08-17 20:14:16] <armagetronbridge> 08discord:delinquent| </application>
[2024-08-17 20:14:18] <armagetron-bridge> 08discord:delinquent| </device>
[2024-08-17 20:14:18] <armagetronbridge> 08discord:delinquent| </device>
[2024-08-17 20:14:19] <armagetron-bridge> 08discord:delinquent| </driconf>
[2024-08-17 20:14:19] <armagetronbridge> 08discord:delinquent| </driconf>
[2024-08-17 20:14:20] <armagetron-bridge> 08discord:delinquent| ```
[2024-08-17 20:14:20] <armagetronbridge> 08discord:delinquent| ```
[2024-08-17 20:14:36] <armagetronbridge> 08discord:delinquent| iunno if you need to change the driver name for amdgpu
[2024-08-17 20:14:36] <armagetron-bridge> 08discord:delinquent| iunno if you need to change the driver name for amdgpu
[2024-08-17 20:14:37] <armagetronbridge> 08discord:delinquent| you might
[2024-08-17 20:14:38] <armagetron-bridge> 08discord:delinquent| you might
[2024-08-17 20:15:04] <armagetronbridge> 08discord:delinquent| ye I think it needs to be `amdgpu`
[2024-08-17 20:15:05] <armagetron-bridge> 08discord:delinquent| ye I think it needs to be `amdgpu`
[2024-08-17 20:15:10] <armagetronbridge> 14discord:monkey_arma| there's no drirc
[2024-08-17 20:15:10] <armagetron-bridge> 14discord:monkey_arma| there's no drirc
[2024-08-17 20:15:52] <armagetronbridge> 14discord:monkey_arma| i think this is linux-centric
[2024-08-17 20:15:52] <armagetron-bridge> 14discord:monkey_arma| i think this is linux-centric
[2024-08-17 20:15:54] <armagetronbridge> 08discord:delinquent| hence why I suggeested you create it :D
[2024-08-17 20:15:54] <armagetron-bridge> 08discord:delinquent| hence why I suggeested you create it :D
[2024-08-17 20:16:05] <armagetronbridge> 14discord:monkey_arma| i cant create it as its not in the man pages section 5
[2024-08-17 20:16:05] <armagetron-bridge> 14discord:monkey_arma| i cant create it as its not in the man pages section 5
[2024-08-17 20:16:14] <armagetronbridge> 14discord:monkey_arma| if it existed it would be there
[2024-08-17 20:16:14] <armagetron-bridge> 14discord:monkey_arma| if it existed it would be there
[2024-08-17 20:16:21] <armagetronbridge> 14discord:monkey_arma| if it would work i ean
[2024-08-17 20:16:22] <armagetron-bridge> 14discord:monkey_arma| if it would work i ean
[2024-08-17 20:16:26] <armagetronbridge> 08discord:delinquent| I have a feeling much of the amdgpu architecture is very similar to that of linux, which is why I'm wondering if its just not documented
[2024-08-17 20:16:26] <armagetron-bridge> 08discord:delinquent| I have a feeling much of the amdgpu architecture is very similar to that of linux, which is why I'm wondering if its just not documented
[2024-08-17 20:16:43] <armagetronbridge> 14discord:monkey_arma| they doc ALL rc and conf files
[2024-08-17 20:16:43] <armagetron-bridge> 14discord:monkey_arma| they doc ALL rc and conf files
[2024-08-17 20:16:49] <armagetronbridge> 08discord:delinquent| sure about that?
[2024-08-17 20:16:50] <armagetron-bridge> 08discord:delinquent| sure about that?
[2024-08-17 20:16:52] <armagetronbridge> 14discord:monkey_arma| i can try but im sure
[2024-08-17 20:16:52] <armagetron-bridge> 14discord:monkey_arma| i can try but im sure
[2024-08-17 20:16:56] <armagetronbridge> 14discord:monkey_arma| i'll try
[2024-08-17 20:16:56] <armagetron-bridge> 14discord:monkey_arma| i'll try
[2024-08-17 20:18:26] <armagetronbridge> 14discord:monkey_arma| you know im on 0.4 right?
[2024-08-17 20:18:27] <armagetron-bridge> 14discord:monkey_arma| you know im on 0.4 right?
[2024-08-17 20:18:54] <armagetronbridge> 08discord:delinquent| no, but does it change anything?
[2024-08-17 20:18:54] <armagetron-bridge> 08discord:delinquent| no, but does it change anything?
[2024-08-17 20:18:56] <armagetronbridge> 14discord:monkey_arma| id better set vsync to default ingame and remove vblankmode
[2024-08-17 20:18:56] <armagetron-bridge> 14discord:monkey_arma| id better set vsync to default ingame and remove vblankmode
[2024-08-17 20:21:01] <armagetronbridge> 14discord:monkey_arma| ok lemme restart
[2024-08-17 20:21:02] <armagetron-bridge> 14discord:monkey_arma| ok lemme restart
[2024-08-17 20:22:21] <armagetronbridge> 14discord:monkey_arma| holy f**k it works
[2024-08-17 20:22:22] <armagetron-bridge> 14discord:monkey_arma| holy f**k it works
[2024-08-17 20:22:25] <armagetronbridge> 14discord:monkey_arma| i think
[2024-08-17 20:22:26] <armagetron-bridge> 14discord:monkey_arma| i think
[2024-08-17 20:22:36] <armagetronbridge> 08discord:delinquent| ^^
[2024-08-17 20:22:36] <armagetron-bridge> 08discord:delinquent| ^^
[2024-08-17 20:22:38] <armagetronbridge> 14discord:monkey_arma| hang on
[2024-08-17 20:22:39] <armagetron-bridge> 14discord:monkey_arma| hang on
[2024-08-17 20:22:58] <armagetronbridge> 14discord:monkey_arma| shouldnt a value of 0 be vsync off?
[2024-08-17 20:22:59] <armagetron-bridge> 14discord:monkey_arma| shouldnt a value of 0 be vsync off?
[2024-08-17 20:23:03] <armagetronbridge> 08discord:delinquent| yes
[2024-08-17 20:23:03] <armagetron-bridge> 08discord:delinquent| yes
[2024-08-17 20:23:04] <armagetronbridge> 14discord:monkey_arma| so it doesnt wotk
[2024-08-17 20:23:04] <armagetron-bridge> 14discord:monkey_arma| so it doesnt wotk
[2024-08-17 20:23:06] <armagetronbridge> 14discord:monkey_arma| work
[2024-08-17 20:23:06] <armagetron-bridge> 14discord:monkey_arma| work
[2024-08-17 20:23:20] <armagetronbridge> 08discord:delinquent| what does your .drirc look like?
[2024-08-17 20:23:20] <armagetron-bridge> 08discord:delinquent| what does your .drirc look like?
[2024-08-17 20:23:28] <armagetronbridge> 14discord:monkey_arma| same as yours
[2024-08-17 20:23:29] <armagetron-bridge> 14discord:monkey_arma| same as yours
[2024-08-17 20:23:32] <armagetronbridge> 08discord:delinquent| hmmm
[2024-08-17 20:23:32] <armagetron-bridge> 08discord:delinquent| hmmm
[2024-08-17 20:23:34] <armagetronbridge> 14discord:monkey_arma| i copied and pasted
[2024-08-17 20:23:34] <armagetron-bridge> 14discord:monkey_arma| i copied and pasted
[2024-08-17 20:23:42] <armagetronbridge> 08discord:delinquent| and changed dri to amdgpu?
[2024-08-17 20:23:43] <armagetron-bridge> 08discord:delinquent| and changed dri to amdgpu?
[2024-08-17 20:23:54] <armagetronbridge> 08discord:delinquent| *dri2
[2024-08-17 20:23:54] <armagetron-bridge> 08discord:delinquent| *dri2
[2024-08-17 20:24:06] <armagetronbridge> 14discord:monkey_arma| er no
[2024-08-17 20:24:06] <armagetron-bridge> 14discord:monkey_arma| er no
[2024-08-17 20:24:07] <armagetronbridge> 14discord:monkey_arma| hang on
[2024-08-17 20:24:07] <armagetron-bridge> 14discord:monkey_arma| hang on
[2024-08-17 20:26:25] <armagetronbridge> 14discord:monkey_arma| no it does not work
[2024-08-17 20:26:25] <armagetron-bridge> 14discord:monkey_arma| no it does not work
[2024-08-17 20:26:43] <armagetronbridge> 08discord:delinquent| bah
[2024-08-17 20:26:43] <armagetron-bridge> 08discord:delinquent| bah
[2024-08-17 20:26:55] <armagetronbridge> 08discord:delinquent| there's gotta be a way to do it without relying on xorg
[2024-08-17 20:26:55] <armagetron-bridge> 08discord:delinquent| there's gotta be a way to do it without relying on xorg
[2024-08-17 20:27:26] <armagetronbridge> 14discord:monkey_arma| hmmm idk
[2024-08-17 20:27:26] <armagetron-bridge> 14discord:monkey_arma| hmmm idk
[2024-08-17 20:27:31] <armagetronbridge> 14discord:monkey_arma| lemme check on web
[2024-08-17 20:27:32] <armagetron-bridge> 14discord:monkey_arma| lemme check on web
[2024-08-17 20:38:55] <armagetronbridge> 14discord:monkey_arma| ok so driinfo says the driver is "radeonsi" but that doesnt work either
[2024-08-17 20:38:56] <armagetron-bridge> 14discord:monkey_arma| ok so driinfo says the driver is "radeonsi" but that doesnt work either
[2024-08-17 23:38:30] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-18 00:00:00 to 2024-08-18 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-18 08:47:33] --> monr0e has joined the channel
[2024-08-18 16:51:27] <-- monr0e has quit (Remote host closed the connection)
[2024-08-18 20:29:28] <-- paddymahoney has quit (Ping timeout: 480 seconds)
Searching from 2024-08-19 00:00:00 to 2024-08-19 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-19 03:45:19] --> monr0e has joined the channel
[2024-08-19 17:15:31] <armagetronbridge> 08discord:delinquent| oooof. Got hit with a dmca on a forked project that I never bothered to touch. lmao
[2024-08-19 17:15:31] <armagetron-bridge> 08discord:delinquent| oooof. Got hit with a dmca on a forked project that I never bothered to touch. lmao
[2024-08-19 17:17:29] <armagetronbridge> 14discord:monkey_arma| is a dmca a copyright enfringement?
[2024-08-19 17:17:30] <armagetron-bridge> 14discord:monkey_arma| is a dmca a copyright enfringement?
[2024-08-19 17:17:37] <armagetronbridge> 08discord:delinquent| not necessarily
[2024-08-19 17:17:37] <armagetron-bridge> 08discord:delinquent| not necessarily
[2024-08-19 17:17:45] <armagetronbridge> 08discord:delinquent| this one was a paywall bypasser
[2024-08-19 17:17:45] <armagetron-bridge> 08discord:delinquent| this one was a paywall bypasser
[2024-08-19 17:18:04] <armagetronbridge> 14discord:monkey_arma| oh so dmca is the internet police ?
[2024-08-19 17:18:04] <armagetron-bridge> 14discord:monkey_arma| oh so dmca is the internet police ?
[2024-08-19 17:19:01] <armagetronbridge> 08discord:delinquent| it's more like a multitool to "protect" content. A DMCA takedown can challenge anything that makes any attempt to offer that content, or bypass payment or protection methods to access that content
[2024-08-19 17:19:02] <armagetron-bridge> 08discord:delinquent| it's more like a multitool to "protect" content. A DMCA takedown can challenge anything that makes any attempt to offer that content, or bypass payment or protection methods to access that content
[2024-08-19 17:19:11] <armagetron-bridge> 14discord:monkey_arma| How do you find the defendant, delinquent? we find him guilty as charged! Send him down!
[2024-08-19 17:19:11] <armagetronbridge> 14discord:monkey_arma| How do you find the defendant, delinquent? we find him guilty as charged! Send him down!
[2024-08-19 17:19:21] <armagetronbridge> 08discord:delinquent| Arr!
[2024-08-19 17:19:21] <armagetron-bridge> 08discord:delinquent| Arr!
[2024-08-19 17:19:24] <armagetronbridge> 08discord:delinquent| A pirate is free!
[2024-08-19 17:19:24] <armagetron-bridge> 08discord:delinquent| A pirate is free!
[2024-08-19 17:19:29] <armagetronbridge> 14discord:monkey_arma| lol
[2024-08-19 17:19:29] <armagetron-bridge> 14discord:monkey_arma| lol
[2024-08-19 19:26:20] <-- monr0e has quit (Remote host closed the connection)
[2024-08-19 19:28:09] <armagetronbridge> 05discord:juesto| lol
[2024-08-19 19:28:09] <armagetron-bridge> 05discord:juesto| lol
[2024-08-19 19:28:10] <armagetronbridge> 05discord:juesto| ....
[2024-08-19 19:28:10] <armagetron-bridge> 05discord:juesto| ....
[2024-08-19 19:28:25] <armagetronbridge> 05discord:juesto| do you know what dmca really is in first place? @monkey_arma
[2024-08-19 19:28:25] <armagetron-bridge> 05discord:juesto| do you know what dmca really is in first place? @monkey_arma
Searching from 2024-08-20 00:00:00 to 2024-08-20 23:59:59.999999.
Query completed in 0.69 seconds
[2024-08-20 00:20:10] <armagetronbridge> 14discord:monkey_arma| @juesto No, what is it in the first place?
[2024-08-20 00:20:10] <armagetron-bridge> 14discord:monkey_arma| @juesto No, what is it in the first place?
[2024-08-20 00:40:18] --> Lucifer_arma has joined the channel
[2024-08-20 01:05:25] <-- Lucifer_arma has quit (Read error: No route to host)
[2024-08-20 07:54:00] --> monr0e has joined the channel
[2024-08-20 07:54:13] <armagetronbridge> 08discord:delinquent| digital millennium copyright act
[2024-08-20 07:54:13] <armagetron-bridge> 08discord:delinquent| digital millennium copyright act
[2024-08-20 07:59:40] <armagetronbridge> 14discord:monkey_arma| ah ok so i was pretty much right the first time ๐
[2024-08-20 07:59:40] <armagetron-bridge> 14discord:monkey_arma| ah ok so i was pretty much right the first time ๐
[2024-08-20 07:59:46] <armagetronbridge> 14discord:monkey_arma| give or take
[2024-08-20 07:59:46] <armagetron-bridge> 14discord:monkey_arma| give or take
[2024-08-20 11:56:59] <armagetronbridge> 13discord:Subfocus| not sure if this the right place to ask, why does the arma client boot up my calender every time i click on it
[2024-08-20 11:56:59] <armagetron-bridge> 13discord:Subfocus| not sure if this the right place to ask, why does the arma client boot up my calender every time i click on it
[2024-08-20 12:25:34] <armagetronbridge> 05discord:juesto| lol
[2024-08-20 12:25:34] <armagetron-bridge> 05discord:juesto| lol
[2024-08-20 12:45:44] <armagetronbridge> 14discord:Grimm| So your aware what month it is .. Before you realize you lost a month in playing lol
[2024-08-20 12:45:44] <armagetron-bridge> 14discord:Grimm| So your aware what month it is .. Before you realize you lost a month in playing lol
[2024-08-20 20:00:56] <-- monr0e has quit (Remote host closed the connection)
[2024-08-20 23:57:39] <-- guru3 has quit (Server closed connection)
[2024-08-20 23:57:53] --> guru3 has joined the channel
Searching from 2024-08-21 00:00:00 to 2024-08-21 23:59:59.999999.
Query completed in 0.73 seconds
[2024-08-21 01:32:51] <-- armagetron-bridge has quit (Server closed connection)
[2024-08-21 01:33:32] --> armagetron-bridge has joined the channel
[2024-08-21 01:36:38] --> Lucifer_arma has joined the channel
[2024-08-21 03:54:14] <-- Lucifer_arma has quit (Read error: Connection reset by peer)
[2024-08-21 08:31:47] --> monr0e has joined the channel
[2024-08-21 17:37:39] <-- monr0e has quit (Remote host closed the connection)
[2024-08-21 23:37:27] <armagetronbridge> 05discord:juesto| oh wow
[2024-08-21 23:37:27] <armagetron-bridge> 05discord:juesto| oh wow
[2024-08-21 23:37:31] <armagetronbridge> 05discord:juesto| lol
[2024-08-21 23:37:32] <armagetron-bridge> 05discord:juesto| lol
Searching from 2024-08-22 00:00:00 to 2024-08-22 23:59:59.999999.
Query completed in 0.69 seconds
[2024-08-22 03:55:47] --> paddymahoney has joined the channel
[2024-08-22 08:38:49] --> monr0e has joined the channel
[2024-08-22 10:39:51] <-- Armanelgtron has quit (No Ping reply in 180 seconds.)
[2024-08-22 10:41:01] --> Armanelgtron has joined the channel
[2024-08-22 10:41:02] -!- silver.libera.chat set mode #armagetron +nt
[2024-08-22 10:41:02] -!- Channel #armagetron created on 2021-05-20 17:23:14 UTC
[2024-08-22 14:30:29] <armagetronbridge> 10discord:NorthernScrub| Hmmm. Mike Lynch and Stephen Chamberlain both die on the same day, barely two months after they win their HPE suit. Mighty coincidental
[2024-08-22 14:30:29] <armagetron-bridge> 10discord:NorthernScrub| Hmmm. Mike Lynch and Stephen Chamberlain both die on the same day, barely two months after they win their HPE suit. Mighty coincidental
[2024-08-22 14:42:26] <armagetronbridge> 07discord:syn_acc| investigations into why the boat sank so fast
[2024-08-22 14:42:26] <armagetron-bridge> 07discord:syn_acc| investigations into why the boat sank so fast
[2024-08-22 14:42:42] <armagetronbridge> 07discord:syn_acc| :monkaHmm:
[2024-08-22 14:42:42] <armagetron-bridge> 07discord:syn_acc| :monkaHmm:
[2024-08-22 15:16:00] <armagetron-bridge> 08discord:delinquent| and chamberlain got knocked off his bike or his feet or smth by some rando car
[2024-08-22 15:16:00] <armagetronbridge> 08discord:delinquent| and chamberlain got knocked off his bike or his feet or smth by some rando car
[2024-08-22 15:16:45] <armagetron-bridge> 08discord:delinquent| its mighty convenient innit
[2024-08-22 15:16:45] <armagetronbridge> 08discord:delinquent| its mighty convenient innit
[2024-08-22 15:17:25] <armagetron-bridge> 08discord:delinquent| I had a chat with Lynch not long after I started at hp. Good chap form what I knew of him, he was very interested in our lil breakfast ideas club
[2024-08-22 15:17:25] <armagetronbridge> 08discord:delinquent| I had a chat with Lynch not long after I started at hp. Good chap form what I knew of him, he was very interested in our lil breakfast ideas club
[2024-08-22 15:17:42] <armagetronbridge> 08discord:delinquent| which is where the org-wide hr tool idea came from
[2024-08-22 15:17:42] <armagetron-bridge> 08discord:delinquent| which is where the org-wide hr tool idea came from
[2024-08-22 15:18:00] <armagetronbridge> 08discord:delinquent| and incidentally, probably why it was so successful lmao
[2024-08-22 15:18:00] <armagetron-bridge> 08discord:delinquent| and incidentally, probably why it was so successful lmao
[2024-08-22 15:18:24] <armagetron-bridge> 08discord:delinquent| o shit this is almost ten years ago now
[2024-08-22 15:18:24] <armagetronbridge> 08discord:delinquent| o shit this is almost ten years ago now
[2024-08-22 15:18:26] <armagetronbridge> 08discord:delinquent| how time flies
[2024-08-22 15:18:27] <armagetron-bridge> 08discord:delinquent| how time flies
[2024-08-22 16:23:12] --> Lucifer_arma has joined the channel
[2024-08-22 16:31:57] <Lucifer_arma> Nvm the new nook/cranny. Cops got called on me yesterday morning and told me I can't stay there. No ticket, though. He was nice. Just told me I can't stay there.
[2024-08-22 16:31:57] <armagetronbridge> 10irc:Lucifer_arma| Nvm the new nook/cranny. Cops got called on me yesterday morning and told me I can't stay there. No ticket, though. He was nice. Just told me I can't stay there.
[2024-08-22 16:34:43] <armagetronbridge> 15irc:Z-Man| Did you manage to get your license plate?
[2024-08-22 16:34:43] <Z-Man> Did you manage to get your license plate?
[2024-08-22 16:36:42] <-- Lucifer_arma has quit (Read error: No route to host)
[2024-08-22 16:40:46] --> Lucifer_arma has joined the channel
[2024-08-22 16:41:26] <Lucifer_arma> not yet. I'm about halfway there in terms of steps, where the steps are 1) get license, 2) get insurance (this is where I"m at, I just got insurance), 3) emissions test, 4) registration (gives plates)
[2024-08-22 16:41:26] <armagetronbridge> 10irc:Lucifer_arma| not yet. I'm about halfway there in terms of steps, where the steps are 1) get license, 2) get insurance (this is where I"m at, I just got insurance), 3) emissions test, 4) registration (gives plates)
[2024-08-22 16:42:45] <Lucifer_arma> in terms of work, I'm probably 2/3 - 3/4 there, because my license was so fucked up, I had to deal with a lot of red tape to get it back
[2024-08-22 16:42:45] <armagetronbridge> 10irc:Lucifer_arma| in terms of work, I'm probably 2/3 - 3/4 there, because my license was so fucked up, I had to deal with a lot of red tape to get it back
[2024-08-22 16:43:42] <Lucifer_arma> it's going to be a couple of weeks, though. I've spent all the money I have on it this paycheck, so it has to happen on the next paycheck. Still, if I get stopped now, I'm more legal than I was before
[2024-08-22 16:43:42] <armagetronbridge> 10irc:Lucifer_arma| it's going to be a couple of weeks, though. I've spent all the money I have on it this paycheck, so it has to happen on the next paycheck. Still, if I get stopped now, I'm more legal than I was before
[2024-08-22 16:45:44] <-- Lucifer_arma has quit (Quit: Core dumped)
[2024-08-22 16:47:34] --> Lucifer_arma has joined the channel
[2024-08-22 16:55:11] <Lucifer_arma> also, internet is flaky right now, and I don't know why. I can see the cell tower from where I'm at.
[2024-08-22 16:55:11] <armagetronbridge> 10irc:Lucifer_arma| also, internet is flaky right now, and I don't know why. I can see the cell tower from where I'm at.
[2024-08-22 17:19:18] <armagetronbridge> 08discord:delinquent| more onus to use our Revolt instance :D
[2024-08-22 17:19:18] <armagetron-bridge> 08discord:delinquent| more onus to use our Revolt instance :D
[2024-08-22 17:19:29] <armagetronbridge> 08discord:delinquent| Did you get any insurance money from that motorcycle?
[2024-08-22 17:19:30] <armagetron-bridge> 08discord:delinquent| Did you get any insurance money from that motorcycle?
[2024-08-22 17:20:53] <armagetronbridge> 15irc:Z-Man| Oh right, I haven't agreed on how much it sucks that thing got stolen yet. I agree, it sucks.
[2024-08-22 17:20:53] <Z-Man> Oh right, I haven't agreed on how much it sucks that thing got stolen yet. I agree, it sucks.
[2024-08-22 17:27:35] <Lucifer_arma> no, it wasn't insured :(
[2024-08-22 17:27:35] <armagetronbridge> 10irc:Lucifer_arma| no, it wasn't insured :(
[2024-08-22 17:28:23] <Lucifer_arma> looking on the bright side, though, at least I didn't have to deal with selling it, and the loss didn't really set me back any
[2024-08-22 17:28:23] <armagetronbridge> 10irc:Lucifer_arma| looking on the bright side, though, at least I didn't have to deal with selling it, and the loss didn't really set me back any
[2024-08-22 17:29:01] <Lucifer_arma> this pay period, the work on the van is going to be centered around running water, after I've finished the ac (which means I may not start on running water until next pay period)
[2024-08-22 17:29:01] <armagetronbridge> 10irc:Lucifer_arma| this pay period, the work on the van is going to be centered around running water, after I've finished the ac (which means I may not start on running water until next pay period)
[2024-08-22 17:29:28] <Lucifer_arma> once I finish the ac, I'll shoot the refrigeration video, because the two big changes this time are a refrigerator, and that ac unit I've been working on
[2024-08-22 17:29:28] <armagetronbridge> 10irc:Lucifer_arma| once I finish the ac, I'll shoot the refrigeration video, because the two big changes this time are a refrigerator, and that ac unit I've been working on
[2024-08-22 17:29:58] <armagetronbridge> 08discord:delinquent| always look on the brigth side of life and all that
[2024-08-22 17:29:59] <armagetron-bridge> 08discord:delinquent| always look on the brigth side of life and all that
[2024-08-22 17:30:12] <Lucifer_arma> *whistles*
[2024-08-22 17:30:12] <armagetronbridge> 10irc:Lucifer_arma| *whistles*
[2024-08-22 17:31:07] <Lucifer_arma> the ac unit "works", but it turns out that for a blower motor to really work, you have to enclose it on three sides, which explains why they're mounted in cars like they are
[2024-08-22 17:31:07] <armagetronbridge> 10irc:Lucifer_arma| the ac unit "works", but it turns out that for a blower motor to really work, you have to enclose it on three sides, which explains why they're mounted in cars like they are
[2024-08-22 17:31:29] <Lucifer_arma> also, which the water pump pumping ice water at full speed, it tears through the ice in the cooler. And the blower motor is loud as fuck
[2024-08-22 17:31:30] <armagetronbridge> 10irc:Lucifer_arma| also, which the water pump pumping ice water at full speed, it tears through the ice in the cooler. And the blower motor is loud as fuck
[2024-08-22 17:32:09] <Lucifer_arma> so I've got me trusty arduino, a motor controller that'll control both the blower and the pump. I've got some pots coming tomorrow. After wiring all this up, it turns the remaining ac work into a programming problem
[2024-08-22 17:32:09] <armagetronbridge> 10irc:Lucifer_arma| so I've got me trusty arduino, a motor controller that'll control both the blower and the pump. I've got some pots coming tomorrow. After wiring all this up, it turns the remaining ac work into a programming problem
[2024-08-22 17:32:40] <Lucifer_arma> oh yeah, and enclosing three sides of the blower motor so I can get some decent airflow out of it
[2024-08-22 17:32:41] <armagetronbridge> 10irc:Lucifer_arma| oh yeah, and enclosing three sides of the blower motor so I can get some decent airflow out of it
[2024-08-22 17:33:11] <armagetronbridge> 08discord:delinquent| I watched a recent video on some state change cooling, gimme sec. it might be interesting
[2024-08-22 17:33:11] <armagetron-bridge> 08discord:delinquent| I watched a recent video on some state change cooling, gimme sec. it might be interesting
[2024-08-22 17:33:27] <armagetronbridge> 08discord:delinquent| or is it phase change, i forget
[2024-08-22 17:33:27] <armagetron-bridge> 08discord:delinquent| or is it phase change, i forget
[2024-08-22 17:33:31] <Lucifer_arma> phase change
[2024-08-22 17:33:31] <armagetronbridge> 10irc:Lucifer_arma| phase change
[2024-08-22 17:33:35] <Lucifer_arma> that's how refrigeration works
[2024-08-22 17:33:35] <armagetronbridge> 10irc:Lucifer_arma| that's how refrigeration works
[2024-08-22 17:33:41] <Lucifer_arma> <---- certified mobile ac technician
[2024-08-22 17:33:41] <armagetronbridge> 10irc:Lucifer_arma| <---- certified mobile ac technician
[2024-08-22 17:34:02] <Lucifer_arma> most ac systems use the phase change from liquid to gas for the cooling effect
[2024-08-22 17:34:02] <armagetronbridge> 10irc:Lucifer_arma| most ac systems use the phase change from liquid to gas for the cooling effect
[2024-08-22 17:34:16] <armagetron-bridge> 08discord:delinquent| https://www.youtube.com/watch?v=Nqxjfp4Gi0k
[2024-08-22 17:34:16] <armagetronbridge> 08discord:delinquent| https://www.youtube.com/watch?v=Nqxjfp4Gi0k
[2024-08-22 17:34:21] <Lucifer_arma> the one I'm building will use the phase change from solid to liquid, caching the extracted heat in the cooler
[2024-08-22 17:34:21] <armagetronbridge> 10irc:Lucifer_arma| the one I'm building will use the phase change from solid to liquid, caching the extracted heat in the cooler
[2024-08-22 17:35:44] <armagetronbridge> 08discord:delinquent| that one goes into quite osme depth, but the blokey does some experimentation on different materials and whatnot
[2024-08-22 17:35:44] <armagetron-bridge> 08discord:delinquent| that one goes into quite osme depth, but the blokey does some experimentation on different materials and whatnot
[2024-08-22 17:35:57] <Lucifer_arma> because of the way the passenger seat was bolted down, and the fact that I've removed it, I'll be able to use the bolt holes to drain the cooler
[2024-08-22 17:35:57] <armagetronbridge> 10irc:Lucifer_arma| because of the way the passenger seat was bolted down, and the fact that I've removed it, I'll be able to use the bolt holes to drain the cooler
[2024-08-22 17:41:19] <Lucifer_arma> to use his "phase change material", I'll need to be able to pump it through a heater core. More importantly, I'll need a way to freeze it before I can use it, because there has to be some room for it to store the heat that's going to be extracted
[2024-08-22 17:41:19] <armagetronbridge> 10irc:Lucifer_arma| to use his "phase change material", I'll need to be able to pump it through a heater core. More importantly, I'll need a way to freeze it before I can use it, because there has to be some room for it to store the heat that's going to be extracted
[2024-08-22 17:41:40] <Lucifer_arma> my current plan of buying ice at the convenience store every night after draining the water from the cooler is a Good Plan(tm)
[2024-08-22 17:41:41] <armagetronbridge> 10irc:Lucifer_arma| my current plan of buying ice at the convenience store every night after draining the water from the cooler is a Good Plan(tm)
[2024-08-22 17:42:21] <Lucifer_arma> (I put sarcastic quotes around "phase change material" because it's just "material". All matter goes through phase changes)
[2024-08-22 17:42:22] <armagetronbridge> 10irc:Lucifer_arma| (I put sarcastic quotes around "phase change material" because it's just "material". All matter goes through phase changes)
[2024-08-22 17:43:22] <armagetronbridge> 08discord:delinquent| I was more thinking a supplemental system. If you have a couple nets up on the ceiling of the van, a couple of those sitting in a fridge can be removed from that fridge, stuck in the nets, and provide something of a thermal block that would useful, for example, overnight. They might last a bit logner than ice, meaning you can keep the ice in a separate cooler and only use it when <clipped message>
[2024-08-22 17:43:22] <armagetron-bridge> 08discord:delinquent| I was more thinking a supplemental system. If you have a couple nets up on the ceiling of the van, a couple of those sitting in a fridge can be removed from that fridge, stuck in the nets, and provide something of a thermal block that would useful, for example, overnight. They might last a bit logner than ice, meaning you can keep the ice in a separate cooler and only use it when <clipped message>
[2024-08-22 17:43:22] <armagetron-bridge> 08discord:delinquent| you're up and need more active cooling
[2024-08-22 17:43:22] <armagetronbridge> 08discord:delinquent| you're up and need more active cooling
[2024-08-22 17:44:41] <Lucifer_arma> the fridge isn't that big. It barely holds the two tea pitchers I need, the juice pitcher, and then there's a small amount of room left for food.
[2024-08-22 17:44:41] <armagetronbridge> 10irc:Lucifer_arma| the fridge isn't that big. It barely holds the two tea pitchers I need, the juice pitcher, and then there's a small amount of room left for food.
[2024-08-22 17:45:18] <Lucifer_arma> I'm probably going to wind up buying another one either just like it, or a bit bigger, after I have running water and the ability to cook
[2024-08-22 17:45:18] <armagetronbridge> 10irc:Lucifer_arma| I'm probably going to wind up buying another one either just like it, or a bit bigger, after I have running water and the ability to cook
[2024-08-22 17:46:03] <Lucifer_arma> but honestly, if I could freeze his "phase change material" on the fly and just drop it into the cooler with water to circulate, that would work
[2024-08-22 17:46:03] <armagetronbridge> 10irc:Lucifer_arma| but honestly, if I could freeze his "phase change material" on the fly and just drop it into the cooler with water to circulate, that would work
[2024-08-22 17:46:27] <Lucifer_arma> now that I think about it, if I can do that, I can probably use those ice packs they sell at the sporting goods store instead of ice, as long as I have the capacity to freeze them, which I don't, currently
[2024-08-22 17:46:27] <armagetronbridge> 10irc:Lucifer_arma| now that I think about it, if I can do that, I can probably use those ice packs they sell at the sporting goods store instead of ice, as long as I have the capacity to freeze them, which I don't, currently
[2024-08-22 17:46:56] <Lucifer_arma> in the winter, warming them won't be a big deal. I'll use whatever camping stove I ultimately end up buying
[2024-08-22 17:46:56] <armagetronbridge> 10irc:Lucifer_arma| in the winter, warming them won't be a big deal. I'll use whatever camping stove I ultimately end up buying
[2024-08-22 17:47:26] <armagetronbridge> 08discord:delinquent| Hm. Might last a bit longer too, possibly. There's some other interesting stuff like radiative cooling experiments that he's got going on, they could also be handy. Although you don't have a great deal of roof space, so idk
[2024-08-22 17:47:26] <armagetron-bridge> 08discord:delinquent| Hm. Might last a bit longer too, possibly. There's some other interesting stuff like radiative cooling experiments that he's got going on, they could also be handy. Although you don't have a great deal of roof space, so idk
[2024-08-22 17:52:19] <Lucifer_arma> the ideal system is a dometic roof unit that's slim enough that it'll fit under my solar panels. The catch is that it's $2k.
[2024-08-22 17:52:20] <armagetronbridge> 10irc:Lucifer_arma| the ideal system is a dometic roof unit that's slim enough that it'll fit under my solar panels. The catch is that it's $2k.
[2024-08-22 17:53:11] <Lucifer_arma> I met another vanlifer yesterday who's driving a full size van. She has the same 400W of solar panels I have, but she has a cheap window AC unit, and she doesn't generate enough electricity to power it
[2024-08-22 17:53:11] <armagetronbridge> 10irc:Lucifer_arma| I met another vanlifer yesterday who's driving a full size van. She has the same 400W of solar panels I have, but she has a cheap window AC unit, and she doesn't generate enough electricity to power it
[2024-08-22 17:53:56] <Lucifer_arma> with some planning, I can lower the blower motor speed to a level where the unit I'm building should only use 100-150W
[2024-08-22 17:53:56] <armagetronbridge> 10irc:Lucifer_arma| with some planning, I can lower the blower motor speed to a level where the unit I'm building should only use 100-150W
[2024-08-22 17:55:12] <Lucifer_arma> there's also the possibility of using dry ice in the cooler, but I'm concerned about CO2 buildup, and also melting rate. But if I did that, I could put antifreeze in the circulating water and get a much bigger temperature difference between the air and the heater core
[2024-08-22 17:55:12] <armagetronbridge> 10irc:Lucifer_arma| there's also the possibility of using dry ice in the cooler, but I'm concerned about CO2 buildup, and also melting rate. But if I did that, I could put antifreeze in the circulating water and get a much bigger temperature difference between the air and the heater core
[2024-08-22 17:55:49] <armagetronbridge> 12discord:Nelg| test
[2024-08-22 17:55:49] <armagetron-bridge> 12discord:Nelg| test
[2024-08-22 17:55:54] <Lucifer_arma> but dry ice is logistically more difficult to supply. The ice I'm looking at is in a vending machine that gives me 20lbs for $3, and my cooler can store 40lbs of it
[2024-08-22 17:55:54] <armagetronbridge> 10irc:Lucifer_arma| but dry ice is logistically more difficult to supply. The ice I'm looking at is in a vending machine that gives me 20lbs for $3, and my cooler can store 40lbs of it
[2024-08-22 17:55:58] <Lucifer_arma> I see you, Nelg
[2024-08-22 17:55:58] <armagetronbridge> 10irc:Lucifer_arma| I see you, Nelg
[2024-08-22 17:56:01] <armagetronbridge> 10discord:NorthernScrub| hi nelg
[2024-08-22 17:56:01] <armagetron-bridge> 10discord:NorthernScrub| hi nelg
[2024-08-22 17:56:22] <armagetronbridge> 10discord:NorthernScrub| Luci, nelg just joined revolt. I *will* keep nagging you about it :D
[2024-08-22 17:56:22] <armagetron-bridge> 10discord:NorthernScrub| Luci, nelg just joined revolt. I *will* keep nagging you about it :D
[2024-08-22 17:56:30] <armagetron-bridge> 14discord:monkey_arma| Is the blower motor brushless? I dont know shit about AC but I do know a bit about motors (i have some tools that use brushless motors). they are more efficient and last longer (and dont get as hot as brushed either).
[2024-08-22 17:56:30] <armagetronbridge> 14discord:monkey_arma| Is the blower motor brushless? I dont know shit about AC but I do know a bit about motors (i have some tools that use brushless motors). they are more efficient and last longer (and dont get as hot as brushed either).
[2024-08-22 17:56:37] <Lucifer_arma> I'll get to it, I just have so much on my plate right now
[2024-08-22 17:56:38] <armagetronbridge> 10irc:Lucifer_arma| I'll get to it, I just have so much on my plate right now
[2024-08-22 17:56:49] <armagetronbridge> 10discord:NorthernScrub| heh, nws. Here's the link for later: https://retrocycles.net/joinchat
[2024-08-22 17:56:49] <armagetron-bridge> 10discord:NorthernScrub| heh, nws. Here's the link for later: https://retrocycles.net/joinchat
[2024-08-22 17:56:59] <Lucifer_arma> I don't think so. It's for like an 03 Ford E-150/E-350
[2024-08-22 17:57:00] <armagetronbridge> 10irc:Lucifer_arma| I don't think so. It's for like an 03 Ford E-150/E-350
[2024-08-22 17:57:05] <armagetron-bridge> 14discord:monkey_arma| ah ok
[2024-08-22 17:57:05] <armagetronbridge> 14discord:monkey_arma| ah ok
[2024-08-22 17:57:20] <armagetronbridge> 10discord:NorthernScrub| At some point I'll get the actual client built for us, but until then the web client is pretty much functional
[2024-08-22 17:57:20] <armagetron-bridge> 10discord:NorthernScrub| At some point I'll get the actual client built for us, but until then the web client is pretty much functional
[2024-08-22 17:57:23] <Lucifer_arma> I work in an auto parts store, so I'm using auto parts to build this thing :)
[2024-08-22 17:57:23] <armagetronbridge> 10irc:Lucifer_arma| I work in an auto parts store, so I'm using auto parts to build this thing :)
[2024-08-22 17:57:27] <armagetron-bridge> 14discord:monkey_arma| could you replace the motor?
[2024-08-22 17:57:27] <armagetronbridge> 14discord:monkey_arma| could you replace the motor?
[2024-08-22 17:57:59] <Lucifer_arma> eventually. I can do anything I want with it. I built the thing out of acrylic. It's just an acrylic assembly glued together for the motor, screwed to the top of the cooler
[2024-08-22 17:57:59] <armagetronbridge> 10irc:Lucifer_arma| eventually. I can do anything I want with it. I built the thing out of acrylic. It's just an acrylic assembly glued together for the motor, screwed to the top of the cooler
[2024-08-22 17:58:02] <armagetron-bridge> 14discord:monkey_arma| here in the UK even white goods have brushless motors...you could maybe get hold of a motor that way:
[2024-08-22 17:58:02] <armagetronbridge> 14discord:monkey_arma| here in the UK even white goods have brushless motors...you could maybe get hold of a motor that way:
[2024-08-22 17:58:03] <armagetronbridge> 14discord:monkey_arma| ?
[2024-08-22 17:58:03] <armagetron-bridge> 14discord:monkey_arma| ?
[2024-08-22 17:58:05] <Lucifer_arma> you'll see it in the next van video
[2024-08-22 17:58:06] <armagetronbridge> 10irc:Lucifer_arma| you'll see it in the next van video
[2024-08-22 17:58:07] <armagetronbridge> 10discord:NorthernScrub| As for the motor, you might find that a cheap brushless and ESC use less power like monkey says. Only catch is, you most likely have to look up aliexpress for it
[2024-08-22 17:58:07] <armagetron-bridge> 10discord:NorthernScrub| As for the motor, you might find that a cheap brushless and ESC use less power like monkey says. Only catch is, you most likely have to look up aliexpress for it
[2024-08-22 17:58:25] <armagetronbridge> 10discord:NorthernScrub| monkey, my washing machine has a brushless and I *hate* it
[2024-08-22 17:58:25] <armagetron-bridge> 10discord:NorthernScrub| monkey, my washing machine has a brushless and I *hate* it
[2024-08-22 17:58:30] <armagetronbridge> 10discord:NorthernScrub| I can hear the whine
[2024-08-22 17:58:30] <armagetron-bridge> 10discord:NorthernScrub| I can hear the whine
[2024-08-22 17:58:39] <armagetronbridge> 10discord:NorthernScrub| and I miss the old sound of washing machines
[2024-08-22 17:58:39] <armagetron-bridge> 10discord:NorthernScrub| and I miss the old sound of washing machines
[2024-08-22 17:58:49] <armagetronbridge> 14discord:monkey_arma| not all bl motors whine
[2024-08-22 17:58:49] <armagetron-bridge> 14discord:monkey_arma| not all bl motors whine
[2024-08-22 17:58:51] <armagetron-bridge> 14discord:monkey_arma| mine dont
[2024-08-22 17:58:52] <armagetronbridge> 14discord:monkey_arma| mine dont
[2024-08-22 17:59:01] <armagetron-bridge> 14discord:monkey_arma| neither my washing machine nor my pwer tools
[2024-08-22 17:59:01] <armagetronbridge> 14discord:monkey_arma| neither my washing machine nor my pwer tools
[2024-08-22 17:59:08] <Lucifer_arma> you can get some really quiet brushless motors
[2024-08-22 17:59:08] <armagetronbridge> 10irc:Lucifer_arma| you can get some really quiet brushless motors
[2024-08-22 17:59:12] <armagetronbridge> 14discord:monkey_arma| yes
[2024-08-22 17:59:12] <armagetron-bridge> 14discord:monkey_arma| yes
[2024-08-22 17:59:15] <armagetron-bridge> 10discord:NorthernScrub| they all do, its just that most of them are either extremely high pitched, or you're getting old and deaf mate
[2024-08-22 17:59:15] <armagetronbridge> 10discord:NorthernScrub| they all do, its just that most of them are either extremely high pitched, or you're getting old and deaf mate
[2024-08-22 17:59:20] <armagetron-bridge> 14discord:monkey_arma| nope
[2024-08-22 17:59:20] <armagetronbridge> 14discord:monkey_arma| nope
[2024-08-22 17:59:22] <armagetron-bridge> 10discord:NorthernScrub| heh
[2024-08-22 17:59:22] <armagetronbridge> 10discord:NorthernScrub| heh
[2024-08-22 17:59:35] <armagetronbridge> 10discord:NorthernScrub| fr though, I can't stand this particular one
[2024-08-22 17:59:35] <armagetron-bridge> 10discord:NorthernScrub| fr though, I can't stand this particular one
[2024-08-22 17:59:38] <armagetronbridge> 14discord:monkey_arma| i have makita tools ..you cant even hear the vacuum cleaner
[2024-08-22 17:59:38] <armagetron-bridge> 14discord:monkey_arma| i have makita tools ..you cant even hear the vacuum cleaner
[2024-08-22 17:59:41] <Lucifer_arma> if I had the money to shop for a better motor, I'd have gotten a real quiet one. But I needed to get the cheapest blower motor I could buy with my employee discount, and it ended up being the one from a much bigger van than mine
[2024-08-22 17:59:41] <armagetronbridge> 10irc:Lucifer_arma| if I had the money to shop for a better motor, I'd have gotten a real quiet one. But I needed to get the cheapest blower motor I could buy with my employee discount, and it ended up being the one from a much bigger van than mine
[2024-08-22 17:59:53] <armagetronbridge> 14discord:monkey_arma| i have the new 40v makita tools i should add
[2024-08-22 17:59:53] <armagetron-bridge> 14discord:monkey_arma| i have the new 40v makita tools i should add
[2024-08-22 18:00:04] <armagetron-bridge> 14discord:monkey_arma| ah ok
[2024-08-22 18:00:04] <armagetronbridge> 14discord:monkey_arma| ah ok
[2024-08-22 18:00:05] <armagetron-bridge> 10discord:NorthernScrub| Maybe a cheap variac or a pot setup, then?
[2024-08-22 18:00:05] <armagetronbridge> 10discord:NorthernScrub| Maybe a cheap variac or a pot setup, then?
[2024-08-22 18:00:09] <Lucifer_arma> as long as the noise they make it out of my hearing range, that's all that really matters
[2024-08-22 18:00:09] <armagetronbridge> 10irc:Lucifer_arma| as long as the noise they make it out of my hearing range, that's all that really matters
[2024-08-22 18:00:11] <armagetron-bridge> 14discord:monkey_arma| maybe one day you can replace tit
[2024-08-22 18:00:11] <armagetronbridge> 14discord:monkey_arma| maybe one day you can replace tit
[2024-08-22 18:00:12] <armagetron-bridge> 10discord:NorthernScrub| festool > makita
[2024-08-22 18:00:12] <armagetronbridge> 10discord:NorthernScrub| festool > makita
[2024-08-22 18:00:26] <Lucifer_arma> I'm going to use an arduino to PWM the blower speed down to a reasonable level
[2024-08-22 18:00:27] <armagetronbridge> 10irc:Lucifer_arma| I'm going to use an arduino to PWM the blower speed down to a reasonable level
[2024-08-22 18:00:30] <armagetron-bridge> 14discord:monkey_arma| festool are not always better and they are fucking expensive
[2024-08-22 18:00:30] <armagetronbridge> 14discord:monkey_arma| festool are not always better and they are fucking expensive
[2024-08-22 18:00:44] <armagetron-bridge> 10discord:NorthernScrub| @Nelg what do you think of revolt? It's still a bit WiP admittedly
[2024-08-22 18:00:44] <armagetronbridge> 10discord:NorthernScrub| @Nelg what do you think of revolt? It's still a bit WiP admittedly
[2024-08-22 18:00:46] <Lucifer_arma> I also have some sound damping boards I'll get put up around the whole thing
[2024-08-22 18:00:46] <armagetronbridge> 10irc:Lucifer_arma| I also have some sound damping boards I'll get put up around the whole thing
[2024-08-22 18:01:04] <armagetronbridge> 14discord:monkey_arma| right ok
[2024-08-22 18:01:05] <armagetron-bridge> 14discord:monkey_arma| right ok
[2024-08-22 18:01:14] <armagetronbridge> 10discord:NorthernScrub| oof you got htat right. fr though, I'd trust them over modern makita/bosch/dewalt tho
[2024-08-22 18:01:14] <armagetron-bridge> 10discord:NorthernScrub| oof you got htat right. fr though, I'd trust them over modern makita/bosch/dewalt tho
[2024-08-22 18:01:36] <Lucifer_arma> I'm also going to give the water pump a real duty cycle, where it'll run for like five seconds, and then be off for 10 seconds or something like that. I'll experiment with it, but the idea is to slow down the water flow so it doesn't eat up the ice too fast
[2024-08-22 18:01:36] <armagetronbridge> 10irc:Lucifer_arma| I'm also going to give the water pump a real duty cycle, where it'll run for like five seconds, and then be off for 10 seconds or something like that. I'll experiment with it, but the idea is to slow down the water flow so it doesn't eat up the ice too fast
[2024-08-22 18:01:38] <armagetronbridge> 10discord:NorthernScrub| Although I do have an old 1980's era bosch SDS drill
[2024-08-22 18:01:39] <armagetron-bridge> 10discord:NorthernScrub| Although I do have an old 1980's era bosch SDS drill
[2024-08-22 18:01:43] <armagetronbridge> 14discord:monkey_arma| dewalt are getting worse. bosch, so so
[2024-08-22 18:01:43] <armagetron-bridge> 14discord:monkey_arma| dewalt are getting worse. bosch, so so
[2024-08-22 18:02:05] <armagetronbridge> 10discord:NorthernScrub| dewalt have gone straight off hte deep end ngl
[2024-08-22 18:02:05] <armagetron-bridge> 10discord:NorthernScrub| dewalt have gone straight off hte deep end ngl
[2024-08-22 18:02:09] <Lucifer_arma> my dewalt tools are doing fine, still, but I mostly buy whatever's cheapest off amazon
[2024-08-22 18:02:09] <armagetronbridge> 10irc:Lucifer_arma| my dewalt tools are doing fine, still, but I mostly buy whatever's cheapest off amazon
[2024-08-22 18:02:22] <armagetronbridge> 12discord:Nelg| it's like discord except without the thousands of nitro buttons :D
[2024-08-22 18:02:22] <armagetron-bridge> 12discord:Nelg| it's like discord except without the thousands of nitro buttons :D
[2024-08-22 18:02:27] <armagetron-bridge> 14discord:monkey_arma| ive got a dewalt hedge trimmer and i had to get it fixed
[2024-08-22 18:02:27] <armagetronbridge> 14discord:monkey_arma| ive got a dewalt hedge trimmer and i had to get it fixed
[2024-08-22 18:02:39] <armagetronbridge> 14discord:monkey_arma| but its been good since
[2024-08-22 18:02:39] <armagetron-bridge> 14discord:monkey_arma| but its been good since
[2024-08-22 18:02:55] <armagetron-bridge> 10discord:NorthernScrub| For an everyday drill driver I just bought a cheap thing off cotools. Its awful and plastic but it does just fine for screwing wood together
[2024-08-22 18:02:55] <armagetronbridge> 10discord:NorthernScrub| For an everyday drill driver I just bought a cheap thing off cotools. Its awful and plastic but it does just fine for screwing wood together
[2024-08-22 18:03:24] <armagetron-bridge> 14discord:monkey_arma| ive got an old drill too for jobs where i wouldnt use the makitat stuff
[2024-08-22 18:03:25] <armagetronbridge> 14discord:monkey_arma| ive got an old drill too for jobs where i wouldnt use the makitat stuff
[2024-08-22 18:03:34] <armagetronbridge> 14discord:monkey_arma| like mixing concrete
[2024-08-22 18:03:34] <armagetron-bridge> 14discord:monkey_arma| like mixing concrete
[2024-08-22 18:03:37] <armagetron-bridge> 14discord:monkey_arma| etc
[2024-08-22 18:03:37] <armagetronbridge> 14discord:monkey_arma| etc
[2024-08-22 18:03:52] <armagetron-bridge> 10discord:NorthernScrub| heh. I actually started looking into it earlier this year, mostly because I kept seeing discord communities nuked off the planet for no real reason. Also because the LLM training thing, which pisses me right off
[2024-08-22 18:03:52] <armagetronbridge> 10discord:NorthernScrub| heh. I actually started looking into it earlier this year, mostly because I kept seeing discord communities nuked off the planet for no real reason. Also because the LLM training thing, which pisses me right off
[2024-08-22 18:04:43] <armagetron-bridge> 08discord:delinquent| I do wish replies showed better on discord though. There's a way to do it, and Ronzler will do it once its up and running, but ye
[2024-08-22 18:04:43] <armagetronbridge> 08discord:delinquent| I do wish replies showed better on discord though. There's a way to do it, and Ronzler will do it once its up and running, but ye
[2024-08-22 18:04:45] <Lucifer_arma> I have a dewalt impact driver that i use fairly often, enough so that I put it in the van. Somewhere I have a matching dewalt drill, but that's in my storage unit
[2024-08-22 18:04:46] <armagetronbridge> 10irc:Lucifer_arma| I have a dewalt impact driver that i use fairly often, enough so that I put it in the van. Somewhere I have a matching dewalt drill, but that's in my storage unit
[2024-08-22 18:05:23] <Lucifer_arma> I also have a dewalt angle grinder, but I never use that. I use the one I got off amazon, some knock-off brand. It's fantastic.
[2024-08-22 18:05:24] <armagetronbridge> 10irc:Lucifer_arma| I also have a dewalt angle grinder, but I never use that. I use the one I got off amazon, some knock-off brand. It's fantastic.
[2024-08-22 18:05:31] <armagetronbridge> 08discord:delinquent| honestly, these days when someone says dewalt, I think of the ship from the expanse before I think of the tools
[2024-08-22 18:05:31] <armagetron-bridge> 08discord:delinquent| honestly, these days when someone says dewalt, I think of the ship from the expanse before I think of the tools
[2024-08-22 18:05:38] <Lucifer_arma> I'm going to mount the dewalt one on a platform to make it into a small chop saw
[2024-08-22 18:05:39] <armagetronbridge> 10irc:Lucifer_arma| I'm going to mount the dewalt one on a platform to make it into a small chop saw
[2024-08-22 18:05:49] <Lucifer_arma> what ship from the expanse?
[2024-08-22 18:05:50] <armagetronbridge> 10irc:Lucifer_arma| what ship from the expanse?
[2024-08-22 18:05:55] <armagetronbridge> 08discord:delinquent| the dewalt
[2024-08-22 18:05:55] <armagetron-bridge> 08discord:delinquent| the dewalt
[2024-08-22 18:06:04] <Lucifer_arma> ha ha, I guessed that. Which one was that?
[2024-08-22 18:06:04] <armagetronbridge> 10irc:Lucifer_arma| ha ha, I guessed that. Which one was that?
[2024-08-22 18:06:11] <armagetronbridge> 08discord:delinquent| ummm
[2024-08-22 18:06:12] <armagetron-bridge> 08discord:delinquent| ummm
[2024-08-22 18:06:13] <armagetron-bridge> 08discord:delinquent| whasterface
[2024-08-22 18:06:13] <armagetronbridge> 08discord:delinquent| whasterface
[2024-08-22 18:06:18] <Lucifer_arma> I'm only remember the Rocinante, and then the big mormon ship
[2024-08-22 18:06:18] <armagetronbridge> 10irc:Lucifer_arma| I'm only remember the Rocinante, and then the big mormon ship
[2024-08-22 18:06:22] <armagetron-bridge> 08discord:delinquent| the lassie who leads the belt's opposition navy
[2024-08-22 18:06:22] <armagetronbridge> 08discord:delinquent| the lassie who leads the belt's opposition navy
[2024-08-22 18:06:29] <armagetron-bridge> 08discord:delinquent| fk I forgot her name
[2024-08-22 18:06:29] <armagetronbridge> 08discord:delinquent| fk I forgot her name
[2024-08-22 18:06:39] <armagetronbridge> 08discord:delinquent| the one with big scene kid black eyeshadow
[2024-08-22 18:06:39] <armagetron-bridge> 08discord:delinquent| the one with big scene kid black eyeshadow
[2024-08-22 18:06:41] <Lucifer_arma> the one that kept trying to kill the old man?
[2024-08-22 18:06:41] <armagetronbridge> 10irc:Lucifer_arma| the one that kept trying to kill the old man?
[2024-08-22 18:07:01] <armagetron-bridge> 08discord:delinquent| idk about killing him, but she fucking *hated* him at first
[2024-08-22 18:07:01] <armagetronbridge> 08discord:delinquent| idk about killing him, but she fucking *hated* him at first
[2024-08-22 18:07:04] <Lucifer_arma> I should watch the expanse again. I loved that show
[2024-08-22 18:07:04] <armagetronbridge> 10irc:Lucifer_arma| I should watch the expanse again. I loved that show
[2024-08-22 18:07:11] <Lucifer_arma> well, time to get the laundry
[2024-08-22 18:07:11] <armagetronbridge> 10irc:Lucifer_arma| well, time to get the laundry
[2024-08-22 18:07:27] <armagetronbridge> 08discord:delinquent| pr tip: Listen to it with headphones. The sound design is something else, and I had no idea until I could turn it up a bit
[2024-08-22 18:07:28] <armagetron-bridge> 08discord:delinquent| pr tip: Listen to it with headphones. The sound design is something else, and I had no idea until I could turn it up a bit
[2024-08-22 18:09:11] <armagetron-bridge> 12discord:Nelg| how close is revolt.js to discord.js? with any luck, i could get the #server-list bot here with minimal changes
[2024-08-22 18:09:11] <armagetronbridge> 12discord:Nelg| how close is revolt.js to discord.js? with any luck, i could get the #server-list bot here with minimal changes
[2024-08-22 18:09:31] <armagetron-bridge> 08discord:delinquent| No need, I'll get rinzler to watch it
[2024-08-22 18:09:31] <armagetronbridge> 08discord:delinquent| No need, I'll get rinzler to watch it
[2024-08-22 18:09:45] <Lucifer_arma> I'll have to do that, my laptop speakers aren't loud enough for anything
[2024-08-22 18:09:46] <armagetronbridge> 10irc:Lucifer_arma| I'll have to do that, my laptop speakers aren't loud enough for anything
[2024-08-22 18:09:58] <armagetronbridge> 08discord:delinquent| All the existing bots can stay where they are for now, just to minimise disruption
[2024-08-22 18:09:58] <armagetron-bridge> 08discord:delinquent| All the existing bots can stay where they are for now, just to minimise disruption
[2024-08-22 18:11:09] <Lucifer_arma> alright, my food's on the way. When it gets here, I'm going away to watch TRON and take notes
[2024-08-22 18:11:10] <armagetronbridge> 10irc:Lucifer_arma| alright, my food's on the way. When it gets here, I'm going away to watch TRON and take notes
[2024-08-22 18:11:26] <Lucifer_arma> I need to shoot as many videos today as I can, and all of it after eating dinner
[2024-08-22 18:11:26] <armagetronbridge> 10irc:Lucifer_arma| I need to shoot as many videos today as I can, and all of it after eating dinner
[2024-08-22 18:11:29] <armagetron-bridge> 14discord:monkey_arma| What's all this "activity" shit that's appeared in the top right corner of discord? like i care about who is playing what at every second of every minute of every hour of every day..
[2024-08-22 18:11:29] <armagetronbridge> 14discord:monkey_arma| What's all this "activity" shit that's appeared in the top right corner of discord? like i care about who is playing what at every second of every minute of every hour of every day..
[2024-08-22 18:11:50] <armagetron-bridge> 14discord:monkey_arma| when you say tron do you mean the game or the film?
[2024-08-22 18:11:50] <armagetronbridge> 14discord:monkey_arma| when you say tron do you mean the game or the film?
[2024-08-22 18:12:07] <armagetron-bridge> 08discord:delinquent| I have no idea, I have updates disabled via openasar
[2024-08-22 18:12:07] <armagetronbridge> 08discord:delinquent| I have no idea, I have updates disabled via openasar
[2024-08-22 18:13:14] <armagetronbridge> 08discord:delinquent| also check this out: https://github.com/revoltchat/awesome-revolt
[2024-08-22 18:13:14] <armagetron-bridge> 08discord:delinquent| also check this out: https://github.com/revoltchat/awesome-revolt
[2024-08-22 18:13:39] <Lucifer_arma> film. I put up a poll awhile back asking my viewers if I should do the Last Starfighter, Attack of the Killer Tomatoes, or TRON next, and now I've done the first two. TRON is next on the list.
[2024-08-22 18:13:39] <armagetronbridge> 10irc:Lucifer_arma| film. I put up a poll awhile back asking my viewers if I should do the Last Starfighter, Attack of the Killer Tomatoes, or TRON next, and now I've done the first two. TRON is next on the list.
[2024-08-22 18:13:56] <Lucifer_arma> after that, I'm picking three movies about cannibals. Ravenous, Eating Raoul, and I haven't picked the third one yet
[2024-08-22 18:13:57] <armagetronbridge> 10irc:Lucifer_arma| after that, I'm picking three movies about cannibals. Ravenous, Eating Raoul, and I haven't picked the third one yet
[2024-08-22 18:14:10] <armagetron-bridge> 15discord:Nélg| a strange lack of PHP here
[2024-08-22 18:14:11] <armagetronbridge> 15discord:Nélg| a strange lack of PHP here
[2024-08-22 18:14:14] <armagetronbridge> 14discord:monkey_arma| @northernscrub im looking for a good, open source, chat/audio calling/video calling/videoconferencing program/app for my desktop. any ideas?
[2024-08-22 18:14:14] <armagetron-bridge> 14discord:monkey_arma| @northernscrub im looking for a good, open source, chat/audio calling/video calling/videoconferencing program/app for my desktop. any ideas?
[2024-08-22 18:14:34] <armagetronbridge> 08discord:delinquent| eeeh depends on the platform tbh
[2024-08-22 18:14:34] <armagetron-bridge> 08discord:delinquent| eeeh depends on the platform tbh
[2024-08-22 18:14:42] <armagetron-bridge> 14discord:monkey_arma| i havent actually seen tron myself
[2024-08-22 18:14:43] <armagetronbridge> 14discord:monkey_arma| i havent actually seen tron myself
[2024-08-22 18:14:54] <armagetron-bridge> 08discord:delinquent| how do you wanna contact people? Over multiple networks, or will any do?
[2024-08-22 18:14:54] <armagetronbridge> 08discord:delinquent| how do you wanna contact people? Over multiple networks, or will any do?
[2024-08-22 18:15:05] <armagetronbridge> 14discord:monkey_arma| ive got the dvd though...the special edition
[2024-08-22 18:15:05] <armagetron-bridge> 14discord:monkey_arma| ive got the dvd though...the special edition
[2024-08-22 18:15:19] <armagetronbridge> 14discord:monkey_arma| umm well as long as its simple and cross platform
[2024-08-22 18:15:19] <armagetron-bridge> 14discord:monkey_arma| umm well as long as its simple and cross platform
[2024-08-22 18:15:47] <armagetronbridge> 08discord:delinquent| oof. Honestly, I have no idea
[2024-08-22 18:15:48] <armagetron-bridge> 08discord:delinquent| oof. Honestly, I have no idea
[2024-08-22 18:16:00] <armagetronbridge> 14discord:monkey_arma| something like maybe whatsapp/telegram but open source
[2024-08-22 18:16:00] <armagetron-bridge> 14discord:monkey_arma| something like maybe whatsapp/telegram but open source
[2024-08-22 18:16:35] <armagetronbridge> 08discord:delinquent| I have IRC, discord, revolt, matrix, caprine, and a bunch of other shit installed. I don't know anything that can really do it all cross-platform, unless you set up something like matterbridge and use that
[2024-08-22 18:16:35] <armagetron-bridge> 08discord:delinquent| I have IRC, discord, revolt, matrix, caprine, and a bunch of other shit installed. I don't know anything that can really do it all cross-platform, unless you set up something like matterbridge and use that
[2024-08-22 18:16:49] <armagetron-bridge> 08discord:delinquent| matterbridge is just a bridging interface, though
[2024-08-22 18:16:49] <armagetronbridge> 08discord:delinquent| matterbridge is just a bridging interface, though
[2024-08-22 18:16:54] <armagetronbridge> 14discord:monkey_arma| what about sip clients? any good ones?
[2024-08-22 18:16:54] <armagetron-bridge> 14discord:monkey_arma| what about sip clients? any good ones?
[2024-08-22 18:17:06] <armagetron-bridge> 08discord:delinquent| I don't use one, I use a deskphone
[2024-08-22 18:17:06] <armagetronbridge> 08discord:delinquent| I don't use one, I use a deskphone
[2024-08-22 18:17:17] <armagetron-bridge> 14discord:monkey_arma| whats a deskphone?
[2024-08-22 18:17:17] <armagetronbridge> 14discord:monkey_arma| whats a deskphone?
[2024-08-22 18:17:18] <armagetronbridge> 08discord:delinquent| which admittedly is a bit long in the tooth now
[2024-08-22 18:17:19] <armagetron-bridge> 08discord:delinquent| which admittedly is a bit long in the tooth now
[2024-08-22 18:17:43] <armagetronbridge> 08discord:delinquent| https://www.devicedeal.com.au/assets/full/SPA504G.jpg
[2024-08-22 18:17:43] <armagetron-bridge> 08discord:delinquent| https://www.devicedeal.com.au/assets/full/SPA504G.jpg
[2024-08-22 18:17:52] <armagetronbridge> 14discord:monkey_arma| haha
[2024-08-22 18:17:52] <armagetron-bridge> 14discord:monkey_arma| haha
[2024-08-22 18:17:54] <armagetron-bridge> 14discord:monkey_arma| really?
[2024-08-22 18:17:55] <armagetronbridge> 14discord:monkey_arma| really?
[2024-08-22 18:18:07] <armagetronbridge> 08discord:delinquent| yes really. I even have a local number for it
[2024-08-22 18:18:07] <armagetron-bridge> 08discord:delinquent| yes really. I even have a local number for it
[2024-08-22 18:18:17] <Lucifer_arma> POTS?
[2024-08-22 18:18:17] <armagetronbridge> 10irc:Lucifer_arma| POTS?
[2024-08-22 18:18:18] <armagetron-bridge> 08discord:delinquent| Means I don't have to give out my mobile
[2024-08-22 18:18:18] <armagetronbridge> 08discord:delinquent| Means I don't have to give out my mobile
[2024-08-22 18:18:21] <armagetronbridge> 08discord:delinquent| Nah, sip
[2024-08-22 18:18:21] <armagetron-bridge> 08discord:delinquent| Nah, sip
[2024-08-22 18:18:27] <armagetronbridge> 14discord:monkey_arma| is it voip/tcpip or a real landline?
[2024-08-22 18:18:27] <armagetron-bridge> 14discord:monkey_arma| is it voip/tcpip or a real landline?
[2024-08-22 18:18:30] <armagetronbridge> 08discord:delinquent| I still could get a pots line, but not for much longer
[2024-08-22 18:18:30] <armagetron-bridge> 08discord:delinquent| I still could get a pots line, but not for much longer
[2024-08-22 18:18:40] <Lucifer_arma> voip, sip is a really old voip protocol
[2024-08-22 18:18:40] <armagetronbridge> 10irc:Lucifer_arma| voip, sip is a really old voip protocol
[2024-08-22 18:18:48] <armagetron-bridge> 08discord:delinquent| sip, monk. Proper voip, but with a third party carrier
[2024-08-22 18:18:48] <armagetronbridge> 08discord:delinquent| sip, monk. Proper voip, but with a third party carrier
[2024-08-22 18:19:00] <armagetron-bridge> 08discord:delinquent| Unfortunatley it doesn't support speex just yet
[2024-08-22 18:19:00] <armagetronbridge> 08discord:delinquent| Unfortunatley it doesn't support speex just yet
[2024-08-22 18:19:06] <armagetron-bridge> 14discord:monkey_arma| next thing deli will tell me he has a fax machine
[2024-08-22 18:19:07] <armagetronbridge> 14discord:monkey_arma| next thing deli will tell me he has a fax machine
[2024-08-22 18:19:10] <armagetron-bridge> 08discord:delinquent| uhhhh
[2024-08-22 18:19:10] <armagetronbridge> 08discord:delinquent| uhhhh
[2024-08-22 18:19:16] <armagetron-bridge> 08discord:delinquent| ahem
[2024-08-22 18:19:16] <armagetronbridge> 08discord:delinquent| ahem
[2024-08-22 18:19:21] <Lucifer_arma> and a dot matrix printer
[2024-08-22 18:19:21] <armagetronbridge> 10irc:Lucifer_arma| and a dot matrix printer
[2024-08-22 18:19:25] <armagetronbridge> 14discord:monkey_arma| yeah
[2024-08-22 18:19:25] <armagetron-bridge> 14discord:monkey_arma| yeah
[2024-08-22 18:19:36] <armagetron-bridge> 14discord:monkey_arma| or a thermal printer
[2024-08-22 18:19:36] <armagetronbridge> 14discord:monkey_arma| or a thermal printer
[2024-08-22 18:19:38] <armagetron-bridge> 08discord:delinquent| why do you attack me like this
[2024-08-22 18:19:38] <armagetronbridge> 08discord:delinquent| why do you attack me like this
[2024-08-22 18:19:38] <Lucifer_arma> he probably plays arma on a commodore 64
[2024-08-22 18:19:38] <armagetronbridge> 10irc:Lucifer_arma| he probably plays arma on a commodore 64
[2024-08-22 18:19:40] <armagetron-bridge> 14discord:monkey_arma| one of the old ones
[2024-08-22 18:19:40] <armagetronbridge> 14discord:monkey_arma| one of the old ones
[2024-08-22 18:19:44] <armagetronbridge> 14discord:monkey_arma| haha
[2024-08-22 18:19:44] <armagetron-bridge> 14discord:monkey_arma| haha
[2024-08-22 18:19:49] <armagetron-bridge> 08discord:delinquent| My dot matrix is for my amstrac
[2024-08-22 18:19:50] <armagetronbridge> 08discord:delinquent| My dot matrix is for my amstrac
[2024-08-22 18:19:57] <armagetronbridge> 08discord:delinquent| I have a cpc 464
[2024-08-22 18:19:58] <armagetron-bridge> 08discord:delinquent| I have a cpc 464
[2024-08-22 18:20:05] <armagetronbridge> 08discord:delinquent| but it seems to have a memory issue soooo
[2024-08-22 18:20:05] <armagetron-bridge> 08discord:delinquent| but it seems to have a memory issue soooo
[2024-08-22 18:20:10] <armagetronbridge> 14discord:monkey_arma| i used to have a thermal printer for my zx spectrum
[2024-08-22 18:20:10] <armagetron-bridge> 14discord:monkey_arma| i used to have a thermal printer for my zx spectrum
[2024-08-22 18:20:27] <Lucifer_arma> we have thermal printers at work. They're still used all over the place
[2024-08-22 18:20:27] <armagetronbridge> 10irc:Lucifer_arma| we have thermal printers at work. They're still used all over the place
[2024-08-22 18:20:29] <armagetronbridge> 08discord:delinquent| I had one at one point in a pile of surplus, but it was an old receipt printer
[2024-08-22 18:20:29] <armagetron-bridge> 08discord:delinquent| I had one at one point in a pile of surplus, but it was an old receipt printer
[2024-08-22 18:20:38] <armagetron-bridge> 08discord:delinquent| I never used it
[2024-08-22 18:20:38] <armagetronbridge> 08discord:delinquent| I never used it
[2024-08-22 18:20:39] <armagetronbridge> 14discord:monkey_arma| yeah but the old ones were garbage
[2024-08-22 18:20:39] <armagetron-bridge> 14discord:monkey_arma| yeah but the old ones were garbage
[2024-08-22 18:20:50] <armagetron-bridge> 08discord:delinquent| Mine was post-millennium
[2024-08-22 18:20:50] <armagetronbridge> 08discord:delinquent| Mine was post-millennium
[2024-08-22 18:20:54] <armagetron-bridge> 14discord:monkey_arma| ah ok
[2024-08-22 18:20:55] <armagetronbridge> 14discord:monkey_arma| ah ok
[2024-08-22 18:21:02] <armagetron-bridge> 08discord:delinquent| afaik anyway. It was in black, so most likely
[2024-08-22 18:21:02] <armagetronbridge> 08discord:delinquent| afaik anyway. It was in black, so most likely
[2024-08-22 18:21:05] <Lucifer_arma> ours are this decade, we just upgraded them a few months back
[2024-08-22 18:21:06] <armagetronbridge> 10irc:Lucifer_arma| ours are this decade, we just upgraded them a few months back
[2024-08-22 18:21:20] <armagetronbridge> 14discord:monkey_arma| right ok ..yeah they are fast nowadays
[2024-08-22 18:21:20] <armagetron-bridge> 14discord:monkey_arma| right ok ..yeah they are fast nowadays
[2024-08-22 18:21:40] <Lucifer_arma> it takes longer to upload the receipt information over the IP network than it does for it to print
[2024-08-22 18:21:40] <armagetronbridge> 10irc:Lucifer_arma| it takes longer to upload the receipt information over the IP network than it does for it to print
[2024-08-22 18:22:03] <armagetron-bridge> 14discord:monkey_arma| yeah i worked in a shop and they had dialup for the PDQ machine....
[2024-08-22 18:22:03] <armagetronbridge> 14discord:monkey_arma| yeah i worked in a shop and they had dialup for the PDQ machine....
[2024-08-22 18:22:10] <armagetron-bridge> 14discord:monkey_arma| im talking recently too
[2024-08-22 18:22:10] <armagetronbridge> 14discord:monkey_arma| im talking recently too
[2024-08-22 18:22:10] <armagetron-bridge> 08discord:delinquent| Also @monkey_arma whilst I do have the fax machine, it's not actually hooked up anymore. I used to use it occasionally for sending out invoices because one of the charities I worked with was mostly people in their sixties
[2024-08-22 18:22:11] <armagetronbridge> 08discord:delinquent| Also @monkey_arma whilst I do have the fax machine, it's not actually hooked up anymore. I used to use it occasionally for sending out invoices because one of the charities I worked with was mostly people in their sixties
[2024-08-22 18:22:24] <armagetron-bridge> 14discord:monkey_arma| i knew it!
[2024-08-22 18:22:24] <armagetronbridge> 14discord:monkey_arma| i knew it!
[2024-08-22 18:23:08] <Lucifer_arma> my poor ubereats driver is stuck in rush hour traffic on I35
[2024-08-22 18:23:08] <armagetronbridge> 10irc:Lucifer_arma| my poor ubereats driver is stuck in rush hour traffic on I35
[2024-08-22 18:24:44] <armagetronbridge> 14discord:monkey_arma| ive had an HP laserjet pro m118dw for a few years. it only cost £100 and its excellent. it can print postcript and PDF files
[2024-08-22 18:24:44] <armagetron-bridge> 14discord:monkey_arma| ive had an HP laserjet pro m118dw for a few years. it only cost £100 and its excellent. it can print postcript and PDF files
[2024-08-22 18:25:20] <armagetronbridge> 08discord:delinquent| I bought a lil aio printer like, five years ago. I used it a few times, then never bothered replaceing the ink in it
[2024-08-22 18:25:21] <armagetron-bridge> 08discord:delinquent| I bought a lil aio printer like, five years ago. I used it a few times, then never bothered replaceing the ink in it
[2024-08-22 18:25:22] <Lucifer_arma> I'm using a Brother laserjet from like 20 years ago that my ex wife and I bought, um, maybe 10 years ago? Longer?
[2024-08-22 18:25:23] <armagetronbridge> 10irc:Lucifer_arma| I'm using a Brother laserjet from like 20 years ago that my ex wife and I bought, um, maybe 10 years ago? Longer?
[2024-08-22 18:25:25] <Lucifer_arma> I got it in the divorce :)
[2024-08-22 18:25:26] <armagetronbridge> 10irc:Lucifer_arma| I got it in the divorce :)
[2024-08-22 18:25:33] <armagetron-bridge> 14discord:monkey_arma| nice!
[2024-08-22 18:25:33] <armagetronbridge> 14discord:monkey_arma| nice!
[2024-08-22 18:25:44] <armagetronbridge> 14discord:monkey_arma| laser > ink
[2024-08-22 18:25:44] <armagetron-bridge> 14discord:monkey_arma| laser > ink
[2024-08-22 18:25:56] <armagetronbridge> 08discord:delinquent| most valuable agreement right htere
[2024-08-22 18:25:56] <armagetron-bridge> 08discord:delinquent| most valuable agreement right htere
[2024-08-22 18:25:57] <armagetron-bridge> 14discord:monkey_arma| and the old ones are pretty good too
[2024-08-22 18:25:57] <armagetronbridge> 14discord:monkey_arma| and the old ones are pretty good too
[2024-08-22 18:25:58] <Lucifer_arma> it's still a black and white printer, but it also still works
[2024-08-22 18:25:59] <armagetronbridge> 10irc:Lucifer_arma| it's still a black and white printer, but it also still works
[2024-08-22 18:26:08] <armagetronbridge> 14discord:monkey_arma| mines black and white
[2024-08-22 18:26:08] <armagetron-bridge> 14discord:monkey_arma| mines black and white
[2024-08-22 18:26:23] <Lucifer_arma> my first wife kept the laser printer we'd bought together, so I made sure to grab this one from my second wife
[2024-08-22 18:26:23] <armagetronbridge> 10irc:Lucifer_arma| my first wife kept the laser printer we'd bought together, so I made sure to grab this one from my second wife
[2024-08-22 18:26:42] <Lucifer_arma> woohoo, he's off I35 and finally close.
[2024-08-22 18:26:42] <armagetronbridge> 10irc:Lucifer_arma| woohoo, he's off I35 and finally close.
[2024-08-22 18:26:48] <armagetronbridge> 14discord:monkey_arma| they keep their value too...
[2024-08-22 18:26:48] <armagetron-bridge> 14discord:monkey_arma| they keep their value too...
[2024-08-22 18:27:06] <Lucifer_arma> they use brushless motors
[2024-08-22 18:27:06] <armagetronbridge> 10irc:Lucifer_arma| they use brushless motors
[2024-08-22 18:27:15] <armagetron-bridge> 14discord:monkey_arma| do they?
[2024-08-22 18:27:15] <armagetronbridge> 14discord:monkey_arma| do they?
[2024-08-22 18:27:22] <armagetron-bridge> 14discord:monkey_arma| oh nice
[2024-08-22 18:27:22] <armagetronbridge> 14discord:monkey_arma| oh nice
[2024-08-22 18:27:30] <Lucifer_arma> I don't know, I just wanted to throw back to that part of the conversation
[2024-08-22 18:27:30] <armagetronbridge> 10irc:Lucifer_arma| I don't know, I just wanted to throw back to that part of the conversation
[2024-08-22 18:27:35] <armagetron-bridge> 14discord:monkey_arma| oh hah
[2024-08-22 18:27:35] <armagetronbridge> 14discord:monkey_arma| oh hah
[2024-08-22 18:27:58] <armagetron-bridge> 14discord:monkey_arma| you're probably right tho...mine is very quiet
[2024-08-22 18:27:58] <armagetronbridge> 14discord:monkey_arma| you're probably right tho...mine is very quiet
[2024-08-22 18:27:59] <Lucifer_arma> I got a hotel room last night and tonight
[2024-08-22 18:28:01] <armagetronbridge> 10irc:Lucifer_arma| I got a hotel room last night and tonight
[2024-08-22 18:28:24] <armagetronbridge> 14discord:monkey_arma| because the van is not finished you mean?
[2024-08-22 18:28:24] <armagetron-bridge> 14discord:monkey_arma| because the van is not finished you mean?
[2024-08-22 18:28:54] <Lucifer_arma> no, because I needed to wash dishes and do laundry and take a shower and stuff
[2024-08-22 18:28:54] <armagetronbridge> 10irc:Lucifer_arma| no, because I needed to wash dishes and do laundry and take a shower and stuff
[2024-08-22 18:29:07] <armagetronbridge> 14discord:monkey_arma| ah ok
[2024-08-22 18:29:08] <Lucifer_arma> so yeah, I guess because the van's not finished, because when it is, I'll be able to do most of that in the van
[2024-08-22 18:29:12] <armagetron-bridge> 14discord:monkey_arma| ah ok
[2024-08-22 18:29:13] <armagetronbridge> 10irc:Lucifer_arma| so yeah, I guess because the van's not finished, because when it is, I'll be able to do most of that in the van
[2024-08-22 18:29:20] <armagetron-bridge> 14discord:monkey_arma| yes
[2024-08-22 18:29:21] <armagetronbridge> 14discord:monkey_arma| yes
[2024-08-22 18:29:48] <Lucifer_arma> I've been getting the room one night every two weeks since I moved into the van
[2024-08-22 18:29:48] <armagetronbridge> 10irc:Lucifer_arma| I've been getting the room one night every two weeks since I moved into the van
[2024-08-22 18:29:51] <armagetronbridge> 14discord:monkey_arma| there is a guy in the uk who made his home out of a skip
[2024-08-22 18:29:51] <armagetron-bridge> 14discord:monkey_arma| there is a guy in the uk who made his home out of a skip
[2024-08-22 18:30:05] <armagetronbridge> 14discord:monkey_arma| van > skip
[2024-08-22 18:30:05] <armagetron-bridge> 14discord:monkey_arma| van > skip
[2024-08-22 18:30:11] <armagetron-bridge> 14discord:monkey_arma| yeah makes sense
[2024-08-22 18:30:11] <armagetronbridge> 14discord:monkey_arma| yeah makes sense
[2024-08-22 18:30:20] <armagetronbridge> 08discord:delinquent| a skip
[2024-08-22 18:30:21] <armagetron-bridge> 08discord:delinquent| a skip
[2024-08-22 18:30:21] <armagetron-bridge> 08discord:delinquent| wat
[2024-08-22 18:30:21] <armagetronbridge> 08discord:delinquent| wat
[2024-08-22 18:30:29] <armagetron-bridge> 14discord:monkey_arma| yep..he uses his local gym for showers
[2024-08-22 18:30:29] <armagetronbridge> 14discord:monkey_arma| yep..he uses his local gym for showers
[2024-08-22 18:30:49] <armagetron-bridge> 14discord:monkey_arma| it was on the tv...on one of those design programs
[2024-08-22 18:30:49] <armagetronbridge> 14discord:monkey_arma| it was on the tv...on one of those design programs
[2024-08-22 18:31:02] <armagetron-bridge> 08discord:delinquent| oh, I wasnt expecting it to be that nice
[2024-08-22 18:31:02] <armagetronbridge> 08discord:delinquent| oh, I wasnt expecting it to be that nice
[2024-08-22 18:31:15] <armagetron-bridge> 14discord:monkey_arma| https://www.bbc.co.uk/news/uk-england-london-64615890
[2024-08-22 18:31:15] <armagetronbridge> 14discord:monkey_arma| https://www.bbc.co.uk/news/uk-england-london-64615890
[2024-08-22 18:31:21] <armagetronbridge> 08discord:delinquent| I was expecting some rando homeless gadgie with a tarp and a sleeping bag
[2024-08-22 18:31:21] <armagetron-bridge> 08discord:delinquent| I was expecting some rando homeless gadgie with a tarp and a sleeping bag
[2024-08-22 18:31:38] <armagetron-bridge> 14discord:monkey_arma| the point is that london is so fucking expensive now
[2024-08-22 18:31:38] <armagetronbridge> 14discord:monkey_arma| the point is that london is so fucking expensive now
[2024-08-22 18:32:02] <armagetronbridge> 14discord:monkey_arma| yeah me too deli
[2024-08-22 18:32:02] <armagetron-bridge> 14discord:monkey_arma| yeah me too deli
[2024-08-22 18:32:28] <armagetron-bridge> 14discord:monkey_arma| its actually quite cozy inside from what i gather but still so small
[2024-08-22 18:32:28] <armagetronbridge> 14discord:monkey_arma| its actually quite cozy inside from what i gather but still so small
[2024-08-22 18:32:47] <Lucifer_arma> I'm not the only one around here. I met another vanlifer yesterday. I imagine that when I've got plates and I can drive around a lot more, I'll be encountering more
[2024-08-22 18:32:47] <armagetronbridge> 10irc:Lucifer_arma| I'm not the only one around here. I met another vanlifer yesterday. I imagine that when I've got plates and I can drive around a lot more, I'll be encountering more
[2024-08-22 18:32:54] <Lucifer_arma> anyway, off to the movies, food is here
[2024-08-22 18:32:54] <armagetronbridge> 10irc:Lucifer_arma| anyway, off to the movies, food is here
[2024-08-22 18:33:27] <armagetronbridge> 14discord:monkey_arma| yeah you will ok enjoy
[2024-08-22 18:33:27] <armagetron-bridge> 14discord:monkey_arma| yeah you will ok enjoy
[2024-08-22 19:15:11] <armagetronbridge> 14discord:monkey_arma| @northernscrub i think i have found a good one, its not complete in features yet but its the most promising: its called "dino"
[2024-08-22 19:15:11] <armagetron-bridge> 14discord:monkey_arma| @northernscrub i think i have found a good one, its not complete in features yet but its the most promising: its called "dino"
[2024-08-22 19:35:03] <armagetron-bridge> 14discord:monkey_arma| https://dino.im/
[2024-08-22 19:35:03] <armagetronbridge> 14discord:monkey_arma| https://dino.im/
[2024-08-22 19:48:34] <Lucifer_arma> so, when TRON, Flynn, and RAM escape, and then Tank Program (guru3) shoots them, RAM dies, of course. Was it possible for Tank Program(guru3) to kill Flynn?
[2024-08-22 19:48:34] <armagetronbridge> 10irc:Lucifer_arma| so, when TRON, Flynn, and RAM escape, and then Tank Program (guru3) shoots them, RAM dies, of course. Was it possible for Tank Program(guru3) to kill Flynn?
[2024-08-22 19:49:22] <armagetron-bridge> 14discord:monkey_arma| er idk
[2024-08-22 19:49:22] <armagetronbridge> 14discord:monkey_arma| er idk
[2024-08-22 20:44:42] <-- monr0e has quit (Remote host closed the connection)
[2024-08-22 21:30:46] <Lucifer_arma> well that was lucky. Uber couldn't put my actual current address in the right place on the map. The driver found it just fine and gave me my food, but then he couldn't figure out how to finish the order (he had to drive to the pin and complete the order there, and it would have taken like 3 minutes)
[2024-08-22 21:30:46] <armagetronbridge> 10irc:Lucifer_arma| well that was lucky. Uber couldn't put my actual current address in the right place on the map. The driver found it just fine and gave me my food, but then he couldn't figure out how to finish the order (he had to drive to the pin and complete the order there, and it would have taken like 3 minutes)
[2024-08-22 21:30:51] <Lucifer_arma> so he canceled the order
[2024-08-22 21:30:51] <armagetronbridge> 10irc:Lucifer_arma| so he canceled the order
[2024-08-22 21:30:55] <Lucifer_arma> I got my food for free :)
[2024-08-22 21:30:55] <armagetronbridge> 10irc:Lucifer_arma| I got my food for free :)
[2024-08-22 21:31:13] <Lucifer_arma> Unfortunately, that means the driver didn't get paid, nor did the restaurant.
[2024-08-22 21:31:14] <armagetronbridge> 10irc:Lucifer_arma| Unfortunately, that means the driver didn't get paid, nor did the restaurant.
[2024-08-22 22:05:37] <-- Lucifer_arma has quit (Read error: Connection reset by peer)
[2024-08-22 22:11:39] --> Lucifer_arma has joined the channel
[2024-08-22 22:54:55] <-- Lucifer_arma has quit (Read error: No route to host)
Searching from 2024-08-23 00:00:00 to 2024-08-23 23:59:59.999999.
Query completed in 0.68 seconds
[2024-08-23 01:42:06] --> Lucifer_arma has joined the channel
[2024-08-23 01:53:43] <-- Lucifer_arma has quit (Read error: No route to host)
[2024-08-23 03:30:43] <-- paddymahoney has quit (Ping timeout: 480 seconds)
[2024-08-23 03:30:45] --> paddymahoney has joined the channel
[2024-08-23 08:08:36] --> monr0e has joined the channel
[2024-08-23 12:52:58] <armagetronbridge> 05discord:juesto| sup
[2024-08-23 12:52:59] <armagetron-bridge> 05discord:juesto| sup
[2024-08-23 12:53:15] <armagetron-bridge> 05discord:juesto| oof
[2024-08-23 12:53:15] <armagetronbridge> 05discord:juesto| oof
[2024-08-23 19:04:51] <-- armagetronbridge has quit (Remote host closed the connection)
[2024-08-23 19:05:20] --> armagetronbridge has joined the channel
[2024-08-23 19:41:23] --> delinquent has joined the channel
[2024-08-23 20:37:20] <-- monr0e has quit (Remote host closed the connection)
[2024-08-23 20:37:21] <-- delinquent has quit (Remote host closed the connection)
[2024-08-23 23:53:22] <-- Netsplit between reticulum.oftc.net and liquid.oftc.net. Quit: guru3
[2024-08-23 23:55:20] --> Netsplit between reticulum.oftc.net and liquid.oftc.net ended. Joined: guru3
Searching from 2024-08-24 00:00:00 to 2024-08-24 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-24 08:37:02] --> monr0e has joined the channel
[2024-08-24 09:27:03] --> _11 has joined the channel
[2024-08-24 09:29:11] <-- _11 has quit ()
[2024-08-24 12:31:49] <armagetron-bridge> 03discord:zorb| u could ask support and let support know u got ur food to make sure uber pays it
[2024-08-24 12:31:50] <armagetronbridge> 03discord:zorb| u could ask support and let support know u got ur food to make sure uber pays it
[2024-08-24 13:20:18] <armagetron-bridge> 08discord:delinquent| the restaurant probably doesn't care all that much. Or, if they do, Uber has probably already footed the bill
[2024-08-24 13:20:19] <armagetronbridge> 08discord:delinquent| the restaurant probably doesn't care all that much. Or, if they do, Uber has probably already footed the bill
[2024-08-24 14:00:08] <-- monr0e has quit (Remote host closed the connection)
[2024-08-24 14:00:26] --> monr0e has joined the channel
[2024-08-24 19:04:10] <-- Juest has quit (Ping timeout: 244 seconds)
[2024-08-24 19:07:50] <-- Juest has quit (Ping timeout: 480 seconds)
[2024-08-24 19:15:58] --> Juest has joined the channel
[2024-08-24 19:19:53] --> Juest has joined the channel
[2024-08-24 23:41:36] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-25 00:00:00 to 2024-08-25 23:59:59.999999.
Query completed in 0.59 seconds
[2024-08-25 06:40:49] <armagetron-bridge> 03discord:ellis| i wish durfs armagetron color picker website was still up
[2024-08-25 06:40:49] <armagetronbridge> 03discord:ellis| i wish durfs armagetron color picker website was still up
[2024-08-25 06:41:28] <armagetron-bridge> 15discord:Nélg| this one? https://durf.cf/tools/AllCycles/0.1/
[2024-08-25 06:41:28] <armagetronbridge> 15discord:Nélg| this one? https://durf.cf/tools/AllCycles/0.1/
[2024-08-25 06:42:28] <armagetronbridge> 03discord:ellis| jesus this is insane i never even seen this one lmao
[2024-08-25 06:42:28] <armagetron-bridge> 03discord:ellis| jesus this is insane i never even seen this one lmao
[2024-08-25 06:42:46] <armagetronbridge> 03discord:ellis| the one i remember just had a few presets to pick from
[2024-08-25 06:42:46] <armagetron-bridge> 03discord:ellis| the one i remember just had a few presets to pick from
[2024-08-25 06:43:04] <armagetronbridge> 15discord:Nélg| https://durf.cf/tools/CycleColor/0.2.8/
[2024-08-25 06:43:04] <armagetron-bridge> 15discord:Nélg| https://durf.cf/tools/CycleColor/0.2.8/
[2024-08-25 06:43:37] <armagetron-bridge> 03discord:ellis| yeaaa this is nostalgicc
[2024-08-25 06:43:37] <armagetronbridge> 03discord:ellis| yeaaa this is nostalgicc
[2024-08-25 09:00:39] --> monr0e has joined the channel
[2024-08-25 12:17:20] --> Sauss-Ente has joined the channel
[2024-08-25 16:24:34] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-25 19:13:16] <-- Juest has quit (Ping timeout: 252 seconds)
[2024-08-25 19:17:04] <-- Juest has quit (Ping timeout: 480 seconds)
[2024-08-25 19:37:06] --> Juest has joined the channel
[2024-08-25 19:37:25] --> Juest has joined the channel
[2024-08-25 22:23:19] <-- monr0e has quit (Remote host closed the connection)
[2024-08-25 23:52:55] <Juest> test
[2024-08-25 23:52:55] <armagetronbridge> 14irc:Juest| test
Searching from 2024-08-26 00:00:00 to 2024-08-26 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-26 02:17:50] -!- Juest changed nick to Guest1496
[2024-08-26 02:18:00] --> Juest has joined the channel
[2024-08-26 02:19:18] --> Juesto has joined the channel
[2024-08-26 02:19:56] <-- Juest has quit (Ping timeout: 255 seconds)
[2024-08-26 02:20:39] -!- Juesto changed nick to Juest
[2024-08-26 02:23:15] <-- Guest1496 has quit (Ping timeout: 480 seconds)
[2024-08-26 09:16:35] --> monr0e has joined the channel
[2024-08-26 14:25:43] -!- Juest changed nick to Guest1541
[2024-08-26 14:25:53] --> Juest has joined the channel
[2024-08-26 14:28:24] <-- Juest has quit (Ping timeout: 276 seconds)
[2024-08-26 14:29:58] -!- Juest changed nick to Guest1542
[2024-08-26 14:30:07] --> Juest has joined the channel
[2024-08-26 14:31:45] <-- Guest1541 has quit (Ping timeout: 480 seconds)
[2024-08-26 14:36:15] <-- Guest1542 has quit (Ping timeout: 480 seconds)
[2024-08-26 14:38:03] --> Juest has joined the channel
[2024-08-26 15:15:44] -!- Juest changed nick to Guest1549
[2024-08-26 15:15:53] --> Juest has joined the channel
[2024-08-26 15:16:58] -!- Juest changed nick to Guest1550
[2024-08-26 15:17:08] --> Juest has joined the channel
[2024-08-26 15:18:39] <-- Juest has quit (Ping timeout: 265 seconds)
[2024-08-26 15:21:37] --> Juest has joined the channel
[2024-08-26 15:21:45] <-- Guest1549 has quit (Ping timeout: 480 seconds)
[2024-08-26 15:24:20] <-- Guest1550 has quit (Ping timeout: 480 seconds)
[2024-08-26 16:12:34] <armagetron-bridge> 04discord:olive2306| icle
[2024-08-26 16:12:34] <armagetronbridge> 04discord:olive2306| icle
[2024-08-26 17:49:56] <armagetronbridge> 05discord:juesto| very funny
[2024-08-26 17:49:56] <armagetron-bridge> 05discord:juesto| very funny
[2024-08-26 22:43:40] <-- Juest has quit (Excess Flood)
[2024-08-26 22:48:00] --> Juest has joined the channel
[2024-08-26 23:43:46] <-- monr0e has quit (Remote host closed the connection)
[2024-08-26 23:47:13] <armagetronbridge> 10discord:NorthernScrub| @dani literally just shut my pc down
[2024-08-26 23:47:13] <armagetron-bridge> 10discord:NorthernScrub| @dani literally just shut my pc down
[2024-08-26 23:47:18] <armagetron-bridge> 10discord:NorthernScrub| Photo pls
[2024-08-26 23:47:18] <armagetronbridge> 10discord:NorthernScrub| Photo pls
[2024-08-26 23:47:35] <armagetronbridge> 10discord:NorthernScrub| Ah fk I didn't fix pings cross-platform yet
[2024-08-26 23:47:35] <armagetron-bridge> 10discord:NorthernScrub| Ah fk I didn't fix pings cross-platform yet
Searching from 2024-08-27 00:00:00 to 2024-08-27 23:59:59.999999.
Query completed in 0.59 seconds
[2024-08-27 01:19:38] -!- Juest changed nick to Guest1590
[2024-08-27 01:19:48] --> Juest has joined the channel
[2024-08-27 01:23:01] <-- Juest has quit (Ping timeout: 248 seconds)
[2024-08-27 01:24:11] --> Juest has joined the channel
[2024-08-27 01:25:55] <-- Guest1590 has quit (Ping timeout: 480 seconds)
[2024-08-27 02:00:25] <armagetron-bridge> 05discord:juesto| Rip
[2024-08-27 02:00:25] <armagetronbridge> 05discord:juesto| Rip
[2024-08-27 02:06:07] <armagetron-bridge> 05discord:juesto| @northernscrub where else is this bridged now? matrix and another irc channel that isnt libera?
[2024-08-27 02:06:07] <armagetronbridge> 05discord:juesto| @northernscrub where else is this bridged now? matrix and another irc channel that isnt libera?
[2024-08-27 13:17:37] --> monr0e has joined the channel
[2024-08-27 13:21:19] <armagetron-bridge> 08discord:delinquent| No, matrix isn't bridged here. We have OFTC, Libera, and our own Revolt instance. The revolt instance is bridged over most channels, but isn't 100% ready yet. I need to fix a few things, like naming structures and integrations with pickup bots/matchup bots/sumobar league bots, as well as implement mod access across all platforms.
[2024-08-27 13:21:19] <armagetronbridge> 08discord:delinquent| No, matrix isn't bridged here. We have OFTC, Libera, and our own Revolt instance. The revolt instance is bridged over most channels, but isn't 100% ready yet. I need to fix a few things, like naming structures and integrations with pickup bots/matchup bots/sumobar league bots, as well as implement mod access across all platforms.
[2024-08-27 13:21:20] <armagetron-bridge> 08discord:delinquent| Modesetting is something else I have to do, but that will have to be done at a later date because I need to add a significant amount of patchwork to the three libraries I'm using first. It's also nowhere near as important as pickup integration, and we now have `#armagetron-pickup' on both IRC platforms so we don't have to be overly concerned.
[2024-08-27 13:21:20] <armagetronbridge> 08discord:delinquent| Modesetting is something else I have to do, but that will have to be done at a later date because I need to add a significant amount of patchwork to the three libraries I'm using first. It's also nowhere near as important as pickup integration, and we now have `#armagetron-pickup' on both IRC platforms so we don't have to be overly concerned.
[2024-08-27 13:28:53] <armagetron-bridge> 05discord:juesto| ah
[2024-08-27 13:28:53] <armagetronbridge> 05discord:juesto| ah
[2024-08-27 13:29:16] <armagetron-bridge> 05discord:juesto| revolt is similar to matrix, rocket.chat, etc?
[2024-08-27 13:29:16] <armagetronbridge> 05discord:juesto| revolt is similar to matrix, rocket.chat, etc?
[2024-08-27 13:47:55] <armagetronbridge> 08discord:delinquent| no, its mroe like a foss discord clone
[2024-08-27 13:47:55] <armagetron-bridge> 08discord:delinquent| no, its mroe like a foss discord clone
[2024-08-27 13:48:27] <armagetronbridge> 08discord:delinquent| and you can self host it, meaning we can maintian an instance that we (or, in this case, me, but on behalf of the community) have direct control over our data
[2024-08-27 13:48:27] <armagetron-bridge> 08discord:delinquent| and you can self host it, meaning we can maintian an instance that we (or, in this case, me, but on behalf of the community) have direct control over our data
[2024-08-27 18:28:38] <-- monr0e has quit (Remote host closed the connection)
[2024-08-27 22:13:59] <armagetron-bridge> 05discord:juesto| ah ok, like spacebat iirc
[2024-08-27 22:13:59] <armagetronbridge> 05discord:juesto| ah ok, like spacebat iirc
[2024-08-27 22:15:01] <armagetron-bridge> 05discord:juesto| i'll take that as a yes since those are basically self-hosted solutions of sorta kind of clones, well rocket.chat sorta is a clone of slack
[2024-08-27 22:15:01] <armagetronbridge> 05discord:juesto| i'll take that as a yes since those are basically self-hosted solutions of sorta kind of clones, well rocket.chat sorta is a clone of slack
[2024-08-27 22:15:17] <armagetronbridge> 05discord:juesto| chat solutions*
[2024-08-27 22:15:17] <armagetron-bridge> 05discord:juesto| chat solutions*
[2024-08-27 23:24:14] <-- Juest has quit (Ping timeout: 252 seconds)
[2024-08-27 23:31:52] --> Juest has joined the channel
[2024-08-27 23:43:04] -!- Juest changed nick to Guest1675
[2024-08-27 23:43:14] --> Juest has joined the channel
[2024-08-27 23:45:51] <-- Juest has quit (Ping timeout: 246 seconds)
[2024-08-27 23:47:41] --> Juest has joined the channel
[2024-08-27 23:49:44] <-- Guest1675 has quit (Ping timeout: 480 seconds)
Searching from 2024-08-28 00:00:00 to 2024-08-28 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-28 03:21:38] <-- armagetronbridge has quit (Read error: Connection reset by peer)
[2024-08-28 03:22:12] --> armagetronbridge has joined the channel
[2024-08-28 06:43:21] --> monr0e has joined the channel
[2024-08-28 06:45:06] <armagetronbridge> 08discord:delinquent| spacebarchat is a clone also, yes. Revolt is under active development though, and has rudimentary voice support too. Spacebarchat, whilst retaining API compatibility to a degree, hasn't seen an update in months and has no voice support
[2024-08-28 06:45:06] <armagetron-bridge> 08discord:delinquent| spacebarchat is a clone also, yes. Revolt is under active development though, and has rudimentary voice support too. Spacebarchat, whilst retaining API compatibility to a degree, hasn't seen an update in months and has no voice support
[2024-08-28 06:51:59] <armagetronbridge> 05discord:juesto| fair
[2024-08-28 06:52:00] <armagetron-bridge> 05discord:juesto| fair
[2024-08-28 10:20:32] <-- Juest has quit (Ping timeout: 255 seconds)
[2024-08-28 10:24:14] --> Juest has joined the channel
[2024-08-28 18:09:00] <-- monr0e has quit (Remote host closed the connection)
[2024-08-28 23:04:44] --> Lucifer_arma has joined the channel
Searching from 2024-08-29 00:00:00 to 2024-08-29 23:59:59.999999.
Query completed in 0.65 seconds
[2024-08-29 00:29:38] <Lucifer_arma> if I shoot a youtube video in a hotel room, do I get to claim the hotel room as a cost?
[2024-08-29 00:29:38] <armagetronbridge> 10irc:Lucifer_arma| if I shoot a youtube video in a hotel room, do I get to claim the hotel room as a cost?
[2024-08-29 00:34:07] <armagetron-bridge> 14discord:Grimm| Just say it's a review lol then yes lol
[2024-08-29 00:34:07] <armagetronbridge> 14discord:Grimm| Just say it's a review lol then yes lol
[2024-08-29 01:14:59] <Lucifer_arma> Well, it doesn't matter if it's a review, it matters if I use the space for commercial purposes :)
[2024-08-29 01:14:59] <armagetronbridge> 10irc:Lucifer_arma| Well, it doesn't matter if it's a review, it matters if I use the space for commercial purposes :)
[2024-08-29 01:15:16] <Lucifer_arma> if I'm feeling up to it tomorrow, I'm going to shoot several videos all at once, and I'll use the room for it
[2024-08-29 01:15:16] <armagetronbridge> 10irc:Lucifer_arma| if I'm feeling up to it tomorrow, I'm going to shoot several videos all at once, and I'll use the room for it
[2024-08-29 01:15:39] <Lucifer_arma> I'm sick, probably the new covid strain, so I got the room for two nights so I could convalesce in it
[2024-08-29 01:15:39] <armagetronbridge> 10irc:Lucifer_arma| I'm sick, probably the new covid strain, so I got the room for two nights so I could convalesce in it
[2024-08-29 01:30:41] <armagetronbridge> 05discord:juesto| lucifer_arma, just ask them, particularly if in doubt
[2024-08-29 01:30:42] <armagetron-bridge> 05discord:juesto| lucifer_arma, just ask them, particularly if in doubt
[2024-08-29 01:31:10] <armagetronbridge> 05discord:juesto| and maybe just express so that you want to use it for commercial purposes and hopefully the cost gets discounted
[2024-08-29 01:31:10] <armagetron-bridge> 05discord:juesto| and maybe just express so that you want to use it for commercial purposes and hopefully the cost gets discounted
[2024-08-29 01:32:02] <Lucifer_arma> I'm not talking about getting a discount from the hotel, I'm talking about claiming for tax purposes. IRS stuff
[2024-08-29 01:32:03] <armagetronbridge> 10irc:Lucifer_arma| I'm not talking about getting a discount from the hotel, I'm talking about claiming for tax purposes. IRS stuff
[2024-08-29 01:33:54] <Lucifer_arma> Like, awhile back (a number of years ago), I was able to do (ad revenue) - (hosting costs + computer costs) for my website because it was technically commercial activity, and I got a tax break because I showed a loss
[2024-08-29 01:33:54] <armagetronbridge> 10irc:Lucifer_arma| Like, awhile back (a number of years ago), I was able to do (ad revenue) - (hosting costs + computer costs) for my website because it was technically commercial activity, and I got a tax break because I showed a loss
[2024-08-29 01:34:01] <Lucifer_arma> you know, boring accounting stuff
[2024-08-29 01:34:03] <armagetronbridge> 10irc:Lucifer_arma| you know, boring accounting stuff
[2024-08-29 01:34:57] <armagetronbridge> 05discord:juesto| oh ok
[2024-08-29 01:34:57] <armagetron-bridge> 05discord:juesto| oh ok
[2024-08-29 01:35:04] <armagetron-bridge> 05discord:juesto| well yeah, still something to discuss with the hotel
[2024-08-29 01:35:05] <armagetronbridge> 05discord:juesto| well yeah, still something to discuss with the hotel
[2024-08-29 01:55:01] <Lucifer_arma> wow, I did not know this. Wendy Carlos, the woman who composed the soundtrack to TRON, was transgender
[2024-08-29 01:55:02] <armagetronbridge> 10irc:Lucifer_arma| wow, I did not know this. Wendy Carlos, the woman who composed the soundtrack to TRON, was transgender
[2024-08-29 01:55:10] <Lucifer_arma> *is* transgender, it appears she's still alive
[2024-08-29 01:55:10] <armagetronbridge> 10irc:Lucifer_arma| *is* transgender, it appears she's still alive
[2024-08-29 02:00:50] <Lucifer_arma> SO let's take a moment and recount. MULE was programmed by a transgender woman, the music for TRON was writen and performed by a transgender woman, and the Matrix was made by two transgender women
[2024-08-29 02:00:58] <armagetronbridge> 10irc:Lucifer_arma| SO let's take a moment and recount. MULE was programmed by a transgender woman, the music for TRON was writen and performed by a transgender woman, and the Matrix was made by two transgender women
[2024-08-29 02:01:16] <Lucifer_arma> I'm seeing a common thread, and it's not transgender women. I should do a video on that.
[2024-08-29 02:01:16] <armagetronbridge> 10irc:Lucifer_arma| I'm seeing a common thread, and it's not transgender women. I should do a video on that.
[2024-08-29 03:03:13] --> monr0e has joined the channel
[2024-08-29 03:10:08] <armagetronbridge> 07discord:syn_acc| there's a common thread between bio-acceleration and futurism
[2024-08-29 03:10:08] <armagetron-bridge> 07discord:syn_acc| there's a common thread between bio-acceleration and futurism
[2024-08-29 03:10:37] <armagetronbridge> 07discord:syn_acc| many of my tech peers aren't interested in gender dynamics as they are leaving behind their achilles heel like factors
[2024-08-29 03:10:37] <armagetron-bridge> 07discord:syn_acc| many of my tech peers aren't interested in gender dynamics as they are leaving behind their achilles heel like factors
[2024-08-29 03:11:03] <armagetron-bridge> 07discord:syn_acc| and yet they still become trans. i think there's something about accepting any augmentation and sci/fi that has crossover
[2024-08-29 03:11:03] <armagetronbridge> 07discord:syn_acc| and yet they still become trans. i think there's something about accepting any augmentation and sci/fi that has crossover
[2024-08-29 03:14:13] <armagetronbridge> 08discord:delinquent| There's a giant split in that community. A goodly number of people who fall into that spectrum would describe accelerationism, futurism, corporatism, and quite a few other 'isms as more than a little undesireable traits.
[2024-08-29 03:14:14] <armagetron-bridge> 08discord:delinquent| There's a giant split in that community. A goodly number of people who fall into that spectrum would describe accelerationism, futurism, corporatism, and quite a few other 'isms as more than a little undesireable traits.
[2024-08-29 03:14:14] <armagetronbridge> 08discord:delinquent| I recently read an account of a woman who organised an event of a rather sexual nature for her birthday or some other special occasion, and part of her criteria was to explicitly weed out anyone who comes under that umbrella.
[2024-08-29 03:14:14] <armagetron-bridge> 08discord:delinquent| I recently read an account of a woman who organised an event of a rather sexual nature for her birthday or some other special occasion, and part of her criteria was to explicitly weed out anyone who comes under that umbrella.
[2024-08-29 03:14:15] <armagetronbridge> 08discord:delinquent| Honestly I had no idea there was so much controversy over it until something like a year ago
[2024-08-29 03:14:16] <armagetron-bridge> 08discord:delinquent| Honestly I had no idea there was so much controversy over it until something like a year ago
[2024-08-29 03:14:29] <armagetronbridge> 07discord:syn_acc| looool
[2024-08-29 03:14:29] <armagetron-bridge> 07discord:syn_acc| looool
[2024-08-29 03:14:30] <armagetron-bridge> 07discord:syn_acc| aella
[2024-08-29 03:14:31] <armagetronbridge> 07discord:syn_acc| aella
[2024-08-29 03:14:31] <armagetron-bridge> 07discord:syn_acc| i know her
[2024-08-29 03:14:32] <armagetronbridge> 07discord:syn_acc| i know her
[2024-08-29 03:14:36] <armagetron-bridge> 08discord:delinquent| HAH
[2024-08-29 03:14:36] <armagetronbridge> 08discord:delinquent| HAH
[2024-08-29 03:14:41] <armagetronbridge> 07discord:syn_acc| i spend a LOT of time on twitter
[2024-08-29 03:14:41] <armagetron-bridge> 07discord:syn_acc| i spend a LOT of time on twitter
[2024-08-29 03:14:43] <armagetron-bridge> 08discord:delinquent| I'm glad you knew that reference
[2024-08-29 03:14:43] <armagetronbridge> 08discord:delinquent| I'm glad you knew that reference
[2024-08-29 03:14:56] <armagetronbridge> 07discord:syn_acc| there were some truly stellar memes out of that
[2024-08-29 03:14:56] <armagetron-bridge> 07discord:syn_acc| there were some truly stellar memes out of that
[2024-08-29 03:15:09] <armagetronbridge> 07discord:syn_acc| but yeah 100% theres a split drawing now where lots of people just outwardly call that stuff degenerate
[2024-08-29 03:15:09] <armagetron-bridge> 07discord:syn_acc| but yeah 100% theres a split drawing now where lots of people just outwardly call that stuff degenerate
[2024-08-29 03:15:22] <armagetron-bridge> 07discord:syn_acc| and now reactionary traditionalism is fighting it
[2024-08-29 03:15:23] <armagetronbridge> 07discord:syn_acc| and now reactionary traditionalism is fighting it
[2024-08-29 03:15:29] <armagetronbridge> 07discord:syn_acc| putting jesus on the same team as ai. its wild
[2024-08-29 03:15:29] <armagetron-bridge> 07discord:syn_acc| putting jesus on the same team as ai. its wild
[2024-08-29 03:16:02] <armagetron-bridge> 08discord:delinquent| I'm something of a cherry picker myself. At least, that's the best I got rn, my heads fried atm
[2024-08-29 03:16:02] <armagetronbridge> 08discord:delinquent| I'm something of a cherry picker myself. At least, that's the best I got rn, my heads fried atm
[2024-08-29 03:16:36] <armagetronbridge> 07discord:syn_acc| by the same vein you can argue the same of daft punk in that their images are somewhat cross species, choosing to be depicted by an avatar that is far from their physical forms
[2024-08-29 03:16:36] <armagetron-bridge> 07discord:syn_acc| by the same vein you can argue the same of daft punk in that their images are somewhat cross species, choosing to be depicted by an avatar that is far from their physical forms
[2024-08-29 03:17:09] <armagetron-bridge> 07discord:syn_acc| maybe many of us in this somewhat fictional world dream of a state we can never truly be in
[2024-08-29 03:17:10] <armagetronbridge> 07discord:syn_acc| maybe many of us in this somewhat fictional world dream of a state we can never truly be in
[2024-08-29 03:17:24] <armagetron-bridge> 07discord:syn_acc| that wont stop us from making various related augmentations to our body if we get the chance
[2024-08-29 03:17:24] <armagetronbridge> 07discord:syn_acc| that wont stop us from making various related augmentations to our body if we get the chance
[2024-08-29 03:17:34] <armagetronbridge> 08discord:delinquent| Meh. I don't care to read anything into that sort of thing. Too easy to be wrong, plus I'm na autistic fuck so I'm *guaranteed* to be wrong. Easier to just sit back and enjoy the music
[2024-08-29 03:17:35] <armagetron-bridge> 08discord:delinquent| Meh. I don't care to read anything into that sort of thing. Too easy to be wrong, plus I'm na autistic fuck so I'm *guaranteed* to be wrong. Easier to just sit back and enjoy the music
[2024-08-29 03:17:42] <armagetron-bridge> 07discord:syn_acc| 100%
[2024-08-29 03:17:42] <armagetronbridge> 07discord:syn_acc| 100%
[2024-08-29 03:18:01] <armagetron-bridge> 07discord:syn_acc| it's a cool commonality though. didnt know OG tron soundtrack director was trans
[2024-08-29 03:18:02] <armagetronbridge> 07discord:syn_acc| it's a cool commonality though. didnt know OG tron soundtrack director was trans
[2024-08-29 03:18:33] <armagetron-bridge> 08discord:delinquent| lol only body mods I'd make is something like a nanotechnologic implant that expands my own memory space and that sorta thing. Having a bigger brainspace to play in would be cool
[2024-08-29 03:18:33] <armagetronbridge> 08discord:delinquent| lol only body mods I'd make is something like a nanotechnologic implant that expands my own memory space and that sorta thing. Having a bigger brainspace to play in would be cool
[2024-08-29 03:19:22] <armagetron-bridge> 07discord:syn_acc| oof
[2024-08-29 03:19:23] <armagetronbridge> 07discord:syn_acc| oof
[2024-08-29 03:19:27] <armagetron-bridge> 07discord:syn_acc| canonically thats a big one though
[2024-08-29 03:19:27] <armagetronbridge> 07discord:syn_acc| canonically thats a big one though
[2024-08-29 03:19:32] <armagetron-bridge> 07discord:syn_acc| they say its quite a good thing we are able to forget
[2024-08-29 03:19:33] <armagetronbridge> 07discord:syn_acc| they say its quite a good thing we are able to forget
[2024-08-29 03:19:51] <armagetronbridge> 08discord:delinquent| Fuck organic memory. I wanna pick and choose what to forget
[2024-08-29 03:19:51] <armagetron-bridge> 08discord:delinquent| Fuck organic memory. I wanna pick and choose what to forget
[2024-08-29 03:20:04] <armagetron-bridge> 07discord:syn_acc| in my experience ive seen the purest joy come from the simplest of life forms
[2024-08-29 03:20:05] <armagetronbridge> 07discord:syn_acc| in my experience ive seen the purest joy come from the simplest of life forms
[2024-08-29 03:20:41] <armagetron-bridge> 08discord:delinquent| Well, that's why you want the ability to turn it off
[2024-08-29 03:20:41] <armagetronbridge> 08discord:delinquent| Well, that's why you want the ability to turn it off
[2024-08-29 03:20:58] <armagetron-bridge> 07discord:syn_acc| but knowledge like that is corrosive
[2024-08-29 03:20:58] <armagetronbridge> 07discord:syn_acc| but knowledge like that is corrosive
[2024-08-29 03:21:07] <armagetron-bridge> 07discord:syn_acc| i can theoretically turn off my computer and go chill outside with the birds
[2024-08-29 03:21:07] <armagetronbridge> 07discord:syn_acc| i can theoretically turn off my computer and go chill outside with the birds
[2024-08-29 03:21:23] <armagetron-bridge> 07discord:syn_acc| but for some reason, i cant, i have to do this and be here
[2024-08-29 03:21:23] <armagetronbridge> 07discord:syn_acc| but for some reason, i cant, i have to do this and be here
[2024-08-29 03:21:32] <armagetronbridge> 07discord:syn_acc| i imagine one would create a life with their new abilities that demands those abilities
[2024-08-29 03:21:33] <armagetron-bridge> 07discord:syn_acc| i imagine one would create a life with their new abilities that demands those abilities
[2024-08-29 03:21:38] <armagetron-bridge> 07discord:syn_acc| then you are a slave to your own potential
[2024-08-29 03:21:38] <armagetronbridge> 07discord:syn_acc| then you are a slave to your own potential
[2024-08-29 03:21:43] <armagetronbridge> 07discord:syn_acc| a modern classic to be fair
[2024-08-29 03:21:43] <armagetron-bridge> 07discord:syn_acc| a modern classic to be fair
[2024-08-29 03:22:19] <armagetronbridge> 08discord:delinquent| Meh, that's just psychology. You gotta learn how to be *willing* to turn shit off and go touch grass. Took me a while to figure that one out
[2024-08-29 03:22:19] <armagetron-bridge> 08discord:delinquent| Meh, that's just psychology. You gotta learn how to be *willing* to turn shit off and go touch grass. Took me a while to figure that one out
[2024-08-29 03:22:46] <armagetronbridge> 08discord:delinquent| Now I garden frequently, and grew veggies the last two years
[2024-08-29 03:22:46] <armagetron-bridge> 08discord:delinquent| Now I garden frequently, and grew veggies the last two years
[2024-08-29 03:22:52] <armagetronbridge> 07discord:syn_acc| yeah but its the queen argument. it doesnt matter how willing she is. she's the queen, it's her life duty to do this for no less than her entire life
[2024-08-29 03:22:52] <armagetron-bridge> 07discord:syn_acc| yeah but its the queen argument. it doesnt matter how willing she is. she's the queen, it's her life duty to do this for no less than her entire life
[2024-08-29 03:22:53] <armagetron-bridge> 08discord:delinquent| old man moment
[2024-08-29 03:22:53] <armagetronbridge> 08discord:delinquent| old man moment
[2024-08-29 03:23:04] <armagetronbridge> 07discord:syn_acc| the closer you get to the queen the less will you are able to exert
[2024-08-29 03:23:05] <armagetron-bridge> 07discord:syn_acc| the closer you get to the queen the less will you are able to exert
[2024-08-29 03:23:15] <armagetron-bridge> 07discord:syn_acc| as you become an agent of those you serve
[2024-08-29 03:23:15] <armagetronbridge> 07discord:syn_acc| as you become an agent of those you serve
[2024-08-29 03:23:38] <armagetronbridge> 07discord:syn_acc| we thank the queen for giving her entire life to duty when she had absolutely no other choice
[2024-08-29 03:23:38] <armagetron-bridge> 07discord:syn_acc| we thank the queen for giving her entire life to duty when she had absolutely no other choice
[2024-08-29 03:23:49] <armagetron-bridge> 07discord:syn_acc| well, i guess she did, but whos gonna not be queen
[2024-08-29 03:23:49] <armagetronbridge> 07discord:syn_acc| well, i guess she did, but whos gonna not be queen
[2024-08-29 03:24:12] <armagetron-bridge> 07discord:syn_acc| like if you were my doctor id be pissed at you gardening yk
[2024-08-29 03:24:12] <armagetronbridge> 07discord:syn_acc| like if you were my doctor id be pissed at you gardening yk
[2024-08-29 03:24:20] <armagetron-bridge> 07discord:syn_acc| come fix my kidney wtf
[2024-08-29 03:24:21] <armagetronbridge> 07discord:syn_acc| come fix my kidney wtf
[2024-08-29 03:25:17] <armagetronbridge> 07discord:syn_acc| https://www.cursor.com/
[2024-08-29 03:25:17] <armagetron-bridge> 07discord:syn_acc| https://www.cursor.com/
[2024-08-29 03:25:18] <armagetronbridge> 08discord:delinquent| All psychology. Remember, only reason we have a queen is because the christians came, beat our culture out of us, imposed their will, and turned britons into slaves for three hundred years. If you're gonna break the mold, you gotta figure out how to get other people to break the mold with you. That's where the internet is good for
[2024-08-29 03:25:19] <armagetron-bridge> 08discord:delinquent| All psychology. Remember, only reason we have a queen is because the christians came, beat our culture out of us, imposed their will, and turned britons into slaves for three hundred years. If you're gonna break the mold, you gotta figure out how to get other people to break the mold with you. That's where the internet is good for
[2024-08-29 03:25:19] <armagetron-bridge> 07discord:syn_acc| new IDE day though
[2024-08-29 03:25:19] <armagetronbridge> 07discord:syn_acc| new IDE day though
[2024-08-29 03:25:24] <armagetronbridge> 08discord:delinquent| or fuck, even the classifieds
[2024-08-29 03:25:25] <armagetron-bridge> 08discord:delinquent| or fuck, even the classifieds
[2024-08-29 03:25:29] <armagetronbridge> 07discord:syn_acc| lol
[2024-08-29 03:25:29] <armagetron-bridge> 07discord:syn_acc| lol
[2024-08-29 03:25:35] <armagetronbridge> 07discord:syn_acc| the only reason we have that specific queen, maybe
[2024-08-29 03:25:35] <armagetron-bridge> 07discord:syn_acc| the only reason we have that specific queen, maybe
[2024-08-29 03:25:47] <armagetron-bridge> 07discord:syn_acc| but you cant claim to give a reason for every empire/monarchy/regime history has produced
[2024-08-29 03:25:47] <armagetronbridge> 07discord:syn_acc| but you cant claim to give a reason for every empire/monarchy/regime history has produced
[2024-08-29 03:26:04] <armagetron-bridge> 07discord:syn_acc| it's not obvious at all as to why sargon of akaad decided to start empire
[2024-08-29 03:26:04] <armagetronbridge> 07discord:syn_acc| it's not obvious at all as to why sargon of akaad decided to start empire
[2024-08-29 03:26:49] <armagetronbridge> 07discord:syn_acc| and we're not claiming elizabeth II was involved in any beating of ancient britons
[2024-08-29 03:26:49] <armagetron-bridge> 07discord:syn_acc| and we're not claiming elizabeth II was involved in any beating of ancient britons
[2024-08-29 03:27:18] <armagetronbridge> 07discord:syn_acc| as someone that represents a lot of danish DNA the woes of the britons are mostly lost on me
[2024-08-29 03:27:19] <armagetron-bridge> 07discord:syn_acc| as someone that represents a lot of danish DNA the woes of the britons are mostly lost on me
[2024-08-29 03:27:23] <armagetronbridge> 08discord:delinquent| We kicked out more than a few kings and whatnot before we had the idea of a stable "christian empire". The Scots kept to family units. There's more than one approach to society innit. My point is, people are a collective, but that collective isn't *exclusive*
[2024-08-29 03:27:23] <armagetron-bridge> 08discord:delinquent| We kicked out more than a few kings and whatnot before we had the idea of a stable "christian empire". The Scots kept to family units. There's more than one approach to society innit. My point is, people are a collective, but that collective isn't *exclusive*
[2024-08-29 03:28:01] <armagetronbridge> 07discord:syn_acc| for sure but im just talking of the specific abilities of the leader, and how through demonstration of those abilities they become more and more desired until they become mandated
[2024-08-29 03:28:01] <armagetron-bridge> 07discord:syn_acc| for sure but im just talking of the specific abilities of the leader, and how through demonstration of those abilities they become more and more desired until they become mandated
[2024-08-29 03:28:02] <armagetron-bridge> 08discord:delinquent| hm. I'm a mongrel of alemanic, british, dutch, and a bunch of other dnas. Doesn't really matter, what matters is the here and hte now
[2024-08-29 03:28:03] <armagetronbridge> 08discord:delinquent| hm. I'm a mongrel of alemanic, british, dutch, and a bunch of other dnas. Doesn't really matter, what matters is the here and hte now
[2024-08-29 03:28:26] <armagetron-bridge> 07discord:syn_acc| and then the abilities they once promised to moderate are now in use constantly. no grass to be found
[2024-08-29 03:28:26] <armagetronbridge> 07discord:syn_acc| and then the abilities they once promised to moderate are now in use constantly. no grass to be found
[2024-08-29 03:28:54] <armagetronbridge> 08discord:delinquent| Hey, you just described corporate growth! :D
[2024-08-29 03:28:54] <armagetron-bridge> 08discord:delinquent| Hey, you just described corporate growth! :D
[2024-08-29 03:29:10] <armagetronbridge> 07discord:syn_acc| and im not even saying its a bad thing. theres something sad about the lost potential
[2024-08-29 03:29:11] <armagetron-bridge> 07discord:syn_acc| and im not even saying its a bad thing. theres something sad about the lost potential
[2024-08-29 03:29:22] <armagetron-bridge> 07discord:syn_acc| but theres something nostalgically beautiful about duty
[2024-08-29 03:29:22] <armagetronbridge> 07discord:syn_acc| but theres something nostalgically beautiful about duty
[2024-08-29 03:29:28] <armagetronbridge> 07discord:syn_acc| i dont want to do this but i must etc
[2024-08-29 03:29:28] <armagetron-bridge> 07discord:syn_acc| i dont want to do this but i must etc
[2024-08-29 03:29:55] <armagetron-bridge> 08discord:delinquent| hence my cherry picking. Move slowly, speak softly, live well
[2024-08-29 03:29:56] <armagetronbridge> 08discord:delinquent| hence my cherry picking. Move slowly, speak softly, live well
[2024-08-29 03:30:11] <armagetronbridge> 08discord:delinquent| anyway, gott arun, cat is at the hospital
[2024-08-29 03:30:11] <armagetron-bridge> 08discord:delinquent| anyway, gott arun, cat is at the hospital
[2024-08-29 03:30:17] <armagetronbridge> 07discord:syn_acc| id kinda of like the ability to toggle processing power/memory for my brain though
[2024-08-29 03:30:17] <armagetron-bridge> 07discord:syn_acc| id kinda of like the ability to toggle processing power/memory for my brain though
[2024-08-29 03:30:20] <armagetron-bridge> 07discord:syn_acc| sounds like it would come in handy
[2024-08-29 03:30:20] <armagetronbridge> 07discord:syn_acc| sounds like it would come in handy
[2024-08-29 03:30:21] <armagetron-bridge> 07discord:syn_acc| take care
[2024-08-29 03:30:21] <armagetronbridge> 07discord:syn_acc| take care
[2024-08-29 04:32:32] <Lucifer_arma> it's called meditation, it's how you clear your mind of all the useless clutter
[2024-08-29 04:32:32] <armagetronbridge> 10irc:Lucifer_arma| it's called meditation, it's how you clear your mind of all the useless clutter
[2024-08-29 04:32:44] <Lucifer_arma> also, in terms of body mods, I'll take boobs over any brain mod
[2024-08-29 04:32:44] <armagetronbridge> 10irc:Lucifer_arma| also, in terms of body mods, I'll take boobs over any brain mod
[2024-08-29 04:33:15] <Lucifer_arma> one thing I love about Star Trek, it tells me that women have boobs. Even reptilian women, cardassians, whatever. Stargate does it too.
[2024-08-29 04:33:15] <armagetronbridge> 10irc:Lucifer_arma| one thing I love about Star Trek, it tells me that women have boobs. Even reptilian women, cardassians, whatever. Stargate does it too.
[2024-08-29 04:33:57] <Lucifer_arma> I get the cheap storytelling mechanism where you tell someone a character is female with boobs, and then people wonder why the first thing trans women do is get boobs
[2024-08-29 04:33:57] <armagetronbridge> 10irc:Lucifer_arma| I get the cheap storytelling mechanism where you tell someone a character is female with boobs, and then people wonder why the first thing trans women do is get boobs
[2024-08-29 04:34:03] <Lucifer_arma> I think it's obvious
[2024-08-29 04:34:03] <armagetronbridge> 10irc:Lucifer_arma| I think it's obvious
[2024-08-29 04:34:44] <Lucifer_arma> but yeah, it's really awesome that the OG TRON music lady was trans. That somehow fits perfectly
[2024-08-29 04:34:44] <armagetronbridge> 10irc:Lucifer_arma| but yeah, it's really awesome that the OG TRON music lady was trans. That somehow fits perfectly
[2024-08-29 04:35:30] <Lucifer_arma> side note, a long time ago, I was playing with my guitar, and I stumbled across a TRON melody by tapping in a way that eddie van halen never did
[2024-08-29 04:35:30] <armagetronbridge> 10irc:Lucifer_arma| side note, a long time ago, I was playing with my guitar, and I stumbled across a TRON melody by tapping in a way that eddie van halen never did
[2024-08-29 04:35:32] <Lucifer_arma> fucking poser
[2024-08-29 04:35:32] <armagetronbridge> 10irc:Lucifer_arma| fucking poser
[2024-08-29 04:35:50] <Lucifer_arma> I can make TRON-like music on an electric guitar, is what I'm saying
[2024-08-29 04:35:51] <armagetronbridge> 10irc:Lucifer_arma| I can make TRON-like music on an electric guitar, is what I'm saying
[2024-08-29 05:06:12] <-- Lucifer_arma has quit (Read error: Connection reset by peer)
[2024-08-29 09:00:49] <-- monr0e has quit (Remote host closed the connection)
[2024-08-29 13:13:05] <armagetron-bridge> 07discord:Nanu| i've been using this for a bit, seems ok. Keeps making stuff up though and the tab completion doesn't work usually
[2024-08-29 13:13:05] <armagetronbridge> 07discord:Nanu| i've been using this for a bit, seems ok. Keeps making stuff up though and the tab completion doesn't work usually
[2024-08-29 13:13:35] <armagetronbridge> 15discord:Nélg| ai garbage
[2024-08-29 13:13:35] <armagetron-bridge> 15discord:Nélg| ai garbage
[2024-08-29 13:13:43] <armagetron-bridge> 15discord:Nélg| ai shovelware
[2024-08-29 13:13:43] <armagetronbridge> 15discord:Nélg| ai shovelware
[2024-08-29 13:39:28] <armagetron-bridge> 07discord:syn_acc| luddite nelg
[2024-08-29 13:39:29] <armagetronbridge> 07discord:syn_acc| luddite nelg
[2024-08-29 13:39:34] <armagetronbridge> 07discord:syn_acc| php nelg
[2024-08-29 13:39:34] <armagetron-bridge> 07discord:syn_acc| php nelg
[2024-08-29 13:39:43] <armagetronbridge> 07discord:syn_acc| LAMP lover nelg
[2024-08-29 13:39:44] <armagetron-bridge> 07discord:syn_acc| LAMP lover nelg
[2024-08-29 13:40:09] <armagetron-bridge> 07discord:syn_acc| i switched today and having a great time
[2024-08-29 13:40:09] <armagetronbridge> 07discord:syn_acc| i switched today and having a great time
[2024-08-29 13:40:17] <armagetron-bridge> 07discord:syn_acc| i used vscode with github copilot for a long time
[2024-08-29 13:40:17] <armagetronbridge> 07discord:syn_acc| i used vscode with github copilot for a long time
[2024-08-29 13:40:20] <armagetron-bridge> 07discord:syn_acc| codebase chat is huge
[2024-08-29 13:40:20] <armagetronbridge> 07discord:syn_acc| codebase chat is huge
[2024-08-29 14:01:26] --> Sauss-Ente has joined the channel
[2024-08-29 14:35:43] --> monr0e has joined the channel
[2024-08-29 15:07:22] --> Ente has joined the channel
[2024-08-29 15:07:22] <-- Sauss-Ente has quit (Read error: Connection reset by peer)
[2024-08-29 15:58:04] <-- Ente has quit (Quit: Leaving)
[2024-08-29 16:47:26] <armagetron-bridge> 05discord:juesto| oh wow
[2024-08-29 16:47:26] <armagetronbridge> 05discord:juesto| oh wow
[2024-08-29 16:47:39] <armagetron-bridge> 05discord:juesto| neat stuff @northernscrub :D so many TILs
[2024-08-29 16:47:39] <armagetronbridge> 05discord:juesto| neat stuff @northernscrub :D so many TILs
[2024-08-29 17:45:47] <-- monr0e has quit (Remote host closed the connection)
[2024-08-29 19:55:39] --> monr0e has joined the channel
[2024-08-29 20:52:14] --> Lucifer_arma has joined the channel
[2024-08-29 22:48:04] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-30 00:00:00 to 2024-08-30 23:59:59.999999.
Query completed in 0.57 seconds
[2024-08-30 00:22:08] <-- Lucifer_arma has quit (Read error: Connection reset by peer)
[2024-08-30 03:21:30] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| neat that explorerpatcher has a console to shower explorer events
[2024-08-30 03:21:30] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| neat that explorerpatcher has a console to shower explorer events
[2024-08-30 03:21:50] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| anyone know a way to intergrate it into terminal tho?
[2024-08-30 03:21:50] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| anyone know a way to intergrate it into terminal tho?
[2024-08-30 03:21:52] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1278977977924714648/image.png?ex=66d2c490&is=66d17310&hm=0246cb53f7f7fe1877b1032a4937cdbec99cbbc8469b19686db26207838a59bc&
[2024-08-30 03:21:52] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1278977977924714648/image.png?ex=66d2c490&is=66d17310&hm=0246cb53f7f7fe1877b1032a4937cdbec99cbbc8469b19686db26207838a59bc&
[2024-08-30 06:53:29] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279031230758654022/20240830-1051-15.9304178.mp4?ex=66d2f628&is=66d1a4a8&hm=65accf42e6aa5c2af5252db8af447d2ebdfdccbf4026a2e01a9edef930bd2662&
[2024-08-30 06:53:29] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279031230758654022/20240830-1051-15.9304178.mp4?ex=66d2f628&is=66d1a4a8&hm=65accf42e6aa5c2af5252db8af447d2ebdfdccbf4026a2e01a9edef930bd2662&
[2024-08-30 07:21:40] --> monr0e has joined the channel
[2024-08-30 09:38:28] <armagetronbridge> 07discord:syn_acc| this is sick @duckyonquack.999
[2024-08-30 09:38:28] <armagetron-bridge> 07discord:syn_acc| this is sick @duckyonquack.999
[2024-08-30 09:38:35] <armagetron-bridge> 07discord:syn_acc| reminds me of ohmyzsh for macos
[2024-08-30 09:38:35] <armagetronbridge> 07discord:syn_acc| reminds me of ohmyzsh for macos
[2024-08-30 09:38:44] <armagetron-bridge> 07discord:syn_acc| my mac terminal looks infinitely cooler than my windows one
[2024-08-30 09:38:44] <armagetronbridge> 07discord:syn_acc| my mac terminal looks infinitely cooler than my windows one
[2024-08-30 09:38:49] <armagetron-bridge> 07discord:syn_acc| i use https://warp.dev
[2024-08-30 09:38:50] <armagetronbridge> 07discord:syn_acc| i use https://warp.dev
[2024-08-30 11:05:00] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| Thanks ๐ I been putting alot of time into my windows 11 rice I’m almost to the point of idk what else I can customize I guess maybe work on a top bar and maybe a dock also a tiling management is proably also next
[2024-08-30 11:05:00] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| Thanks ๐ I been putting alot of time into my windows 11 rice I’m almost to the point of idk what else I can customize I guess maybe work on a top bar and maybe a dock also a tiling management is proably also next
[2024-08-30 11:05:41] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094698673180814/image.png?ex=66d33144&is=66d1dfc4&hm=cfe887b273ecc391deb414357753fc2e2165638bb2ab7cea1406d34788634ca8&
[2024-08-30 11:05:41] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094698673180814/image.png?ex=66d33144&is=66d1dfc4&hm=cfe887b273ecc391deb414357753fc2e2165638bb2ab7cea1406d34788634ca8&
[2024-08-30 11:05:42] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094699134550097/image.png?ex=66d33144&is=66d1dfc4&hm=638a90033d1345c6fbfb552186c89bda13a4aa9fd661540f6dc602b799bfab28&
[2024-08-30 11:05:42] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094699134550097/image.png?ex=66d33144&is=66d1dfc4&hm=638a90033d1345c6fbfb552186c89bda13a4aa9fd661540f6dc602b799bfab28&
[2024-08-30 11:05:43] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094699528818851/image.png?ex=66d33144&is=66d1dfc4&hm=4b3e6bda44bee5674bb628591771274116c1f375859aec482e9b807d07796735&
[2024-08-30 11:05:43] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094699528818851/image.png?ex=66d33144&is=66d1dfc4&hm=4b3e6bda44bee5674bb628591771274116c1f375859aec482e9b807d07796735&
[2024-08-30 11:05:44] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094699952574565/image.png?ex=66d33144&is=66d1dfc4&hm=034775e3686a051e98df46d1cb02071830280bbec239e0436dd70416476d70ae&
[2024-08-30 11:05:44] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| https://cdn.discordapp.com/attachments/209759416604426242/1279094699952574565/image.png?ex=66d33144&is=66d1dfc4&hm=034775e3686a051e98df46d1cb02071830280bbec239e0436dd70416476d70ae&
[2024-08-30 11:06:36] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| The theme name I came up with is WinXGlass
[2024-08-30 11:06:36] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| The theme name I came up with is WinXGlass
[2024-08-30 11:08:47] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| The goal is to turn all the old windows interfaces that stay white when dark mode is enabled without using startallback just msstyles
[2024-08-30 11:08:47] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| The goal is to turn all the old windows interfaces that stay white when dark mode is enabled without using startallback just msstyles
[2024-08-30 11:09:32] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| And to bring back the glass/aero effect but an improved version in my opinion.
[2024-08-30 11:09:33] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| And to bring back the glass/aero effect but an improved version in my opinion.
[2024-08-30 11:10:11] <armagetron-bridge> 12discord:Rx.Luigi (Best LDF Player Ever)| It also effects most third party applications aswell
[2024-08-30 11:10:11] <armagetronbridge> 12discord:Rx.Luigi (Best LDF Player Ever)| It also effects most third party applications aswell
[2024-08-30 11:28:45] <armagetron-bridge> 14discord:gio_240611| someone donate $2 i dont have enough for a cart
[2024-08-30 11:28:45] <armagetronbridge> 14discord:gio_240611| someone donate $2 i dont have enough for a cart
[2024-08-30 11:28:55] <armagetronbridge> 08discord:delinquent| whut
[2024-08-30 11:28:55] <armagetron-bridge> 08discord:delinquent| whut
[2024-08-30 11:29:02] <armagetronbridge> 14discord:gio_240611| yes pls
[2024-08-30 11:29:02] <armagetron-bridge> 14discord:gio_240611| yes pls
[2024-08-30 11:29:20] <armagetron-bridge> 08discord:delinquent| imagine hitting up a rando discord that you're not active in for money
[2024-08-30 11:29:20] <armagetronbridge> 08discord:delinquent| imagine hitting up a rando discord that you're not active in for money
[2024-08-30 11:30:02] <armagetron-bridge> 07discord:syn_acc| i mean at least the username is honest
[2024-08-30 11:30:02] <armagetronbridge> 07discord:syn_acc| i mean at least the username is honest
[2024-08-30 11:30:10] <armagetronbridge> 08discord:delinquent| lol
[2024-08-30 11:30:11] <armagetron-bridge> 08discord:delinquent| lol
[2024-08-30 11:30:18] <armagetron-bridge> 07discord:syn_acc| what even is a cart
[2024-08-30 11:30:18] <armagetronbridge> 07discord:syn_acc| what even is a cart
[2024-08-30 11:30:28] <armagetron-bridge> 08discord:delinquent| I think its a csgo thing
[2024-08-30 11:30:28] <armagetronbridge> 08discord:delinquent| I think its a csgo thing
[2024-08-30 11:30:31] <armagetron-bridge> 08discord:delinquent| or maybe fornite
[2024-08-30 11:30:31] <armagetronbridge> 08discord:delinquent| or maybe fornite
[2024-08-30 11:30:34] <armagetron-bridge> 08discord:delinquent| whatever the kids are playing now
[2024-08-30 11:30:34] <armagetronbridge> 08discord:delinquent| whatever the kids are playing now
[2024-08-30 11:30:46] <armagetronbridge> 07discord:syn_acc| mmm i thought they called them boxes in csgo
[2024-08-30 11:30:47] <armagetron-bridge> 07discord:syn_acc| mmm i thought they called them boxes in csgo
[2024-08-30 11:30:48] <armagetronbridge> 07discord:syn_acc| maybe tho
[2024-08-30 11:30:48] <armagetron-bridge> 07discord:syn_acc| maybe tho
[2024-08-30 11:31:02] <armagetronbridge> 08discord:delinquent| no idea, I haven't played counter strike since we all had that portable one in school
[2024-08-30 11:31:02] <armagetron-bridge> 08discord:delinquent| no idea, I haven't played counter strike since we all had that portable one in school
[2024-08-30 11:42:16] <armagetronbridge> 14discord:Grimm| carts is what the thc vapes are called
[2024-08-30 11:42:16] <armagetron-bridge> 14discord:Grimm| carts is what the thc vapes are called
[2024-08-30 11:42:22] <armagetron-bridge> 14discord:Grimm| well what they call em
[2024-08-30 11:42:23] <armagetronbridge> 14discord:Grimm| well what they call em
[2024-08-30 11:45:12] <armagetronbridge> 14discord:Grimm| short way of saying cartridge
[2024-08-30 11:45:12] <armagetron-bridge> 14discord:Grimm| short way of saying cartridge
[2024-08-30 11:52:26] <armagetronbridge> 14discord:Grimm| i could have respected ill play for 2 dollars in a 1v1 lol that would have been more of the username
[2024-08-30 11:52:26] <armagetron-bridge> 14discord:Grimm| i could have respected ill play for 2 dollars in a 1v1 lol that would have been more of the username
[2024-08-30 11:58:05] <armagetronbridge> 14discord:Grimm| well unfortunately i cant 1v1 people for 2 bucks at a time .. so i gotta go to work yall have good one lol
[2024-08-30 11:58:05] <armagetron-bridge> 14discord:Grimm| well unfortunately i cant 1v1 people for 2 bucks at a time .. so i gotta go to work yall have good one lol
[2024-08-30 12:33:53] <armagetronbridge> 14discord:Grimm| Even if I did would of just lost 20 to the batmoo lol
[2024-08-30 12:33:53] <armagetron-bridge> 14discord:Grimm| Even if I did would of just lost 20 to the batmoo lol
[2024-08-30 14:08:43] <armagetron-bridge> 05discord:juesto| ¯\_(ใ)_/¯
[2024-08-30 14:08:43] <armagetronbridge> 05discord:juesto| ¯\_(ใ)_/¯
[2024-08-30 14:39:16] <armagetron-bridge> 08discord:delinquent| I am *not* giving osmeone money to buy a disposable piece of flotsam lmao. Fuck built-in batteries
[2024-08-30 14:39:16] <armagetronbridge> 08discord:delinquent| I am *not* giving osmeone money to buy a disposable piece of flotsam lmao. Fuck built-in batteries
[2024-08-30 16:23:14] <armagetron-bridge> 06discord:btwfleexyy| hello i just found this game and i want to do a 1v1 against my friend how do i set up a server why is it so complicated?
[2024-08-30 16:23:14] <armagetronbridge> 06discord:btwfleexyy| hello i just found this game and i want to do a 1v1 against my friend how do i set up a server why is it so complicated?
[2024-08-30 16:46:53] <armagetron-bridge> 08discord:delinquent| Hey! So, part of setting up your own server at home is learning how to administer your own home network, which is something of a lost art because most games offer online play as a centralised feature these days. So do we, but if you want your own server at home you'll need to do a couple of things.
[2024-08-30 16:46:53] <armagetronbridge> 08discord:delinquent| Hey! So, part of setting up your own server at home is learning how to administer your own home network, which is something of a lost art because most games offer online play as a centralised feature these days. So do we, but if you want your own server at home you'll need to do a couple of things.
[2024-08-30 16:46:54] <armagetron-bridge> 08discord:delinquent| The first thing is to establish whether or nto you have a *static* or *dynamic* IP address. If you're an average home internet user, it's *probably* dynamic, as the vast majority of ISPs use this approach. It doesn't affect anything particularly, it just means that you need to tell your friend your IP every time you set up the server. A static IP doesn't change - but again, its *probably* dynamic.
[2024-08-30 16:46:54] <armagetronbridge> 08discord:delinquent| The first thing is to establish whether or nto you have a *static* or *dynamic* IP address. If you're an average home internet user, it's *probably* dynamic, as the vast majority of ISPs use this approach. It doesn't affect anything particularly, it just means that you need to tell your friend your IP every time you set up the server. A static IP doesn't change - but again, its *probably* dynamic.
[2024-08-30 16:48:07] <armagetron-bridge> 08discord:delinquent| Next, you need to learn how to port forward - this is easier, as there's a dedicated guide and how-to on the internet. See https://portforward.com/ - but DON'T use their software to do it, because UPNP is and always will be shit. Follow the manual instructions for your router to expose port `4534` from your computer to the internet.
[2024-08-30 16:48:07] <armagetronbridge> 08discord:delinquent| Next, you need to learn how to port forward - this is easier, as there's a dedicated guide and how-to on the internet. See https://portforward.com/ - but DON'T use their software to do it, because UPNP is and always will be shit. Follow the manual instructions for your router to expose port `4534` from your computer to the internet.
[2024-08-30 16:49:30] <armagetronbridge> 08discord:delinquent| Finally, you need to choose how you want your server to work. You can either use the game itself - it contains a full server instance within itself - or you can choose to download the dedicated server package from https://download.armagetronad.org/blog/2024/03/17/build-stable-0.2.9.2.3/ (under `Game Server Downloads`)
[2024-08-30 16:49:30] <armagetron-bridge> 08discord:delinquent| Finally, you need to choose how you want your server to work. You can either use the game itself - it contains a full server instance within itself - or you can choose to download the dedicated server package from https://download.armagetronad.org/blog/2024/03/17/build-stable-0.2.9.2.3/ (under `Game Server Downloads`)
[2024-08-30 16:50:15] <armagetronbridge> 08discord:delinquent| If you want to sue a dedicated server, there are lots of approaches on actually configuring a server here: https://wiki.armagetronad.org/index.php?title=Setting_Up_Multiple_Armagetron_Servers_the_Easy_Way
[2024-08-30 16:50:16] <armagetron-bridge> 08discord:delinquent| If you want to sue a dedicated server, there are lots of approaches on actually configuring a server here: https://wiki.armagetronad.org/index.php?title=Setting_Up_Multiple_Armagetron_Servers_the_Easy_Way
[2024-08-30 16:51:49] <armagetron-bridge> 08discord:delinquent| Once that's out of the way, now you want to look at maps and game settings. There's a (non-exhaustive) list of configuration settings here: https://wiki.armagetronad.org/index.php/Console_Commands
[2024-08-30 16:51:49] <armagetronbridge> 08discord:delinquent| Once that's out of the way, now you want to look at maps and game settings. There's a (non-exhaustive) list of configuration settings here: https://wiki.armagetronad.org/index.php/Console_Commands
[2024-08-30 16:51:49] <armagetronbridge> 08discord:delinquent| But there are also *multiple* ways to configure a map. Have a look at the structure of configuration files on the armagetron resource and play around a bit - who knows, you might create a new game mode that is vastly popular!
[2024-08-30 16:51:50] <armagetron-bridge> 08discord:delinquent| But there are also *multiple* ways to configure a map. Have a look at the structure of configuration files on the armagetron resource and play around a bit - who knows, you might create a new game mode that is vastly popular!
[2024-08-30 16:51:50] <armagetronbridge> 08discord:delinquent| http://resource.armagetronad.net/resource/
[2024-08-30 16:51:52] <armagetron-bridge> 08discord:delinquent| http://resource.armagetronad.net/resource/
[2024-08-30 17:19:50] <armagetronbridge> 05discord:juesto| which are the default resources?
[2024-08-30 17:19:50] <armagetron-bridge> 05discord:juesto| which are the default resources?
[2024-08-30 17:20:00] <armagetron-bridge> 05discord:juesto| or vanilla/stock
[2024-08-30 17:20:00] <armagetronbridge> 05discord:juesto| or vanilla/stock
[2024-08-30 17:22:45] <armagetronbridge> 12discord:zman_0| Star Trek Reminder: Tomorrow is the day to (re)watch Season 3, Episode 11.
[2024-08-30 17:22:45] <armagetron-bridge> 12discord:zman_0| Star Trek Reminder: Tomorrow is the day to (re)watch Season 3, Episode 11.
[2024-08-30 17:23:26] <armagetron-bridge> 12discord:zman_0| Err, of DS9, of course.
[2024-08-30 17:23:27] <armagetronbridge> 12discord:zman_0| Err, of DS9, of course.
[2024-08-30 17:29:24] <armagetron-bridge> 08discord:delinquent| Is that the one with sisko doing the time travel trope?
[2024-08-30 17:29:25] <armagetronbridge> 08discord:delinquent| Is that the one with sisko doing the time travel trope?
[2024-08-30 17:29:44] <armagetron-bridge> 12discord:zman_0| one of them, yes.
[2024-08-30 17:29:44] <armagetronbridge> 12discord:zman_0| one of them, yes.
[2024-08-30 18:41:58] <armagetronbridge> 08discord:delinquent| https://www.anandtech.com/show/21542/end-of-the-road-an-anandtech-farewell
[2024-08-30 18:41:59] <armagetron-bridge> 08discord:delinquent| https://www.anandtech.com/show/21542/end-of-the-road-an-anandtech-farewell
[2024-08-30 18:42:03] <armagetronbridge> 08discord:delinquent| that's quite a loss ngl
[2024-08-30 18:42:04] <armagetron-bridge> 08discord:delinquent| that's quite a loss ngl
[2024-08-30 18:43:52] <armagetron-bridge> 07discord:syn_acc| it makes me kinda sad that ppl come in here like “how can i play with my friend” and they get this massive wall of text
[2024-08-30 18:43:52] <armagetronbridge> 07discord:syn_acc| it makes me kinda sad that ppl come in here like “how can i play with my friend” and they get this massive wall of text
[2024-08-30 18:44:01] <armagetronbridge> 07discord:syn_acc| it’s really not supposed to be this hard or this verbose
[2024-08-30 18:44:01] <armagetron-bridge> 07discord:syn_acc| it’s really not supposed to be this hard or this verbose
[2024-08-30 18:44:15] <armagetron-bridge> 08discord:delinquent| ye I could maybe have shortened that a bit. iunno I'm pretty shit at language
[2024-08-30 18:44:15] <armagetronbridge> 08discord:delinquent| ye I could maybe have shortened that a bit. iunno I'm pretty shit at language
[2024-08-30 18:44:23] <armagetronbridge> 07discord:syn_acc| nah nothing against your content
[2024-08-30 18:44:24] <armagetron-bridge> 07discord:syn_acc| nah nothing against your content
[2024-08-30 18:44:27] <armagetronbridge> 08discord:delinquent| *autism intensifies*
[2024-08-30 18:44:27] <armagetron-bridge> 08discord:delinquent| *autism intensifies*
[2024-08-30 18:44:30] <armagetronbridge> 08discord:delinquent| nah u rite
[2024-08-30 18:44:30] <armagetron-bridge> 08discord:delinquent| nah u rite
[2024-08-30 18:44:37] <armagetronbridge> 07discord:syn_acc| just the fact that it’s not like
[2024-08-30 18:44:37] <armagetron-bridge> 07discord:syn_acc| just the fact that it’s not like
[2024-08-30 18:44:40] <armagetron-bridge> 07discord:syn_acc| click this button
[2024-08-30 18:44:40] <armagetronbridge> 07discord:syn_acc| click this button
[2024-08-30 18:44:56] <armagetronbridge> 08discord:delinquent| I just want to convey as much information as possible. Mostly because I hate instruction sets that are alcking
[2024-08-30 18:44:56] <armagetron-bridge> 08discord:delinquent| I just want to convey as much information as possible. Mostly because I hate instruction sets that are alcking
[2024-08-30 18:45:02] <armagetronbridge> 08discord:delinquent| Ah
[2024-08-30 18:45:03] <armagetron-bridge> 08discord:delinquent| Ah
[2024-08-30 18:45:05] <armagetron-bridge> 08discord:delinquent| well, technically it is
[2024-08-30 18:45:06] <armagetronbridge> 08discord:delinquent| well, technically it is
[2024-08-30 18:45:15] <armagetronbridge> 08discord:delinquent| the problem isn't with armagetron, it's with UPNP
[2024-08-30 18:45:16] <armagetron-bridge> 08discord:delinquent| the problem isn't with armagetron, it's with UPNP
[2024-08-30 18:45:28] <armagetronbridge> 08discord:delinquent| which is forever shit
[2024-08-30 18:45:28] <armagetron-bridge> 08discord:delinquent| which is forever shit
[2024-08-30 18:45:42] <armagetronbridge> 07discord:syn_acc| ideally it’s a well thought out and concise article that can be linked to again and again
[2024-08-30 18:45:42] <armagetron-bridge> 07discord:syn_acc| ideally it’s a well thought out and concise article that can be linked to again and again
[2024-08-30 18:45:44] <armagetronbridge> 07discord:syn_acc| i guess
[2024-08-30 18:45:44] <armagetron-bridge> 07discord:syn_acc| i guess
[2024-08-30 18:45:45] <armagetronbridge> 07discord:syn_acc| idk
[2024-08-30 18:45:46] <armagetron-bridge> 07discord:syn_acc| idk
[2024-08-30 18:45:51] <armagetronbridge> 08discord:delinquent| Ye I should get on that
[2024-08-30 18:45:51] <armagetron-bridge> 08discord:delinquent| Ye I should get on that
[2024-08-30 18:45:57] <armagetron-bridge> 08discord:delinquent| not now though, this week is pretty shit
[2024-08-30 18:45:57] <armagetronbridge> 08discord:delinquent| not now though, this week is pretty shit
[2024-08-30 18:46:01] <armagetronbridge> 08discord:delinquent| I lost slug yesterday so
[2024-08-30 18:46:01] <armagetron-bridge> 08discord:delinquent| I lost slug yesterday so
[2024-08-30 18:46:08] <armagetron-bridge> 07discord:syn_acc| i hear that
[2024-08-30 18:46:08] <armagetronbridge> 07discord:syn_acc| i hear that
[2024-08-30 18:46:11] <armagetronbridge> 07discord:syn_acc| i’m sorry for your loss
[2024-08-30 18:46:12] <armagetron-bridge> 07discord:syn_acc| i’m sorry for your loss
[2024-08-30 18:46:14] <armagetronbridge> 08discord:delinquent| I'm drinking rum and trying to feel something
[2024-08-30 18:46:14] <armagetron-bridge> 08discord:delinquent| I'm drinking rum and trying to feel something
[2024-08-30 18:46:30] <armagetronbridge> 07discord:syn_acc| im up north seeing the fam
[2024-08-30 18:46:30] <armagetron-bridge> 07discord:syn_acc| im up north seeing the fam
[2024-08-30 18:46:37] <armagetronbridge> 08discord:delinquent| o
[2024-08-30 18:46:37] <armagetron-bridge> 08discord:delinquent| o
[2024-08-30 18:46:43] <armagetronbridge> 07discord:syn_acc| back int yorkshire
[2024-08-30 18:46:43] <armagetron-bridge> 07discord:syn_acc| back int yorkshire
[2024-08-30 18:46:48] <armagetronbridge> 08discord:delinquent| away from your golden tower then? :D
[2024-08-30 18:46:48] <armagetron-bridge> 08discord:delinquent| away from your golden tower then? :D
[2024-08-30 18:46:57] <armagetronbridge> 07discord:syn_acc| i miss it already ๐
[2024-08-30 18:46:58] <armagetron-bridge> 07discord:syn_acc| i miss it already ๐
[2024-08-30 18:47:06] <armagetron-bridge> 08discord:delinquent| also, most goerdies would consider Yorkshire to be the midlands fyi
[2024-08-30 18:47:06] <armagetronbridge> 08discord:delinquent| also, most goerdies would consider Yorkshire to be the midlands fyi
[2024-08-30 18:47:18] <armagetronbridge> 07discord:syn_acc| lmao
[2024-08-30 18:47:18] <armagetron-bridge> 07discord:syn_acc| lmao
[2024-08-30 18:47:28] <armagetronbridge> 08discord:delinquent| middlesbrough down innit
[2024-08-30 18:47:28] <armagetron-bridge> 08discord:delinquent| middlesbrough down innit
[2024-08-30 18:47:35] <armagetronbridge> 07discord:syn_acc| lmfao
[2024-08-30 18:47:35] <armagetron-bridge> 07discord:syn_acc| lmfao
[2024-08-30 18:48:13] <armagetronbridge> 07discord:syn_acc| i don’t even know what to say to that
[2024-08-30 18:48:13] <armagetron-bridge> 07discord:syn_acc| i don’t even know what to say to that
[2024-08-30 18:48:24] <armagetron-bridge> 08discord:delinquent| it's mostly in good humour dw
[2024-08-30 18:48:24] <armagetronbridge> 08discord:delinquent| it's mostly in good humour dw
[2024-08-30 18:48:43] <armagetronbridge> 08discord:delinquent| but middlesbrough or darlington is like, the part fo the country where the deprication becomes more apparent
[2024-08-30 18:48:43] <armagetron-bridge> 08discord:delinquent| but middlesbrough or darlington is like, the part fo the country where the deprication becomes more apparent
[2024-08-30 18:48:45] <armagetron-bridge> 07discord:syn_acc| imo north south divide is mostly about vikings
[2024-08-30 18:48:46] <armagetronbridge> 07discord:syn_acc| imo north south divide is mostly about vikings
[2024-08-30 18:48:55] <armagetronbridge> 08discord:delinquent| meh
[2024-08-30 18:48:55] <armagetron-bridge> 08discord:delinquent| meh
[2024-08-30 18:48:59] <armagetronbridge> 07discord:syn_acc| and where church becomes kirk
[2024-08-30 18:48:59] <armagetron-bridge> 07discord:syn_acc| and where church becomes kirk
[2024-08-30 18:49:11] <armagetronbridge> 07discord:syn_acc| street becomes gate
[2024-08-30 18:49:11] <armagetron-bridge> 07discord:syn_acc| street becomes gate
[2024-08-30 18:49:18] <armagetronbridge> 07discord:syn_acc| if you have a kirkgate ur in the north
[2024-08-30 18:49:19] <armagetron-bridge> 07discord:syn_acc| if you have a kirkgate ur in the north
[2024-08-30 18:49:19] <armagetronbridge> 08discord:delinquent| home becomes hyem?
[2024-08-30 18:49:19] <armagetron-bridge> 08discord:delinquent| home becomes hyem?
[2024-08-30 18:49:32] <armagetronbridge> 08discord:delinquent| haway son haha
[2024-08-30 18:49:33] <armagetron-bridge> 08discord:delinquent| haway son haha
[2024-08-30 18:49:34] <armagetron-bridge> 07discord:syn_acc| idk that one
[2024-08-30 18:49:34] <armagetronbridge> 07discord:syn_acc| idk that one
[2024-08-30 18:49:41] <armagetronbridge> 07discord:syn_acc| i was fascinated to learn
[2024-08-30 18:49:41] <armagetron-bridge> 07discord:syn_acc| i was fascinated to learn
[2024-08-30 18:49:43] <armagetronbridge> 08discord:delinquent| ye need some time up here lad
[2024-08-30 18:49:44] <armagetron-bridge> 08discord:delinquent| ye need some time up here lad
[2024-08-30 18:49:45] <armagetronbridge> 08discord:delinquent| toughen ye up
[2024-08-30 18:49:46] <armagetron-bridge> 08discord:delinquent| toughen ye up
[2024-08-30 18:49:49] <armagetronbridge> 07discord:syn_acc| a lot of yorkshire slang is just danish words
[2024-08-30 18:49:49] <armagetron-bridge> 07discord:syn_acc| a lot of yorkshire slang is just danish words
[2024-08-30 18:50:17] <armagetron-bridge> 07discord:syn_acc| toughen ye up get ye sen to yorkshire
[2024-08-30 18:50:17] <armagetronbridge> 07discord:syn_acc| toughen ye up get ye sen to yorkshire
[2024-08-30 18:50:22] <armagetronbridge> 07discord:syn_acc| grumble grumble olympics
[2024-08-30 18:50:22] <armagetron-bridge> 07discord:syn_acc| grumble grumble olympics
[2024-08-30 18:50:43] <armagetron-bridge> 08discord:delinquent| Oooh, not quite. It's actually a mixture of danish and norman *slang*, which is a fasnicating combination. Further up north you get, the more "nordic" the lanugage influence bevcomes - but you alsos tart seeing more pre-christian influence, because we resisted that slavery
[2024-08-30 18:50:43] <armagetronbridge> 08discord:delinquent| Oooh, not quite. It's actually a mixture of danish and norman *slang*, which is a fasnicating combination. Further up north you get, the more "nordic" the lanugage influence bevcomes - but you alsos tart seeing more pre-christian influence, because we resisted that slavery
[2024-08-30 18:50:48] <armagetron-bridge> 08discord:delinquent| well, to some degree
[2024-08-30 18:50:48] <armagetronbridge> 08discord:delinquent| well, to some degree
[2024-08-30 18:51:19] <armagetronbridge> 08discord:delinquent| hnestly, tyneside is such a hodgepodge of influences its fascinating
[2024-08-30 18:51:19] <armagetron-bridge> 08discord:delinquent| hnestly, tyneside is such a hodgepodge of influences its fascinating
[2024-08-30 18:51:22] <armagetronbridge> 07discord:syn_acc| bring back the danelaw tbh
[2024-08-30 18:51:23] <armagetron-bridge> 07discord:syn_acc| bring back the danelaw tbh
[2024-08-30 18:51:33] <armagetron-bridge> 07discord:syn_acc| i learnt that the word law itself
[2024-08-30 18:51:33] <armagetronbridge> 07discord:syn_acc| i learnt that the word law itself
[2024-08-30 18:51:34] <armagetronbridge> 08discord:delinquent| burn the churches fam
[2024-08-30 18:51:34] <armagetron-bridge> 08discord:delinquent| burn the churches fam
[2024-08-30 18:51:39] <armagetronbridge> 07discord:syn_acc| is one of scandinavian origins
[2024-08-30 18:51:40] <armagetron-bridge> 07discord:syn_acc| is one of scandinavian origins
[2024-08-30 18:51:52] <armagetronbridge> 08discord:delinquent| iunno about that one. Be interesting if it is
[2024-08-30 18:51:53] <armagetron-bridge> 08discord:delinquent| iunno about that one. Be interesting if it is
[2024-08-30 18:52:00] <armagetron-bridge> 07discord:syn_acc| makes sense cause latin roots are around legis
[2024-08-30 18:52:00] <armagetronbridge> 07discord:syn_acc| makes sense cause latin roots are around legis
[2024-08-30 18:52:08] <armagetron-bridge> 07discord:syn_acc| tis. google it
[2024-08-30 18:52:08] <armagetronbridge> 07discord:syn_acc| tis. google it
[2024-08-30 18:52:10] <armagetronbridge> 08discord:delinquent| oh, so the legate and legislature
[2024-08-30 18:52:10] <armagetron-bridge> 08discord:delinquent| oh, so the legate and legislature
[2024-08-30 18:52:18] <armagetronbridge> 08discord:delinquent| that would track
[2024-08-30 18:52:18] <armagetron-bridge> 08discord:delinquent| that would track
[2024-08-30 18:52:25] <armagetronbridge> 07discord:syn_acc| yep exactly
[2024-08-30 18:52:25] <armagetron-bridge> 07discord:syn_acc| yep exactly
[2024-08-30 18:52:29] <armagetron-bridge> 07discord:syn_acc| fking love etymology man
[2024-08-30 18:52:30] <armagetronbridge> 07discord:syn_acc| fking love etymology man
[2024-08-30 18:52:36] <armagetronbridge> 08discord:delinquent| oh you bet
[2024-08-30 18:52:36] <armagetron-bridge> 08discord:delinquent| oh you bet
[2024-08-30 18:52:51] <armagetron-bridge> 08discord:delinquent| the etymology of the term "man" is fascinating in and of itself
[2024-08-30 18:52:51] <armagetronbridge> 08discord:delinquent| the etymology of the term "man" is fascinating in and of itself
[2024-08-30 18:53:05] <armagetronbridge> 08discord:delinquent| the collective, the individual, the grouping, the plural
[2024-08-30 18:53:05] <armagetron-bridge> 08discord:delinquent| the collective, the individual, the grouping, the plural
[2024-08-30 18:53:22] <armagetronbridge> 08discord:delinquent| heh. For someone who is so terrible at language I have far too great an interest in it
[2024-08-30 18:53:23] <armagetron-bridge> 08discord:delinquent| heh. For someone who is so terrible at language I have far too great an interest in it
[2024-08-30 18:53:38] <armagetron-bridge> 08discord:delinquent| Although I'm told I write well. Which is why I decided to actually write the novel I was picturing
[2024-08-30 18:53:38] <armagetronbridge> 08discord:delinquent| Although I'm told I write well. Which is why I decided to actually write the novel I was picturing
[2024-08-30 18:54:06] <armagetron-bridge> 07discord:syn_acc| fascinating
[2024-08-30 18:54:06] <armagetronbridge> 07discord:syn_acc| fascinating
[2024-08-30 18:54:12] --> delinquent has joined the channel
[2024-08-30 18:54:41] <delinquent> ah fuk luci isn't here
[2024-08-30 18:54:41] <armagetronbridge> 11irc:delinquent| ah fuk luci isn't here
[2024-08-30 18:54:52] <delinquent> I was gonna brag a lil about the 15k words I hit
[2024-08-30 18:54:53] <armagetronbridge> 11irc:delinquent| I was gonna brag a lil about the 15k words I hit
[2024-08-30 18:54:54] <armagetronbridge> 07discord:syn_acc| just had to check
[2024-08-30 18:54:55] <armagetron-bridge> 07discord:syn_acc| just had to check
[2024-08-30 18:54:59] <armagetronbridge> 07discord:syn_acc| 15k is a lot
[2024-08-30 18:55:00] <armagetron-bridge> 07discord:syn_acc| 15k is a lot
[2024-08-30 18:55:32] <delinquent> kinda. I've been at this for a while in drips and drabs. I could theoretically have finished it in a few months but I imagine it would have felt rushed
[2024-08-30 18:55:33] <armagetronbridge> 11irc:delinquent| kinda. I've been at this for a while in drips and drabs. I could theoretically have finished it in a few months but I imagine it would have felt rushed
[2024-08-30 18:55:36] <armagetronbridge> 07discord:syn_acc| that’s true. i’ve never considered its multiple functions being rooted in the same word
[2024-08-30 18:55:36] <armagetron-bridge> 07discord:syn_acc| that’s true. i’ve never considered its multiple functions being rooted in the same word
[2024-08-30 18:55:42] <delinquent> as it stands I think its too on the nose, and I need to change a few naming conventions
[2024-08-30 18:55:42] <armagetronbridge> 11irc:delinquent| as it stands I think its too on the nose, and I need to change a few naming conventions
[2024-08-30 18:55:59] <-- delinquent has quit ()
[2024-08-30 18:56:39] <armagetronbridge> 08discord:delinquent| Yep. And multiple interpretations too - and it can be both gendered and ungendered, which is rare
[2024-08-30 18:56:39] <armagetron-bridge> 08discord:delinquent| Yep. And multiple interpretations too - and it can be both gendered and ungendered, which is rare
[2024-08-30 18:57:16] <armagetron-bridge> 07discord:syn_acc| i’ve started my book. i think i maybe have like 2k words max
[2024-08-30 18:57:16] <armagetronbridge> 07discord:syn_acc| i’ve started my book. i think i maybe have like 2k words max
[2024-08-30 18:57:22] <armagetron-bridge> 07discord:syn_acc| here’s to us finishing them one day soon
[2024-08-30 18:57:22] <armagetronbridge> 07discord:syn_acc| here’s to us finishing them one day soon
[2024-08-30 18:57:38] <armagetronbridge> 07discord:syn_acc| two writing programmers
[2024-08-30 18:57:39] <armagetron-bridge> 07discord:syn_acc| two writing programmers
[2024-08-30 18:57:56] <armagetronbridge> 07discord:syn_acc| something cruelly ironic about that
[2024-08-30 18:57:56] <armagetron-bridge> 07discord:syn_acc| something cruelly ironic about that
[2024-08-30 18:58:12] <armagetron-bridge> 08discord:delinquent| I'm writing a space opera that creates a universe of its own, allowing me to write *so many* other books in the same universe
[2024-08-30 18:58:12] <armagetronbridge> 08discord:delinquent| I'm writing a space opera that creates a universe of its own, allowing me to write *so many* other books in the same universe
[2024-08-30 18:58:21] <armagetronbridge> 08discord:delinquent| problem is I have troulb eiwth moving concept into lanugage
[2024-08-30 18:58:21] <armagetron-bridge> 08discord:delinquent| problem is I have troulb eiwth moving concept into lanugage
[2024-08-30 18:58:26] <armagetronbridge> 08discord:delinquent| and I think conceptually
[2024-08-30 18:58:27] <armagetron-bridge> 08discord:delinquent| and I think conceptually
[2024-08-30 18:58:45] <armagetron-bridge> 07discord:syn_acc| mine is something matrixish
[2024-08-30 18:58:45] <armagetronbridge> 07discord:syn_acc| mine is something matrixish
[2024-08-30 18:58:58] <armagetronbridge> 08discord:delinquent| although the mroe I consider it, the more I realise that sometimes I picture an entire 3d universe of the events I'm considering in my mind
[2024-08-30 18:58:58] <armagetron-bridge> 08discord:delinquent| although the mroe I consider it, the more I realise that sometimes I picture an entire 3d universe of the events I'm considering in my mind
[2024-08-30 18:59:14] <armagetron-bridge> 08discord:delinquent| almost like a tv show but more like a VR tv show
[2024-08-30 18:59:15] <armagetronbridge> 08discord:delinquent| almost like a tv show but more like a VR tv show
[2024-08-30 18:59:27] <armagetronbridge> 07discord:syn_acc| the initial scene opens with our character waking with a robotic arm and an unhappy supervisor saying “we had to replace your arm again, next time you’re going inside”
[2024-08-30 18:59:27] <armagetron-bridge> 07discord:syn_acc| the initial scene opens with our character waking with a robotic arm and an unhappy supervisor saying “we had to replace your arm again, next time you’re going inside”
[2024-08-30 18:59:41] <armagetronbridge> 08discord:delinquent| oooh
[2024-08-30 18:59:41] <armagetron-bridge> 08discord:delinquent| oooh
[2024-08-30 18:59:50] <armagetronbridge> 08discord:delinquent| very dread empire
[2024-08-30 18:59:50] <armagetron-bridge> 08discord:delinquent| very dread empire
[2024-08-30 19:00:09] <armagetron-bridge> 07discord:syn_acc| can’t really escape scifi
[2024-08-30 19:00:09] <armagetronbridge> 07discord:syn_acc| can’t really escape scifi
[2024-08-30 19:00:14] <armagetron-bridge> 08discord:delinquent| btw if you havent read it, you should read dread empire falls
[2024-08-30 19:00:14] <armagetronbridge> 08discord:delinquent| btw if you havent read it, you should read dread empire falls
[2024-08-30 19:00:19] <armagetron-bridge> 07discord:syn_acc| in a way it’s like writing philosophy
[2024-08-30 19:00:19] <armagetronbridge> 07discord:syn_acc| in a way it’s like writing philosophy
[2024-08-30 19:00:25] <armagetronbridge> 07discord:syn_acc| thank you. i’ll get it now
[2024-08-30 19:00:25] <armagetron-bridge> 07discord:syn_acc| thank you. i’ll get it now
[2024-08-30 19:00:30] <armagetronbridge> 08discord:delinquent| its *fantastic* even if you find the political and societal setting uncomfortable
[2024-08-30 19:00:31] <armagetron-bridge> 08discord:delinquent| its *fantastic* even if you find the political and societal setting uncomfortable
[2024-08-30 19:00:42] <armagetron-bridge> 08discord:delinquent| man I have SO MANY good scifi series
[2024-08-30 19:00:42] <armagetronbridge> 08discord:delinquent| man I have SO MANY good scifi series
[2024-08-30 19:00:50] <armagetron-bridge> 08discord:delinquent| have you read Niven and Pournelle?
[2024-08-30 19:00:50] <armagetronbridge> 08discord:delinquent| have you read Niven and Pournelle?
[2024-08-30 19:00:56] <armagetron-bridge> 07discord:syn_acc| i’ve binged all the epics
[2024-08-30 19:00:56] <armagetronbridge> 07discord:syn_acc| i’ve binged all the epics
[2024-08-30 19:00:59] <armagetronbridge> 07discord:syn_acc| but missing niche picks
[2024-08-30 19:01:00] <armagetron-bridge> 07discord:syn_acc| but missing niche picks
[2024-08-30 19:01:03] <armagetron-bridge> 07discord:syn_acc| no and no
[2024-08-30 19:01:03] <armagetronbridge> 07discord:syn_acc| no and no
[2024-08-30 19:01:26] <armagetron-bridge> 08discord:delinquent| I have the entire Tales from Known Space and CoDominium universes from start to finish. Fantastic reads
[2024-08-30 19:01:26] <armagetronbridge> 08discord:delinquent| I have the entire Tales from Known Space and CoDominium universes from start to finish. Fantastic reads
[2024-08-30 19:01:32] <armagetronbridge> 08discord:delinquent| oh
[2024-08-30 19:01:32] <armagetron-bridge> 08discord:delinquent| oh
[2024-08-30 19:01:34] <armagetronbridge> 08discord:delinquent| oh boyu
[2024-08-30 19:01:34] <armagetron-bridge> 08discord:delinquent| oh boyu
[2024-08-30 19:01:41] <armagetronbridge> 08discord:delinquent| they are the *classics*
[2024-08-30 19:01:41] <armagetron-bridge> 08discord:delinquent| they are the *classics*
[2024-08-30 19:02:02] <armagetron-bridge> 07discord:syn_acc| my top 5 is pretty normie
[2024-08-30 19:02:02] <armagetronbridge> 07discord:syn_acc| my top 5 is pretty normie
[2024-08-30 19:02:02] <armagetronbridge> 07discord:syn_acc| calculating god
[2024-08-30 19:02:03] <armagetron-bridge> 07discord:syn_acc| calculating god
[2024-08-30 19:02:03] <armagetronbridge> 07discord:syn_acc| slaughterhouse 5
[2024-08-30 19:02:05] <armagetron-bridge> 07discord:syn_acc| slaughterhouse 5
[2024-08-30 19:02:05] <armagetronbridge> 07discord:syn_acc| brave new world
[2024-08-30 19:02:06] <armagetron-bridge> 07discord:syn_acc| brave new world
[2024-08-30 19:02:06] <armagetronbridge> 07discord:syn_acc| do androids dream of electric sheep
[2024-08-30 19:02:07] <armagetron-bridge> 07discord:syn_acc| do androids dream of electric sheep
[2024-08-30 19:02:07] <armagetronbridge> 07discord:syn_acc| fahrenheit 451
[2024-08-30 19:02:09] <armagetron-bridge> 07discord:syn_acc| fahrenheit 451
[2024-08-30 19:02:12] <armagetron-bridge> 08discord:delinquent| https://booksreadingorder.com/larry-niven/
[2024-08-30 19:02:12] <armagetronbridge> 08discord:delinquent| https://booksreadingorder.com/larry-niven/
[2024-08-30 19:02:12] <armagetron-bridge> 08discord:delinquent| https://www.bookseriesinorder.com/jerry-pournelle/
[2024-08-30 19:02:13] <armagetronbridge> 08discord:delinquent| https://www.bookseriesinorder.com/jerry-pournelle/
[2024-08-30 19:02:32] <armagetronbridge> 08discord:delinquent| Honestly, King David's Spaceship is fantastic in its own rite
[2024-08-30 19:02:32] <armagetron-bridge> 08discord:delinquent| Honestly, King David's Spaceship is fantastic in its own rite
[2024-08-30 19:02:41] <armagetronbridge> 07discord:syn_acc| cool title
[2024-08-30 19:02:41] <armagetron-bridge> 07discord:syn_acc| cool title
[2024-08-30 19:02:54] <armagetron-bridge> 07discord:syn_acc| if referring to the solomon david
[2024-08-30 19:02:54] <armagetronbridge> 07discord:syn_acc| if referring to the solomon david
[2024-08-30 19:03:11] <armagetron-bridge> 07discord:syn_acc| will check them out regardless
[2024-08-30 19:03:11] <armagetronbridge> 07discord:syn_acc| will check them out regardless
[2024-08-30 19:03:15] <armagetron-bridge> 07discord:syn_acc| always looking for new books
[2024-08-30 19:03:15] <armagetronbridge> 07discord:syn_acc| always looking for new books
[2024-08-30 19:03:38] <armagetron-bridge> 07discord:syn_acc| i’m reading nietzsche right now and its inspiring but so esoteric
[2024-08-30 19:03:38] <armagetronbridge> 07discord:syn_acc| i’m reading nietzsche right now and its inspiring but so esoteric
[2024-08-30 19:03:48] <armagetron-bridge> 08discord:delinquent| actually scratch that last link for Purnelle
[2024-08-30 19:03:48] <armagetronbridge> 08discord:delinquent| actually scratch that last link for Purnelle
[2024-08-30 19:03:49] <armagetron-bridge> 08discord:delinquent| http://www.chronology.org/noframes/pournelle/reading.html#falkenberg
[2024-08-30 19:03:49] <armagetronbridge> 08discord:delinquent| http://www.chronology.org/noframes/pournelle/reading.html#falkenberg
[2024-08-30 19:04:11] <armagetronbridge> 08discord:delinquent| teh war world series is fantastic
[2024-08-30 19:04:11] <armagetron-bridge> 08discord:delinquent| teh war world series is fantastic
[2024-08-30 19:04:28] <armagetronbridge> 08discord:delinquent| basically, space nazis with genetic engineering
[2024-08-30 19:04:28] <armagetron-bridge> 08discord:delinquent| basically, space nazis with genetic engineering
[2024-08-30 19:04:51] <armagetronbridge> 08discord:delinquent| teh only exception to those books is *outies*
[2024-08-30 19:04:51] <armagetron-bridge> 08discord:delinquent| teh only exception to those books is *outies*
[2024-08-30 19:05:08] <armagetronbridge> 07discord:syn_acc| i love this format of chronological logging of the stories
[2024-08-30 19:05:10] <armagetron-bridge> 07discord:syn_acc| i love this format of chronological logging of the stories
[2024-08-30 19:05:13] <armagetron-bridge> 08discord:delinquent| it was written by Niven's daughter or granddaughter or smth. Valiant effort but kinda... ye
[2024-08-30 19:05:13] <armagetronbridge> 08discord:delinquent| it was written by Niven's daughter or granddaughter or smth. Valiant effort but kinda... ye
[2024-08-30 19:05:24] <armagetron-bridge> 08discord:delinquent| there's a chapter form teh perspective of a horse. In a hard scifi series
[2024-08-30 19:05:24] <armagetronbridge> 08discord:delinquent| there's a chapter form teh perspective of a horse. In a hard scifi series
[2024-08-30 19:05:32] <armagetronbridge> 07discord:syn_acc| even in the tiny bit of writing i’m doing i can see how tempting it is to just start in the middle to grab attention
[2024-08-30 19:05:32] <armagetron-bridge> 07discord:syn_acc| even in the tiny bit of writing i’m doing i can see how tempting it is to just start in the middle to grab attention
[2024-08-30 19:06:22] <armagetron-bridge> 08discord:delinquent| You can do that easy in a tease intro. I considered doing that for starfall but it didn't quite gel given a lot of info is hidden form the reader
[2024-08-30 19:06:22] <armagetronbridge> 08discord:delinquent| You can do that easy in a tease intro. I considered doing that for starfall but it didn't quite gel given a lot of info is hidden form the reader
[2024-08-30 19:06:37] <armagetron-bridge> 07discord:syn_acc| ok i gotta sleep up early tomorrow
[2024-08-30 19:06:37] <armagetronbridge> 07discord:syn_acc| ok i gotta sleep up early tomorrow
[2024-08-30 19:06:44] <armagetronbridge> 08discord:delinquent| btu if you can cook up soomtehing that doesnt give shit away, ye
[2024-08-30 19:06:45] <armagetron-bridge> 08discord:delinquent| btu if you can cook up soomtehing that doesnt give shit away, ye
[2024-08-30 19:06:45] <armagetron-bridge> 07discord:syn_acc| be good to yourself dude
[2024-08-30 19:06:46] <armagetronbridge> 07discord:syn_acc| be good to yourself dude
[2024-08-30 19:06:51] <armagetronbridge> 07discord:syn_acc| take it easy
[2024-08-30 19:06:52] <armagetron-bridge> 07discord:syn_acc| take it easy
[2024-08-30 19:07:05] <armagetronbridge> 08discord:delinquent| gn
[2024-08-30 19:07:06] <armagetron-bridge> 08discord:delinquent| gn
[2024-08-30 20:55:12] <armagetron-bridge> 08discord:delinquent| <@269154263639392257> in case you missed it, here is my response to you: https://discord.com/channels/209759416604426242/209759416604426242/1279180566578856037
[2024-08-30 20:55:12] <armagetronbridge> 08discord:delinquent| <@269154263639392257> in case you missed it, here is my response to you: https://discord.com/channels/209759416604426242/209759416604426242/1279180566578856037
[2024-08-30 20:55:58] <armagetronbridge> 08discord:delinquent| We can also answer any further questions in #misc or #server-stuff , the latter you get perms for if you run a public server
[2024-08-30 20:55:58] <armagetron-bridge> 08discord:delinquent| We can also answer any further questions in #misc or #server-stuff , the latter you get perms for if you run a public server
[2024-08-30 20:56:19] <armagetronbridge> 15discord:Nélg| looks like that user already left the discord
[2024-08-30 20:56:19] <armagetron-bridge> 15discord:Nélg| looks like that user already left the discord
[2024-08-30 20:56:42] <armagetronbridge> 08discord:delinquent| huh. They must have literally just done so
[2024-08-30 20:56:42] <armagetron-bridge> 08discord:delinquent| huh. They must have literally just done so
[2024-08-30 20:57:15] <armagetronbridge> 08discord:delinquent| either that or discor dis so poorly built that profile updates are on-deman
[2024-08-30 20:57:15] <armagetron-bridge> 08discord:delinquent| either that or discor dis so poorly built that profile updates are on-deman
[2024-08-30 20:57:34] <armagetronbridge> 15discord:Nélg| nothing would surprise me
[2024-08-30 20:57:34] <armagetron-bridge> 15discord:Nélg| nothing would surprise me
[2024-08-30 20:58:12] <armagetronbridge> 08discord:delinquent| one day, revolt will be a good default client
[2024-08-30 20:58:12] <armagetron-bridge> 08discord:delinquent| one day, revolt will be a good default client
[2024-08-30 20:58:21] <armagetron-bridge> 08discord:delinquent| certainyl not this week though
[2024-08-30 20:58:21] <armagetronbridge> 08discord:delinquent| certainyl not this week though
[2024-08-30 20:58:35] <armagetronbridge> 08discord:delinquent| imma go pet some homeless kitties tomorrow
[2024-08-30 20:58:35] <armagetron-bridge> 08discord:delinquent| imma go pet some homeless kitties tomorrow
[2024-08-30 20:58:43] <armagetronbridge> 08discord:delinquent| and forget all about dev stuff
[2024-08-30 20:58:43] <armagetron-bridge> 08discord:delinquent| and forget all about dev stuff
[2024-08-30 23:50:02] <-- monr0e has quit (Remote host closed the connection)
Searching from 2024-08-31 00:00:00 to 2024-08-31 23:59:59.999999.
Query completed in 0.59 seconds
[2024-08-31 08:40:52] <armagetronbridge> 14discord:gio_240611| £28/£30 saving for cart mine died today donations accepted
[2024-08-31 08:40:52] <armagetron-bridge> 14discord:gio_240611| £28/£30 saving for cart mine died today donations accepted
[2024-08-31 08:50:46] <armagetronbridge> 15discord:Nélg| lol..
[2024-08-31 08:50:46] <armagetron-bridge> 15discord:Nélg| lol..
[2024-08-31 09:11:26] <armagetron-bridge> 07discord:syn_acc| what will you do for me
[2024-08-31 09:11:27] <armagetronbridge> 07discord:syn_acc| what will you do for me
[2024-08-31 11:36:30] --> monr0e has joined the channel
[2024-08-31 11:39:39] <armagetron-bridge> 08discord:delinquent| A friend of mine is a deposed Nigerian prince who needs help accessing his fortune. He needs to send the last legal document but it costs £28-£30 to do so
[2024-08-31 11:39:39] <armagetronbridge> 08discord:delinquent| A friend of mine is a deposed Nigerian prince who needs help accessing his fortune. He needs to send the last legal document but it costs £28-£30 to do so
[2024-08-31 11:59:09] --> Sauss-Ente has joined the channel
[2024-08-31 12:54:04] <armagetronbridge> 05discord:juesto| huh
[2024-08-31 12:54:04] <armagetron-bridge> 05discord:juesto| huh
[2024-08-31 16:07:29] <-- Sauss-Ente has quit (Quit: Leaving)
[2024-08-31 17:12:33] <armagetronbridge> 07discord:magi_cake| Working at a bank for a few years the amount of stories I'd hear along these lines that people actually fell for proves why these scams exist
[2024-08-31 17:12:33] <armagetron-bridge> 07discord:magi_cake| Working at a bank for a few years the amount of stories I'd hear along these lines that people actually fell for proves why these scams exist
[2024-08-31 17:14:09] <armagetronbridge> 08discord:delinquent| 319 scams deliberately target peopel who will fall for them. That's the reason why they're full of spelling and grammatical errors and such
[2024-08-31 17:14:09] <armagetron-bridge> 08discord:delinquent| 319 scams deliberately target peopel who will fall for them. That's the reason why they're full of spelling and grammatical errors and such
[2024-08-31 17:14:23] <armagetron-bridge> 07discord:magi_cake| One lady, late 60s never married no kids, was convinced that professional WWE wrestler Roman Reigns was chatting with her online and had convinced her to wire thousands of dollars so they could meet up together amd get married
[2024-08-31 17:14:23] <armagetronbridge> 07discord:magi_cake| One lady, late 60s never married no kids, was convinced that professional WWE wrestler Roman Reigns was chatting with her online and had convinced her to wire thousands of dollars so they could meet up together amd get married
[2024-08-31 17:14:32] <armagetron-bridge> 08discord:delinquent| oh law
[2024-08-31 17:14:32] <armagetronbridge> 08discord:delinquent| oh law
[2024-08-31 17:15:16] <armagetron-bridge> 08discord:delinquent| The number of people who fall for that, and hte *hello I am tom from microsoft* scams is horrifying
[2024-08-31 17:15:16] <armagetronbridge> 08discord:delinquent| The number of people who fall for that, and hte *hello I am tom from microsoft* scams is horrifying
[2024-08-31 17:15:53] <armagetronbridge> 07discord:magi_cake| Colleagues had to Google roman Reigns and show the lady pictures of him and his fiance to convince this lady to not do it. It took two weeks of her coming back to the bank multiple times before she finally admitted she was being scammed
[2024-08-31 17:15:53] <armagetron-bridge> 07discord:magi_cake| Colleagues had to Google roman Reigns and show the lady pictures of him and his fiance to convince this lady to not do it. It took two weeks of her coming back to the bank multiple times before she finally admitted she was being scammed
[2024-08-31 17:16:39] <armagetron-bridge> 07discord:magi_cake| Loneliness is truly hard on people that they're willing to give up their own security for the shot at being with someone that's even given them the time of day
[2024-08-31 17:16:39] <armagetronbridge> 07discord:magi_cake| Loneliness is truly hard on people that they're willing to give up their own security for the shot at being with someone that's even given them the time of day
[2024-08-31 17:17:05] <armagetron-bridge> 08discord:delinquent| there's personal pride and suck cost playing into that too. Once they convince themselves, its incredibly hard to unconvicne them
[2024-08-31 17:17:05] <armagetronbridge> 08discord:delinquent| there's personal pride and suck cost playing into that too. Once they convince themselves, its incredibly hard to unconvicne them
[2024-08-31 17:18:20] <armagetronbridge> 07discord:magi_cake| True
[2024-08-31 17:18:21] <armagetron-bridge> 07discord:magi_cake| True
[2024-08-31 20:22:26] <armagetron-bridge> 05discord:juesto| sup
[2024-08-31 20:22:26] <armagetronbridge> 05discord:juesto| sup
[2024-08-31 20:22:28] <armagetronbridge> 05discord:juesto| o.o
[2024-08-31 20:22:28] <armagetron-bridge> 05discord:juesto| o.o
[2024-08-31 21:55:20] <-- monr0e has quit (Remote host closed the connection)
DISCLAIMER: These logs of public chat may contain some content which may not be appropriate for all audiences. Use at your own risk.
Logs from 2006-2009 pulled from wrtlprnft
Format changes at: 2015-08-25, 2017-02-20, and 2020-03-23. Times (2015 and later) should be Eastern.
• Website was created by nelg
• Design:
ยป Layout is loosely based on an old design by Durf.
ยป Icons on the tools page were originally by Royce, new icons added will try to follow some of the design language.
ยป Various other icon selections include icons from Crystal, crystalsvg, oxygen, and breeze icon themes.
ยป Other icons: fontawesome
is a site that has tools, maps, and other various items. It orignally only existed as a server control panel, but I slowly began adding stuff such as a homepage and tools.