#ot1-perplexing-regexing
1 messages ยท Page 522 of 1
I've played around a bit, they are quite nice
No clue, haven't been following it closely, but someone had an implementation on their git that I played around a bit.
i see
I just realized that for some reason BASIC is included in the syntax highlights
10 print "hello world!"
20 goto 10
``` which made me wonder which languages are supported in Discord.
even brainf* is included
++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
``` which is an esoteric language.
I'll take some research in that, thanks
Yes, it's maintained by volunteers
The only platform for which they roll their own solution is android iirc
I accidentally included some quotes in my title command, and now the title of my console window sounds a bit too ominous...
looks like something you would find in games with a lot of easter eggs (like undertale)
Does anyone know where to put .traindata files for my tesseract OCR
omg, I'm new here, I noticed this ducky emoji and decided to check what other emojis are there and I'm in love with this server already
...but I'd kill for nonbinary flag if you ever think about adding more flags
but right now I'm gonna swoon over the duckies and already existing flags
welcome!
yup
if I had nitro, I'd probably spam all the pride emotes there are in other servers I'm in
but right now I was reminded to do something irl

wait, did they add more logo emotes?
when I was here a few months ago, there were wayy less
Hmm
yo
Nah, they are all pretty old
hey you guys
what do you know about servers
omg what's with this slow mode, it's so annoying
what are you talking about
the flag emojis
hey you guys
elo
is that flameshot?
yes
someone told me their server EMC is on site and it's connected to their enterprise n/w.. and the support team for the enterprise n/w connectivity to the server is different
I'm having trouble picturing it.. I thought servers were all in one place?
@quick ledge what distro btw?
manjaro kde
yay
arch soonโข๏ธ
haha yea
manjaro i3-gaps
Although it's a pain to use steam on it on a laptop ๐ฆ
Really? It was pretty smooth for me
because of i3?
Because of bumblebee I think, not 100% sure yet
But all games I try to run on my desktop with proton work 100% fine on desktop and struggle on laptop.
hmm
why did you guys switch from gitlab to github?
Does anyone know how to convert your pip package into a aptget one
or make apt-get package of your python code (the piston-cli), i was making
o hi
I know how to create DEB package for normal binary but not for Python scripts
Just create new repos in GitHub, add new remotes (GitHub ones) and call git push
ok
Windows Task Scheduler is just amazing
ok
how much slowtime lol
Ok
@tame terrace what is git blame tightens?
trailing commas make the git blame more accurate, because when the next person is going to add another item to the list, they don't have to change two lines, just one.
ok
Ok
:D
e
Why don't people use techniques for reducing diff noise in JSON files? For example:
{ "foo": "bar"
, "baz": [1, 2, 3]
, "bonk": true
}
``` ^ this too requires changing only one line if you want to add an item.
Does the unfamiliarity outweigh the advantage?
But it looks atrocious
yes i defeninetly know what this means
well, it's just... unfamiliar
imo
doesn't look too bad to me
but when I first saw this, I heavily cringed at it
It looks horrible to me. Diffs are not something I see to optimize for
It reminds me of how it used to look when I copied scripts and settings for gmod as a kid
And pasted it into notepad
Ok
whoever made this ot name... ur diabolical
Ok
k
ofc! yw!
how do you not know, tbh, to be honest
"for the win"
K
hello godlygeek
but, what is "IMHO"?
I am not a shORt fOrM guy
imo, ysk what imho means. Its in my honest opinion, ywvm
๐
https://xkcd.com/1989/ is right, then. ๐
you learn acronyms the same as you learn any other words.
the same way you learn python
through guides and usage
also testing in prod
I will not lie that I may have used a few abbrevs before I knew what they meant ๐
but, IMHO definitely used to mean "in my humble opinion" - I've heard that younger millenials think it means "in my honest opinion" instead, though.
@vapid nymph what ssh client are you using on Windows?
vsc
hm. no idea, then, outside my area of expertise.
but like
okay different q
how does one set up the private key and public key for ssh
I mean, ten thousand foot view, you generate the keypair, tell the server to accept incoming connections from the public key, and tell your client to use the private key when it connects.
well those are the only 3 steps. Make the keys, tell the server to accept the public key, tell the client to negotiate using the private key.
but the way to do each of those 3 steps depends on the particular tools you're using.
i have access to the cmd line of the server itself through vnc
which is running a linux flavor
and then on windows 10 on the client
right. So assuming you've generated a keypair, you tell the server to accept it by appending the public key to ~/.ssh/authorized_keys on the server side. And then chmod 600 ~/.ssh/authorized_keys because it can't be readable or writable by other users.
welp lemme try this
https://askubuntu.com/a/46425/282282 for example.
so out of curosity what is this?
no idea why I censored all of that I just remade a new key anyways lel
the randomart one is supposed to be a picture that uniquely represents the key. The picture is shown in some places, and the idea is that you might be able to recognize if the wrong key is in use if you're sure you've never seen the picture before.
in practice, it's really not very useful.
and the fingerprint is a hash of the public key, which tries to reduce it to something shorter and hopefully more recognizable. Same idea.
so the fingerprint is the public key?
because that's whats in the file
first one contains the private key, second one contains the fingerprint which i assume is the public key because of the name?
hm. I thought fingerprints were shorter than the public key, but maybe I'm misremembering and they're the full public key.
yeah, the id_rsa.pub is the public key, the id_rsa is the private key.
oh, it is longer just all on one line
whereas the private key is on multiple lines
odd.
the private key is much longer than the public key.
now I've got to find where it is
this is the contents of that pub key message, do you know if I paste the entire thing?
ssh-rsa qwertyuiopasdfghjklzxcvbnm1234567890 realusername@client-computer-464
(note: not actually the contents)
I just generated an RSA key - the fingerprint was 43 characters, the public key is 396, the private is 1675
yeah - you would open the public key file in notepad or something, copy the contents, and paste them at the end of your ~/.ssh/authorized_keys file.
(which may currently be empty, or may not even exist yet)
yeah
no wonder
this is why I had so much trouble, the .ssh folder doesn't exist
which is odd since I've been using ssh for a week now?
this is a raspberry pi.
then:
mkdir ~/.ssh
chmod 700 ~/.ssh
touch ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
can I do that over ssh?
yep.
that'll create the directory, set the right permissions on it, create the empty authorized_keys file, and set the right permissions on it.
done
then I put this in it
yes - not just the fingerprint, the full contents of the .pub file
yeah
it should be one line of text, 400 characters long or so.
no idea; never used VS Code.
oh hey it worked
๐
โฆthat wasn't even that hard
now to put a text file in the same folder with directions how to do this again
I haven't done it in a while, but I remembered that authorized_keys was the name of the file to google about ๐
# On client
ssh-keygen -t rsa
# On server
mkdir ~/.ssh
chmod 700 ~/.ssh
touch ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
#Steps
- copy the contents of the .pub file from the keygen to the private server.
oh hell yeah
the main reason I wanted to set this up is because i have to reauth like 3 times in vsc when opening up a folder
first you open the ssh, then you open the folder, then you open the workspace file
each one required reauth
@solid elbow lmao now I broke vnc by running an update
used wrong channel oops
Where did I get pinged?
#ot1-perplexing-regexing message this ig?
oh shit tabs and spaces?
thats next level bro
i used to be a "tabs" guy but then i realized my editor converts 1 tab to 4 spaces
so now i like spaces more
lol
Ok
you can search mentions:<your_username> or mentions:<your_id> in the search bar to find who mentioned you
or check your inbox
Ok
Do you chmod with numbers? isn't something like u+x better?
I don't even know how to do that symbolically off the top of my head. I had to experiment to figure out that it's u=rwx,g=,o= - so no, that's worse than 700 ๐
I use the symbolic version when I'm modifying the mode of a file - adding the execute flag, removing the write flag, or whatever.
But I use the octal version when I know the exact privileges I want; it's much more succinct than listing them out separately.
In [1]: print(eval('1/' * 10 ** 7 + '1'))
segmentation fault``` since when did python start seg faulting lol
wait wht
hmmm. probably a broken ram module or..
lemme try segmentation faulting
@rough sapphire sounds like this code causes segmentation fault because of how it exhausts memory like a monster
yes, probably
tried it in julia, it did used nearly all my ram lmao
it worked and it returned 1
hmmm
the colors here are holy
bruh it used 1.5gb ram before windows said n o
Strings are expensive, integers are not
send me your anime background
so typing it out manually on the terminal wouldn't lead to a segmentation fault?
Well, if you can go and type 2*10^27 characters in your terminal, you'd still segfault
hey i need suggestion of things to add to my funbot
what is julia?
Watch what unfolded at JuliaCon 2020 here. The latest developments, optimizations, and features happen right here, at JuliaCon.
thought it was a server
wanna join? it is still fresh and new
https://discord.gg/unm87EkF if u want lol
No i mean a vps
ok
do someone use whatsapp?
nope
what about facebook?
yes
Switching to signal
yup
i personally use signal with telegram
but still can not totally stop using whatsapp because all my friends and work are there
when i say to my friends to swithch to telegram and signal they download them but do no turn on notifications. AND HOW DO WE SUPPOSE TO CHAT NOW IF THEY DO NOT SEE MY MESSAGES?
same
Tried that on my phone it like froze termux for a good moment then termux killed python lmao
Tried it with 100 million, termux didn't even try killing python i waited for like 5 minutes
wtf
Don't even try
kidding?
hello
!silence
โ silenced current channel for 10 minute(s).
โ unsilenced current channel.
Now I'm curious what exactly happened here
one channel got muted, many started coming to other 2 ot channel
all ot channel got muted cause of switching
same
I'm still in confusion. one guy got warned for sending gif 3 times, but also check how ot0 has an inappropriate name. ironic
what
dont be a dict
is not innaproprate
?
also sending a gif thrice is spamming innit?
basically becomes a wall of text so yeah
why shouldn't I be a dict? dicts are cooler than I'll ever be
hm
lol
im an array
useless
exactly
hence they are cooler
thank you
lol
d = {0: "element1", 1:"element2"}
d[0]
d[1]``` 
wo
you can also make your custom dict which has an append and remove method
by subclassing dict you mean?
yeah
hm
can that be done though i have never overrided builtin types
Think it should be possible
Depends on what you wanna do
I don't believe treating a dictionary like a list would be faster
hmm, i see
If you need a list with a dozen of entries, ranging from 0 to 10.000, using a dict would make more sense though
Do lists work like arrays in some other langs? like the objects are stored next to each other so just adding the index will give the location

In [1]: r = range(50)
In [2]: l = list(r)
In [3]: %timeit l[45]
44.5 ns ยฑ 0.24 ns per loop (mean ยฑ std. dev. of 7 runs, 10000000 loops each)
In [8]: d = dict(zip(r, r))
In [9]: %timeit d[45]
50.1 ns ยฑ 0.449 ns per loop (mean ยฑ std. dev. of 7 runs, 10000000 loops each)
damn
pretty close heh
And then there are operations like insert
yeah that comes pretty handy
are dictionaries with .get() a better approach to implementing switch-case in python?
...which is impossible without creating a new dict
for checking if the dictionary does not have that key?
yes ig
better than what?
d.get("some_non_existing_key", "default_value")
making custom classes for that ๐
Saw something similar in #esoteric-python earlier today I think?
If it was in #esoteric-python , that is a good enough reason for it to be not used in actual code
that's true
Quite liked that idea though
Dunno what you mean
In js-
switch(argument) {
case 'A':
return 'it is A';
case 'B':
return 'it is B';
default:
return 'It is none';
};
In python this is same as:
switch = { 'A': 'It is A', 'B': 'It is B' }.get(arg, 'It is none')
Dont tell me you have all sorts of hacky stuff going on in your projects ๐
python
๐ค
oh got what you mean
the dict one looks cooler dont you think
what are you doing with the reactions 
I sometimes use that to dispatch command line actions. Basically, I have a dictionary mapping command names to functions, so I can do my_dict[argv[1]]()
The dictionary approach is fine
But that wasn't what was going on in #esoteric-python
haha
Why does your message link start with ptb?
And isn't switch-case O(n) and using dict O(1) since it's a hashmap :O
Im using the Public Test Build
Ptb is for getting updates earlier, (hence slightly less stable), Canary is much less stable and isn't really meant for the average user
i use tabs and spaces
Oh yeah?
I use the return key
But so does { A: 'It is A', B: 'It is B' }[arg] ?? 'It is none' in JS

Hey guys, I'm trying to set up a linux VM on my PC. I have two disks, a 256gb SSD, and a 1tb HDD. I'm planning on installing the VM on my SSD, but I want all the apps to be on the HDD, is there a way I can do this?
You probably have enough space to put apps on your ssd
Depending on what hypervisor you use, you might have a way to mount/passthrough part of your hard drive and mount it at /usr/ or whatever
But yeah, you could make an ext4 partition on your hdd and mount it on your vm
Oh ok, thanks :D
Ok
Yes for starting
After that start making projects
okay
Anyone able to answer a couple Q's I have about views and templates in django?
eh, nvm ill figure it out soon
I'd suggest checking out #โ๏ฝhow-to-get-help ๐
So if i addd someone as a collaborator on a github repo, can they see the secrets?
of the repo
Depends on how you store the secrets
https://docs.github.com/en/actions/reference/encrypted-secrets should have the answers
Encrypted secrets allow you to store sensitive information in your organization, repository, or repository environments.
Nor can i nor can anyone else
u can only update it
not see the cureent value
๐
daily ot challenge: pronounce w o r c e s t e r s h i r e
monopoly guy says moNOpoly
Gg
akarys, an ot name with your user name 
ez
Nice! What's she making?
egg biriyani with fried potatoes, (garam masala added to it)
the smell is reaching all across to my bedroom from the kitchen
aha cool ๐ Send the pic please while eating it!
lmao what?
ok no problem
send the pic of the dish instead!
I wanna see
I like biryanis
wowow
samosas, you're watering my mouth
in dms
its been a while since i ate samosas ๐ฅฒ
yup
my mom made them last week.
I mean, we do have them as snacks once in a while. but credit goes to north indians
Hmm yes here it is shivansh!
kewl
lmao cool
cool ๐ I like khajur
shivansh? i am jason
yes I think you are
๐คจ
your name is jason right
yes
then whats with shivansh
๐คท
nope
then why did you say,
I am shivansh
lol what you kind self doxx
ok gg
oh lol, nvm. typing mistake
@brazen ingot ๐
I saw his name while xith was streaming
I saw like shivansh with his pfp
@twin charm @mellow spire
no it should be json
Json always sus to me!
i have used many times in the bot but yes
it is kinda cool
but I can't code in that
what
I have edited my terminal through settings.json. so i realized it is cool!

sed
Not about you chill!

ok
anyone wanna join ?
duel starting
i won ig
I'm slow but I will try
lol
alright sending the link
juin
damit the punctuation
somehow I got 45 wpm even though I was typing at 100 wpm at the moment
bruh
110 wpm
that was the fastest I've ever been
and the highest accuracy too
So there's my new personal best.
good race though
If you mention @hoary crane three times at 3 am he will send you a malicious python script
Bloody @invalid-user
If you ran their script, be sure to reset your discord password.
Invalid Mary?
mod is typing lets see whats it
What was that guy called again?
what why?
bloody mary amirite
Go to #python-discussion people can't stop talking about it
I cant see anything about it
They shared a token grabber for windows through dms.
Look again, they talk about it. To get the context you need to scroll up
oh lol
can you send initial message link that started convo
I see its a fake game but a virus
Idk where it began
guy name avram
hm
Different avram
oh sorry dude for ping
They are gone anyway
What's your admin dance @solid pollen ? 
no lol it is
Akarys's admin dance is a dance to the weeknd.
Hahaha
Lmao
Which song?
Oui
i want to turn this into a dance gif lol
then do it!
Someone's gotta do it
idk how to ยฏ_(ใ)_/ยฏ
Default dance akarys
Lmao
this guy knows his moves
i bet he gets all the ladies
Yea
He's a safe 1.5m distance from all the ladies.
thats true
No duh covid
bruh covid
Safe and stylish lol
this kid is like the living testament of all french stereotypes
lol
Girls don't like a piggy boi ๐
the outfit and the glasses
Yea
@solid pollen did you get dm from #sir-lancebot-playground
Yep
Someone pin this thing
Yes lmao๐๐
lol you didnt run the file amirite
Even if, you first read the file before you run it
it was dicussed in #python-discussion checks different places for you dicsord credentials
@west zephyr token == credentials in a file right?
how did you guys realise that its malicious code
people read the source code
Some people read it, not me, they posted parts of it as screenshots in the #python-discussion
This was not that far up .... 
what in the world
I'd like to read it too but it's understandable that they (probably) won't share it
Why?
In case anybody else tries to pull that one again?
That's why it shouldn't be shared.
because he stopped other people to directly run it
That guy deserves a medal
yeah I dmed him for the code and he didnt wanna send it to me
yea I just said that
same
as a programmer, I wanted to read the code and see what it is
so I dmed him :-
sed
lol
Let's not do that, please
Lol
I aint gonna run it anyway, just gotta check the code
Lol ikr
That guy "stop bullying me"
haha
proc iml;
start LocSaddlePt(M);
dim = dimension(M); n = dim[1]; p = dim[2];
minRow = M[ ,>:<]; /* for each row, find column that contains min */
minSubscripts = T(1:n) || minRow; /* location as (i,j) pair */
minIdx = sub2ndx(dim, minSubscripts); /* convert location to index in [1, np] */
maxCol = T(M[<:>, ]); /* for each column, find row that contains max */
maxSubscripts = maxCol || T(1:p); /* loation as (i,j) pair */
maxIdx = sub2ndx(dim, maxSubscripts); /* convert location to to index in [1, np] */
xsect = xsect(minIdx, maxIdx); /* intersection; might be empty matrix */
if ncol(xsect) > 0 then
return ( xsect );
else
return ( . );
finish;
M1 = {1 2 3, 4 5 6, 7 8 9}; idx1 = LocSaddlePt(M1);
M2 = {9 1 2, 8 5 7, 3 4 6}; idx2 = LocSaddlePt(M2);
M3 = {8 1 9, 7 2 6, 3 4 5}; idx3 = LocSaddlePt(M3);
print idx1 idx2 idx3;
what language is this written in?
please don't die
idj
Whereโd you get it from?
โIn a matrix language such as SAS/IML, you can use row and column operators to find the location of a saddle point, if it exists. โ
Thatโs from the article the codeโs in
wait what
where's that written and how tf did I not notice that
a shit Im an idiot lol
guess my brain just skips the introductory para lol
thoughts about this db code @rough sapphire ?
won't be back, i'll go commit dead

try:
except:
redefining t
variable names make no sence
light theme
and in general pain
and ofc "str"+str()+"str"
well the variables are numbered, so...
that is still pain
Okay I have another function for you. It's in dark mode
bro
that is a perfect chevron
lol
What if we tried more power?
This is already peak perfomance
More
Moooorree
Hard coded tick tack toe game?
lol
in b4 someone links the xkcd
wha?
fine...
i'll do it myself
https://xkcd.com/832/
5195 lines lmao
def isWholeNumber(a):
if (a == 0):
return True
elif (a == 1):
return True
elif (a == 2):
return True
elif (a == 3):
return True
elif (a == 4):
return True
elif (a == 5):
return True
elif (a == 6):
return True
else:
return False
Lemme work on this more
I know how to make it better
Needs more nesting
Please don't write it out yourself...... write a scrip that generates a .py script that does this this for like 10000 numbers
Ik
lol
I know
I would but I'm trying to come up with ideas
3.5k
@rough sapphire
Theres also another way make a huge list of natural numbers and loop it looking for a
i was on my phone and i had to scroll down 5000 lines
Issue #24: no
no
where's that ping video someone made?
i need to watch it
What's poppin' #fluteGang ๐ I created this song & music video for the "Discord Hackweek 2019" official contest hosted by Discord. I didn't win, but I'm still super proud of this tune. Tried to make funny use of discord sound effects and combine it with my style of EDM. To this day this remains my most legendary work, and I truly appreciate all o...
no
idk then
The @ everyone ping?
Look in pins
i dunno
I found it somewhere i forgot where it went
here we go! #ot1-perplexing-regexing message
Can anybody actually do a @ everyone ping ๐ ๐
Nope.
That's pretty funny
Nope.
I will try it out in my next help channel ๐ค
It will be immediately taken down
I think they learned their lesson after the parrot thing
Can't they revoke permission so only admin can ping everyone?
Idk
@ everyone i am asking because of my curiosity no intention to harm anyone"can ddos attack can be done by parrot?
No, no it can't. If you think opening a hundred windows of cmd is a dos attack you're wildly mistaken. Let alone a ddos
There are no tools built into windows that could facilitate that
Nor should anything like this really be discussed.
Then just don't discuss it with him ๐คทโโ๏ธ
I accidently went into #315249263103967242 thinking it was python-general, so I was like "why did the chat close and why is lemon promoting stuff?"
took me a minute to realize
Admins can
(Though thatโs not something we do often at all)
i use
Well I really use windows btw๐คฃ ๐คฃ
At least, not frequently on purpose
Yep. One time I got pinged 22 times on this server after checking in the morning
In one day
@high zealot
Although istg that had to be intentional
But why
This
How to fix bad sound on Kali Linux operating system 2021.
Sound fixing on Kali Linux is a major key in computing and I believe even in other operating system. In the video we learn how to fix the sound.
lmao 2021
@supple obsidian?
cool, are you trying to like see how windows works from within a USB without actually installing it
?
kinda like how you can try linux without installing
exactly, i have 2 operating systems, one win10 which is restricted by school, so i cant install anything on it, making it impossible for me to try out my programs intended for windows 10, another os, ubuntu 20.04, where i do my coding on, and I want an extra small windows 10 on a usb which will be non restricted and i can try out small .exe programs that i cant run on ubuntu
try wintoUSB to see if it can do what you want. Not much sure but eivl suggested it in general
you can use wine to run exe programs on linux
i used it just today to run an .exe file and it worked fine
i do use wine, but it doesnt run everything, there is still a large part of programs that i can't run
i use windows btw
lmao
ITS MADE ON PHP
lmao
hahah
php is very interesting!
haha
Did you make that web?
cuz you're the one who know programming ๐
@wooden sapphire
well i did'nt do it lmao
im a student if i did it i would rig tf out of the grading
So I can try @.everyone and no one gets a ping?
but mods will get notified that you pinged
What's wrong with PHP?
You can, but that doesnโt mean you should. Trying to ping 150k people, even if it doesnโt work, isnโt something we like to encourage
And yeah, I believe we have a mod alert for it
ye akarys talked about it
or was it stelercus idk
Ah, of course these wonderful people to have done it already
Alright, I have nothing evil in mind, just been wondering how it worked in this video
my biggest qualms with it are: A) inconsistent function naming B) nontransitive equality C) circular comparison (order)
Is there any downside for the viewer of .php sites (not developer)?
It's really funny ๐
other than the fact that if there is a bug the viewer sees it, i can't think of anything
(as in, the fact that bugs are easier to make)
nontransitive equality means that there exist values of a, b, and c for which a == b and b == c but a != c
circular comparison means that there exist values of a, b, and c for which a < b, b < c, and c < a
which, side note
Several people are typing ... ๐
the circular comparison thing also means that there are some lists which, when sorted using sort(), end up not actually being sorted
That may be true, but I mean in the video linked above ๐
I have a doubt. if normies cant ping everyone, how is it blue over here
when you turn of @ everyone ping it is still blue it just doesn't ping
ohh
which is why the message is not highlighted in orange like norml pings are
like this
oic
That is strange
Anyways thanks for info
This is a real ping:
@โeveryone
what
unicode magicke
โ
๐ง

PRANKED
this is also prank

beautiful

ferris is poggers
i've said it before and i'll say it again
i want someone to write a wattpad about ferris and xenia vibing
and maybe doing trans stuff
Nice photo lol
yesh
there are also agender and genderqueer versions
i wish there was a genderfluid version but i don't think there is
and there's also a pride one
Not rly that related, but you can use .prideavatar in #sir-lancebot-playground for a bunch of different pride avatars!
OwO
so u also a rustacean? ooooh
yush
oooh
do u wanna become a human of julia too?
@carmine niche it is a fun language :3
i may look into it at some point
how do I reinstall with pip?
!charinfo โmoderators
\u200b : ZERO WIDTH SPACE - โ
\u006d : LATIN SMALL LETTER M - m
\u006f : LATIN SMALL LETTER O - o
\u0064 : LATIN SMALL LETTER D - d
\u0065 : LATIN SMALL LETTER E - e
\u0072 : LATIN SMALL LETTER R - r
\u0061 : LATIN SMALL LETTER A - a
\u0074 : LATIN SMALL LETTER T - t
\u006f : LATIN SMALL LETTER O - o
\u0072 : LATIN SMALL LETTER R - r
\u200b\u006d\u006f\u0064\u0065\u0072\u0061\u0074\u006f\u0072\u0073
Ah, I see
you can also do \ iirc
Yeah, that pings
any features of julia i should be looking for?
i actually wanted to learn julia
then thought i didn't have a use case for it lol
rust is soooo nice xD
hmm
Well, that worked
so whats going on?
^
are you playing with ping commands?
testing if putting a backslash beofre thr role ping prvennts from pinging
well.. you could have created your own discord guild to test that out
No, still pings
I tried it once
no need to ping all moderators, for then removing it
It was bad
ok
making all sleeping moderators wondering whats going on when they wake up
will do
@rough sapphire
with no way of finding out.
do you agree?
i feel like im being ignored @rough sapphire
you cant go around pinging roles on the server for no reason
ok
and if you do it by accident, the worst thing you can do is to delete the ping
so dont do that next time at least.
I remember pinging you by accident once 
how many of y'all use custom css/light theme/amoled dark theme?
Did someone ghost pinged 
f
Custom css is against discord tos technically.
OwO
It's a big shame that it is
Yes, yes it is
They've also blocked you from changing css on the normal client
Cause it's not like they're going to monitor something like that right? And I was trying to fix their block system to actually block people
But after you change a few css values in the inspector, messages stop loading completely
As usual, the dev team doesn't care
If you try to email them about it they tell you just right click and block
When I try to explain that I can still click to view messages they tell me "just don't click"
When I try to explain that's not how people with compulsivity issues work, they tell me just to leave the mutual servers or get over it. As if that's a solution
They always say "we can't make it any better, it will cause issues". Meanwhile in one evening I could fix it myself
discord is not particularly well known for their stance on ableist issues
or rather
for their ableism
:)
Does anyone here use linux?
Maybe Apples and Macs can be used as a special space food as a last resort
seen that one before i think
going back to the "things haskell can do" thread
-- but can python do this
Prelude> let 2 + 2 = 5 in 2 + 2
5
```(`Prelude>` is the ghci prompt, much like `>>>`)
Wait, haskell can do that?
hehehehehe

basically what's happening
+ is a function
an infix function but a function nonetheless
and when you say 2 + 2 = 5 you
are shadowing the + function
haskell lets you define functions partially
so in this case you are only defining the function for the specific case of 2 + 2
it is better to just go to the website :3 but it depends. julia was designed to be good at scientific computing
How can a language's core keywords be rewritten so easily?
if you tried something like
Prelude> let 2 + 2 = 5 in 1 + 3
-- *** Exception: <interactive>:5:5-13: Non-exhaustive patterns in function +
haskell is based on lambda mathematics so uhm yeah?
lol
there aren't really as many keywords in haskell as you think
none of the operators are keywords they are all functions
just infix
lmao
i am learning haskell just to understand FP. i dont have many use cases for it for now
in fact
most of haskell is not part of the core language
the majority of it is defined in the Prelude module
there are some things that are magic
but the majority of the language is not included in the base
it is just an automatically imported module
idk if magic is the right word
io actions are the only magic thing i can think og
and error i guess is also magic
of*
and then chats dead
if pure is awake or lakmatiol probably it will not be deadz
-- but can python do this
x = x
Well the typical layman dunno haskell
i think everyone should learn haskell, at least as much as they can
even if you'll never use it you'll learn a lot of useful ideas that you can port to your other works
julia has haskell like features on its syntax and form which i like
begin ... end syntax for example reminds me of do ... in haskell
my favorite joke atm is avery = avery, which is a joke that only my grsm haskellers will understand UwU
well
do is just a shorthand for bind and bind-drop
i cant understand because me is new to the language
it is sugar
so sweet
lmao
i am learning from a book
Dave!!!!!!!!!!!!!


