#general

1 messages · Page 1633 of 1

neon jackal
#

So far the best option I see to do WebAssembly its Emscripten

oblique sleet
#

go for it

neon jackal
#

I use it for the plugins

#

Best plugin in existence

oblique sleet
neon jackal
#

Also, lmao 8 seconds

oblique sleet
#

i mean true

neon jackal
#

Basically I can do CSS with some music to make the pain a bit tolerable

oblique sleet
#

inb4 ms decided to ban that extension for whatever reason kekw

neon jackal
#

If they do that, I go ||Vim||

oblique sleet
#

just build the extension from source

neon jackal
#

Could be, but it uses Spotify Web API which its linked to my Spotify acc so Idk if me connecting from a banned 3rd party is something uh... not good

oblique sleet
#

just BELIEVE, everything works if you BELIEVE

neon jackal
#

Sad it doesn't work offline, even with premium

neon jackal
#

:xd:

oblique sleet
neon jackal
#

The final exam was doing the calculator, but with bootstrap
Now Imagine, I had a sh"""y and confusing CSS file, and a even worse HTML file

oblique sleet
#

damn

#

frontend is scary

neon jackal
#

At some point I broke the JS by just modifing the HTML file lmao

oblique sleet
#

id rather deal with nullpointer than that thing

neon jackal
#

I just was doing 1+1

#

And it gave me NaN

oblique sleet
neon jackal
#

Clearly, 2 doesn't exists

#

The best part is that I didn't even did that much, I just added some classes and stuff

oblique sleet
#

muh eyes

neon jackal
#

"High contrast" theme moment

oblique sleet
#

id spend days only to find a good theme kekw

neon jackal
#

Lmao

#

I just when to the first theme that had a pure black background

oblique sleet
#

i mean literally, when i migrated back to vscode from nvim, my fav theme hasnt been ported to vscode, so i spent days testing new themes kekw

neon jackal
#

Lmao

#

Beautiful

oblique sleet
#

the pure black is not the problem
the syntax highlighting is for me kekw

neon jackal
#

Lmao

#

At first I kinda didn't like and I thought it was because its a theme mostly focused on accessibility
But then I found about that with other themes the highlighting made difficult to me to differentiate some colours and I stayed with this even since

oblique sleet
#

well hey as long as its not light theme

neon jackal
#

Oh

#

It has a light version

oblique sleet
#

id go blind

neon jackal
#

A whole fu""""" flashlight

#

More brighter than my lamp lmao

oblique sleet
#

jeez

#

am i seeing heaven or code

neon jackal
neon jackal
#

Reminds me to some github dark theme

oblique sleet
#

it just hits the spot for me chef kiss

neon jackal
#

For me everything its fine except for the color text in the explorer

#

Its a bit way too dark, it almost blends with the background

#

Or maybe its just me going blind, idk :xd:

oblique sleet
#

it actually has 2 colors
the darkest one are ones that get ignored by gitignore

neon jackal
#

Ah

#

Makes sence

oblique sleet
#

but yeah its too dark ngl

neon jackal
#

I have to get new glasses because usually I see text darker than that lmao

#

I havent changed them in like 3-4 years becuase quaratine

oblique sleet
#

i feel that np, i need new lens kekw

neon jackal
#

Where I have to change them every year or 2 years

oblique sleet
#

i never really use glasses for stuff at home

neon jackal
#

Tbh, best function of VSC

oblique sleet
#

really? i never use it lmao

neon jackal
neon jackal
oblique sleet
#

understandable

#

i prefer going the command route

neon jackal
#

No way I will remember all the flags git has

oblique sleet
#

true lmao

#

even for docker, i only use the extension for auto complete in compose and docker files

neon jackal
#

Lol

#

Never used docker tbh

oblique sleet
#

if you dont really have a use case dont use it

neon jackal
#

As far Ik, sounds like a VM with extra steps

#

Or something

#

Idk

oblique sleet
#

you prob have watched fireship video about it

neon jackal
hybrid surge
#

hØw to join beta program

oblique sleet
#

im bad at explaining so im not even gonna begin to explain docker

neon jackal
hybrid surge
#

I've already downloaded game so can I still join

neon jackal
oblique sleet
#

this is the dockerfile for my bot

FROM rustlang/rust:nightly as builder
WORKDIR /bot

COPY Cargo.toml Cargo.lock ./
RUN mkdir src \
    && touch src/lib.rs \
    && cargo build --release \
    && rm -r src

COPY src src
RUN cargo build --release

FROM debian:buster-slim
WORKDIR /bot

RUN apt-get update \
    && apt install -y libssl-dev ca-certificates
COPY --from=builder /bot/target/release/bot /bot/bin

CMD ["/bot/bin"]
neon jackal
#

Tf is that
mkdir? WORKDIR? apt-get?!

oblique sleet
#

oops shouldve just apt update but anyway

neon jackal
#

lmao

oblique sleet
#

docker useful if you want to run your apps ANYWHERE without having to worry about stuff not working on certain os etc etc

#

also if you want to handle multiple services like your bot and its database at once etc

neon jackal
oblique sleet
#

nah payment is only if you want to push/store your images on the repository

neon jackal
#

images its like the docker file, right? or its the thing that docker uses to emulate the OS?

oblique sleet
neon jackal
#

Ah

#

So, I have to pay If I want my image to be in the docker repository?, kinda like a cloud thing?

oblique sleet
#

i dont know the details about that tbh
you dont really need that

neon jackal
#

Ah, welp, the thing is that isnt needed

#

But why login lmao

#

Like, I dont see some privacy concern in Docker's privacy policy, but idk

oblique sleet
#

this bot uses multi containers
the bot
the database
etc
composed together

neon jackal
#

Ahhhhh

#

I think now I understand

oblique sleet
#

its easy to handle things that way

neon jackal
#

So that repo technically can run in any OS without compatibility issues?

oblique sleet
#

yea

#

you just need the docker itself

neon jackal
#

Sounds neat, but if all I do at the moment its broken JS and badly written CSS, I dont see any case where I would need it
It can also handle hardware incompatibility? Like X86 to ARM when needed

oblique sleet
#

as i said all you need is the docker itself

neon jackal
#

Docker moment

oblique sleet
#

imagine game binaries, well u just need to execuy that to run ur game

#

now an image that contains not only your app but also the OS

neon jackal
#

Doesn't that introduces a huge file size? or all an image do its tell the current OS how to emulate the target OS?

oblique sleet
#

my current bot image is only around 100mb

#

thats small

#

if i were to put full ubuntu in there it would be way over 500mb

neon jackal
#

Lmao

#

Imagine bundling Windows

#

Like 30 GB+ of bloat

oblique sleet
neon jackal
#

And then 1GB of the actual .NET, DIRECTX and other Win stuff libraries and things

oblique sleet
#

so the final image ended up being only around 100mb

#

you can push it even lower to about 50mb with alpine
but expect problem with shared libraries etc

neon jackal
#

Optimisation 100

oblique sleet
#

theres more into the script such as how cache is handled but i wont explain

#

like how i have to build twice here

COPY Cargo.toml Cargo.lock ./
RUN mkdir src \
    && touch src/lib.rs \
    && cargo build --release \
    && rm -r src

COPY src src
RUN cargo build --release
#

the dummy build vs the actual build

neon jackal
#

But, you're deleting it after, or its just because some cache thing?

oblique sleet
#

yeah, its not a problem with docker its just how some thing work

neon jackal
#

Ah

#

Makes sense

oblique sleet
#

basically i build the libraries first and then the actual binary
so that when i edit my source code it doesnt have to rebuild the libraries

neon jackal
#

Ah

oblique sleet
#

which takes well over 20 minutes lmao

neon jackal
#

Lmao

#

That moment when you include a 10GB library just for 1 function, ignore scoping

#

Where have you been all my life

oblique sleet
#

basically this is how the caching work in the simplest way

COPY src src
RUN cargo build --release
  • if you build your image for the first time it will execute both instructions and cache the results
  • if you build your image again without modifying anything in COPY it will skip RUN and use the cached results
  • however if you modify them it will repeat from the beginning
neon jackal
#

Ah

oblique sleet
#

hopefully my insanely terrible explanation helps

neon jackal
#

Reminds me of "hot module replacement" from webpack, where when the code changes, it doesn't requires a full reload to update the changes

#

Best thing ever

oblique sleet
#

ye

#

without caching obviously everyone had to wait for ages

neon jackal
#

I kinda regret not using webpack for my calc just because doing math often requires me to reload the page a bunch of times when I got something wrong

oblique sleet
#

just rechecked (ignore the none) the image is only around 110mb

neon jackal
oblique sleet
#

the none are just intermediate images which are basically caches

oblique sleet
neon jackal
neon jackal
oblique sleet
#

sounds pain

neon jackal
#

I made it worse by just using single letter variables in desperation

oblique sleet
#

use emojis for the vars kekw

neon jackal
#

Lmfao

#

At some point it was a lot to memorise so I just did what I had to do from the start, comment the code

oblique sleet
neon jackal
#

At least I approved the final exam

oblique sleet
#

good

neon jackal
#

Basically the graph wasn't needed, but since I finished the rest of the calc in 1 day, I wanted to add more, so I came up with the idea of using the Canvas API

#

When working with the Z axis, it was to painful at first that I searched for a moment how to write a quick 3D engine with WebGL lmao

oblique sleet
#

bruh

neon jackal
#

At least the result its something, but its not true 3D

oblique sleet
#

good enough

neon jackal
#

But I mean, I even took the time to adapt it to mobile view, so it has some things that some more bigger websites dont :trl:

oblique sleet
#

does that give you extra score or something
or you just want to add stuff BaeNaruhodo

neon jackal
#

I just wanted to add all that because I also did similar things in the same course, so presenting a lazy project wasn't really a thing I wanted to do
Also, if something failed while presenting it, at least I had some features to make some backup points :xd:

oblique sleet
neon jackal
#

The rest of the class presented something like this lmao

oblique sleet
#

is that even real or a joke

neon jackal
#

Its real

#

The final exam just was adding fancy styles

#

We were just starting with JS so meh I guess

oblique sleet
compact dragon
#

Gl

neon jackal
#

When I showed this to everyone weeks after the exam, everybody was like: "B"""" what the f""" is that"

compact dragon
#

I'll have Latvian history exam on Tuesday

neon jackal
#

I also have history exam on Tuesday next week

compact dragon
#

Dman.

neon jackal
#

But at least I have some backup point from a presentation I did some days ago (Even with some of the laziest ppl from the class, I made everyone approve just becuase I didnt wanted to fail that presentation lmao)

oblique sleet
#

gl with the exam

neon jackal
#

Anyways, gn its 2:11 AM here lol

compact dragon
#

Gn player

oblique sleet
#

imma go back to my task aswell

night sentinel
#

🇷🇦🇹🇮🇴

#

🇱🇲🇦🇴

drowsy bramble
#

Wdym?

#

What profit?

cedar vessel
#

Jailed jojo man banned?

proud void
compact dragon
#

Since there are no messages (aka all are deleted)

compact dragon
#

Wait what jojo

rough tusk
#

who is that

compact dragon
cedar vessel
compact dragon
#

Yeah I think he was banned

#

Oh wait

#

Ah this one

gritty sand
#

🇱🇲

#

wtf

compact dragon
#

Doesn't matter

drowsy bramble
compact dragon
#

Stop posting that please, at least qwrty isn't as annoying as you

#

I'll have to @ moderators if you won't stop

drowsy bramble
#

K then

drowsy bramble
night sentinel
#

please stop arguing, 807293138665996288 and 892625447513358336

proud void
drowsy bramble
compact dragon
#

You can also just not respond

#

That also works

#

Unless it's a question

#

Or simple 'alright'

cedar vessel
#

hallo what is happening

drowsy bramble
#

Alright then

drowsy bramble
cedar vessel
#

;funnythumbsup::

drowsy bramble
proud void
#

Ok

nocturne juniper
compact dragon
#

Took a picture of woman taking a picture of this

compact dragon
#

Woooo

#

@night sentinel E95 costs ~2,1€ but E98 costs ~2,05€ here, Diesel remains under 2€ at ~1,92€

night sentinel
#

not gonna lie, if you put two spaces after a period, get used to the internet. i see no reason why you should do that, since most social media places will just get rid of that other space. so, if you do that, please, just be normal. save your time, folks

gritty sand
#

. . .. .... . ... ... . . ..

cedar vessel
#

me when danekbel trying to meak discor cryptology idek

gritty sand
#

me when i try to decipher what qwrty said

cedar vessel
#

EEIHESSEEI it says

night sentinel
#

happy june 4th people

flat forum
#

Im not murica

flat forum
twilit scarab
#

pain

flat forum
#

Programming

cedar vessel
#

ntf

night sentinel
past sky
past sky
#

@night sentinel

night sentinel
#

?

past sky
#

Mans said you talked about American's independence day, is that true?

flat forum
#

Lol

#

Wrong

#

I forget

#

4th july

past sky
#

Kekw

night sentinel
#

yes, i was trying to fool someone into thinking that today it's american independence day

past sky
#

Lmao

flat forum
#

If it was 1 june i could pardon it

#

Cause yknow

#

My nation stuff

rough tusk
oblique sleet
past sky
#

Happy America day!!!

night sentinel
#

happy america day

past sky
#

It's june 4th!!

flat forum
#

Kek

past sky
#

Cake

drowsy bramble
night sentinel
#

in other news, happy hug your cat day

night sentinel
#

(ノ◕ヮ◕)ノ*:・゚✧(u‿ฺu✿ฺ)Ψ( ̄∀ ̄)Ψ( •_•)>⌐■-■

cedar vessel
#

average korean/japanese wanna be girl

drowsy bramble
cedar vessel
#

idek

flat forum
#

Here some nature picture that i take after took a little break from genshin grinding

#

I walk to mountain that near my house

#

This was some random monument in the middle of nowhere literally

compact dragon
#

Ok

flat forum
#

Imagine build a tall building while there is not any building near

rough tusk
#

it looks nice

gritty sand
#

I have a whole week of exams in 3 days

#

I hate school

flat forum
#

Mine was done

full jasper
#

Hello

flat forum
#

Hi

night sentinel
deft vector
night sentinel
spring thorn
compact dragon
#

When is National Hug Your Cat Day?

gritty sand
#

wtf

spring thorn
gritty sand
#

why?

spring thorn
#

Xdxdxdxd

gritty sand
#

yo man

spring thorn
#

Prank 🥳 🎉 🎉 🎉 🎉 🎉 🎉

gritty sand
#

come si leva

#

?

spring thorn
#

you can turn off that plugin

gritty sand
#

ok

steady ridge
cedar vessel
#

greh

spring thorn
#

greh

steady ridge
#

greh

kindred hare
#

ok

cedar vessel
#

dont buy discord nitro for their official stickers

#

worst mistake of me life

thorn garden
#

Damn german past is clearly religious and political

#

Problem

cedar vessel
#

:WHOAREYOU-1:

gritty sand
#

hi guys I need som help

#

the thing is that there's cool shop next to me

cedar vessel
#

cool shop

gritty sand
#

yes

cedar vessel
#

What is the problem

gritty sand
#

lemme finish

thorn garden
#

I have an experience no one else done in their live at 1st grade

cedar vessel
#

Is there hot mannequins

#

in the cool shop

thorn garden
#

I

#

Kiss

#

Someone

gritty sand
#

so there sort of mashin that u can *get a photo for like 2 bucks

cedar vessel
#

i kissed my wall in kindergarten

#

smh

thorn garden
#

Wall

#

Huh

gritty sand
#

a d it's really cool

thorn garden
#

I kiss a girl at age 9 sadly and unfortunately

gritty sand
#

and I want to print something but I have no i dwa what

#

like really shitty meme or sth

cedar vessel
gritty sand
#

2$

cedar vessel
#

cheap

#

buy it

gritty sand
#

yeah really

thorn garden
#

print "print"

cedar vessel
#

isnt it; print("print")

gritty sand
#

I thought about printing that but if someone sees me with that in da shop

thorn garden
#

Sus

cedar vessel
#

how did you get my messages in the theotown dramar discussion group

thorn garden
#

How

gritty sand
#

so do you guys hav som ideas?

thorn garden
#

What idea

cedar vessel
#

print a banana

thorn garden
#

Plugin?

gritty sand
#

what photo I should print

cedar vessel
#

a banana

#

then eat it

#

yum

gritty sand
#

why

thorn garden
#

Sw*atika

gritty sand
#

bro

#

wtf

gritty sand
thorn garden
#

Want the photo

#

?

gritty sand
#

yeah

#

I cant decide

thorn garden
#

Click the checkmark for yes

cedar vessel
#

print money

thorn garden
gritty sand
#

Bro genius

#

I can get money for free

thorn garden
#

Any waifu

gritty sand
#

I'll print 100 dolars and I'll get 98

cedar vessel
#

just search up "European money 1000$" then print it

#

profit

thorn garden
#

Are you asian?

cedar vessel
#

elon moosk

thorn garden
#

Any waifu?

gritty sand
gritty sand
thorn garden
#

Nope

cedar vessel
#

or simply print a rare coin or cash

#

sell in ebay

#

profit

gritty sand
#

stonks

#

or that

thorn garden
#

Or

#

Uh

#

I cant

#

Post it

gritty sand
#

dm

thorn garden
#

Or i get banned

gritty sand
#

me

#

then

cedar vessel
#

dm me too

thorn garden
#

JWST prop

gritty sand
#

lol

thorn garden
#

Is there fredbot here?

cedar vessel
#

no

thorn garden
#

Ok

gritty sand
#

Bro ima print that

#

it's perfect

junior iron
#

Wait

full jasper
#

What is going on

gritty sand
#

ima just stick it to the wall

cedar vessel
#

put it in your neighbour's door step

thorn garden
#

What is the bot activation thinggies

gritty sand
junior iron
cedar vessel
#

Cockroaches are raiding my bathroom once agaib

thorn garden
#

No cockroaches

#

Only uh legged worm stuff

cedar vessel
#

what the hell

#

thats worst

gritty sand
#

opps

thorn garden
#

Got fup

gritty sand
#

I made mistake while typing cockroaches

thorn garden
#

The thousand legged worm, idk what the called it in english

#

Centipede

thorn garden
#

Yeah

#

Centipede

#

Geez

#

They like ghost

#

Appearing put of knowhere

cedar vessel
#

me who havent seen a centipede for 3 years

thorn garden
#

I have phobia of insect

#

Sadly

#

Not insect stuff but smol animal, like snail

cedar vessel
#

ok

thorn garden
#

How

#

To

#

Thread

junior iron
compact dragon
thorn garden
#

@river harness

#

Hey thats me

#

With new acc

#

Family link

#

Stuff

compact dragon
#

Ok

rough tusk
thorn garden
#

Anyone want ban speedrun

carmine stone
#

Oh

cedar vessel
#

i'd turn into ashes

junior iron
#

pipebomb the roach

cedar vessel
#

i dont have any pipebombs

silent lichen
#

Yes you

spring thorn
#

😱

thorn garden
spring thorn
#

Why is my cellphone camera so blurry

#

😭 😭

thorn garden
#

Same

thorn forum
#

Clean it

thorn garden
#

My camera is useless

#

Like jotaro

#

According to DIO

gritty sand
cedar vessel
#

what

thorn garden
#

Huh

cedar vessel
#

cokc

rough tusk
compact dragon
#

^

solid sandal
compact dragon
#

Some jojo shii

#

Nobody likes anime anyways

night sentinel
#

unreal punctuality, i'm already getting christmas ads

night sentinel
gritty sand
#

today is 33 years since nothing happened in beijing

compact dragon
night sentinel
night sentinel
#

He mentioned that he will watch jojo's 5th season and then a guy named jokubasa spoiled the plot for him lmao

compact dragon
#

That was epic fight

winged kettle
night sentinel
#

quin 👀

compact dragon
#

They're fake mods

gritty sand
gritty sand
#

æ

junior iron
#

h

rough tusk
#

h

ivory palm
#

a

gritty sand
#

bobingtonding

past sky
compact dragon
#

me

past sky
#

Ok

#

Ban me

compact dragon
#

Sure

#

Pautobahn 509417927175307266 ratio

past sky
#

I'm still here

winged kettle
#

Autobahn me

past sky
#

@worldly carbon please ban me.

worldly carbon
past sky
#

Alright

#

Erk is a real moderator

latent wraith
#

Yes please don't

#

I'm on vacation lmao

neon jackal
#

Lmao

past sky
#

Yeah, sorry for that

#

I was having a laugh

proven nymph
latent wraith
#

Fair enough haha, I got on just at the prefect time to see that

#

Even if I was pinged for it, I'd eventually get around to it

proven nymph
#

ghost ping

past sky
#

Oh lol

#

Also how's your vacation so far

latent wraith
#

Just got here, it's an island in Florida

deft vector
#

Hope you enjoy

past sky
#

Yeah

#

Have fun with your vacation

neon jackal
#

👍

worldly carbon
#

sounds very hot

proven nymph
#

ok

#

who's florida man

latent wraith
#

Thanks haha, I'll be sure to watch out! My service is abit spotty though so who knows how much of me you'll see

compact dragon
#

No need to appear frequently elder

#

Enjoy your vacation

deft vector
#

Hi

vapid hinge
latent wraith
spring thorn
winged kettle
#

E

vapid hinge
#

correct

proven nymph
#

Hi I have a problem can you help?
@

compact dragon
#

@

proven nymph
#

ok

#

thanks

#

wrong time nvm

compact dragon
#

Cumbia

brazen glen
#

"Welcome to West Papua, Indonesia's most favorite copper mine-I mean colony- I mean territory."

ivory bone
night sentinel
#

@latent wraith hi, i hope you are having a great vacation. happy june 4th btw, make sure to hug your cat(s)!

night sentinel
ivory bone
#

totally not copied from the original

night sentinel
#

ok

#

but good colors

ivory bone
#

thanks :gladeline:

night sentinel
#

you're welcome

#

but good colors

ivory bone
#

for comparison

compact dragon
#

@night sentinel

night sentinel
#

Wow

#

I would go as far as to call that kvassphobia

winged kettle
twilit scarab
#

so close yet so far away

oblique sleet
#

dev qna result is out

worldly carbon
#

Official automod?

#

Wild

oblique sleet
#

it should be out for beta users iirc

#

(not my ss)

worldly carbon
#

Or what

oblique sleet
#

server obviously

twilit scarab
#

@oblique sleet rate my cpde

gritty sand
#

it's not your code i saw it in code meme page 🤓

twilit scarab
#

what if you wanted to connect your earphones to phone

#

but kde said no

gritty sand
#

you have kde on phone?

twilit scarab
#

I have KDE connect

#

but I meant kde on arch

#

I have bluetooth on

gritty sand
#

imagine kde on windows

worldly carbon
#

doubt itd work very well

gritty sand
#

does it work very well on linux? :troll:

worldly carbon
#

i mean

#

i havent had issues

twilit scarab
#

im just updating arch by accidentally connecting to some romanian host with 10 kbps up

gritty sand
#

lol

twilit scarab
#

Also

gritty sand
#

at least in steam romanian hosts work faster for me than ukrainian ones

twilit scarab
#

Danek, have you had a 'Inappropriate ioctl for device' error when using GPG?

gritty sand
#

no..

#

i haven't used linux for more than a half on a year

twilit scarab
#

I have this suspicion that my help entry being in Lithuanian might have something to do with it

gritty sand
#

i gave my linux laptop to my dad

#

he doesn't have any issues afaik

twilit scarab
#

and went for freebsd?

gritty sand
#

😳

oblique sleet
#

man dpy is a stressful place

worldly carbon
#

not enough pixels to see

#

whatd he do

twilit scarab
#

''

worldly carbon
#

lol

#

mustve used notepad as ide

oblique sleet
#

man planning to make ml stuff when they cant even fix file not found and syntax error

#

common sight in dpy kekw

worldly carbon
#

mans boutta make tt

gritty sand
twilit scarab
#

xlsx > xls

worldly carbon
#

this feels illegal but it works so

gritty sand
#

csv > xlsx > xls

twilit scarab
worldly carbon
#

simply a diffrence in skill sunglas

#

hey saves like 4 lines

#

and a variable assignment

twilit scarab
gritty sand
#

true

worldly carbon
#

anyway

#

its time for mote metatable loading pain

oblique sleet
#

TOML superior

worldly carbon
#

since tt cant store functions

#

need to put the metatable back every time

past sky
#

People love morbius because of memes

#

Not the movie

worldly carbon
#

no clue what the movie is even about

oblique sleet
#

true that

twilit scarab
worldly carbon
twilit scarab
#

my toaster firmware downloads faster than this sh*t

gritty sand
worldly carbon
#

priorities poeple

oblique sleet
#

outstanding

neon jackal
#

Epico

worldly carbon
#

they only did it so the folder would be at the top when sorting alphabetically

twilit scarab
#

remind me to change my arch pass

oblique sleet
#

remind me to remind you

past sky
#

also

neon jackal
#

O yeah letsgo

past sky
#

kekw

worldly carbon
#

ah right i do remember seeing something about vampires

past sky
#

The movie got $85k after they decided to show the movie again

gritty sand
#

no it's not about vampires

#

IT'S ABOUT MORBIN'

past sky
#

Lmao

worldly carbon
#

oh its morbin' time

gritty sand
#

i literally morbed myself rn

worldly carbon
#

love the scene where he morbed everywhere

gritty sand
#

me too it's my favorite scene

past sky
#

I love the part where he said it's morbin time

worldly carbon
#

instant classic

gritty sand
#

remember when he said to the villain "i'm gonna morb the fck out of you"?

past sky
#

"It's morbin' time" Paul Allen, 2k22

twilit scarab
night sentinel
#

Morbius about to morb

#

Demorb

past sky
#

I still can't believe Paul Allen and Morbius was played by the same person

worldly carbon
#

anyway

past sky
#

or acted, idk which word should I use

#

Speaking of Paul Allen

night sentinel
#

Morbius is one of the movies, ngl

past sky
#

I'm going to watch American Psycho

#

Brb

night sentinel
full jasper
#

🤔

past sky
proven nymph
#

asd

gritty sand
#

algorithms and structures of data?

unborn panther
#

Bread

worldly carbon
#

Banana

cedar vessel
#

banana i better:angre:

unborn panther
twilit scarab
# twilit scarab
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Guess what, I fixed it, yayyy
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEED+9fQBQNpHtcQmKjx5f0bTrmAGcFAmKb2AkACgkQx5f0bTrm
AGeqxg//U/5Aq6NkeEbi3d7kqwDlEvfTIcs5UYa4rzYvQOlwvgr3+xPmjT7vDhad
DR+eA6AUP9gB2G/n7xvZn9AKawpAXlL8O5XLnyaePbHfpo8jVDIGfnF7+FiGGZ29
2pTYKjuPRnzXI4RO+xBOyt0ESFcasdT6c6dQ4lNZROXJAWtSBOQVRs2ayH7kfMK9
V0d4sf+VTEaj/ckPREdmMHMhjd01FtNLke1ZQDk7VUdnECL7McdeBjN9FdlDhB0D
/68DVRaUfH6eHu4U9pVVIBv6xKmcp+k13F3DaDApQULY8pjXHRD/mmVmEtxah0R7
NbviZbqMEKQPUH7LOt9tYnFYqiWkBaAQYKBh0xAd0n3P0ZmhrNkW/Q3i9ZN5GoP+
rcpScOxduznLkCAxsfY7qYOJWBZFPK97U+aj7x/5CGCV9VXYPjYCK62VVSbES4W5
DstP1uKzgXJq+FEAAwMcKi2AS4KMD34mahq/i9p/Iv3hYd6oerOq3C+Cv1YjxOS2
cant2Buf4H3JAKMSRKQB9wBssBW2fM/cKwAAOfeD0yDx8c2yp+A4MjxT0AIPB/4y
rVPcXh9k1FWzxRidlH3DmkmFrQMhB90I9pn/uEv8ZSu5gLTNaN+XWKnqABsuMos7
KKByASaO9SmewnUbsPU0WPipSwxbaDwGICX3jsHbvoicyhNFrEw=
=iMiJ
-----END PGP SIGNATURE-----
worldly carbon
#

this you?

#

lets find out

#

yep, thats you alright

twilit scarab
#

pgp never lies

#

who knew that deleting kwallet is bad

#

The satisfaction of closing 100 tabs

#

my goodness

worldly carbon
#

lol

#

i should stop for today

#

but i know ill be lost again tomorrow

unborn panther
#

Erk what we do tomorrow in ftb hell

sour gulch
#

How do harbour zones work, they never build for me

twilit scarab
#

that was an interesting read

cedar vessel
#

ah yes so thats hoe harbours work, thanks ja!

sour gulch
#

That just popped up but anyway how do harbours work

sour gulch
#

Thanks mate I didn't even know you had to add roads there

cedar vessel
#

the banana

sour gulch
#

And I see you are a fellow super dark mode used

#

User*

cedar vessel
#

the

sour gulch
#

?

proven nymph
#

Ok

night sentinel
#

Tesco

night sentinel
#

Burn it down

night sentinel
#

In other good news my bowel situation seems to be getting better

night sentinel
#

yes, i know

#

Great thing

#

I am healthier

proven nymph
#

tía is superior

sour gulch
#

How dare any of you post ALDI or Tesco, LIDL, Is far superior

night sentinel
#

@twilit scarab maxima gang

full jasper
#

Mercadona gang

twilit scarab
#

kokios bėdos, dėde?

night sentinel
#

Ar tu esi sertifikuotas maximos gerbėjas

proven nymph
#

:trl:

night sentinel
#

No

thorny hatch
#

Guys

#

I need help in dms

twilit scarab
proven nymph
night sentinel
#

Svarbiausia, kad lietuviška

#

Anyways, ignoring what just happened, norfa best, everything else sucks

proven nymph
#

tía tho

gritty sand
#

ATB gang 💙🤍❤️

#

ok actually silpo and fora are superior

cedar vessel
#

framce

gritty sand
#

😳

night sentinel
#

Damn

#

Carbonated water op

#

I feel like my digestive tract got cleaned up now

#

Context: i had constipation

proven nymph
#

fun fact: i like isopropyl alcohol smell, even tho i know it's hazardous

#

ok

flat forum
#

Im addicted to freon lol

#

Smell of freon was good

mighty locust
#

Where are the redeem codes?

flat forum
#

What redeem

mighty locust
#

redeem codes for diamonds It’s in the game

brave pecan
mighty locust
#

thx

cedar vessel
#

";cfly"

oblique sleet
#

its like the 5th time rust compilation completely froze my rpi heck

#

temp is below 50 which should be fine

neon jackal
#

Lmao

#

That poor raspi CPU just can't believe rust perfection

drowsy bramble
#

Someone posting mobile legend on #games

#

A bit cringe tbh

compact dragon
#

(FYK the prices are not like this here)

flat forum
drowsy bramble
drowsy bramble
neon jackal
#

I cant believe it...
I finally got a C++ compiler to work with VSC

#

It works Inaudible screaming

oblique sleet
#

try compare go compiler with rust compiler
go one doesnt do much
rust has borrow checker etc all these stuff

#

the good side of this is that runtime errors (not all) are handled at compile time which means when you finished compiling then chances your app will surely work

neon jackal
oblique sleet
#

if it breaks then ur app needs fixing SubaWheeze

neon jackal
#

Memory leaks go brrr

oblique sleet
#

tell that to GC languages SubaWheeze

neon jackal
#

Zamn

oblique sleet
#

memory in rust is handled with the so called "ownership"
i dont think i need to explain further

neon jackal
#

In Pain++ land we don't have GC
Now watch me writing some pointers pointing to oblivion and some unused GBs of RAM, surely my 16GB can do the work for me 👍

oblique sleet
#

imagine working with pointer

neon jackal
#

*A pointer staring at some other random pointer, witch is staring at some other random pointer and so...

oblique sleet
#

you do use pointer in rust but its different

neon jackal
#

At least some language its saved from hell

#

Emmm....

oblique sleet
#

python objects are partially pointers

neon jackal
#

So far, somehow I've been enjoining my VS2022 experience ngl
Its a little bit more faster, but I really dont want to imagine what would happen if I put VS2022 in my HDD instead of the SDD

oblique sleet
#

vs is just too overkill for anything i do kekw

neon jackal
oblique sleet
#

all i need is simple editor and lsp thats it

#

no need those testing tasks debug etc features of vsc

neon jackal
oblique sleet
#

and on windows, scoop is a must have for me

neon jackal
oblique sleet
#

ez management

neon jackal
#

What windows should have in the base install

oblique sleet
#

wym?

vapid hinge
#

i WANT this

oblique sleet
#

the only requirement

#

PowerShell latest version or Windows PowerShell 5.1

neon jackal
#

All these features look more like fixing windows caveats
"Eliminates permission popus windows"
"Prevents PATH pollution"
"Avoids unexpected side-effects from installing and uninstalling programs"

oblique sleet
#

well its basically a pkg manager

neon jackal
#

Ah

oblique sleet
#

which u prefer, downloading binaries or simply scoop install ...

neon jackal
#

Ehhh... depends

oblique sleet
#

usually people use chocolatey on windows but it sucks

neon jackal
#

If the software acts like a """"" when installed from not official sources, then binary
For anything else, I would just prefer to type it

oblique sleet
#

i have everything even rpi imager installed with scoop kekw

oblique sleet
neon jackal
#

Lmao

#

Ah, something I forgot to mention is that I also got clang, so basically the best of both worlds (GCC and CLANG)
So yea, I used WinLibs because why not

#

Tbh cant believe there isn't really like a consistent standardised way to compile C++

oblique sleet
#

well thats been the pain with it

#

thank god rust has everything needed

#

no more headache

neon jackal
#

I thought "Well, this is an language with like 35+ years in existence, so surely it has an standard that everyone follows"

oblique sleet
#

iirc there was some attempt but idk never dig deep

neon jackal
#

Sad

oblique sleet
#

rust even has its own linter

neon jackal
#

Zamn

compact dragon
#

Rust really rust

oblique sleet
#

rustup is for configuring toolchain etc
cargo is for building, running, testing, benchmarking, publishing, etc projects

#

rustc is the compiler but you literally never touch that

neon jackal
#

I depend of Microsoft Intellisence :pain:

compact dragon
#

@Ayame#5520

oblique sleet
#

you can have multiple binary and library crates in one package etc

neon jackal
oblique sleet
#

never rely on those stuff lol

neon jackal
#

As said, you cant escape JavaScript

#

At first I was putting the ; at the end of each line in JS
But with time somehow I forgot about that and now Its like no

oblique sleet
#

if ; is already troubling you i cant imagine you using rust kekw

neon jackal
#

Like its not natural anymore, now I have to think for a moment if I put the damn ; before I continue writing

oblique sleet
neon jackal
#

Uhhhhhh..... It would print the memory used by the variable?

oblique sleet
#

well it aint fair me asking this to you kekw

neon jackal
#

Wait what it would print, I literally got no idea

oblique sleet
#
let a;
let a = a = true;

what is the value of a

neon jackal
#

XD

oblique sleet
#

it shouldnt be hard

neon jackal
#

I was focused on that print! line so much, aaaa,~~ I blame JS~~

oblique sleet
#

whats a SqueaksSus

neon jackal
#

Wouldn't it be "true"?

#

Or I got something wrong?

oblique sleet
#

for other languages yes not in rust SubaWheeze

neon jackal
#

What

#

a?

oblique sleet
#

basically the answer is () but as for why

neon jackal
#

a never got a value?

#

Wait no

#

a = a
So a should be the value of a
a = true
So a now its a boolean
but if its not true then tf it is lmao

oblique sleet
#

everything in rust is an expression
let a = a = true;
a = true is an assignment however it returns nothing aka ()
so the final let a ends up having the value of ()

neon jackal
#

Ah

#

Wait

#

so a cant be a boolean?

oblique sleet
#

i think ur not getting it lol

neon jackal
#

No lmao

#

Why a = true returns nothing like lmao what

oblique sleet
#

EXPRESSION

#

a = true obviously an assignment where true is assigned to a

#

but the assignment itself returns nothing

neon jackal
#

Ahhhhhh

#

I think now I get it... i think

oblique sleet
#

a = true doesnt return true

#

it only assigns true to a but returns nothing

neon jackal
#

Ah

oblique sleet
#

Mr bad at explaining Cy

#

() is non sized value
so the memory size is 0

neon jackal
#

Rust is starting to scare me

#

It actually got something worse than ===

oblique sleet
#

everything is expression
this allows you to turn

if ... {
  a = true;
} else {
  a = false;
}

into

a = if ... { true } else { false };
#

you can return things from the if

#

NOT TERNARY

thorn garden
#

Are someone can do lua?

oblique sleet
#

the final expression of a block is implicitly returned

#
let a = {
  let b = 1;
  b + 1
};
print!(a); // 2
neon jackal
#

Damn, I actually got lost for a moment thinking about why a isnt true

oblique sleet
#

yeah cuz in many lang you can chain assignments

neon jackal
#

Yeah

oblique sleet
#

a = b = c = d = ... = true

neon jackal
#

So in Rust something like that is not possible?

thorn garden
#

Wat is here

oblique sleet
#

no

#

only one alternative but stupid

#

but its not even chain assignment

#

its just inline assignment

#
let (a, b) = (1, 2);
thorn garden
#

You know what nvm ill go

oblique sleet
#

construct tuple (1, 2) and then destruct it to (a, b)
resulting in a having 1 and b having 2

neon jackal
#

That makes sense

oblique sleet
#

i think release build will optimize them to just a = 1 and b = 2

neon jackal
#

Yeah, no point in assigning static variables

oblique sleet
#

these are just basic stuff u gonna meet when startin

neon jackal
#

Kinda like you can simplify 2 + 3 = 5 to just 5

oblique sleet
#

ye

#

also say goodbye to inheritance etc

neon jackal
#

Tf

#

Why

oblique sleet
#

you only have struct enum and trait

#

design pattern gonna be completely different

neon jackal
#

My sanity after that fact: 📉

oblique sleet
#

this is where trait shines but ngl its huge learning curve at first

neon jackal
#

||Why cant exist a world where a = "true" actually returns "true" ?||

oblique sleet
#

no language actually make assignment return something

#

what you see

a = b = 1

is actually

temp = 1
a = temp
b = temp
neon jackal
#

All of this makes me realise that I need to sleep
Literally I could sleep well for like a week due to a bunch of things

#

Uhhh... my head...

#

Anyways, cya 👋

oblique sleet
#

bruh its only a demo

#

just showing that you can return things from if blocks

compact dragon
#

Nice hot tub

hybrid surge
#

And yeah that guy is the owner

compact dragon
#

Ok

hybrid surge
#

Wanna live in?

junior iron
#

hello

hybrid surge
#

I

compact dragon
#

Are you trying to be funny or what

hybrid surge
#

... what h-happened

#

Is it not funny

cedar vessel
junior iron
#

what

compact dragon
#

Thanks for a good laugh

flat forum
#

British pizza

#

Heinz baked Beans with anchovy topping

full jasper
#

Ah yes bri'ish cuisine

unborn panther
#

Briish pizzia

ivory palm
#

30 is just a matter of time

flat forum
#

I want to ask from Romania people

#

My friend Accidentally says Romania cuisine is blandest thing ever

#

Does that thing true???

night sentinel
#

@proud void

untold gobletBOT
fast mauve
#

skodqard

compact dragon
#

Hi marcato

cedar vessel
#

zoemg

#

real

junior iron
#

Holy shid

cedar vessel
#

nvm left

compact dragon
#

Good

gritty sand
#

Larisa🥵

compact dragon
#

whitegrudov 😻

gritty sand
#

😭😭😭🤣😭

junior iron
#

Fishe

compact dragon
#

🤣

thorny hatch
#

This guy bought nitro yesterday.. And

compact dragon
#

Wtf

ivory palm
#

HE GONE

thorny hatch
#

And his nitro is gone too

#

And i did all of this to him

#

Made him loose everything

#

Because he messed with the wrong guy

gritty sand
#

😳

#

I can say that accounts aren't deleted instantly

#

if you wanna completely delete an account you need to wait for two weeks

marsh bobcat
silent lichen
#

Inflation

marsh bobcat
#

Every single

#

Politician

#

Is buying helium

#

From china

#

And inflating the mongolia balloon

#

Till it flies up into space

#

And explodes