#ot2-the-original-pubsta
652 messages Β· Page 67 of 1
sooo like hoe do i prove that this is satisfying accounting equation?
do i just show the adding and subtracting?
ic
yes, one by one
okk
the thing that i find strange is that you never pay back the 3000 credits in your example
so im not sure if its an simplified example or not
but just to one transaction at the time
i dont think it is a simplified example
at the end of the transaction chain you will have some amount of cash and 3000 in credit
wait so amount of cash will be what?
25k?
@sturdy relic
pls tell
i have not done the calculation, you have to do that yourself
u sir are a fucking chad
tysm
it was forced upon me from a previous employer π
and I now work with ERP integrations, so that knowledge does come in handy
thank you π have a nice day
lol π well that is true for any field all over the place
most people thing they are good at most things, even if they have no experience with it at all
its more a human trait then anything else
if you dont know what you dont know, you will think the little you do know is worth a lot
facts
@opaque pewter here :3
hi
hello
greetings there
Damn, i just realised I miss the birdo
And cattos, but birdo was something new, the interactions were interesting
(I realised this when I started browsing my photos to see if I can send something as conversation starter)
It comes for food and stuff, but lives outside now. But I'm not at home now, I'm in Warsaw for work and Equality Parade on Saturday
oh i see. i got birds just behind my AC. hold on.
they're too young to fly. their mom feeds them everyday.
Oooh, smol
how does it find you
yeah very much. they're kinda fragile at this moment. i can't even take pictures. their mom gets paranoid.
Knows our house, knows our voices, knows we give food XD
Hahah, no. That's why I said I miss it :P
The office is in the middle of the city, with one of the main roads nearby, but we're hidden behind huge office buildings and have some greenery :3
So it's not bad
the birds out here are literally in kinda urban. not much Greenery in my area.
We also have cattos here! But they are shy. They like the building owner but even when I was talking with the owner once, the catto didn't let me pet them </3
We had another nest of blackbirds and their parent was sooo paranoid and didn't like our little one :c
But the old birdo doesn't come here anymore and we don't hear the squeaks, so they probably left already
i dont have any birds here other than pigeons and sparrows
and they just fly about
not near my house

mynas? the picture I've shared is of mynas.
i think there are mynas too
And you know, when you raise the birdo from this size (eyes already open but it's fluff and only ends of feathers) for 3 weeks, then they'd better not be shy XD
yeah they are pretty common in urban areas.
oh wow!! did you find it?
Lemme find a bit of history, lol
I described how we found and raised them, with photos
aight lemme read
wow thats your veg tent?
and 18th may, thats like 1 month exactly today!
@keen burrow is dawn really coming?
It should at some point
if so, click on TortousPython
hope you see something after clicking on it!
@keen burrow π
lol
But will it?
I hope so
lul
continued from #dev-contrib
no, discord doesn't let you [hook into messages before they're sent]
it would be nice if it did, but it would have to be a permission thing. Ig like manage messages.β¦.
discord has the api to make this possible, but i wonder if it could handle that many requests.β¦
what if bots could set up regexes within discord to be deleted so discord blocks them because they match a regex and then it lets the bot know with the interactions api or smth?
hm.β¦
Regex is definitely not the right choice there, regexes can get extremely slow.
@wide totem you said discord has the api to make that possible...
no?
it would need a few changes but other than that the api is there
where?
i can't think of a good way to do it tho
interactions is a totally different thing to intercepting messages
well yes but also no
yes. period.
The core issue is that it limits messages to the rate limit
What would be really nice to have message deletion removing pings
Hello from cat cafe
awwwww
BudyΕ is annoyed because he opened the door but was caught
His sis is watching from afar
they'd like to talk to the meownager
And PereΕka joined the commotion but eventually settled on a chair next to me :3
how would you pronounce Ε?
W
ah
cyrillic is confusing π€
aww i like that name
... That's Latin alphabet, just with diacritics XD
all i know is latin w/out diacritics arggggh
In Cyrillic, both L and Ε sound are represented by the same letter, looking like Greek Lambda
Lemme set Russian keyboard on my phone real quick :3
that reminds me of my cat meme
Oh, SwiftKey has Russian phonetic layout!
Π Π» is like Polish L and Ε both. English L or W sound
Π would be like Polish Ε» (and RZ). I think it's usually transcribed as zh? It's a voiced counterpart to sh sound.
Π¨ in Russian is sh sound. It's hard, making eg i (ΠΈ) afterwards more into... Ugh, I don't know how to describe it in English, but in Polish it would be vowel y sound
Oh, and since I was describing Ε» - we also have DΕ» in Polish which would be English J sound!
And the queen, Carine
BudyΕ decided that the bathroom is the best place to sleep
aww 
please don't post the same thing in all of the ot channels, and wtf
@grim seal
?
BRUH
is there a better way to do this?
void print_board(Board board) {
// prints union of black & white pieces, whole bitboard array needed to differentiate wt match statement
for (int j = 63; j >= 0; j-=8) {
std::cout << (j + 1) / 8 << " |";
for (int i = 7; i >= 0; i--) {
std::cout << " " << board[j - i] << " |";
}
std::cout << "\n";
}
std::cout << "\n ";
for (int i = 0; i < 8; i++) {
std::cout << " " << char('a' + i);
}
std::cout << '\n';
}```
it gives me what I want but the code makes me kinda sick
board is a 1D array? π€
board is a Board!
wait
bitset
#define Board std::bitset<64> you're not wrong
O
ye operator overloading
is it displayed like
0 1 2 3 4 5 6 7
8 9 10 11 12 13 14 15
16 17 18 19 20 21 22 23
24 25 26 27 28 29 30 31
32 33 34 35 36 37 38 39
40 41 42 43 44 45 46 47
48 49 50 51 52 53 54 55
56 57 58 59 60 61 62 63
?
hm
could probably keep it big endian but I'm struggling with the logic enough as is
I had this for py but it's obviously not going to work
def to_ascii(self) -> list[str]:
board = [" a b c d e f g h", " " + "-" * 41]
for y in range(1, 9):
rank = f"{y} |"
for x in range(1, 9):
piece = self[f"{chr(x + 96)}{y}"]
rank += f" {str(piece)} |" if piece is not None else " |"
board.append(rank)
board.append(" " + "-" * 41)
board.reverse()
return board```
self being an inherited dict
this is
oh actually nvm I had lines between the ranks
hense the board.append(" " + "-" * 41) lmao
im probably gonna end up writing a c++ extension and running it in py but I need it for debugging purposes atm
that made it 100% worse 
void print_board(Board board) { // typedef std::bitset<64> Board;
for (int j = 63; j >= 0; j-=8) {
std::cout << " ---------------------------------" << '\n';
std::cout << (j + 1) / 8 << " |";
for (int i = 7; i >= 0; i--) {
std::cout << " " << board[j - i] << " |";
}
std::cout << "\n";
}
std::cout << "\n ";
for (int i = 0; i < 8; i++) {
std::cout << " " << char('a' + i);
}
std::cout << '\n';
}```
how can I get the dropdown above the cards, and make it wide?
https://pastecord.com/zesolevamy my code
||remember, I don't do frontend||
you are clearly doing it right now
you cant fool us
I did that, cuz I had to, and probably i am needing help with the most basic thing rn
I am jsut copy pasting from the docs lol
Oh done, got it, put z-index:100;. Now, making the size of the dropdown bigger
Done, i had to remove postition relative, and added md:w-auto
use position:absolute for the dropdown and give the entire card container position:relative
and mess around with z index
Yep figured it out :D, see just above your msg
And about the error i shared on xith's stream, is was a bug with the library itself
and I was messing with my code for 2 hours, until I went through their code and boom

are there any Russians here?
yes
im not russian
no russian like the cod mission?
erlang term format
it's like json
but
for erlang
soooo
one sec
iex(1)> :erlang.term_to_binary [1, 2, 3, 4]
<<131, 107, 0, 4, 1, 2, 3, 4>>
this is ETF
that's actually a set of bytes, erlang displays it as a list of numbers
but they use ETF because they use Erlanng
they don't need to serialise/deserialise JSON, their Erlang runtime that powers the gateway can just interpret it
the discord gateway is written in elixir
so it can use ETF
so it puts less of a load on the gateway to use ETF for desktop
yeah it's just more compact messages and less parsing required
you can use ETF for bots as well
Integrate your service with Discord β whether it's a bot or a game or whatever your wildest imagination can come up with.
ETF is great stuff
The client must not send compressed messages to the server.
wut
so you can compress the messages when using json?
@languid osprey
If you want to learn basic DevOps, what tools should you learn to use
joe's DMs /s
Someone pls help me with c program ?
You can join the coding den
Willing members for c and cpp
docker and linux is the basics I had say
And joe's DMs are a must
@mossy holly do you have link
No you should be able to find online
Google coding den disc server
I got it but I cant message bcz channel verification is too high
Git question: how do you clone a specific branch?
Like I wanted to clone this--> https://github.com/huggingface/transformers/pull/12251
ping on reply pls
You dont
how do I get the branch name? would it be the name of the guy?
Otherwise its gonna cline them all and check out the branch you want
You can look through github and see which branch you want
yeah, like in this https://github.com/huggingface/transformers/pull/12251 there is no sign of the name of branch
Thats a pr
You sure you wanna clone a pr that wasnt even merged
if it passes most of the checks, should be good to go?
but it could take some time till the next release?
or would it be available the moment they push?
Merging PRs is instantaneous iirc, you dont need to push anything
Anyway if you want to clone that pr you have to clone the branch that pr comes from in the other guy's fork
so I just clone that guys' fork?
Yep
You can
git clone https://github.com/patrickvonplaten/transformers.git -b add_jax_flax_to_env_command
Or clone the whole thing and checkout that branch
Or use the --single-branch command to clone just that branch
I guess I will take the simpler command then
thanks a ton @sinful sun π π π°
that's true
I know there's only small chance, but we have some Poles here and maybe someone is currently in Warsaw, sooooo....
If anyone is going on Equality Parade π³οΈβπ today at Warsaw, Poland π΅π± and want to meet up, even for a moment, message me. β€οΈ
I'm gonna have some colourful makeup stuff to paint flags (probably on hands etc because masks would interfere with flags on cheeks) and some glittery makeup stuff as well. π
guys
how do i control backspace in a linux terminal
cuz when i ctrl backspace
it doesnt do what it usualyl does
nice then alt + delete should also work
#help-lollipop plz help me guys
yes
Omg tysm i needed this soo bad but was too lazy to google it
lol
np bro
i am so good at helping that when i ask for help, it indirectly helps others
I agree
lol
good, let the revolution begin
true
sussy69 would have been sooo much better than @odd sphinx
sussy baka
U both indian bruv??
π₯π₯π₯
π¦π¦π₯π₯
π₯π₯π₯π₯
π₯π₯π₯
π₯ π₯
lol
Me from bangladesh
yes
ok
lol, when we stopped serving pixels
sheesh

Lol
Those stats are locked behind a paywall π
What happened on 15th?
Pixels ended
spike as pixels clients kept trying to reconnect
and here

ha
time to write a DNS server
Write or host? I believe OpenNIC is, well, open. Decentralised, run by people.. And has some tlds available through their DNS network
write, for the funsies lul
I have no idea what they do. I just know when you blank their routing tables bad things happen to internal networks.
converts something like pythondiscord.com to 104.26.7.168 (IPv4) or 2606:4700:20::681a:6a8 (IPv6) so your device knows where to send web traffic to
A is the Address record type for IPv4, AAAA is the IPv6 type because IPv6 has 128 bits per address and IPv4 has 32, making IPv6 4 times as large as IPv4 per address
can also store text in there
Have fun suffering!
learning* \π©
why the server is colors?
is gay flag??!?!?!??!!?!?!?
omg
i have to leave because this is inappropriate
Bye felicia
Can't help but notice that they've not left
Maybe they need a little push
@little raptor This does not appear to be the first time you have displayed your concerns, please stop bringing it up and simply leave if you're unwilling to stop talking about it.
Still waiting...
!unmute 836940163031629845
:incoming_envelope: :ok_hand: pardoned infraction mute for @tacit abyss.
!paste
@tacit abyss please use this for long code samples
Pasting large amounts of code
If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
and you can claim your own unoccupied help channel here #βο½how-to-get-help
im creating snake game in python, when snake hits border the window crashes and gives error message:
line 86, in <module>
if len(segments) > 0:
TypeError: object of type 'Turtle' has no len()
heres the code
https://pastebin.com/tzcgr3bR
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.
Honestly... I think morning stand-ups would be a lot more fun if docker was named donker
(in reference to the channel's name today)
"our donker contanker... hey, compose yourself!"
he is not here [
!e ```py
foo = 1
print(f'{foo=}')
@odd sphinx :white_check_mark: Your eval job has completed with return code 0.
foo=1
lol
ikr
I'm abit confused with the concept of eof
Assuming size of buffer = 1 byte, does this while loop mean to read till the end of the file every 1 byte? Where does it signal that it's until the end of the file?
while (fread(&buffer, sizeof(buffer), 1, input))
{
fwrite(&buffer, sizeof(buffer), 1, output);
}```
Everyone: itβs okay, the girlboss ted talk child cant hurt you
Girlboss ted talk child: https://t.co/oW4vZIC7xj
3183
31631
twitter is so... 2008
it's just video of a 10 years old girl saying that at 10 you're not really a kid nor an adult also she can't wait to have a job
thats nice, but it's best not to promote twitter, tiktok.. it reduces people's attention span and makes them more polarized
@jovial island I'm not fluent in kotlin but I've learnt a fair amount in ~4 months
But really once you learn one programming language, learning another takes way less time with that background
I learnt most of java in like a month
Because I'd learnt about 6 other languages by then
kotlin is easier than java in syntax
Including similar ones like c#
Yeah
I particularly like the null stuff
Like ?.
And the elvis operator
It's a nice feature
ik
The thing I really like about java (idk if kotlin/others do too but python doesn't) is that variable assignments return the value
Like java System.out.println(int i = 5)would output 5
yes
Whereas in python you'd get a SyntaxError
yup
you can write println instead in kotlin
It really depends on the person and how fluently you know python etc.
I keep doing that in java because I learnt kotlin first
Then I keep getting an error π’
I don't like java imports though
oh
import java.util.Set;
import java.util.Random;
import java.util.HashSet;
import java.util.Scanner;
import java.nio.file.Path;
import java.io.IOException;
import java.nio.file.Files;
import java.util.ArrayList;
import java.util.stream.Stream;
import java.util.stream.Collectors;```vs```py
from java.util import ArrayList, HashSet, Random, Scanner, Set
from java.util.stream import Collectors, Stream
from java.nio.file import Files, Path
from java.util.io import IOException
Python just seems way cleaner
To me at least
oh yes. love the Elvis operator
`fun retrieveString(): String { //Notice that this type isn't nullable
val nullableVariable: String? = getPotentialNull() //This variable may be null
return nullableVariable ?: "Secondary Not-Null String"
}`
```kt
<code>
```
btw
Honestly I can't remember, it's been way too long since I used kotlin lol
I learnt kotlin cause I was gonna do android stuff but then never did so ditched it lol
lol I keep doing println!() instead of println()
i am learning kotlin because i want to be an android developer
fun main() {
val s = null ?: "Hello, world!"
println(s)
}
This runs, so... yeah
I learned some Kotlin for the heck of it
what age do you think is a good time to earn kotlin?
Earlier the better
as in above 14
ehh because then i have to practice for years until i get a job
?
@barren marsh what age do you think is a good time to earn kotlin? as in above 14
Again, really depends on the person
oh ok
I started Python at like 13 and I didn't struggle much so I'd say 14 is probs fine
what about 16
It really depends on the person
like
I'd find programming easy at any age (well... beyond a certain point)
but the same is not true probably for a good majority of people
I mean really, it's kind of a useless question to ask
it's not about age. If you wanna get into programming, be ambitious and get into programming
is 14 year old good
if i am ambitious about coding will it take me less time to learn a coding language
anyone here knows js ?
nah
um. no
These are kind of strange questions, I'll admit
true that
My advise: Stop asking questions, try it out
no offence, but i don't thik you are ambitious from your questions.
yes
If you want to learn to code then learn π€· @jovial island
yes
thxx
It doesn't matter what your age is really
agree
If it's what you want to do, then do it
ok
Just be prepared for the many sleepless nights ahead
is practing every week enough?
Idk anything about github lol
I remember some git commands but not how to use them
lol
Just practice whenever you feel like it. If it becomes a chore then you're going to lose interest in it
Same
Don't worry, you don't need to even know about GitHub while you're learning
um. but sometimes it's a bit of a headache :notlikethis:
what do you mean like a chore
Choosing to learn how to code is like simultaneously the best and worst decision of my life
It feels incredible when you finally complete a project or even a section of a project, but the mental pain you have to go through really takes a toll on you lol
Revising because you feel you have to VS revising because you want to
lol send me the link, i can try
oh
wot link \π€
Do you already know some python or are you starting from scratch?
some
Because if from scratch I'd recommend https://automatetheboringstuff.com/2e/chapter1/
But might not be very useful depending on your level of knowledge
I'd at least skim through it though and see if there's anything you learn
Dare I try figuring out GitHub Actions again
Man, you'd think it was incredibly simple
SCP my GitHub project over to my VPS, and tell it to reload apache
the actions link, failed actions link
@hazy laurel
<appleboy/ssh-action#53

root@Webserver:~/.ssh# ufw status
Status: inactive
:|
like I can SSH manually into the server using the exact same details
but GitHub Actions refuses to allow it
hmm no idea, well that reminds even I have one issue to debug lol https://github.com/Shivansh-007/piston-cli/actions/runs/950254222
dunno, echos joe
It's the thingy I think
wot? \π€
Aalto Talk with Linus Torvalds, hosted by Aalto Center for Entrepreneurship in Otaniemi on June 14, 2012. Linus was interviewed by Will Cardwell and followed with a Q&A session with the audience. We had fun!
Event producer Zaira Mammadova. Video produced by Oneminstory.
lol
some success
@chrome anvil Do you want wsl or full Linux?
what is wsl
WSL gives you the Linux terminal on windows
windows subsystem for linux
bruh
Can I again get windows10 after this?
you dont lose windows in the first place with wsl
its a linux terminal inside windows
u dont lose windows
its just a linux terminal that runs inside windows
oh, wait so..........., wsl is an os or terminal?
wsl is a bridge that lets u run a linux distribution
using it u can run ubuntu
only downside is that u cant run any of the graphical parts of ubuntu
so no desktop environemt
yet*
what u get is linux's terminal experience
which some people relly like
and is why wsl was made
what is that terminal used for?
'experience'?
oh
what i mean is ppl use it becaue they like using linux
and its way of manageing packages
ig
non on
@high jolt I used to work at a coffee shop and customers wouldn't use words correctly. Like they'd ask for iced coffee and then act like they have no idea what's going on when I served them iced coffee and not an iced latte
how the hell am I supposed to know that you've secretly mapped the word "latte" to something different?
the name should be the other way around - latte is coffee, but coffee is not latte (squares and rectangles stuff)
Strangely this isn't far off from working in tier 1 tech support... you spend so much time translating the meaning of the words which have been used.
Oh yes, nothing is on fire
Best status message
No mice found
@grim seal we aren't the same age anymore
Well this seems new.
happy birthday
it is i made it like 5 hrs ago lol
Ah lol
Thanks!
i'm trying to think if we have any more components
Yeesh
Pixels ofc /j
Happy birthday! π
Do you know for how long you will be older than Joe? Lol
||you'be been on this server for so long that it's actually easy to find||
lol yeah
Nice
Heh
Every owner's birthday should be celebrated by the thousands of members in pydis
@wide totem happy birthday!
vscode and tabnine lol
first one was vscode, then tabnine
@wide totem happy birthday!
god tabnine destroys my pc's battery
lol yeah it takes too many resources
omg guys let me join the graph crew
cloudfare π
Yuh, but for some reason none of the stuff works
I've got it going for https://cypheriel.codes/, and like... it works
but Cloudflare is flat lining 
you know what to do now
call it?
heck yeah cloudflare
One of these days I'll understand what I'm doing lol
uh oh. I tried using Cloudflare for SSL
"too many redirects"? D:
oh wait. now it works β but https isn't uh... working properly
oh wait? Now it's fine? \π€
You know what β I'm not complaining. It wasn't working, and now it is...
happy birthday @wide totem!
Oh we doing stats?
time for a flex?
lol
lmao I feel like I did a fair chunk of stuff with my website
Just add particles.js and everything looks 10x cooler
That's not that empty
Fancy
oh damn that looks cool
damn nice
lmfao I totally shamelessly stole that β but no denying it looks cool
if it's there to use, use it
exactly haha
i think in software is called reusing
lmao
a hacker
bruh I host locally to test in realtime
and I copied the wrong link haha
The resources you tried to access was not found.
What? Not the kind of code you were looking for?

did you add random sized floating nodes and connected the neighbours?
ye that explains why the high cpu
since it must be n^2
like my boids

The resources you tried to access was not found.
- [insert funny text]
nooo why is it blank
I tried to add like little funny random error messages
ohhh I know why
@hazy laurel So you are using a virtual machine on azure?
Yep
Why not azure containers? 
uh. I dunno what that is
hosting docker containers, the docker-compose up thing
I have no clue how to use Docker lol
same
man. I can't get Discord oembed to work
welp
azure containers were kinda a struggle for me
cuz my images somehow refused to work
tbh ive had a much more pleasant experience with aws
:( I can't get oembed to work
AH WAHT
nvm. that means something worked
The only problem β it's not dynamic
omg. I've done it
https://cypheriel.codes/oembed?author_name=John Johnson
lmao this was completely pointless. All it added was the author name/url and I'm probably never going to use that
nice
So... Do y'all prefer this embed or this embed:
https://cypheriel.codes/epic_404
(the descriptions are the same (now), ignore the minor difference)
Fist one
yea first one
anyone know a good java course
no
BRUH
@hazy laurel NICE background!!
bruh
particles.js π©
cool
Another openSUSEr, we are Geeko family.
I'm holding off until the AMDGPU Pro situation improves, since I can't get that working with Tumbleweed. Mesa OpenCL with an AMD Vega card (idk if it does it on Navi2x) freezes the program or even the computer, yikes. Update mirrors can be a bit slow on a bad day. Though, other than that, openSUSE Tumbleweed is awesome.
hm, might try openSUSE actually
again...
distro hops
hm...or should I π€ it's extremely tempting
love openSUSE :]
idk what AMD's like on Linux tho
race
?
tsx react moment
Lmao
ive tried learning react in js a few times but i never really understood it
Imagine being able to join the code jam
It's a bit complicated
You may be interested in Svelte or Vue
Instead of an entirely new syntax, they simply add a tiny a little extra to HTML
can you message @vapid maple
just got mine installed on the new workstation tonight
got a 256GB M.2 ssd just for it
hardly
you know what issues are.. like on a storyboard
unfortunately
@keen burrow sorry for the ping, I was doing the qualifiers, and while running test case there is a solution file require inorder to run, but its not there how to try test cases then?
I also want help with HTML
Why can't I paste an image in HTML?
uhhhh
Not a problem now
You can take a screenshot
Anyone here familiar with plantuml? I'm trying to build a web page mockup with their salt implementation but I can't center a heading defined like this: == HeaderText
if anyone is interested in talking about Windows 11 (probably) on Twitter Spaces, I have just gone live. https://twitter.com/i/spaces/1rmxPzYonrVGN
@daring jay How Can i add a link to tailwind alert?
What's a tailwind alert
.
I agree
@jovial island checkmark gang
im in browser, i see the full green check
oof
damn linux and its emojiless support
i'm verified
wait, you're talking about me behind my back

lol
@hazy laurel how do i run .rpm packages?
Rpm -ivh packagefilename
oh
hi
John McAfee found dead in prison cell after Spanish high court allows extradition, according to Spanish newspaper El Mundo https://t.co/XOVLk7qcrD
Rip
rip to the dude or ur msg beinjg deleted in the other channel
Python 3 is a new Java version, feel free to try and I'm sure that you won't regret
What on Earth do you mean by this lol
Idk about a full on java tutorial but baeldung has great content imho
They do general java stuff, spring, spring boot and other apis
Yea i find myself looking up their stuff just out of curiosity, i dont even do java
Maybe i should tbh
just do kotlin
I'm confused by "Python 3 is a new Java version"
Java has more demand in the finance industry here
just use the java mooc
Helsingin yliopiston kaikille avoin ja ilmainen ohjelmoinnin perusteet opettava verkkokurssi. Kurssilla perehdytÀÀn nykyaikaisen ohjelmoinnin perusideoihin sekÀ ohjelmoinnissa kÀytettÀvien tyâvÀlineiden lisÀksi algoritmien laatimiseen. Kurssille osallistuminen ei vaadi ennakkotietoja ohjelmoinnista.
u can change it to en
and cause its made by uni of helsinki
you get college credits if you live in finland too
i think theres a few companies in finland that have pledged to interview anyone who completes it, i know at least for their javascript https://fullstackopen.com there are 3 companies that interview and happily hire anyone who completes it (and obviously is good enough to be a junior)
u have to be finnish to get those too, so lol. but it proves somewhat at least that its good material
their js one is awesome, i cant personally speak for the java but i know lots of javaers who recommend it
if they made a python one, it would 100% overtake automate as the main suggested 'use this to learn' link
ya the entire moocfi
theres some cybersec stuff
i forget what else
they update their courses each year too, its not out of date at all, even their js which is kinda insane when you realize almost every site you find via googling is years out of date and bad to learn from for js
they got a data analysis with python course
sounds neat tbh resources like this one make me happy to be around in the 21st century
time to consoome
https://javascript.info is very good
yea thats like the only good site for basic js. the full stack mooc is a react tutorial
it also doesnt appear when googling which sucks for new people who dont konw
shitty w3 is the first thing even
compared to https://javascript.info/while-for
yup
worst site ever, somehow dominates seo and google listing
w3c good?
w3schools bad
w3schools bad
Ye, that's what I mean
ur right, i suppose w3 should mean w3c
i personally think of w3s though
ah after checking their link is literally w3.org yea ok ok haha
yea
i did desktop python before backend js and now frontend web dev. so i only knew w3 as that shitty site that appeared when i googled python questions haha
but i should break that habit i guess
NICE google just gave me a survey about chromes privacy sandbox initiative because i googled w3c
if u want 50 cents go google that if u have rewards enabled haha
as i always say: w3fools
i told em i appreciated it but i keep seeing cves about escalating out of the sandbox so its kinda fluff
π
Is github down?
its not down for me, idk about you
yes, do not dab lmao
ugh. my mom does that
absolutely not
so boomer?
did a cat step on your keyboard
oh. haha
osu is literally button smashing

No
get banned
who?
who dab



ugh, does anyone have any ideas for making a home preserves label? my in-laws made me responsible for honey labels, for family and friends
Sharpie, paper, and clear tape
wtf
@orchid coral Here it is
oh i see
ok let me copy paste
hi, I need some help. So, When I record my screen it doesn't make my fps worse or my ping, but it does a different kind of lag that's so annoying. When I press a button on the controller it takes like half a second for it to actually go through. Does that make sense? Anyways if you know what the problem is I'd love some help, thanks

no
eh?
don't spam in all ot channels.
doesn't work well for gifts when in-laws know I have a nice printer XD
I eventually managed to put something minimalist but elegant from free vectors
Does anyone want some honeycomb? :3
Wolfie does
Are you living in/near Poland, by any chance? Easier logistics
:c
is that from your own garden?? 
Yeah. We had 2 hives (now 3 after one split) and bees sometimes do wild building (idk how it's called in English), not in the given frame. So it's more irregular and honey cannot be easily extracted
nice! 
isn't it wax?
With honey! It cannot be easily extracted as it wasn't built on frame so it is a bit more irregular than normal comb on frame. It can be eaten by sucking out the honey or chewing on it like gum.
beeswax is quite tasty
interestinggg
I hated bees as a kid because I had some bad experiences with being stung. I guess they're cute
Bumblebees are hella cute
Omg, yes. Those fuzzy butts @@
I was the first one who got stung by our bees. Under brow. Felt like fire. I put icecubes on it to numb the area, went through 3 cubes that way XD
My FIL got stung on the back of his head the same day later. Nothing. And has been stung several times (10+) since then
Last time I went to the hives, I had a small panic attack, I froze when I heard a bee near my head, despite having that netted hat thing this time
This time honey from one od the hives already started fermenting, so my partner is making mead
First time i was stung by a bee it was on my face under the left eye, my mom panicked and put lemon juice on me
Mixed it up with wasp remedies
It didnt hurt at all right up until that point
Ouch
My fire feeling was basically instant, but I might have some allergies i don't know about - i sometimes start sneezing and can't stop, my nose gets clogged after two such sneezes... Basically for no reason, because I also sometimes got it in the middle of the winter during class. XD
But the panic reaction might've been to the fact that I still heard some bee when I was going home to get ice. All the way. I had to stop before going in, got my jacket off because I thought it hid somewhere near the hood... But it was somewhere in my hair.
I shacked my ponytail, not caring if I get stung again. I just wanted to get inside at that point and get the stinger out
when i was in elementary school, there was a beehive on the playground
some kid threw a rock at it
someone help this js code is spitting NaN as its output ``` function myFunction( input ) {
return Math.max( input );
}
myFunction([3, 2, 1])```
should be 3
Math.max takes in multiple arguments directly, not just one array
you could solve that by doing Math.max(...input) instead
that'll unpack the array into its multiple values
...array is like *list in Python
mhm
...JS's max just silently goes "nope" when passed a non-comparable type? yikes
js does that for like everything
it doesn't even care if you pass in something at all
it'll just be undefined then
for that matter, allowing <2 arguments in max is cursed already
@delicate lion :white_check_mark: Your eval job has completed with return code 0.
1
Β―_(γ)_/Β―
that's an iterable, though, it'd be a bit too much to check its size
Thank you, that helped
so using ... unpacks an object?
Arrays, etc..
LOL this debugger needs serious help
'use strict'; helps a lot
Even if you don't notice it
Ok
message me if you need me
just survived a case of pnumonia (not covid)
vents suck but r life saving
I am new to using zsh does anyone know what plugin this is?
that's not a plugin
and I wouldn't recommend "plugins"
that's just a prompt. probably powerlevel10k or I think "powerline"
Thanks!
any specific reason?
zsh plugins just add a lot of overhead
oh-my-zsh, for example
you can get the same if not better with only 3 lines in your ~/.zshrc
overhead of time ?
in general, but yes
ohkk
do they manually change the off topic names
i have been using oh-my-zsh for a while now, i have gotten use to it... it is a little slow to start, but it is quite usefull too, like autocomplete syntax highlighting and stuff
i dont think so, they said it changes every day so...
yes, you can do that in vanilla ZSH
no
they are pulled randomly from a pool
cool, i will surely give it a try
This is my entire zshrc (granted, it's messy)
didnt know u could install linus
bruh
what did u do to linus
Hi, I wanted to say that it's probably offtopic, then I saw this channel lol:
I already tried installing Arch multiple times, and it always fails when installing the graphics driver. I installed video nouveau and now base arch won't even turn on to install a Desktop environment. Does anyone have a link to a good tutorial on how to install Arch (the wiki is not working for me because of this), if possible with Dual Boot with Windows? (I have a 3070 mobile by the way - it's a newer gpu and idk if there are drivers for it already) Thanks!
um. why are you installing nouveau?
I got my terminal to show a picture π
Activate Windows
2 expensive 4 me
yes but why so low res
Probably because that's the char size of the terminal
indeed
Here's where I'd usually cite the EULA and say... ruh-roh, that's illegal but um... 2tired










