#ot1-perplexing-regexing
1 messages · Page 629 of 1
tbh needs a big brain to scam you
Much crypto such Doge
🙃
that's for the "environment"
yeah like GMOs i love me some shit crops
💀
want some corn? too bad its on everything now have fun lol
Your battery life will vary...etc...he has big brain to cover all legal liabilities and the charisma to make stuff like fall away like grease in a teflon coated pan.
Yeah cant say no to saving the earth...genius
Add Musk Brain Chip plus the Metaverse we have the Matrix
lmao
I was once in a Webby Award that was Matrix Themed ...we were nominated but didnt win but I won the Matrix Cosplay as Neo...got a Digital Camera
Yeah lol
imagine revealing your name in the internet couldn't be me
2003 lol
The prize for the Matrix Cosplay was a 2 Megapixel Kodak camera...gave it to my dad after using it in some local trips
yeah i was too busy being adhd and not aware of the world at that time
We made our site with classic ASP lol
curious name tho 
Imagine a Matrix filled with the people on VRChat right now lol....Furry avatars a plenty many robots...anime cat girls and the like lol
The Matrix looked tame
😳
*lame
Yeah the sequels suck
this sounds too cool to be created by corporations that most likely just want to put mickey mouse in your star wars stuff 😩
Ready player one much better ..read the book
..movie is inferior to book
MCU was a mistake
all movies are inferior to the book
woo can't wait for Bethesda and co to have random halo and gears junk everywhere in their games, thanks metaverse 💀
You can have free brainpower with ad supported Baas ... Dream ads while you sleep and wake up enhanced
Pay extra to get rid of ads in your brain .... monthly or yearly plans are available or per use billing
lemme see
Se quer mais conteúdo como esse, dê uma CURTIDA nesse vídeo e clique em INSCREVER-SE!
Fiz essa playlist para quem quer estudar como um filósofo medieval tendo revelação da verdade pela graça divina. Discípulos de Tomás de Aquino, Santo Agostinho, Santo Anselmo que têm a verdade revelada pela graça divina, compartilhem esse vídeo para todos os p...
.bm
Do I get dragons in this matrix
Of course and I be a Tanuki lol
Probably a lot of Protogens too given they are a techy breed
they run it
Hopefully we will lol but probably not
@waxen turtle you'd be surprised how common that kind of mistake is, it seems like people are generally taught for/range as a single construct when it's kind of just not and then they do things like that
Bee
Yes, now have flower
🌻
when will u remove your xmas hat
Ask the admin that named the thread unless it is you lol
Or maybe we are in the Matrix lol
Any mod+ can add an off topic name to the pool. I think Fisher added this one, but before he became an admin.
Beeing
Hive mind?
Nahhh im more like
" Will u 🐝 mine"
Ah to bee or not to bee
there is a CIA agent in this server
One mole is 6.02 X 10^23 cagey bees
Good kitty
6.023 ‼️ /j
speaking of stelercus
@frozen crane so gaslight has two proper past-tense forms, gaslit/gaslighted - is there a specific context where one would be used over another?
why is "ninety-nine" equal to "quatre-vingt-dix-neuf" in french
Bienvenue en France
Danish is even worse, check it out
4 * 20 + 10 + 9
In the languages of South India, nine is 'almost ten'; ninety, 'almost hundred'; 900, 'almost thousand'
I mean that's pretty much the same as roman
interesting
patu 10 -> onpatu 9; nūr 100 -> toṇṇur 90; āyiram 1000 -> tol̥l̥āyiram 900
You mean Romanian?
no?
they prob meant roman numerals
Ohhh
Those.
But the words for numbers in Latin are pretty much as they are in English today
unlike this
same concept as the others just with 5 + 10
but ya
isnt it the arabic numeral system?
Which one?
the common latin-derived one
1234567890 those ig
The Hindu-Arabic numerals, they're called
The 'Arabic numerals' are a different one
used in written Arabic
"They are also called Western Arabic numerals, Ghubār numerals,[4][unreliable source?] ASCII digits, Western digits, Latin digits, or European digits.[5] The Oxford English Dictionary uses lowercase Arabic numerals for them, and capitalized Arabic Numerals to refer to the Eastern digits.[6]"```
The term is often incorrectly used to mean decimal numbers, in particular when contrasted with Roman numerals. Decimal however was developed centuries before the Arabic numerals in the Indian subcontinent, using other symbols. In addition Arabic numerals are used for many purposes besides writing decimal. All sets of symbols used to write decimal are sometimes called Hindu-Arabic numerals.
same article
yeah, resolved.
The book that Al-Biruni (source for 'Arabic numerals' ) wrote is named 'Kitab hisab al-'adad al-hindi' 'book on calculation with numerals of Hind', for some historical context
I see what you're arguing now but we were talking about the visual representation of numbers
don't hurt Prashant 😨
Because French is annoying
Swiss French has a nice "nonante" iirc
Non
Vous avez tort
C'est une langue tres belle
Oui, c'est difficile, mais c'est le cas pour toutes les langues europeenes
L'anglais aussi
i understand that as ```
No
You are tort*
It's une* langue* tres** belle**
Yes, it's difficult, mais** it's the cas** pour** toutes** les* langues europeenes*
L'anglais* aussi**
*probable explanations below
tort = wrong (verified)
une = a (verified)
langue = language (verified)
les = of (no, it actually means "the")
langues europeenes = european languages (verified)
L'anglais = The english/English (verified)
**i don't know what it possibly means
très is "very" and "belle" is "beautiful", "mais" is "but"
i see
that's about as much as I can contribute
just used google translate for the rest of the words
Pour is "for", toutes is "all"
toutes is all
toutes les langues europeenes == all european languages
pour is for
les is the (in plural form)
idk what cas is
nvm didnt see the previous msg
computer algebra system
canonical architectural spite
cope and seethe
calculate and seductify
something the language designers at together c and c++ discussed recently
Guys how to rice the i3
when i asked them "is it plausible to have this" ```lua
2x + x = 30
print(x)
Pls teach me
CAS tend to be fairly complex
but well, mathematica does have this feature IIRC
and IIRC matlab can also do it with some early declarations
prolog can do this, oz maybe can do this
like, any arbitrary expression on the lhs of an assignment?
it's a bit involved in the case of prolog
simple things it just figures out
?- 2*X+X #= 30
.
X = 10
; false.
wha
for more complex cases, you get a constraint, which you can then convert into actual values using labeling
?- X^2 #= 4.
clpz:(X in-2\/2)
; false.
?- X^2 #= 4, label([X]).
X = -2
; X = 2
; false.
why does it say false
because it tries to search for more solutions, and finds none
if you run it programatically, it won't show that false
but I essentially get the option to ask for more solution, so it only knows to stop when it finds no more
i thought it was saying x = 10 is a false statement
no, it means the valuation of variables in the query is X = 10 ; false, in other words, X is 10, or false
; is or, , is and
hm
What makes a past tense form "proper"?
is it possible to label a commit on github like a micro-release?
i guess i'm looking to tag a commit on the github website
ummm
I think you can just create a tag
hmm maybe not
I know there's a prerelease flag
the only thing i found is the draft release thing, but not how to add tags to specific commits..
what's your use case?
can you not just use the commit hash/id/whatever it's called?
i want to be able to quickly find the commit again in the history
uhhhh
like "look how broken this was after xmas 2021"
I'm pretty sure you could make a release and delete the release and the tag will still be thee
I'm sure there's another way to make a tag though, let me look
thanks
as I was saying, language predates formal pronouncements about what language use is "proper". These pronouncements are linguistically meaningless, but might influence public opinion about language or how it's taught in schools.
I assume you were referring to "gaslit" vs "gaslighted". In English, there's a class of verb where you change the tense by changing the vowels in the middle. This class is shrinking in favor of the "-ed" class because those are easier to predict, so people who don't know "light" becomes "lit" will intuitively say "lighted".
gaslit seems way more common, though it also the name of a TV series, and an adjective unrelated to gaslighting
Gaslight also refers to the light produced by heating gas, couldn’t gaslit also be an adjective?
Gaslit hallways
Or would that be gas-lit
I more so meant grammatically
does "grammatically" change what I said? grammar is part of language, and predates formal pronouncements, etc.
Idk what I’m talking about
"lit" has been a recognized past-tense form of "light" longer than "lighted", but both forms will be understood by any English speaker.
"lighted" also doesn't introduce any ambiguity into the parse tree
ye, that's the dictionary meaning
did dictionaries record gaslight in the new meaning yet?
Pretty sure
gas-lot
what happened to yoda
that reminds me: dictionaries don't legitimize words, either. if a word was only legitimate if a dictionary documents it, the first dictionary could never have been written, there having been no legitimate words for it to contain. (Not that I think you're trying to make this argument.)
indeed
🤷♂️
he yodead
😬
well it would have to be like binary
wait
if you can use common sence to decode this
bagel/custard bagel/custard bagel/bagel/custard bagel/bagel/custard bagel/custard bagel
@cold latch ! you have invented a new binary
**and to the lucky person who types it in chat . . . . . . gets to take @socks life savings**
Ayo? The most you would get is $5
someone can explain what this means HTTPS support is only available if the socket module was compiled with SSL support.
in the context of httplib2
Depending on how you installed Python, you may or may not have ssl support
thanks
diamonds
Today I discovered how cool asterisks are in python
!eval
print(*'Nala and Damayanti', sep=' ')
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
N a l a a n d D a m a y a n t i
i want that bar stop popping up when my mouse go there
its hard to play got on scratch
i cant find such setting
sorry for multiposting in #ot0-psvm’s-eternal-disapproval
i just want to play :(
it's possible to have it stay always visible
but uh... idk about having it always hidden
about:config in address bar and press enter
type browser.fullscreen.autohide and disable it if that's what you want
yay
any idea why this is happening ? 🤔
type(a) => int, int(b) = 2
type(a) got int, you can call an int to make an instance of integer
guys i have a question
is ssh screen driven by gpu
i'd think not
because im not running a de is it safe to set the mem limit to 0
why set the mem limit to 0? ur gpu will die lol
because i aint usin it
im jsut using ssh
im not running a de
what if youre using it for accelerated computations?
its a raspi 4b
so not really
im just using it for stuff that i need to run 24/7
ex a discord bot
@gilded prawn what were the other 7 times?
uh nextcord twice, minecraft@home 3 times, minecraft lfg once
I was wrong its 8 times total
lol
aw sorry latke, no otn for you
ugh
Does anyone know if there are any relatively commonly used file extensions .rn, .rw, or .rwn?
Thank you very much
oops I forgot to put "looks like they're at least not common"
I googled them but of course something showed up
Oh look it's Bee, the moderator
no, Bumblebee is the transformer \🙄
So Flutter Doctor says the CLI Build Tools are enough
This isn't even 2022
So that takes care of my main two priorities, Android and Windows
I'm just gonna cheese macOS and Linux and just use Github Actions
wearing formal clothing is the worst. especially the shoes. my feet hurts so bad 😒
y cant i just wear joggers and hoodie everywhere ugh
also it's so hard to drive with these shoes lol
Driving in those are a nightmare. I kept a pair of sneakers in the car for the drive.
Have you had them cobbled? Getting them adjusted to fit better makes a night and day difference in life. Especially if you have to wear them all day.
I havent. I am gonna look into getting them cobbled because im sure ill be wearing these more often now 😰
so they adjust the shoes depending on how your foot is structured?
An actual cobber will have some ideas and, depending on the shoe, can make adjustments, yes. Just like a tailor for your attire. Nothing fits better than something tailored to you.
Worst that happens is the cobbler looks at you with a forced smile and suggests a better pair of shoes. LOL ((totally happened to me))
Now try walking in heels
Heels are hell if the she doesn't fit, but heck they are powerful.
oh haha
i wonder if heels can be cobbled? 
they pretty tho
Some can, some can't. Just like dress shoes and sneakers and boots. Depends on the materials.
True. And they add a feeling of power so
You get that solid click in a good stride. ooof. p o w e r
But still, using them, especially for long periods of time, hurts like hell
heck, why is it 00:30 already!? Work in four hours, I should try and sleep.
heels look uncomfortable as fuck
im surprised no one hasnt made retractable heels
i'm banned there :D
what on Earth am I looking at
results of a code golf
didnt have activites for a long time
:c
but i can get you the server link
ooh, i didnt know i can appeal
wats this
is that Flutter
bolero F#
why
mute evasion
sucks for u. u should have got shenhe
i got perm muted because of using a bot command in their #counting channel
and then i rejoin the server to bypass the mute
after a few times i got ban
well deserved ban i'd say
Anyone want to do a maze?
Whoa looks cool
what a good time to write a a* path finder
ohh i made something exactly like that not long ago
Let me see if mine was bigger
lol
And here one with A* pathfinding through it https://cdn.discordapp.com/attachments/277820825665536001/738401108489142353/out.png
Just a steadily changing hsv hue as it generates each bit
lemme just get a gif quickly
oof that point left at the end
oop
that was incredibly satisfying until it wasn't
my day has been ruined
damn, I did mine with pyglet as originally I just wanted it as a visualisation, so it's not particularly optimised for generating images and making that took up a good chunk of my 16gb of ram 😅

something is up with that gif... in the preview you can see the colors behind the ones on top
oh yeah I get that too, idk why
lolll why does it look like that
but when I look at it, it seems fine
like in the browser or from the enlarged preview
https://youtu.be/tBocKXehKDk this is really cool
Hello, I hope that you're all enjoying the content and that you're studies are going well. If you're interested in the humanities, please support my new project about language.
https://www.youtube.com/channel/UCXUR3cio7aZ3DS3fpDpHBMA/videos
looks like a heatmap
it is one
also kind of looks like one of those noise textures
my pc screams when i look at this
those are some nice rainbow leaves
ngl I expected a rick roll at the end
universe?
man i never realised how helpful pygame really is
tbh I don't see what path it's trying to find
path to MemoryError
Random. I made this a while ago and am mainly just revisiting the CLI as it was pretty broken and it was bugging me lol, here it is though: https://github.com/wookie184/maze-generator/blob/main/maze/helpers.py
lololol that's click for ya
that's what i'm trying to neaten up though
but I realised there's a bug in what i'm currently doing in that PR too 🥲
do anybody here know the song called "Brividi" by Mahmood and Blanco?
in case somebody doesn't here is the song
Ascolta “Brividi” http://island.lnk.to/brividi
► Segui MAHMOOD
https://www.instagram.com/mahmood
https://www.tiktok.com/@mahmood
https://www.facebook.com/MahmoodWorld
https://www.twitter.com/Mahmood_Music
► Segui BLANCO
https://www.instagram.com/blanchitobebe/
https://www.tiktok.com/@blanchitobebe
Prodotto da Michelangelo
https://www.inst...
lmao only for light mode users
YOOO FINALLY
interesting lol
oof
wait crow do you have two accounts or is my client just dead
i sort of forgot the password to my first account
Suggest more topics here!
didn't expect this, probably the rate of knowing the logo change increased after a few days and stopped asking
does "to have" means to eat that famous person at my Easter dinner?
if it's that I'd definitely eat hideki tojo
Lol i remember Vore being an OT topic for a while
if "to have at easter dinner" means "to receive management of at easter dinner" then elon musk
lmao
ooh~
lets say there's a circle (x-6)^2 + (y-6)^2 = 6
is this circle in first quadrant?
@dire siren https://youtu.be/4yFiBhNIWYo
In the "Reborn as Guuji Yae" writing submission event held by Yae Publishing House, many excellent new works were born.
But even the best of them failed to match up to the few words that Yae Miko casually mentioned.
Should it be said that this is her extraordinary talent as the editor-in-chief of Yae Publishing House, or is it a display of her d...
oOoOoOOOoOooooo
more pls
Its centered at (6, 6) and has a radius of sqrt(6)
So you tell me
🤔
nevermind lol
yo @eager trout i made a colour picker from scratch
Scratch O.o (kidding)
damn
bro
How did bro
@inland wolf teach me
wait @inland wolf How long have you been using Flutter?
at least a year
the picker is based in hsv colours
hue saturation value
the big gradient is basically a graph with the saturation on the X axis and value on the y axis
the slider on the bottom adjusts the hue
master
I've only been using it for a week
If you have time, could you check this out https://github.com/skynse/memeity
I'm stuck af
@inland wolf You said you were making a photo editor right?
Will you be able to add text that has a changeable size and text and stuff?
I'm stuck on modifying the properties of things
I'm thinking of using it with flutters Canvas and Picture classes
state management 😔
lol
best if u do
cuz if ur state management is bad now it will haunt u for the rest of ur app
for sata , well, its Serial ATA
and pcie well, its a weird mixture of both, i dont know much tho
they both plug into the chipset where the magic happens, or sometimes to the cpu directly it its pcie
Jean Micheal Jarre
Does anyone know of a 3x2 double piston extender design?
I wanna switch between these states:
https://i.skystuff.games/TkPMUonq2MNa.png
https://i.skystuff.games/PqjaUeb1vjwT.png
@gritty zinc
pub struct HashSet<T, S = DefaultHashBuilder, A: Allocator + Clone = Global> {
pub(crate) map: HashMap<T, (), S, A>,
}
``` it's not a joke lol
feels nice to understand rust code for a change
some image showing the development of my programming language's parser
there's a difference between a normal string and a unicode one in my language
a unicode string is all characters \x80 and above
yes
because isn't ASCII still unicode
let's say it's non-ascii
strange ngl but alright
... Why
Even if you want to have eg only stuff in other scripts, then some ascii is still needed - numbers, punctuation...
Eg 'Это.' See the dot. This one little dot will make it not possible
then it should be a normal string
u"..." = unicode string
a"..." = ASCII string
au"..." = "..." = normal string
another image showing its development (now has the correct output and offset for multiple-line strings)
Wtf
How would Unicode string work then? As in: where it would be used? You basically never have non-ascii unicode strings. Even a simple space is ascii!
it's there for a reason i don't see other than giving the u prefix an actual use that isn't entirely shadowed by normal strings
well, the reason python has u is because of its dark python2 past where bytestrings were the default and you had to opt-in for unicode strings
i know
But why do you need this prefix at all? "it's there so u prefix has use" is no reason to make a feature
so i'll just keep it there for a really rare use case
hey i am loving Eminem and you ??
no
speaking of eminem
still gives amazing vibes https://youtu.be/Cbtgk20s6wA
Eminem's live performance @ the 92nd Academy Awards (Oscars 2020)
© all rights belong to the copyright holders
man at the age of 50 be rocking 
!eval
import random
meme_type = ["deadmeme", "freshmeme"]
print(random.choice(meme_type))
@glass briar :white_check_mark: Your eval job has completed with return code 0.
deadmeme
!eval
print("Hello World")
@glass briar :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print("Hello World")
003 | ^
004 | SyntaxError: invalid non-printable character U+200E
squeaky frogs
toddlers when you want the phone back before the 10 hour chu chu tv episode endz
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
!e
import this
@floral apex :white_check_mark: Your eval job has completed with return code 0.
001 | The Zen of Python, by Tim Peters
002 |
003 | Beautiful is better than ugly.
004 | Explicit is better than implicit.
005 | Simple is better than complex.
006 | Complex is better than complicated.
007 | Flat is better than nested.
008 | Sparse is better than dense.
009 | Readability counts.
010 | Special cases aren't special enough to break the rules.
011 | Although practicality beats purity.
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/qudehekoti.txt?noredirect
It works but the Zen command's better
If you could be any decorator, which decorator would you be and why
I would be do_twice from https://realpython.com/primer-on-python-decorators/#reusing-decorators
For obvious reasons
Lmfao
nice
I don't get it
Harassing hsp by being a static method of course
damn thats funny
haha static poop
is this a summon
it's because of the way our backend works
// merch: https://merch.krazam.tv
found this pretty funny
@tranquil orchid Hello the fastest, I am thinking of buying a keeb from akko and want to ask from where did you buy keycaps that you are using(vim one)
which keyboard are you gonna buy
akko acr 61
black and pink
zamn
imported?
wdym
isn't it in the US or soemthing
idk what you are talking about
where do you live rn
india
mhm and is there an indian store for akko
i c
@last mantle
yeah like newegg
hmm
when did they started shipping in india
I needed their site so badly for the parts

about 1600 to 1800
since the web got opened
the web is great, especially the keycaps they sell
have you guys ever got tired of trying to search for where the hell is the opening bracket to an "unmatched bracket" error
ok now you don't have to
well at least in my programming language and probably some others
Not really an issue, vscode has this colored brackets extension that makes this trivial
an issue for the REPL or the IDLE though
Sure but i dont think you should try and market your lang over something like this
Preety sure python 3.10 lets you know about unmatched brackets
!e
print("I forgot a closing parentheses here->"
@dapper dew :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print("I forgot a closing parentheses here->"
003 | ^
004 | SyntaxError: '(' was never closed
!e ```py
print("ok"}
@small coral :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print("ok"}
003 | ^
004 | SyntaxError: closing parenthesis '}' does not match opening parenthesis '('
yes it does but it doesn't point where the opening one is
most cases it's not important to
https://youtu.be/jlPaby7suOc
this one is really really funny too imo i loved it
Clojure/conj is so packed with must-see content that, unless you clone yourself, you can’t possibly attend all the great talks. To solve this problem and save your precious time, we have thoroughly analyzed the entire canon of Clojure talks and distilled them down into a single inspiring, thought-provoking, decomplected masterpiece that will blo...
bruh
yolo
VS Code has this built-in now
cool
lmao. what a great audience
@lost vortex did you like the video?
im still watching it, but since im unfamiliar with clojure i dont get many of the references 😭
https://devtoys.app/
This looks neat. Stumbled on it this afternoon.
that does look neat
in a similar vein: https://gchq.github.io/CyberChef/
The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis
hey so if anyone here has any advice, it would be greatly appreciated. I'm starting IB next year, and need to chose my classes, but I have a small problem. I'm moving next year (so, halfway into the program) and subsequently what school I'm going to. I have a list of about 15 countries that I might possibly be moving to, and a list of schools offering IB in each of those countries, but I don't know what to do because some classes might be offered at my current and not offered in other schools
I have a meeting with my IB coordinator next week, but until then, I'm wondering if anyone has any clue on what I should do, as I don't know what classes I can take that could transfer over
Sweet. Got this bookmarked now too.
ooooh, I like I like
Can you do like a quick analysis of what's the most commonly offered? Either within the possibilities of where you're moving or just like... in general?
mybe u can check websites of the schools u may go to, to see if what u want available
Thats probably the best thing I can do, so yeah im going to try and find the most common ones offered at the schools I am most likely to go to
I am also slightly worried about transfering credits. Whern my sister was in school it was a nightmare, and she knew where she was going, so I dont know how easy it is going to be to do last minute
@full crescent i couldn't react after closing, meant to thank you for helping 🙂
👍 glad it worked for you
attention people
Im in need of finding a song I legit dont remember the exact tune or lyrics but
i heard it around 2014 it was a englihs song, this guy had a "rough" type of voice.
i jsut cant rmemeber what it was called something like gumball or rumball or something like that
Can someone help m e find it
for future reference, this question was answered in #ot0-psvm’s-eternal-disapproval - the song was nickelback's 'how you remind me'
#ot0-psvm’s-eternal-disapproval message
making it in python \😩
not me making it in rust
What is the difference between incoming-outgoing traffic and inbound and outbound traffic?
which lang?
wdym
still WIP custom made
just for fun and to basically have something like extended python to code in
Would you?
⏼w⏼
french qwerty > french azerty. change my mind.
(basically canadian french keyboard > european french keyboard 😛 )
you mean qûèrté and ázértè?
Preguntas
is this an anti-smoking commercial
that's the anti piracy thing
The hottest new device right now is the Steam Deck, a handheld gaming PC from Valve—the same company that brought us the Steam Machine, the Steam Controller, and … Steam.
Gamers are excited to have access to their library of Steam games on the go, but this thing also connects to a TV or monitor, kind of like a Nintendo Switch. It’s a really in...
My ot name yay
Valve sent them this
They rated repairability at 7 out of 10
is that good? \🤔
you no longer a cherry pie?
Hey isn't the Steam Deck not yet released to the general public?
Only the dev kits so far
The developers of the Dolphin Emulator got a hand on one
I'm a sweet potato pie \😴
The Gamecube and Wii emulator
https://en.wikipedia.org/wiki/Mario_Kart_Arcade_GP wait this was an actual arcade game?
Mario Kart Arcade GP is an arcade sub-series of Nintendo's Mario Kart series, developed and published by Namco and later Bandai Namco Games under license from Nintendo. In all installments, for an additional fee, a player's data can be saved on a magnetic card which can be inserted into the machine again later to retain unlocked items and record...
Thought I was tripping
Would not attending school affect me being able to graduate if I already have all of the requirements and the only class I have is entirely optional?
Sounds like something you'd want to ask your school, not random people on discord who don't have the context of your situation
We can't give any real answer
I'm curious, what package managers do you recommend besides apt on Ubuntu? There are so many options, I don't know what's the right way now. (I recently installed Linux brew for my server). But maybe I should use snap? It's such a mess though. Snap/apt. With Manjaro it was all neatly organized into one (or actually 2) package managers.
@merry wren snap is kind of my only gripe with Ubuntu, and I'd never really suggest using it... on Manjaro, there's only one real package manager and that'spacman
you're probably thinking of Manjaro's God-awful AUR helper, pamac
brew is for macOS
linux brew is a thing nowadays
I've never heard of that, and I don't think I'd ever go near it
i used it last week for getting the Gitlab cli on my server
Personally, the AUR is not worth as much hype as it gets
like sometime's it's convenient but like
- I honestly didn't use it that much
- It's a bit annoying when different packages are not up-to-date
a good example is Discord, because whenever Discord is out-of-date on the AUR then you're kind of out of luck
you're forced to manually install which is especially annoying on Arch because there's no prebuilt package
Discord only has .deb, .rpm, and .tar.gz — So in this case, it'd actually probably be easier to download Discord on Ubuntu/Fedora/openSUSE rather than Arch or other distros
I probably should try Fedora at some point. I think Torvalds uses it as his daily driver. Big community. It's probably really good too.
I've been a big fan of openSUSE for a good while
as in like... at least a year or two lol
I personally am not a fan of how opinionated Fedora feels, since they like to push a lot of stuff from RedHat
so things like GNOME get priority
which is annoying, because I prefer to use KDE Plasma
and the release cycle is also a little funky
hey, about brew and linux brew
on macos brew is really great
i think linuxbrew will be good on linux too. (same team, afaik)
..
do you run KDE at this moment?
Eh, it seems straightforward but idk if there’s anything that I’m not considering
Cause what are they going to do, hold me back? Lmao
although this is just me installing some basic themes and being satisfied with them \😩
yeah but tabs, bro
lol I never use tabs
I hardly ever have multiple terminals open
and if I do, I just tile them next to each other
and Alacritty looks pretty nice tiled
omg. i love alacritty too btw
almost nobody knows about it, i'm surprised you use it
it's probably different with linux users though, but on macos it's def a niche thing
..
for me, nothing renders quicker than alacritty. it's so perfect, it just looks better too
Alacritty ends up being one of the more popular terminal emulators
some people will use other things like Kitty or Konsole
re discord;
i came across this last week.
it's probably worse on windows, but yeah :\
seems to be a little spyware thing.. but heck
it's the best chat we have nowadays
uh... I'm not gonna bother tbh
I must admit I saw "Stallman" and immediately closed the tab
hihhihi
lololo
bro, i'm gonna chill out, long day
thanks for keeping me up to date on all things linux
it's 12:38 AM for me \😩
its 3:06 am here 😦
i'm guessing you're in EST
yessir, unfortunately in FL
because it's 13 hours away from my time zone
ima florida man
https://www.usenix.org/system/files/1311_05-08_mickens.pdf
just discovered this gem
teaser:
an impossibly large buffer error is like a criminal who breaks into your house, sprinkles sand atop random bedsheets and toothbrushes, and then waits for you to slowly discover that your world has been tainted by madness. Indeed, the common discovery mode for an impossibly large buffer error is that your program seems to be working fine, and then it tries to display a string that should say “Hello world,” but instead it prints “#a[5]:3!” or another syntactically correct Perl script, and you’re like WHAT THE HOW THE, and then you realize that your prodigal memory accesses have been stomping around the heap like the Incredible Hulk when asked to write an essay entitled “Smashing Considered Harmful.”
on the other hand:
Make no mistake, I don’t want to write systems software in a language like C++. Similar to the Necronomicon, a C++ source code file is a wicked, obscure document that’s filled with cryptic incantations and forbidden knowl- edge. When it’s 3 A.M., and you’ve been debugging for 12 hours, and you encounter a virtual static friend protected volatile templated function pointer, you want to go into hibernation and awake as a werewolf and then find the people who wrote the C++ standard and bring ruin to the things that they love.
it is!
its beautyful
i wonder if this guy is still alive and how they feel about Rust
I’m glad that you enjoyed “The Night Watch” :-). Regarding the best programming languages for systems building (and teaching systems building), I do think that it’s still useful to teach people C. Learning C is a good way to understand the interface between the hardware, the operating system, and higher-level applications. However, I don’t think that C should be the first language that people learn. For that, I recommend Python.
With respect to new systems languages, I think that Rust and Go are promising. At this point, I don’t know if the universe needs an additional version of C++. In fact, it might be interesting to teach a systems class using just C and Rust/Go, and not use C++ at all.
https://www.reddit.com/r/IAmA/comments/2syfmu/happy_mlk_day_iama_black_computer_scientist_who/cnu684b/
7 years ago.
also, lol, "However, I don’t think that C should be the first language that people learn. For that, I recommend Python."
What are the powers of Florida man? Florida is weird so if Florida man was a super hero he should have strange powers
well ive seen an article of a man standing on a car moving at 70mph on the highway with an alligator and was high on meth so
@thin cloak
Ah yeah heard of same lol
🤔
Ah Florida man.... with strange powers comes no responsibility...used to listen to a podcast that had a Florida man segment sometimes since its so weird
i mean they make compilations on youtube haha
clang +1
How about we combine and get MinClang
Pity the fools who still use gcc

in true Florida fashion it's just stormfront lol
@clever turtle Literally anyone can record the chat at any time without asking anybody, this is the internet.
Not always. Like the NBA forbids recording it or even broadcasting it elsewhere.
If you're logging the chat then it's against discord tos iirc but screen recording or whatever is probably fine
Using social media welcomes criticism
People these days and their stupid speed runs ... ...... why do I remember of hearing that speedrun thing of Club Penguin banning
om*g USB C does charge fast
i mean posting the chalice and getting banned for it is fucking hilarious
:>
Literally who
joe
whats wrong with drinking a chalice of milk? 🤔
i'm pretty sure that's legal everywhere
¯_(ツ)_/¯
cum fermented milk chalice
fine
._.
tech otakus save the world 🛐
capitalism saves the worldrich
!paste
ot1 has officially became my personal help channel
yay
. ^^ error log
Insufficient disk space to save world
y
Big whale files
there are seven nations, and ... F for those who only have a 256GB storage
nope
it is a rebranding of mihoyo's games

they have 7 gig update just for an interlude quest , what will be the size for the entire sumeru update
Insufficient disk space buy 2TB
or higher
ah yes first saving accounts on cloud now game data
:3
ngl I read your nickname as "uncomfy gae"
now im a fried gae
sounds about right \😩
pls
Air fried or deep fried
oops how did I not see this
apparently this is a thing: https://unite-db.com/tier-list/pokemon
is it normal that I still have a 100% win rate
or all of those in standard match are bots
smh
ah yes raiden shogun**?**
A cat is eating my modem
air friers are just electric convection ovens lol
True
Genshin Impact?
its me
why u eatin modems
No it's me
frends dont eat the modem
Yes dont not healthy
wtf am i seeing
oh thighs. great. thats good but not for this server probably
The 5007 HP Devel Sixteen production version launched at Dubai International Motor Show 2017 to pioneer a new era that never has been achieved before.
:incoming_envelope: :ok_hand: applied mute to @stuck pollen until <t:1645408755:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
was that her legs or her boring-boring 👀
The bauds get stuck in my teeth. :(
legs
yesh
Who likes samyang? 😋
too spicy for me 🥵
yum
Yeah, I still can eat the black one, not the red one 😂 😅
Tried it once, maybe next time
I mean the color of the wrap
I think it was the cheese one I tried, I ate it straight up so it was too spicy for me
Perhaps adding eggs would've neutralized some of the spice
yeah, I like to add some vegetables too..
I've trried one of those, they're supposed to be spicy I thought
but they were not
the flame logo lies
nice! btw can you still handle the spice for the red one? I have tried it and it was too spicy..
I can lol
wow 😂 👍
yum.. oh it's time to have lunch for me too
Having some Tim Hortons Coffee nao after Japanese Karaage meal in a Japanese Resto
Lol a meat free burger havent tried but im too full to try
Tim Hortons Coffee? is that like a brand? I am sorry I don't know because I seldom to drink coffee 😅
Canadian
ah I see..
Like Starbucks and Krispy Kreme
Let me know when you try that
Nice..
meow
I tried impossible burger, it tastes like meat, but my mama (vegan) says that it doesn't
Joe mama
it's just me ig 😩
you should probably try jolochip lol
idk how much it goes in scoville scale
I sent this to someone I didn't like:
import time
print("loading 0%")
time.sleep(10)
print("loading 50%)
time.sleep(30)
print("loading 99%")
time.sleep(30)
print("finished loading")
I think they get the point
That looks really spicy, maybe I can't handle it 😂
lolz death
and I have watched from youtube, they ate something like that, and then they were taken to emergency room 😅
lol idk
It’s not a burger if it isn’t meat
They just don’t want to call it a “patty” because that sounds weird
They market it as a burger still
Burger is such a weird word when u think ab it
thats one fast boi
slow precompilation == slow turning turtle
very fast execution == yeeeting turtle
smh. how do u get 2 minutes worth of launching a julia interpreter.
eh. why 2 minutes
maybe you are high on package mismanagement on your julia environment :0
to be more precise, julia in commandline takes something like 20s, but launching the julia language server in VSCode or Jupyter takes a full minute or so
I barely have any packages
(@v1.7) pkg> status
[7073ff75] IJulia v1.23.2
[98e50ef6] JuliaFormatter v0.20.0
[1fad7336] LazyStack v0.0.7
what julia version?
for me LanguageServer.jl launches in just 5-10 seconds for me on v1.7.2
1.7.0
hmm how weird. why do i get a different experience
Its julia in a half shell...Turtle Power!
Hiya 👋 My mom is trying to figure out what kind of cable she needs for her old camera. Does anyone recognize this plug?
Firewire
There's probably a play on words with "jolo" involving YOLO
command line takes like 4 seconds for me
The truth is, I dislike ads and do whatever I can to block them at all costs, but android's forced ads are terrible.
what forced ads exactly
Any ads against your will, especially the youtube app
in the OS? or the apps?
apps
I sometimes don't want to see stupid ads from liberty mutual/more companies
and I can't block them
specifically
on android
or iOS if I used the youtube app
hence the only option is an adblocker
I wish there was an option to block certain ads
Right, but I want to choose what ads I'd like to see instead of them choosing for me
Interests do nothing to stop it
if only there was some alternative youtube app, for android, that blocks ads... if only... :p
I use a youtube front-end now, but yeah.
well, consider yourself lucky to have stock android/ pixel UI
I used to have an android, but the phone got older so I switched to a slightly cracked iPhone XR -__-
can't say a lot about iOS
iOS focuses on "privacy" but doesn't block ads
so I use adguard pro
on it
I wish there was a better option
in your local network, you can solve it with a pihole
I need a raspberry pi which I have yet to obtain
And my parents would ask what the heck am I doing
technically you just need anything that runs constantly, but yeah, probably a pi
Have I been a baud girl? ono
owo oh no
Lol baud at what rate
dont you hate it when you ask people more than one question and they only answer the first one
Do you hate it when they don't answer, but reply with another question?
im starting to hate my colleagues and i dont know what to do about it
Not a good sign ....maybe you need to bring up the issue tactfully rather than letting it simmer
Start numbering the questions
theres no nice way of letting people know they should follow etiquette or be more detailed in their questions
people will take it the wrong way
there's this one person here that's been here for 6 years that always replies with "huh?" whenever i ask a question
how do you correct this without sounding like an asshole
ha
More detailed in their questions sounds reasonable...but maybe they are end users who dont know how to formulate these questions...maybe some orientation or internal training may help
theyre not end users, they've been doing this for 6 years, they should know this shit already
lol
how am i, with my 5 months experience, supposed to train these people, that have been here for 6 years now
Turn to your manager and suggest that training to improve productivity
btw my official title is "Technical Graduate Trainee", im the one that should be trained here
mfw i gotta handhold people with 10x my experience
Like rain on your wedding day...ironic
Maturity doesnt exactly match chronological age or experience
Push for the training if it is needed
Say it is a refresher
some more context, its a small startup of 10 people in the offices here
not sure how i can push for training without sounding like a jackass
ask the other question(s) again
if theyre being annoying annoy them back
and most of all
it gets so tiring
dont take career advice from a 17 yo on the internet
Be nice and suggest it is needed to your boss frame it as not about correcting personal defects but enhancing teamwork and productivity...
what would this training look like
i dont think people would take it well if we got them into "how to ask a question" training, theyre grown ass people
says a 17 yo
Say it is about enhancing teamwork and collaboration...give a hypothetical work scenario but flip roles...let the other person feel what is it from the other end
So next time they will have empathy
Your Employees Will Love
making big promises here
I'd rather suppress these hateful feelings until they overflow and some day i throw my chair at one of my colleagues
Also gotta hit the gym in preparation for that day
Yeah they all do lol...sometimes they work sometimes they dont take with a grain of salt...many management consultants have a business actually selling these trainings and make big bucks.
Not healthy except for the gym part..
One time my employer actually forced us to attend one of these at great expense...whether it was worth it or not that is hard to gauge but it did give some fresh perspective to some of those that participated
No magic bullets
gardening
This could also be your outlet
Try art maybe and if you get good at painting or photography you can quit your job
Maybe a side business even
take career advice from retired people
oh wait
hi
would you rather
have a personal maid or chef
but the maid doesnt cook
@terse sluice ur so slow
and indecisive
okie
would you rather
be able to communicate with animals or communicate in all languages
brad90four
Communicate with animals, that's wayyyyy more than 5 languages
agreed
it changed keep up
Now it's dinner time, gotta go
have a nice dinner
would you rather
be invisible or be able to fly
@terse sluice
stop thinking so hard nerd
what is wrong with you
