#computertech Bot Logged User list

Network: TechNet
Modes: +ntf
Last Seen: 2 months, 2 weeks ago
Topic:
2
Users

Channel Log Archive for #computertech

Prev
Next

* All times are UTC
Saturday, December 3, 2022
[00:00:26] PapaFrog/rizon ick
[00:00:56] ski/rizon also to be able to declare automatic variables initialized to lambda expressions which capture (or copy, depending on nonlocal specifications) .. where the type of the lambda can't be written down (depends on implementation details, iiuc). so the only way to be able to put it in a variable is to infer the type of the variable
[00:01:12] ski/rizon the latter is probaby the more important reason
[00:02:11] PapaFrog/rizon Wouldn't this conflict with the auto storage specification?
[00:02:17] ski/rizon (not having a way to specify these ("closure") function types is deliberate, so that you can't expose them in interface, can't e.g. assign them to a file-scope variable, can't return them ..)
[00:02:27] ski/rizon hm, conflict, in which way ?
[00:02:48] PapaFrog/rizon right now you can do `auto int c;`
[00:02:52] ski/rizon the lambda would be `auto' allocated
[00:03:07] ski/rizon yea. this is if you omit the type, only have the `auto', and the identifier
[00:03:25] herald/rizon yeah
[00:03:27] ski/rizon iiuc, they've already deprecated `auto c;' standing for `auto int c;', in an earlier version of the standard
[00:03:40] * ChocolateMoose/rizon joined #computertech
[00:05:44] PapaFrog/rizon That has the drafts for 202x in it.
[00:06:03] RichBum/rizon !song
[00:06:03] DJ_Rich/rizon Matrix Radio playing: Cross Canadian Ragweed - Long Way Home - Highway 377 01 Cross Canadian Ragweed - Long Way Home - Highway 377 01
[00:06:42] ski/rizon anyway, you already have incomplete types, like `char []' in `char s[] = {'h','e','l','l','o','\0'};'. in `int (*foo)(double,double) = [] (auto x,auto y) { return x < y ? -1 (x > y ? 1 : 0); };', the type of the initializing expression would also be incomplete, in this case being completed by the explicit type given to `foo'
[00:08:56] * dumbgoy__/rizon joined #computertech
[00:09:06] herald/rizon !shit
[00:10:23] ski/rizon yea, i was looking at <https://www.open-std.org/jtc1/sc22/wg14/www/wg14_document_log> (specifically at proposals by Jens Gustedt .. and some by Martin Uecker)
[00:11:58] HarkTheHerald/libera no
[00:11:59] ski/rizon (and a few more, as well, that looked interesting)
[00:12:48] c0ded/rizon lol did I start a TCL shit talking ring?
[00:12:55] * c0ded/rizon taps in
[00:12:58] c0ded/rizon ok so
[00:13:08] c0ded/rizon TCL sucks
[00:13:19] c0ded/rizon it is the dumbest syntax of any lang I've ever worked with
[00:13:22] c0ded/rizon it's retarded
[00:13:35] c0ded/rizon same brackets for statements and functions?
[00:13:39] c0ded/rizon c'mon just stupid
[00:13:41] c0ded/rizon k
[00:13:42] c0ded/rizon lol
[00:13:54] * Deactiv8/rizon joined #computertech
[00:17:01] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[00:17:08] Peorth/rizon !bang
[00:17:08] DuckHunt/rizon Peorth > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 2/6 | Chargers: 2/2
[00:17:11] Peorth/rizon !reload
[00:17:11] DuckHunt/rizon Peorth > *Crr..CLICK* You unjam your gun. | Ammo: 2/6 | Chargers: 2/2
[00:17:12] Peorth/rizon !bang
[00:17:12] DuckHunt/rizon Peorth > *BANG* You shot down the duck in 11.276s, which makes you a total of 5 ducks on #computertech. \_X< *KWAK* [10 xp]
[00:17:20] Peorth/rizon !shop 6
[00:17:21] DuckHunt/rizon Peorth > You lubricate your gun in exchange for 8 xp points. Jamming odds are halved and the grease also protects you one time against sand throw for 24h.
[00:22:43] PapaFrog/rizon C uses the same brackets for blocks and functions, c0ded.
[00:22:53] PapaFrog/rizon As does C++, Java..
[00:27:26] ski/rizon .. perhaps c0ded had the brackets of function calls in mind
[00:28:30] * ChocolateMoose/rizon joined #computertech
[00:34:04] c0ded/rizon hey PapaFrog , don't take away hating on TCL for
[00:34:17] c0ded/rizon k, let me have my fun :p
[00:34:27] c0ded/rizon *TCL for me..
[00:34:43] ski/rizon does it use curly brackets for function calls ?
[00:35:11] ski/rizon (i can recall one other language which does that)
[00:35:16] c0ded/rizon tbh, I don't remember, I tried fuckin with an eggdrop like 15 yrs ago, and just hated it
[00:35:24] c0ded/rizon lol
[00:35:33] c0ded/rizon so I'm basically just being a biased cunt
[00:35:35] c0ded/rizon but it's fun
[00:37:42] ski/rizon (specifically, like `{MyFunction Arg0 42}' .. language is Oz. a multi-paradigm language (including with built-in concurrency support, including "declarative concurrency" using "dataflow variables" for thread communication and synchronization, but without data races) .. based on a logic programming core (even backtracking is an add-on, using "engines", can also be used for more fancy search
[00:37:48] ski/rizon for constraint programming), adding functional programming, procedural programming, object-oriented programming ..)
[00:39:26] c0ded/rizon lol
[00:39:32] c0ded/rizon just looks ugly
[00:40:17] PapaFrog/rizon Ohh.. Tcl does use curly brackets around the function parameters..
[00:40:44] ski/rizon (it's the language used by the book "Concepts, Techniques, and Models of Computer Programming" by Peter Van Roy,Seif Haridi at <https://www.info.ucl.ac.be/~pvr/book.html> .. book is reminiscent of SICP, in some ways)
[00:41:12] c0ded/rizon see I'm not totally crazy PapaFrog
[00:41:14] c0ded/rizon ;p
[00:41:24] c0ded/rizon also I like hating on it, something to do
[00:41:29] ski/rizon well, you still could be, no ?
[00:41:33] ski/rizon ;p
[00:41:36] c0ded/rizon true
[00:41:41] c0ded/rizon but don't take my fun away
[00:41:55] PapaFrog/rizon You still are.
[00:41:59] c0ded/rizon k ;/
[00:42:07] PapaFrog/rizon Even a broken clock is right twice a day!
[00:42:23] c0ded/rizon depends on how broken
[00:42:35] c0ded/rizon if it can't even tic a second then it just is sitting there
[00:42:37] c0ded/rizon lol
[00:42:48] PapaFrog/rizon Then it is right twice a day.
[00:42:55] PapaFrog/rizon If it is stuck at 1:22:32
[00:43:00] c0ded/rizon nah I'm just messing, idk what ppl code at
[00:43:06] c0ded/rizon I get ya PapaFrog
[00:43:09] PapaFrog/rizon It is right at 1AM and 1PM.
[00:43:12] c0ded/rizon was just fucking around
[00:43:23] PapaFrog/rizon Fucking around leads to finding out.
[00:43:25] PapaFrog/rizon I know.. I'm a dad.
[00:43:28] c0ded/rizon *idc what ppl code with
[00:43:37] c0ded/rizon it's all good
[00:43:48] c0ded/rizon I'm not gonna code TCL, but I don't hate ppl that do
[00:43:57] c0ded/rizon I just talk shit about their choice of lang
[00:43:59] c0ded/rizon :p
[00:44:11] PapaFrog/rizon I'm too lazy to not use eggrop.
[00:44:14] PapaFrog/rizon eggdrop.
[00:44:17] c0ded/rizon lol
[00:44:23] c0ded/rizon fair nuff
[00:44:40] c0ded/rizon totally a legit response
[00:44:54] c0ded/rizon but I'll still use something else
[00:44:58] ski/rizon even though lambdas, closures, nested functions, and even type inference, might be useful and fun, in C .. i think personally i'd consider parametric polymorphism (along with existentials) a more pressing concern (to avoid a large quantity of potentially unsafe pointer casts or conversions) .. mostly just codifying, and checking, current common practice, without adding extra behaviour or im
[00:45:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[00:45:04] ski/rizon ABI changes
[00:45:14] Peorth/rizon !bang
[00:45:14] DuckHunt/rizon Peorth > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 1/6 | Chargers: 2/2
[00:45:17] Peorth/rizon !reload
[00:45:17] DuckHunt/rizon Peorth > *Crr..CLICK* You unjam your gun. | Ammo: 1/6 | Chargers: 2/2
[00:45:18] Peorth/rizon !bang
[00:45:18] DuckHunt/rizon Peorth > *BANG* You shot down the duck in 17.516s, which makes you a total of 6 ducks on #computertech. \_X< *KWAK* [10 xp]
[00:45:21] Peorth/rizon !shop 1
[00:45:21] c0ded/rizon !bang
[00:45:21] DuckHunt/rizon c0ded > Luckily you missed, but what did you aim at ? There is no duck in the area... [missed: -1 xp] [wild fire: -1 xp] [GUN CONFISCATED: wild fire]
[00:45:23] DuckHunt/rizon Peorth > You just added an extra bullet in your gun in exchange for 7 xp points.
[00:45:26] Peorth/rizon !rearm c0ded
[00:45:28] DuckHunt/rizon Peorth returns c0ded's gun to him.
[00:45:38] c0ded/rizon idek how this shit works lol
[00:45:55] c0ded/rizon I've never ate duck tho
[00:45:58] c0ded/rizon I'd try it
[00:46:20] * ChocolateMoose/rizon joined #computertech
[00:46:30] ski/rizon you could bake it in oven, with garlic, thyme, oregano, rosemary
[00:46:31] c0ded/rizon that nick sounds gross
[00:46:41] c0ded/rizon that sounds delicious
[00:46:44] ski/rizon (did that, years ago)
[00:47:09] c0ded/rizon Ik I would like it
[00:47:18] c0ded/rizon with that way of preparing it
[00:47:21] ski/rizon it was nice, from what i recall
[00:47:43] ski/rizon also, i recall opening oven lid and pouring water over it, once in a while, to keep it from drying too much
[00:50:18] Rizon/rizon [Zack] Once you go Zack, you never go back.
[00:50:18] * Rizon/rizon set mode +v Zack/rizon
[00:50:19] * Zack/rizon joined #computertech
[01:11:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[01:16:00] DuckHunt/rizon The duck escapes. ·°'`'°-.,¸¸.·°'`
[01:20:28] ComputerTech/rizon moo
[01:21:19] Saphir/rizon Meow :D
[01:22:38] ComputerTech/rizon sup
[01:22:53] Saphir/rizon not much, enjoying the beginning of my weekend and you? ;)
[01:23:01] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[01:23:52] ComputerTech/rizon chilling
[01:23:57] ComputerTech/rizon just got home from work
[01:26:03] ComputerTech/rizon @chanrank
[01:26:03] ChanStat/rizon (ChanRank): Channel rank for #computertech is 6 out of 215 with a score of 28619.
[01:26:05] ComputerTech/rizon !bang
[01:26:05] DuckHunt/rizon ComputerTech > Missed. [missed: -1 xp]
[01:26:08] ComputerTech/rizon !bang
[01:26:08] DuckHunt/rizon ComputerTech > *BANG* The duck survived ! Try again. \_O< [life -1] * GOLDEN DUCK DETECTED *
[01:26:10] ComputerTech/rizon !bang
[01:26:10] DuckHunt/rizon ComputerTech > *CLICK* EMPTY MAGAZINE | Ammo: 0/6 | Chargers: 2/2
[01:26:13] ComputerTech/rizon !reload
[01:26:13] DuckHunt/rizon ComputerTech > *CLACK CLACK* You reload. | Ammo: 6/6 | Chargers: 1/2
[01:26:15] ComputerTech/rizon !bang
[01:26:15] DuckHunt/rizon ComputerTech > *BANG* The golden duck survived ! Try again. \_O< [life -1]
[01:26:17] ComputerTech/rizon !bang
[01:26:17] DuckHunt/rizon ComputerTech > *BANG* The golden duck survived ! Try again. \_O< [life -1]
[01:26:19] ComputerTech/rizon !bang
[01:26:19] DuckHunt/rizon ComputerTech > *BANG* The golden duck survived ! Try again. \_O< [life -1]
[01:26:21] ComputerTech/rizon !bang
[01:26:22] DuckHunt/rizon ComputerTech > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 3/6 | Chargers: 1/2
[01:26:26] ComputerTech/rizon !reloa
[01:26:27] ComputerTech/rizon !reload
[01:26:28] DuckHunt/rizon ComputerTech > *Crr..CLICK* You unjam your gun. | Ammo: 3/6 | Chargers: 1/2
[01:26:29] ComputerTech/rizon !reloa
[01:26:31] ComputerTech/rizon !bang
[01:26:31] DuckHunt/rizon ComputerTech > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 3/6 | Chargers: 1/2
[01:26:33] ComputerTech/rizon !reload
[01:26:33] DuckHunt/rizon ComputerTech > *Crr..CLICK* You unjam your gun. | Ammo: 3/6 | Chargers: 1/2
[01:26:35] ComputerTech/rizon !bang
[01:26:35] DuckHunt/rizon ComputerTech > Missed. [missed: -1 xp]
[01:26:37] ComputerTech/rizon !bang
[01:26:37] DuckHunt/rizon ComputerTech > Missed. [missed: -1 xp]
[01:26:38] ComputerTech/rizon !bang
[01:26:38] DuckHunt/rizon ComputerTech > *BANG* You shot down the golden duck in 3mn36.982s, which makes you a total of 4 ducks (including 1 golden duck) on #computertech. You are promoted to level 3 (trainee). \_X< *KWAK* [60 xp]
[01:26:40] ComputerTech/rizon yay
[01:28:43] ZOEboy/rizon Good job, ComputerTech
[01:28:49] ComputerTech/rizon heya ZOEboy
[01:28:51] ComputerTech/rizon :p
[01:29:01] ZOEboy/rizon How did you learn to shoot so well?
[01:29:29] ComputerTech/rizon (⁠ノ⁠^⁠_⁠^⁠)⁠ノ
[01:29:36] ZOEboy/rizon (=
[01:31:53] DJ_Rich/rizon Now Playing Ads: Stopped
[01:56:26] ComputerTech/rizon +tell Peorth bb <3
[01:56:27] Komputer/rizon ComputerTech: The operation succeeded.
[02:05:15] akoizumi/rizon got damn it CT who would listen to ads from a dj bot
[02:05:17] akoizumi/rizon smh
[02:05:33] sorcerer/IRC-nERDs irc-nerds radio > *
[02:05:42] sorcerer/IRC-nERDs music after music
[02:05:50] akoizumi/rizon yus
[02:07:19] * [TechNet] set mode +o FireWire
[02:07:19] * FireWire joined #computertech
[02:13:30] * dumbgoy/rizon joined #computertech
[02:16:44] * Blip/rizon joined #computertech
[02:24:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[02:24:47] FireWire !nmeow
[02:24:50] FireWire !meow
[02:25:05] DuckHunt/rizon firewire > *BANG* You shot down the duck in 1mn5.066s, which makes you a total of 1 duck on #computertech. \_X< *KWAK* [10 xp]
[02:34:14] * SoundShaman/rizon joined #computertech
[02:35:06] * oyster-/rizon joined #computertech
[02:40:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[02:40:33] PapaFrog/rizon !bang
[02:40:33] DuckHunt/rizon PapaFrog > Missed. [missed: -1 xp]
[02:40:35] PapaFrog/rizon !bang
[02:40:35] DuckHunt/rizon PapaFrog > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 0/6 | Chargers: 2/2
[02:40:38] PapaFrog/rizon !reload
[02:40:38] DuckHunt/rizon PapaFrog > *Crr..CLICK* You unjam and reload your gun. | Ammo: 6/6 | Chargers: 1/2
[02:40:40] PapaFrog/rizon !bang
[02:40:40] DuckHunt/rizon PapaFrog > *BANG* You shot down the duck in 39.537s, which makes you a total of 3 ducks on #computertech. You are promoted to level 2 (noob). \_X< *KWAK* [10 xp]
[02:56:04] * Random0240/rizon joined #computertech
[03:03:07] Rizon/rizon [Big_Boss] Once you go Zack, you never go back.
[03:03:07] * Rizon/rizon set mode +v Big_Boss/rizon
[03:03:07] * Big_Boss/rizon joined #computertech
[03:14:41] * Netsplit healed 2 users rejoined
Click to toggle user list
thenotK[d]/IRC-nERDs Superfly[d]/IRC-nERDs
[03:30:11] Falkor (AUTO) COVID-19 stats -- GLOBAL -- Total Cases: 649,273,133 ; New Cases: +60,979 ; Total Deaths: 6,644,705 ; New Deaths: +69 ; Recovered: 626,730,709[+106,687] ; Active Cases: 15,897,719[-45,777] ; Critical: 37,042[+5] ; Total Cases/1M pop: 83,296 ; Deaths/1M pop: 852.5 ; Last Updated: December 03, 2022, 03:05 GMT
[03:38:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[03:38:05] PapaFrog/rizon !bang
[03:38:06] DuckHunt/rizon PapaFrog > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 5/6 | Chargers: 1/2
[03:38:07] PapaFrog/rizon !reload
[03:38:07] DuckHunt/rizon PapaFrog > *Crr..CLICK* You unjam your gun. | Ammo: 5/6 | Chargers: 1/2
[03:38:09] PapaFrog/rizon !bang
[03:38:09] DuckHunt/rizon PapaFrog > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 5/6 | Chargers: 1/2
[03:38:11] PapaFrog/rizon !reload
[03:38:11] DuckHunt/rizon PapaFrog > *Crr..CLICK* You unjam your gun. | Ammo: 5/6 | Chargers: 1/2
[03:38:13] PapaFrog/rizon !bang
[03:38:13] DuckHunt/rizon PapaFrog > *BANG* You shot down the duck in 13.062s, which makes you a total of 4 ducks on #computertech. \_X< *KWAK* [10 xp]
[03:40:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[03:43:17] End3r/rizon !meow
[03:43:17] DuckHunt/rizon End3r > Missed. [missed: -1 xp]
[03:43:19] End3r/rizon !meow
[03:43:19] DuckHunt/rizon End3r > *BANG* You shot down the duck in 3mn18.77s, which makes you a total of 2 ducks on #computertech. \_X< *KWAK* [10 xp]
[04:02:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[04:05:15] End3r/rizon !meow
[04:05:15] DuckHunt/rizon End3r > *BANG* You shot down the duck in 3mn14.797s, which makes you a total of 3 ducks on #computertech. You are promoted to level 2 (noob). \_X< *KWAK* [10 xp]
[04:12:06] * nonp-/rizon joined #computertech
[04:19:03] * dumbgoy__/rizon joined #computertech
[04:30:13] * Rizon/rizon set mode +o Kuro-chan/rizon
[04:30:14] * Kuro-chan/rizon joined #computertech
[04:32:18] * oyster-/rizon joined #computertech
[04:52:01] c0ded/rizon yo
[04:54:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[04:54:03] * mozambique/rizon joined #computertech
[04:55:28] Phoenix/rizon !bang
[04:55:29] DuckHunt/rizon Phoenix > Missed. [missed: -1 xp]
[04:55:31] Phoenix/rizon hi c0ded
[04:55:34] Phoenix/rizon !shop 1
[04:55:35] DuckHunt/rizon Phoenix > You just added an extra bullet in your gun in exchange for 7 xp points.
[04:55:36] Phoenix/rizon !bang
[04:55:37] DuckHunt/rizon Phoenix > *BANG* You shot down the duck in 1mn36.373s, which makes you a total of 2 ducks on #computertech. \_X< *KWAK* [10 xp]
[04:55:37] DuckHunt/rizon Phoenix > By searching the bushes around the duck, you find... a broken decoy.
[04:58:23] c0ded/rizon sup sup
[04:58:57] c0ded/rizon if u have a friend who's a professional fighter and says "let's go to the gym" together, just be ready to be sore
[04:59:18] c0ded/rizon and I didn't do anything like he did, but he told me what to do and on what
[05:01:46] Phoenix/rizon haha not my idea of fun!
[05:02:59] c0ded/rizon it was fun
[05:03:01] c0ded/rizon but hard
[05:18:35] Rizon/rizon [Big_Boss] Once you go Zack, you never go back.
[05:18:35] * Rizon/rizon set mode +v Big_Boss/rizon
[05:18:35] * Big_Boss/rizon joined #computertech
[05:28:22] * Xalen[d]/IRC-nERDs joined #computertech
[05:45:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[05:45:06] jeff_stacey/rizon !bang
[05:45:06] DuckHunt/rizon jeff_stacey > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 2/6 | Chargers: 2/2
[05:45:09] jeff_stacey/rizon !reload
[05:45:09] DuckHunt/rizon jeff_stacey > *Crr..CLICK* You unjam your gun. | Ammo: 2/6 | Chargers: 2/2
[05:45:10] jeff_stacey/rizon !bang
[05:45:10] DuckHunt/rizon jeff_stacey > Missed. [missed: -1 xp]
[05:45:11] jeff_stacey/rizon !bang
[05:45:12] DuckHunt/rizon jeff_stacey > *BANG* You shot down the duck in 11.237s, which makes you a total of 15 ducks on #computertech. \_X< *KWAK* [10 xp]
[05:46:55] c0ded/rizon sup fucks
[05:47:00] c0ded/rizon other then ducks
[05:48:55] HellSpawn/rizon my dick
[05:49:04] HellSpawn/rizon :D
[05:50:47] jeff_stacey/rizon sup c0ded/hellspawn
[05:52:14] c0ded/rizon yo yo
[05:53:06] jeff_stacey/rizon :D
[05:54:51] HellSpawn/rizon oi
[05:55:01] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[05:55:30] PapaFrog/rizon !bang
[05:55:30] DuckHunt/rizon PapaFrog > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 4/6 | Chargers: 1/2
[05:55:34] PapaFrog/rizon !reload
[05:55:34] DuckHunt/rizon PapaFrog > *Crr..CLICK* You unjam your gun. | Ammo: 4/6 | Chargers: 1/2
[05:55:36] PapaFrog/rizon !bang
[05:55:36] DuckHunt/rizon PapaFrog > *BANG* You shot down the duck in 35.009s, which makes you a total of 5 ducks on #computertech. \_X< *KWAK* [10 xp]
[05:56:48] * SoundShaman/rizon joined #computertech
[05:56:54] c0ded/rizon this game sucks
[05:56:56] c0ded/rizon lol
[05:57:23] c0ded/rizon so does their connection ^^
[05:59:08] jeff_stacey/rizon hehe
[05:59:45] CrystalMath/rizon hi jeff_stacey
[06:00:51] jeff_stacey/rizon hi crystal
[06:08:24] * Kanabit/rizon joined #computertech
[06:08:50] Kanabit/rizon OEM unlocking (connect to the internet or contact your carrier)
[06:09:05] Kanabit/rizon anyone know how to get this option enabled?
[06:09:10] Zack/rizon LOL I love you guys.
[06:09:14] Zack/rizon .quote last
[06:09:14] Quotes/rizon [Quote] #272 added by foxy 1 day 15 hours 37 minutes 32 seconds ago.
[06:09:14] Quotes/rizon [Quote] <&Amiga600> is CT ugly then? :o <%Ahsoka> Yes very <%Ahsoka> Its like he ran through the ugly forest and hit every tree
[06:09:18] Zack/rizon .quote random
[06:09:18] Quotes/rizon [Quote] #131 added by Foxy 26 weeks 2 days 6 hours 42 minutes 58 seconds ago.
[06:09:18] Quotes/rizon [Quote] <@Zack> My ass hurts. <@TorS> mine to colby fucked me in my ass
[06:09:21] Zack/rizon :o
[06:09:25] c0ded/rizon hmm
[06:09:37] c0ded/rizon .quote Zack
[06:09:42] c0ded/rizon no search?
[06:09:49] Zack/rizon .quote search Zack
[06:09:49] Quotes/rizon [Quote] 9 matches found: #213,55,131,124,197,157,103,88,134
[06:09:55] c0ded/rizon ah
[06:10:03] Zack/rizon .quote read 55
[06:10:03] Quotes/rizon [Quote] #55 added by dramo 43 weeks 5 days 5 hours 33 minutes 24 seconds ago.
[06:10:03] Quotes/rizon [Quote] <Zack> .quote search anus
[06:10:09] Zack/rizon xD
[06:10:10] c0ded/rizon what is that bot, eggdrop?
[06:11:23] c0ded/rizon !g is there a bot for this
[06:11:27] c0ded/rizon hmm
[06:11:33] c0ded/rizon .g is there a bot for this
[06:11:42] c0ded/rizon @g is there a bot for this
[06:11:45] c0ded/rizon meh
[06:11:55] c0ded/rizon I lost interest, don't care anymore
[06:12:16] c0ded/rizon think I'm gonna make some potstickers
[06:23:35] * dumbgoy/rizon joined #computertech
[06:26:28] sur/rizon lold
[06:27:51] jeff_stacey/rizon hi sur
[06:32:20] * animu/rizon joined #computertech
[06:34:46] * Rizon/rizon set mode +o Kuro-chan/rizon
[06:34:46] * Kuro-chan/rizon joined #computertech
[06:53:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[06:53:14] jeff_stacey/rizon !bang
[06:53:14] DuckHunt/rizon jeff_stacey > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 0/6 | Chargers: 2/2
[06:53:18] jeff_stacey/rizon !reload
[06:53:18] DuckHunt/rizon jeff_stacey > *Crr..CLICK* You unjam and reload your gun. | Ammo: 6/6 | Chargers: 1/2
[06:53:20] jeff_stacey/rizon !bang
[06:53:20] DuckHunt/rizon jeff_stacey > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 6/6 | Chargers: 1/2
[06:53:23] jeff_stacey/rizon !reload
[06:53:23] DuckHunt/rizon jeff_stacey > *Crr..CLICK* You unjam your gun. | Ammo: 6/6 | Chargers: 1/2
[06:53:24] jeff_stacey/rizon !bang
[06:53:24] DuckHunt/rizon jeff_stacey > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 6/6 | Chargers: 1/2
[06:53:29] jeff_stacey/rizon !reload
[06:53:29] DuckHunt/rizon jeff_stacey > *Crr..CLICK* You unjam your gun. | Ammo: 6/6 | Chargers: 1/2
[06:53:33] jeff_stacey/rizon !bang
[06:53:33] DuckHunt/rizon jeff_stacey > *BANG* You shot down the duck in 32.867s, which makes you a total of 16 ducks on #computertech. \_X< *KWAK* [10 xp]
[06:58:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[07:01:04] jeff_stacey/rizon !bang
[07:01:05] DuckHunt/rizon jeff_stacey > *BANG* You shot down the duck in 3mn4.091s, which makes you a total of 17 ducks on #computertech. You are promoted to level 6 (duck hater). \_X< *KWAK* [10 xp]
[07:01:43] * sunitknandi/rizon joined #computertech
[07:07:17] * peterandre/rizon joined #computertech
[07:08:01] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[07:10:47] herald/rizon !bang
[07:10:48] DuckHunt/rizon herald > Missed. [missed: -1 xp]
[07:10:49] herald/rizon !bang
[07:10:50] DuckHunt/rizon herald > Missed. [missed: -1 xp]
[07:10:51] herald/rizon !bang
[07:10:51] DuckHunt/rizon herald > *CLICK* EMPTY MAGAZINE | Ammo: 0/6 | Chargers: 2/2
[07:10:54] * peterandre/libera joined #computertech
[07:10:55] herald/rizon !reload
[07:10:55] DuckHunt/rizon herald > *CLACK CLACK* You reload. | Ammo: 6/6 | Chargers: 1/2
[07:10:56] herald/rizon !bang
[07:10:56] DuckHunt/rizon herald > Missed. [missed: -1 xp]
[07:10:57] DuckHunt/rizon Frightened by so much noise, the duck fled. ·°'`'°-.,¸¸.·°'`
[07:10:58] herald/rizon !bang
[07:10:58] DuckHunt/rizon herald > Luckily you missed, but what did you aim at ? There is no duck in the area... [missed: -1 xp] [wild fire: -1 xp] [GUN CONFISCATED: wild fire]
[07:11:05] herald/rizon you dumb cunt herald
[07:11:15] Zack/rizon Poo balls.
[07:11:24] Zack/rizon Don't throw the poo balls at the U Hauls.
[07:11:28] Zack/rizon Poop is not a plan.
[07:11:35] * Zack/rizon left #computertech
[07:11:35] Rizon/rizon [Zack] Once you go Zack, you never go back.
[07:11:35] * Zack/rizon joined #computertech
[07:11:36] * Rizon/rizon set mode +v Zack/rizon
[07:11:37] Zack/rizon Yeah./
[07:18:07] * ChanServ/libera set mode +o peterandre/libera
[07:21:01] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[07:21:42] herald/rizon !bang
[07:21:43] DuckHunt/rizon herald > You are not armed.
[07:21:49] herald/rizon HOW DARE YOU
[07:21:56] herald/rizon kick your ducky arse
[07:22:38] FireWire !meow
[07:22:39] DuckHunt/rizon *BANG* xO' Trivia just get shot by accident by firewire. [missed: -1 xp] [accident: -4 xp] [GUN CONFISCATED: hunting accident]
[07:22:44] FireWire lolz
[07:23:31] HarkTheHerald/libera !bang
[07:23:36] HarkTheHerald/libera !bang
[07:23:39] HarkTheHerald/libera well shit
[07:23:43] DuckHunt/rizon harktheherald > *BANG* You shot down the duck in 2mn42.337s, which makes you a total of 1 duck on #computertech. \_X< *KWAK* [10 xp]
[07:23:44] DuckHunt/rizon harktheherald > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 5/6 | Chargers: 2/2
[07:26:33] FireWire :P
[07:42:21] * BlueyHealer/rizon joined #computertech
[08:17:05] * puke/rizon joined #computertech
[08:18:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[08:18:33] herald/rizon !bang
[08:18:33] DuckHunt/rizon herald > *BANG* You shot down the duck in 32.721s, which makes you a total of 3 ducks on #computertech. You are promoted to level 2 (noob). \_X< *KWAK* [10 xp]
[08:18:49] herald/rizon bish
[08:19:10] * pyooq/rizon joined #computertech
[08:26:00] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[08:26:15] herald/rizon !bang
[08:26:16] DuckHunt/rizon herald > Missed. [missed: -1 xp]
[08:26:22] herald/rizon !bang
[08:26:22] DuckHunt/rizon herald > *CLACK* Your gun is jammed, you must reload to unjam it... | Ammo: 2/6 | Chargers: 1/2
[08:26:32] herald/rizon !reload
[08:26:32] DuckHunt/rizon herald > *Crr..CLICK* You unjam your gun. | Ammo: 2/6 | Chargers: 1/2
[08:26:37] herald/rizon !bang
[08:26:37] DuckHunt/rizon herald > *BANG* You shot down the duck in 36.955s, which makes you a total of 4 ducks on #computertech. \_X< *KWAK* [10 xp]
[08:26:37] DuckHunt/rizon herald > By searching the bushes around the duck, you find... a broken mirror.
[08:39:24] * Rizon/rizon set mode +v Zack/rizon
[08:39:25] * Zack/rizon joined #computertech
[08:40:37] Zack/rizon !lastfuck
[08:40:48] Zack/rizon !lastsuck
[08:40:52] Zack/rizon !lastcuck
[08:40:55] Zack/rizon !lastduck
[08:40:55] DuckHunt/rizon The last duck has been seen 14 minutes and 55 seconds ago.
[08:41:12] Zack/rizon !lasttruck
[08:41:57] Zack/rizon .steam
[08:41:57] Internets/rizon An exception occurred and has been reported to the developers. If this error persists please do not use the faulty command until it has been fixed.
[08:42:06] Zack/rizon Oh yeah, I'm not logged on.
[08:42:08] * zxrom/rizon joined #computertech
[08:42:08] Zack/rizon Silly me.
[08:49:11] jeff_stacey/rizon u dummy
[08:51:00] jmjl hi
[08:52:07] zxrom/rizon Hi!
[08:52:17] ski/rizon lo
[08:52:30] zxrom/rizon ЛоХи!
[08:53:05] BlueyHealer/rizon Сам ты лох.
[08:54:28] * ChanServ/libera set mode +o peer/libera
[08:54:29] * peer/libera joined #computertech
[08:54:43] * ChanServ/libera set mode +o peer/libera
[08:54:44] * peer/libera joined #computertech
[08:54:49] * Rizon/rizon set mode +ao rails/rizon rails/rizon
[08:54:49] * rails/rizon joined #computertech
[08:54:52] ski/rizon привет
[08:55:30] BlueyHealer/rizon Ага, привет. Здесь кириллицей можно?
[08:55:33] jmjl what's the easiest way to reach CT?
[08:55:57] g1n jmjl: same question
[08:56:06] jmjl lol
[08:56:10] jmjl I thought you wheren't online
[08:56:17] g1n jmjl: check #lounge
[08:56:18] ski/rizon talk in this channel to him ?
[08:56:24] jmjl yea true too
[08:56:30] BlueyHealer/rizon Is this channel bridged outside of IRC?
[08:56:44] g1n BlueyHealer/rizon: this chan is main english as i know
[08:56:57] ski/rizon it's bridged to a bunch of IRC networks .. and also to some Discord guild, i think
[08:56:58] g1n BlueyHealer/rizon: it is bridged to technet.chat
[08:57:10] BlueyHealer/rizon What protocol that even is?
[08:57:22] jmjl see ski's answer
[08:57:34] BlueyHealer/rizon Ah, its irc.
[08:57:54] zxrom/rizon BlueyHealer, Привет! Я не лох, просто анекдот такой есть.
[08:58:00] ski/rizon you're connected to IRC yes, BlueyHealer
[08:58:14] BlueyHealer/rizon No, I was asking whether it was bridged outside of IRC.
[08:58:26] jmjl zxrom/rizon: could you speak english plz?
[08:58:29] ski/rizon oh. ok
[08:58:53] jmjl or every language is allowed?
[08:58:54] BlueyHealer/rizon That's why I was confused when you mentioned Technet. I am on their IRC, actually.
[08:59:29] zxrom/rizon Are you forcing us to speak English? Or ask?
[08:59:36] jmjl asking
[08:59:39] jmjl not forcing
[09:00:14] BlueyHealer/rizon I just saw "nR" being used and I was told it can bridge outside of IRC.4
[09:00:16] zxrom/rizon We wrote untranslatable words into a foreign language.
[09:00:39] jmjl I think it's not possible to use pyl to bridge outside of irc
[09:01:27] jmjl unless you client connect it to a server which does connect to outside of irc
[09:01:32] zxrom/rizon Are there fans of retro technologies from the 70s or 80s of the last century on this channel?
[09:02:03] jmjl I presume yes
[09:02:06] BlueyHealer/rizon Well, I was assembling a radio following an 80s design.
[09:02:21] BlueyHealer/rizon From the Radio soviet magazine.
[09:02:37] zxrom/rizon I meant 8-bit home computers.
[09:03:00] BlueyHealer/rizon Ah, okay. I've seen schematics for an 8-bit computer in one of Radio's recent issues.
[09:03:17] zxrom/rizon Радио 86-РК?
[09:03:37] BlueyHealer/rizon Нет, там что-то более современное.
[09:03:45] zxrom/rizon Орион 128?
[09:03:50] zxrom/rizon Orion 128
[09:04:22] BlueyHealer/rizon No, I mean in this year/last year's issue.
[09:05:17] BlueyHealer/rizon IDK how practical this is, I 'm not interested in assembling such things. I'm a fan of as few "black boxes" as possible, that's why my first radio is Radio-76M2.
[09:05:17] zxrom/rizon CRISS CP/M DIY homebrew computer?
[09:05:24] BlueyHealer/rizon Yea, this one.
[09:05:40] BlueyHealer/rizon Our university has the magazines in the library.
[09:06:21] BlueyHealer/rizon Given how the assembled part of the radio looks right now... I have no idea how I'm going to get a license for this thing once I get it to fully work.
[09:06:33] zxrom/rizon Any black box from the 80s can be disassembled and created on transistors. Or FPGA.
[09:06:36] * spyda/rizon joined #computertech
[09:07:06] BlueyHealer/rizon Yeah, but that would probably be pretty impractical.
[09:07:44] BlueyHealer/rizon I never actually finished the final, fourth board since I had no oscilloscope access during the summer.
[09:07:45] * Rizon/rizon set mode +b *!*@8CCCDA9F.15091B4F.6113F46.IP
[09:07:45] * Rizon/rizon kicked BlueyHealer/rizon (Watch your language!)
[09:07:47] zxrom/rizon FPGA is very practical. Even more practical than discrete microcircuits from the 80s.
[09:08:01] DuckHunt/rizon -.,¸¸.-·°'`'°·-.,¸¸.-·°'`'°· \_O< QUACK
[09:08:59] zxrom/rizon Shit!
[09:09:58] jmjl !bang
[09:10:00] DuckHunt/rizon jmjl > *BANG* You shot down the duck in 1mn58.333s, which makes you a total of 1 duck on #computertech. \_X< *KWAK* [10 xp]
[09:10:14] zxrom/rizon Rizon, Why did you kick my interlocutor?
[09:10:39] jmjl rizon is not a real user
[09:11:14] zxrom/rizon This is some stupid channel.
[09:12:59] ski/rizon (it's bridged between TechNet,Rizon,Libera,IRC-nERDs .. and, i think DarkWorld,DeadGnomeSociety, and probably more i forgot)
[09:13:30] jmjl you can see the nick list and see where's it bridged to
[09:13:46] ski/rizon not on this side
[09:13:51] jmjl oh
[09:14:33] ski/rizon (your last message looks like "<nR> [technet] <@jmjl> oh" here, not like "<jmjl/rizon> oh")
[09:14:43] jmjl/rizon I didn't remember
[09:14:58] jmjl that it was a clientbot on rizon
[09:15:36] jmjl rizon, unfoundedlamers, libera, stardust, darenet, unrealircd, ichat, irc-nerds, freenode, efnet, coders-irc
[09:15:42] jmjl that's the list of slinks shown on this side
[09:15:45] ski/rizon zxrom : well .. i had (have) C64s .. if that counts as "retro technologies"
[09:16:05] ski/rizon ah, yes, you said "home computers"
[09:16:42] * archa-angel/rizon joined #computertech
[09:16:43] * ski/rizon 's currently, on and off, trying to disassemble and reverse-engineer a program from 1986
[09:18:42] * ski/rizon 's half asleep, only now noticed the kick ..
[09:19:47] ski/rizon jmjl, ty
[09:20:45] zxrom/rizon ski, I don't have C64. I am a fan of Atari and ZX Spectrum. ZX clones were the most popular computers in the USSR!
[09:20:58] ski/rizon interesting
[09:21:40] ski/rizon hm, Knightlore came out on the Speccy, iirc
[09:22:08] ski/rizon (and presumably also some other machines .. i don't recall)
[09:22:15] zxrom/rizon ski, You can even buy a set of parts today and assemble the popular Soviet ZX clones. The Pentagon 128 clone is the Russian demoscene standard.
[09:22:56] ski/rizon official name, back in the day, was "Pentagon 128" ?
[09:23:08] zxrom/rizon Beta Disk 128 Interface with TR-DOS included.
Prev
Next