#ot1-perplexing-regexing
1 messages ยท Page 392 of 1
My bank account would fly out at the same time :)
Does France not have much of a game dev scene?
In the south we don't have any big studios
they pay shitloads in the UK atm because they have trouble retaining talent
We do have some small studios, but nothing really fancy
Well, at least I'm at 10 minutes of the 2nd biggest French city
the only friends I have who chose to work in France were French.. I don't understand how people can choose to work when they can expect a strike every couple of weeks
Its difficult to even find junior game dev positions
I morally can't
Why are you determined to stay in the South of France? Family?
And weather yeah
I morally can't
@solid pollen wdym by morally
and we don't have two strikes a week haha
I mean, I really dislike the pay twice ubisoft policy
You need to pay for the game, then pay for being able to win the game
that's pretty much every AAA game publisher jamming that stuff though
I don't necessarily want to work on AAA games
An indie studio would be fine, as long as they're making cool games
Not rubbish mobile games
@summer knot I was warned and my perms were taken away when i was asking about some code it considered it spam
Well, one of the rubbish mobile studio near me worked on remedy's quantum break, which is one of the 5 best games ever for me
But they have probably just did half of the third of a sequence
i watch some devs on youtube
they go work
after work they making their game
๐
hard schedule
and tight
@rough sapphire Like the bot auto muted you for spam here in the server? It's possible it just gave you a message about formatting
I don't have anything in the system showing a mute or anything like that
Well, I'm trying to get always more familiar with unreal engine on my free time, and I'll maybe try to sell some assets on the marketplace
Couldnโt talk in #help-cookie
Was it dormant at the time?
Okay
why not unity . why unreal
unreal fees are high
if you sell your own game
unreal will take %5 of your winning
Unless a channel is in Python Help: Occupied or Python Help: Available then you won't be able to talk in it. And you can only claim one channel at a time from Available. After your channel is closed in Occupied, there's a 15 minute cooldown until you can claim another one
So perhaps that was what was going on?
@gusty oar You might say that the fees are ..... Unreal
And they don't claim money if you publish on the EGS
epic game store ?
Yep
see you ๐
wow, hard leetcode problems are hard
hm, suddenly getting 401 Unauthorized on my bot login
I suppose this must be something to do with the new urls..
probably discord don't like your bot
That'd be weird considering I'm just running it from localhost here
and the token worked yesterday, although I've also tried a new one
discord seems shaky atm
Seems OK here aside from that
I've seen a couple duplicated messages.
Still nowt, although they said they fixed things on twitter
Can't have a downtime if they don't report it ๐ค
Everyone: "We're experiencing problems"
Discord: "Is it your network?"
haha
Oh, I see
So if I move to an older version of my bot, it's fine
so there's something really weird going on with this library's stuff
Having done both Android/Kotlin and Python/Django a lot in the past few days - I have real love/hate feelings towards both static and dynamic typing. What I really want is Python's dynamic typing, but Pycharm to be a super genius and be able to refactor smartly
@undone berry you can get that in languages with inferring type systems. See Haskell, elm, purescript, elixir as well I am pretty sure.
I do like that they added type inferrence to java.
Well, those are just static languages still right?
Kotlin has type inference for the most part
Ye, but Haskell type inferrence is much more powerful. You can omit function argument types and it figures them out, you can ask it for a type of a generic expression, which type needs to be in an expression with type holes... Elm even lets you omit schema descriptions when dealing with JSON and such
can i do currency bot in discord
i mean bot should tell for example
4 euro to dollars
hmm how
Find some API that gives you conversion rates - use that
Brains, man. Brains are odd.
Owl City never did a cover of Pink Cloud by Pegboard Nerds, but that's what the music in my dream was lol
hey guys there shouldnt be a problem with running python 3.7 code with python 3.8.2 right?
Are you running it by double clicking it?
yes
nvm i figured it out
its a problem with different versions
ok now how do i change my project to a newer version of python?
im using 3.7 and i need to change it to 3.8.2
Unless you're doing a shebang of a specific python executable and unless you're taking advantage of 3.8.2-specific features...you probably don't need to do anything.
Does it run as expected in the newer?
yea i thought so but im running my 3.7 project with 3.8.2 and it autocloases
well it runs with 3.7 but not 3.8.2
It autowhat, pardon?
it closes immediately
Does it give an exception message?
not through double clicking it
im trying to run it through the IDE but i dont know how to change the IDE python version
Can you open up a terminal/prompt and run it that way?
ah yes
python3.8 script.py sort of thing
segfault or python exception?
i cannot comprehend those words
Well, what's the error?
i entered a wrong file format
Okay, but you've got it working, now?
nope
what the heck
i renamed the file and entered the correct file format but it says pygame.error: Couldn't open wall.png
I don't know what the hell you're doing in 3.7 that fizzles out in 3.8.
Do you have the correct path to the file?
yes
Is it a relative or an absolute path?
its in the same folder
if you type dir does it show up?
absolute paths start at C:\ or another drive letter, relative pats start at the current working directory.
where you are typing python3.8
pycharm
oh wait no i need to change the version of python pycharm is using to run on first
That's one step.
wait how do i do that now
Probably somewhere in pycharm, like a dropdown menu somewhere, maybe?
I don't use it.
Are you talking about import, or...?
I'm not sure what the best practice is with that and pycharm, if that's what's needed.
Me, I'd find where it was in the system and either link to it or just dump the thing into the project folder.
But that's probably not how you're supposed to do it.
im gonna open the command prompt and cd into the file then lastly install pygame there
i hope it works
yEs
its finally works
thanks so much guys
@rough sapphire
how many grains of sand before you have a beach?
this is pointless
i think it's more like, is the beach still a beach despite being able to be used in varying ways. let's say there's a volleyball match on a beach. does that make it a sand volleyball court and no longer a beach? i think the intuitive answer is that it's still classed as a beach, it's just being used in a different way. there's no way to escape the fact of its beachiness.
I would say you could technically have a beach without any grains of sand.
You could have a beach of rocks that fit the sloping profile of a sand beach that then meets the water.
You'd still look at it and go "Oh, yeah. That's a beach."
"Fucking uncomfortable beach, but that's a beach."
def digitsum(x):
sum_ = 0
while x:
sum_ += x % 10
x //= 10
return sum_
int digitsum(int x)
{
int sum = 0;
while(x){
sum += x % 10;
x /= 10;
}
return x
}
```that is not applicable here, these 2 snippets both use the same paradigms (be their name whatever), and yet one is in python, and one in C
the difference is that in python all of the things youre doing involve objects
the code may look similar, that doesnt make the underlying execution similar
so you would say those 2 snippets use different programming paradigms?
yes, by virtue of being python, the top snippet is object oriented
I disagree, meta.
(imo)
The paradigms themselves are the same
everything inside that procedure involves objects
what if I write a C interpreter in python
Sure, at the underlying side
does that make that bottom snippet OO
But nowhere in that does the fact that those are objects as opposed to primitaves does it mater
that's such a specious argument
@graceful basin
you can say that you can implement any language and shutdown the discussion that way
well, I claim that paradigms are independent of implementation
it's like 'if i define + to be - then 1+1 is 0' youre sidestepping the entire discussion
However a language will lean towards a specific one
And I'd argue that in most cases, it'd be identified as such
But it does come down to the code as written
I think the distinction really needs to be made at the level you're looking at
ye, some paradigms work better in some, and we generally categorize languages by which work well in a given language. That does not make any code written in a language of a certain paradigm
Because meta is right in that it's all objects, so it could be seen as OOP. But lak is also correct in that it doesn't matter if they're objects or not in that instance
So you're both right, just about different aspects
here we have a pure, referentially transparent C function
int thing(int x) {
return x+1
}
is this C functional?
It fits many paradigms
You just wrote functional code, that doesn't make the language functional
It's hard to articulate what it specifically is when the code is at that small of a level
sure, that function is simple enough that you can have it in any paradigm.
A language can support many paradigms, but isn't one of them
And it can also be implemented and compiled using one of those paradigms
And it doesn't have to be the same one that the code is written in
That's totally different
that function... is it functional? hmm
Right but that's how broad we're hitting with this
maybe
The compiler is just a piece of code like any other
I think no
That's kind of where I'm getting at, we're looking extremely widely at this topic.
well it is but
If we want to reach any kind of consensus, we'd need to narrow the focus.
I think the integer overflow makes it non-functional since that's not well-defined
so to get this straight: because you can view code written in C as functional, then C can be considered a functional language?
am i getting that right?
that's what you're arguing?
It can support this paradigm, but it isn't this paradigm
well, what I am arguing is that despite C not being good at expressing FP, you can still do it
i dont think anyone in the history of programming has considered C a functional language.
well, up til now
well you can write a haskell compiler in C...
From my understanding, when you hear a language being dictated as one thing or another, it's being called that because that's what it is best at or best known for
That's different
so clearly that makes it functional...
C is not functional
All that's doing is taking code and assigning the instructions
you can write functional code in it
JavaScript as well is a good example of that
then it can be considered functional
well you can also write a javascript in it
Not a functional language, but uses metric fucktons of functional stuff in it
Who cares about style anyway
C > javascript, confirmed
but we knew that all along so no big deal
well, if you use those adjectives like that, then every language capable of naming objects is of every paradigm
Technically yes
But they won't necessarily be good at it
That's my point
Just because you can doesn't mean you should
that mentality
Although I feel like I'm making things more confusing and worse, apologies
Imperative code can be written in Haskell, but that doesn't make it imperative per se.
Precisely
Although I feel like I'm making things more confusing and worse, apologies
dont worry i couldnt understand from the start
You can imitate classes pretty well in javascript for exampe.
Well especially now
There's even syntactic sugar nowadays to simulate classes.
It's still prototypes.
I... legit thought it was like a - god damn it
got bamboozled?
disagree. as far as im concerned/aware there's no such thing as imperative code in haskell. anything that appears imperative is still functional underneath. implemented functionally and operates functionally too
I still don't get prototypes
@plucky ridgethey're just objects that also happen to give "inheritance" properties I think
likewise, just because some c code lines up with some functional code, does not make the code functional. the meaning behind the code, as decided per the c specs, is still imperative. same goes for whatever other language. think about what the code means behind it all.
a series of steps changing program state
Like singular objects with no base class?
which clashes entirely with the functional paradigm
See in my head that doesn't make sense
I mean, Haskell also gets compiled
@plucky ridge changing the prototype object changes all the other objects derived from it, right?
so there's this "hivemind"
unless I'm remembering completely wrong
Well great, now I'm just imagining bees crawling all over JS code
๐ป
I don't think changing the prototype changes all current instances.
But then agian I'm not 100% up to date on prototype based OOP
which clashes entirely with the functional paradigm
FP is all about writing expressions used model a specific problem, but that doesn't mean the runtime must be strictly functional as well.
well at least all the new objects created from the prototype should have the new prototype abilities?
it goes beyond the runtime. the entire workings of c rely on a series of steps changing program state. you would have to rewrite the specs of the language to make it otherwise.
independent of the runtime.
I don't think that paradigms go beyond runtime, given that code eventually just devolves into a series of steps that the computer should perform.
of course haskell by necessity runs imperatively underneath. but the language itself, on top of that, has to be reasoned about in a different way (minus the imperative sugars).
if we're talking about languages in the abstract sense, purely in terms of being a language, then the runtime is a separate concern.
yes
@rough sapphire
well
so what difference does it make between the languages on how the code gets compiled... because the operating system executes it within the full capabilities of what the language can actually produce?
depends on who you ask maybe
i know there are some purists who might not consider haskell turing complete if you take out io capabilities
the difference is an academic one
that sounds like ... non-sense
in reality of course if you boil things down to that level it doesnt matter
the fact of the matter is that it kinda does matter
because that means that you can write a C compiler in haskell and you can write a haskell compiler in C
that by itself doesnt mean we should consider C a functional language or Haskell a procedural language. this is sidestepping the discussion. you might as well not have any paradigms at all.
but then you might as well have paradigms
since we can establish that the languages themselves don't have at the end of the day big differences
on the level you're talking about, yes. but we're discussing the abstract differences. or at least i am. maybe we're talking across each other?
the only thing I wanted to bring to this discussion was that the concepts of "functional", "imperative", "procedural" etc. terms are useful notions
and don't need to be analyzed to death
dont let programming language theorists hear you say that
Saying a language is functional means it is good at expressing functional programming
i think the technical definition for functional programming paradigm is that there is literally no state whatsoever. I'm not sure if it's the definition or the consequence.
I mean, there is a way to represent state, but its more of an abstraction of a certain pattern
can you give an example
Let's say we're parsing something from a String, and typically in FP, that would mean writing a function that takes a String, and returns a tuple of the "result" of the parse, and the remaining parts of the string
In Haskell, that can expressed as parseSomething :: String -> (Result, String)
I just realized that I might understand Haskell more now that I've gotten into and understood Elm
Neat
But the problem arises from what if you wanted to parse the remaining parts of the string, that would mean unwrapping the tuple result as well
It'd be pattern matching at that point, right?
Yup
Something like
-- city: 'Manila' | rest: ': 35C'
(city, rest) = parseCity "Manila: 35C"
-- temp: '35C' | _: unused
(temp, _) = parseTemp rest
It's cumbersome, but it works
It's efficient at least
Explicitly passing the 'state' can be abstracted away though
That's dipping into the territory of monads though, but I'll try my best to make a concise generalization ๐
The strategy would then be to make some 'container' for the functions that follow the s -> (r, s) pattern
and to define an operation on those containers, that combines the notion of passing around s for you
the way i had monads explained to me at the start was, theyre like conveyor belts for automatically passing state info from one 'step' to the next.
Yeah, that's true for most monads
Ohhhh right, now I remember what drove me away from Haskell and some of the others... the fact that there were some rather complex mathy sort of explanations I had to try and understand
Although it might have just been the one paper I read
Category theory is used quite a lot
Honestly though, you could keep the theory right at the back of your mind and still be able to utilize monads and such in a practical sense.
category theory is probably one of the best things you can do with your pants on
abstraction beyond abstraction. math at its finest.
I'm used to the general s -> (r, s) patterns from Elm and Rust, thankfully, so that at least in general makes sense to me
And I think the issue was that the paper I read was heavy in the math jargon, so I got lost nearly instantly
I've started learning rust as of yesterday and i'm loving it. The speed is amazing, I can brute force find the millionth prime number in about 10 seconds!
And honestly the syntax just feels very clean
There doesn't feel like there's tons of bothersome boilerplate you have to contend with
Boilerplate is probably one of my biggest turnoffs when it comes to languages
@wheat lynx is it faster than C++
Probably the same
Apparently it can be sort of faster, but probably mostly the same yeah
Maybe faster as the type system gives more information about data flow, but C++ just gets that info by declaring things UB to an extent
As I say I only started learning it yesterday so i'm not an expert, but I did read some article saying it could be faster under certain circumstances
Is rust new language
It is quite new
Oh
Especially compared to something like C, yes
Does it have buffer overflow vulnerability(s)
Pretty sure no
Why am I not surprised that that is your first question
It is supposed to be memory safe
Hmm
Even java doesn't have buffer overflow vulnerability
It would be so better if more language have these vulnerability
@low shadow you might be the one who will get me banned from this discord...
Why
because i will lose my temper
Ok
and then tell you things that will be seriously uncalled for
Ok
Honestly, buffer overflows generally do not happen nowadays, most things that could are handled through libraries that do not
@low shadow now do something useful and try to figure out a way to catch them before they happen
or minimize their effect
Catch what?
those errors
Where is error
the buffer overflow by definition is an error
Oh
that's something else but it exists yes
it has to do with buffers
No idea
I assume it has something to do with some type of connection when less data is sent
it was common when burning cd rom drives were new
but the principle sounds the same yes
one sec.
do you program in python
is that true
What ? What's true
If u mean python programming yes that's true
I program sometimes
no
i mean
python doesn't have memory vulnerabilities?
that you cannot work with memory?
maybe not as such
Maybe cypthon gets to manage memory
Why are you trying to look into memory exploits?
Just learnt memory exploitation, still not pro but beginning, and liked it
Why are you trying to look into memory exploits?
@plucky ridge I liked it.
Just like everything else that's exploity or hacky or what not, it's not a topic for discussion here
Ok
Unless it's in broad abstracts or what have you
But I'd personally rather we don't glorify that kind of stuff
I'm not trying to be a dick about it
@low shadow if you want to know my opinion, what you're doing is rather childish.
Ok
trying to exploit things
Is there something professional (ish) that I can do besides exploitation. I need to pass time and still learn(related to computer)
You could help out on various repos on GitHub
You could help out on various repos on GitHub
@plucky ridge that's like doing household chores, very boring
Funny choice of company you keep in us, then.
Sure. Understanding the hows and the whys of memory exploitation is a fair enough topic. It's still an interesting and worth while thing to learn. But it's when it goes into "lol imma gonna hack u" or bragging about exploiting shit, that's where it starts to irritate.
๐
It's the script kiddie mentality
Which for the longest time I thought it was "script kitties"
Was sad when I found out it wasn't
๐
Nyaw

Script kitties...so Dejavu Cat from The Matrix? ๐
Never watched the matrix
!
THAT always irritated me about The Matrix. What happened in that scene isn't deja vu
Like
At all
No idea
I kind of wish you could hit the up arrow a couple times to go up a few messages
I don't know if it should exist, but I like it and get use out of it.
Not just the last sent
It's known about, I'm not sure if famous is the right word, though
Oh
And I'm probably not the target age group
They're far more well known than just tiktok
Ok
Who are they?
They are the coffin guys from ghana
They actually did a video recently
They carry coffin in such a fantastic way
"Stay at home, or you'll be dancing with us"
Yes
@plucky ridge c'mon even i know that
@low shadow do you want to learn machine learning?
What's machine learning is it part of data scientist
yes
No I don't like data scientist and machine learning
In fairness I don't really pay attention to pop culture stuff
@low shadow have you tried
but seriously do you know what ML is
its suited for me
Bullshit
CTFs?
@low shadow I'm asking you; do you know what machine learning is
No
Bull. Shit. You're unwilling to learn the basics or learn/do regular code. You're not going to be amazing being in the "hacking jobs"
Also no one in their right mind who is doing a CTF is going to have Kali as their daily distro
@soft violet Capture the Flag
what's wrong with kali? somebody fill me in
How did Kali come in this talk
Because it's the typical hacker tool thing.
Kali is what all the people that don't know what they're doing think is cool
It's a status symbol among those who don't properly understand it
I think it's cool but I can do CTFs with Ubuntu too
I mention Kali since it goes hand in hand with the CTF topic
Sure, no doubt about that
You could do it in Unix if you wanted
Still about kali?
It's also a giant target on your back
Are you faster than rm -rf yet?
"it takes a village to raise a child" -- or a whole discord server?
Wait, so people play capture the flag with data exfiltration?
Are you faster than rm -rf yet?
@sand goblet no found out I can't be fast
Very much so, Opal
Hm.
RM is fast
@low shadow have you heard of this guy named Donald Trump?
Yes
you remind me a bit of him
Businesses will do it in proper settings to test out security systems or other techniques. Script kiddies will do it because "its cool lawl"
just a tiny bit
The hair?
Ooooh > just a tiny bit
@rough sapphire
Looks like I need to change my profile
To d. Trumph
that will go down well
Hi, I'm Todd Trumph
Done
Sorry for ranting, it's just the whole "hacker community" thing just eats at my nerves. Why is it considered cool to be a douche and break laws? That's what I don't get. Why do we idolize that?
Hacker community is ok.
i don't even know what the "hacker community" is
I know that the people who wrote cracks for copy protection systems were mostly doing it for honor\points with their peers
I loved cracked apps
Or to prove a point or because they don't want to pay or this reason or that reason
I'm too much of a friggin' paladin
i think the biggest reason was just for the honor
they wanted to show their skillz
I heard that explanation too many times
And also to implant malware into those crackers or cracked programs and exploit other systems
Seen that multiple times
It was relatively common
I remember it being on a Diablo 2 keygen
Probably still is tbh
It's a very easy attack vector
You're promising someone something for free
For hemlock
There's always someone desperate enough
Oh hey, it's a YouTube video from a medium size channel I've never heard of
With a clickbait title
I genuinely couldn't care less
Now it's ok
I'm not going to give a random hacking youtube channel a platform here
i'll say this. dude has really clean breadboard jumpers...
What's breadboard jumper
The point isn't whether or not Kali is the operating system of choice for hacky stuff, because it is. The point is that people who use it properly don't install it to their hard drive or use it as their daily system. That's the point I'm making
I don't use Kali as daily os. I use window
๐
I have dual boot laptop
@low shadow private message?
Ok as u wish
Purple Monkeys
Post meridiem?
Is monkey one of the few words that keeps the y when it's plural?
That always felt weird to me
what
I cant pm you
i know you can't
Why is your name unbulanga
because people send messages to me all the time
Ok
and I got annoyed with that
I had to swat people away like flies
yes
i am on a bunch of different discords and I don't want all of them to know what I was "worldwake" because I use different handles there
it's nothing weird but i just don't want the connection because i'm worldwake on twitch etc
yes, it's my real name
my father was called "bingolobangolo"
By seeing the name, though I shouldn't laugh but still something comes from inside seeing those names
I cant control it
I think so too
No it's not love I think. Its humor
you find my ancestral names funny???
Yes
If you want your boomerang to come back, well first you've got to throw it..
MTG?
Magic the Gathering
What's mtg
Kagic the Gathering
This has been the most tedious day at work in a while. Clearing out some deleted items out of our database, and I have to do them in small batches at a time, like 5 or 6 files at a time, because it takes multiple minutes for it to remove them
If I try to do a lot more than that, it can and will take hours
Can't scan any documents in the mean time, can't do much else.
Irksome
wah. man wants to do something fun
How can you accidentally murder someone?
If it was an accident, surely it would be manslaughter.
Was that meant to be a joke, because if it was it wasn't very funny and if it wasn't then I think you would struggle to do that, and you should get some help
I would murder more
@low shadow was meant to be a joke, seriously you thought I would do like that. Well who knows.
Maybe I will kill. Maybe not. No one seen the future
I didn't think you would do that, I was just confused at how it could be meant to be a joke if it is so unfunny
any fullstack proejcts
Speaking of jokes, someone told me today: "Your mom is Turing complete."
hilarious
Is she?
No finite system can be turing complete
if two different domain point to same ip does that mean both domain are vhost,
Vhosts are an Apache httpd concept
Absolutely nothing to do with domain configuration
No
in some video they added pointing to same ip and got 2 diff website
The hosts file is for bypassing local DNS resolution using fixed addresses that don't have to match the public DNS records
on same ip
Yeah, because the domain is part of the http request
You should probably be using nginx instead of Apache, it's far easier
hmm
You should probably be using nginx instead of Apache, it's far easier
@sand goblet i use php -S 0.0.0.0:4444
That's not your httpd
And you should never serve a PHP app using the standard PHP daemon either
yaaay
I just finished my project
and everythink works perfectly
so satisfying
Well an httpd is a daemon designed to respond to http requests
Nginx or Apache for example
You're supposed to use one as a reverse proxy in between the internet and your application
why isnt php server a httpd if it respond to http request
Because it can only serve one at a time
ok
The standard way to do this is to configure nginx with php-fpm, and probably certbot for SSL
Digital Ocean probably has a guide for it
I m not doing httpd things , i just wanted to get idea on vhost
You need an httpd to serve two websites on the same port
vhost serve on same ip or same port
Well if it's the same port then it's also the same address
๐
That's port 80 for http and 443 for https
Aaanndd Linux decided it will half boot the graphical interface
Oh wait
It just miraculously launched, 5 minutes after
what if they give 10 million euros , would you eat bat soup
With 10M I can test if there's anything in the soup before hehe
but wouldn't you be disgusted
I can't even imagine what the texture would be
I mean, that's is a bit disgusting, but that's still food
Chicken feet is about the weirdest food that I'll eat in my life
The more I think about it, the more Asian dishes sound weird
hmm i like some asian foods but
not generally for me
i mean i more into spicy foods ๐
i wanna try hindu foods
I kinda regret trying out spring rolls with like, full green chilis inside
Don't worry, you'll regret it a second time
The more I think about it, the more Asian dishes sound weird
@topaz aurora its awesome
I kinda regret trying out spring rolls with like, full green chilis inside
@topaz aurora I just love chilliee/pepper
I've never had a spring roll but I've had plenty of other Asian foods
Cooked a lot too, it's popular in my house
My dad is giving me a choice between a MacBook or a SurfacePro which one would be the better choice for programming?
The more powerful one.
But note that you'd have a hard time running Linux on a Surface Pro if you decided you needed it
Honestly, I'd imagine if your only goal is programming - the Macbook would be better. Linux on a Surface is very difficult, and it's much nicer programming on something linuxy like MacOS than Windows
The OS is pretty nice to use - and for programming, specs aren't too important
Iโm not really focused on Linux
And I already use a windows os
But I here so much different opinions XD
If you're used to Windows and don't want to switch - then there's no reason to go for Mac
it's difficult to give advice without all the info upfront
True
You can install windows on a Mac though
You can't do the reverse very easily
Bootcamp makes that pretty easy
Love Asian food though it depends on the cuisine
You won't really find spicy dishes in Japanese cuisine
Korean food (my favorite) tends to be pretty spicy
And Chinese is a mix of tastes
Filipino has a mix of Chinese, Spanish and other types of dishes
Iโm probably gonna wait for the Surface Pro 8 to come out because MacBooks donโt really continue and Iโll choose from there
etc, etc. Can't really make a general statement lol
because MacBooks donโt really continue
?
Usually when someone says Asian here, they mean Chinese, Japanese or Korean
But it's mostly Chinese
Chinese restaurants everywhere here
Then why not say Chinese lol, but I'm not getting into that argument lol
Actually there's a fantastic Thai place in my town
I don't think I've ever seen any Japanese restaurants here except for Sushi (Here=UK)
I should order from them..
Love pad thai
Japanese food is also know for its java hi as well
I'm surprised you've never had spring rolls g
I just never thought they sounded that good @wheat lynx
I've only really tried that once
The performance aspect is pretty cool
Like the onion volcano thing
There's a chain of Japanese restaurants in the UK called Wagamama that's great
Only been there once but want to again
Hmm never heard of that one
Yes, wagamama is great
But I live in the US tho
A lot of UK chains like Wagamama and TGI Fridays don't exist anywhere here except for Dublin
I can't use chopsticks so I struggle to eat there, but the food is nice
You're in the UK, gdude?
Oh wow, that's cool
Man I want to go to England again so badly
Why?
Not now XD
England be like https://twitter.com/PhilNobileJr/status/1257695505641062400
Excluding Covid, I imagine the UK's implosion wouldn't have much of an effect on US tourism
Iโm the most English American XD
Bruh I would play football everyday when my family and I went there ๐๐
Wish I kinda got into sports when I was younger, it seems like its something you gotta be brought up with, in order to have an interest in it later on in life
Itโs not really like that
I played football when I was younger but never really followed it until I was in tru grade
4th*
(that's pretty young)
Ah really
What's your favorite team? I only know about uhh
Manchester, Liverpool
Real Madrid
and I guess Argentina lol
Chelsea
@undone berry but Iโm in 8th grade rn
@charred socket itโs not a bad start, most people only know Barcelona or Real Madrid only XD
Speaking of football imma play FIFA rn
America in general is a pretty English place. Most of values touted as American values, particularly from the early colonial era, are all actually English ideas. Sure there's been a fair amount of room to grow in different directions but...overall...
That's sort of what it is.
That might be an unfair reduction based on the original founding idea coming from what were English people, but nevertheless, if you look at our countries side by side, the differences are negligible compared to how much we have in common.
shit
Lame. I was hoping that would give us a break from social distancing during Summers until they get a vaccine
By contrast, school closures and other public health measures had been an effective curb on coronavirus,
this part is important i guess
trump etc. should stop misleading people about it
imo
I work for the school district and personally I wanna go back to work, virus or not. I miss my lil' homies!
I wonder how hard it would be to integrate apt with manjaro 
you probably end up breaking the system
Most probably haha
you would need to make it have it's own eco system, as in, ignore the system around it and only manage the portion it is supposed to handle
but at that point you can probably write your own package manager
which package manager should be installed to linux system having no package manager
depends entirely on the system
letme give a name
uname -a = Linux protostar 2.6.32-5-686 #1 SMP Mon Oct 3 04:15:24 UTC 2011 i686 GNU/Linux
and why is your profile blue over brown
why do you want to install a package manager for protostar...
it is with some black magic fuckery but not really worth it
ok
isnt cat and cat - the same command
is there some difference
between them
both takes stdin and gives stdout which is same as stdin
yes
oh
- specifies that there's no file
and because you can cat multiple things in a single command
you could cat file1 - file2
bisk@gentle mosstop:~$ cat lol.txt - lol.txt
lolol
this is stdin
this is stdin
lolol
after the clappening
my brother showed me this and at a glance it seems quite good for learning general programming/computery stuff. i know oreilly does some good stuff too so it's probably a good deal if anybody's interested. ^^ https://www.humblebundle.com/books/definitive-guides-to-all-things-programming-oreilly-books
it's a pretty random mishmash of stuff
but it seems to be geared towards some kind of backend data engineer or person who wants to work with both frontend and backend
sure
i personally think it could be interesting to somebody who doesn't yet work in these fields and wants to see what topics interest them by using these books :D
Spark/Hadoop/JS/CSS is a really weird mix - Spark/Hadoop are pretty useless without some more general knowledge of the field, and JS/CSS are pretty basic
Such a weird mix of Java ecosystem stuff - then random nonsense
Anyone who wants to do front end or full stack web development
People who want an easy to pick up jack of all trades hobbyist language
yeah
I don't think I've really known anyone who found it especially difficult
I picked it up fairly quickly when I tried to learn it
Python
js isn't difficult
it's just disgusting to work with
lol
the syntax, anyway
I'd use c++ or python over js
well i'd argue most languages have similar syntax
js particularly has some uh
special elements
Like what?
i think my favorite thing i discovered in javascript was that you can't call a function inside a dictionary[key]
or something like that
JS doesn't really have dicts in the same way python does
well it does have JSON objects
Anonymous functions are in a lot of languages - that's just you donig it poorly
but I'm not sure why they wouldn't have kept it similar
i know they exist but the implementation just feels ick
and if you don't mind
bc no i'm not super experienced with js
show me a better way to implement them
global.CreateCooldownName = () => {
//code here
}```
that's still pretty icky
Not really - don't use anonymous functions if you don't like that
I like the modern JS syntax
Yeah, I really like idiomatic JS
Honestly, I find it no worse in JS than in Python
Python generally errors eagerly
uh - slightly no
if you have something like a.b + c.d and get undefined there, you do not know where undefined came from
so slightly yes?
java has a similar problem
if you don't have premium anymore, I can give you my login
I think i do
Well - just no really
i'll think about it tomorrow
i've just been banging on this kaggle competition for like this whole week now so i haven't felt like
writing that code
what kaggle competition
walmart stuff
is it a live public one
yes
do you have a team.. do you want help?
at this point no
just messing around
trying to learn as much as i can
I'm kind of disturbed by someones really mean comment to a newb in another community.
The guy asks for a book about algos and this is what someone responds with
Honestly, how do you expect to understand how to program if you don't know what an algorithm is? It's simply the logic behind a solution. Like doing long division when you were in the fifth grade. Or do they not teach that anymore?
It kind of makes me want to throw up that that could be anyones response to someone asking for a book.
that's like saying "how do you expect to learn a language if you don't know what grammar is"
kinda doesn't make sense since we all started there
Yeah. Its not a discord. Its a facebook group, which is why its so awful. I should delete all these groups. TBH, I understand why the people in here are frustrated with the communities. They are poorly moderated.
i'd just roast the dude for only learning long division in 5th grade because that's the kind of person i am
But jesus, it doesnt call for being mean like that
lol facebook
yeah, its shameful to admit, but I get drawn back on to it no less than six months after I close it. I use it for a few weeks, catch up with someone Inteded to find and talk to, and then try to close it again. In no more than six months I'm back on there again. I'm one of the people this site has manipulated into not being able to get away from it despite trying to.
As soon as something feels missing in my social life, I'll be back on there, no matter how well Ive been doing without it up until that point.
Ive considered dumping offensive material until they ban me to be honest, because then it woulndt be a matter of my willpower anymore.
I couldn't get back on there if I wanted to
they disable every account I make and ask for an ID to "appeal", which.. they can fuck off with
wait why not leave the groups
Right. Actually, the funny thing about that... Is I once tried to change my name to my real name.
And they told me, "We dont think is is your real name, can you show us an ID?"
And I was like, "Uhh, nervermind, I guess Ill keep the fake name."
"holiday fartcruise" it is, then
But yeah, I used it for many years until I developed the opinion that I hate it.
But there are connections to people on here that draw me back. The lull of someone new to talk to in my real life.
fomo
Its an addiction. They control a piece of me that feels empty socially on occasion.
Its not everyday, I can close it and go months happy to not be using it,.
But the day that comes where something is empty in my life, I will be back on there.
I have two accounts
Its sickening to admit being the sort of person I am who hates them so much.
My personal one that I hardly use
pretty sure that's fomo
And the one I use at work because I didn't trust their laptop
It's called Celia Weiss and exists to manage the page for the place I work
Haha
I dont call it fomo. Fomo to be represents, the feeling of missing out of on something that is going on and needing to stay in the loop.
For me its just a feeling of loneliness that occasionally arises.
And yeah, I have at least three accounts. Several of them are for document tracing and just adding people to get more information about other people. Not that I use it for anything nefarious, its just a viable OSINT resource.
The other is my real one. I am selective about where and how I login to it and all that.
But I still feel ashamed that I use it at all ever.
i only have an account for stalking seeing information about people
lol
It's amusing because it is handy for info gathering
A lot of people I know post what they're up to there
But I do not
Tbh discord is a much better place to go to see what I've been up to
For example I made french onion chicken today
:>
Same. I use it for messaging people. Havent posted a pic in forever. I never scroll the walls because i become disugsted with meme culture.
But I will be like, "I wonder what they are up to"
Yeah
Im hungry af
Well now you know what to make then
after i discovered that it could be bad
here
then it's alright man
why?
the minimal wage in brazil is around 200 USD
i was earning 700 to 1000 USD montly
that was a better source of income, why did you come to web development?
if you don't mind me asking
well, was not legal
right
and i ever wanted to learn programming
and i'm really hyped about A.I
want to be around it when something big happens, you know
I don't like AI or big data stuff at all, it's just not my cup of tea, but if you were looking for career advice, there is a group here to ask that sort of advice.
some people are most experienced than me there
i mean, i want to work with everything that pays me well
