#lounge

1 messages ยท Page 1054 of 1

soft night
#

!8ball will steam deck give you wings?

turbid spindleBOT
#

@soft night, :8ball: It is certain.

soft night
#

!8ball will there be Epic Games Console?

turbid spindleBOT
#

@soft night, :8ball: Better not tell you now.

quasi mantle
#

Shut up, Ellen Degener ate es

quasi mantle
#

What a counter necro

pearl elk
#

you watch crypto jump when the next gen GPUs are launched

pearl elk
#

you just want to buy Tesla stock

zinc matrix
deep copper
#

probably someone he just knocked or something idk ๐Ÿค”

pearl elk
#

he's the undertaker, shouting at a crypt obviously

tulip orbit
#

wee, ue5 had crashed whilst I was away

deep copper
#

that gif was too brutal so i removed it xD

zinc matrix
cursive crypt
#

error : Nested containers are not supported. (โ•ฏยฐโ–กยฐ๏ผ‰โ•ฏ๏ธต โ”ปโ”โ”ป

pearl elk
#

stack the containers then they support each other ๐Ÿ™‚

cursive crypt
#

This is long awaited feature. I'm full of structs containing just an array.

pearl elk
#

I tend to just use associative arrays instead, I used to do the old struct array trick in uscript but it makes the code hard to read

#

I did it in uscript to use struct find though, theres no benefit to that in C++

cursive crypt
#

associative arrays instead
wdym? ๐Ÿค”

deep copper
#

an abstract data type that stores a collection of (key, value) pairs, such that each possible key appears at most once in the collection

pearl elk
#

I flatten out the structure instead of nesting

deep copper
cursive crypt
pearl elk
#

and yeah maps can definitely help

pearl elk
cursive crypt
#

map a tag to an array of uobjects.

#

Or... have a map of string/uobjects[].

pearl elk
#

yeah Im not understanding

cursive crypt
#

uuh... e.g. TMap<FName, TArray<UObject*>> map; better?

pearl elk
#

yeah its cuz TMap uses pointer so you end up with a dereference

cursive crypt
#

No. it because UE's reflection is uncapable.

#

This is fine until it is UPROPERTY()

pearl elk
#

then dont do that ๐Ÿ˜›

#

write an accessor function which is BP

#

pass in TMap and return reference

cursive crypt
#

uuuh

#

What?

#

I mean, these pointers must be managed.

pearl elk
#

they cant be

#

its a pointer to a pointer

#

youre asking for a world of leaks

cursive crypt
#

As long you wrap the damn value in another object is fine.

pearl elk
#

yeah you can use an array of structs

cursive crypt
#

More like struct of arrays

pearl elk
#

an array of struct arrays

cursive crypt
#

If that was 2d, it would be 1d.

pearl elk
#

how many FNames you expecting to have?

cursive crypt
#

Very few ๐Ÿค”

pearl elk
#

so lookup speed wont really hurt too bad from not having a TMap

cursive crypt
#

Yeah, (likely) it is even slower.

pearl elk
#

somethin like this

#

still the long way around though but best I could come up with ๐Ÿ˜›

cursive crypt
#

hmm

pearl elk
#

FStructs are objects where TMaps are types

#

maybe we need an FMap ๐Ÿ˜›

cursive crypt
#

Guess your ole struct of arrays is.

pearl elk
#

you can see how I flattened it out so its two associative arrays rather than a single array of the SplineBrushes struct

#

I found it makes the code easier to read rather than all those accessors for just finding elements

cursive crypt
#

I see one of them points to the other.

#

(probably)

pearl elk
#

yeah SplineBrushes is what I used to use then I changed it so the contents of that struct is just flattened and managed in the class

#

not sure if it helps with memory management at all

cursive crypt
#

Can't say really, I still have hard time to understand that code ๐Ÿ˜…

pearl elk
#

the two at the bottom are defined in the class scope

cursive crypt
#

Also, I think that BrushMap var should be a UPROPERTY() so that GC can follow up to the Splines inside the struct.

pearl elk
#

this is editor code, I do manage the assets when they are changed

#

thats why no uprop

cursive crypt
#

magic

pearl elk
#

assets are registered/deregistered as they are assigned in editproperty

#

Ive not done much testing with large amount of assets though to see how the system handles it, there doesnt seem to be lag but they are small data assets

cursive crypt
#

Honestly, I'm kinda better with manual GC... that smart-assing around... not sure how smart it is.

pearl elk
#

shame I cant just assign a struct as a data object then I wouldnt need another class

#

I think TArrays/TMaps are always managed to a degree

#

its dynamic memory allocation so there has to be something at work there, tbh I would like a static option sometimes but I just do what I can. Not like Im an expert C++r

#

I should probably use more TObjPtr

cursive crypt
#

Well... if your TArray points to an object and you delete that object outside the array (e.g. BeginDestroy()) you may run into issues.

#

If it is only, say an array of unique ptrs, sole owners, it needs to be uprop so GC knows not to scramble these on the next run.

#

But then if you do some manual management, AddToRoot or something..

pearl elk
#

I think I cheat because there is a function when you delete an asset so I manage it myself

#

thats how I know when to update the components in the world when the asset becomes dirty

#

Im sure the smart stuff is great but it needs to be smarter about implementing itself ๐Ÿ˜›

cursive crypt
#

Nice. Assert dominance.

pearl elk
#

just event based programming tbh, nothing too special

#

main thing is knowing where those hooks are, lots of hidden editor events

#

I should really finish this code, its been half arsed for too long hehe

pearl elk
#

you gotta have enough street cred to get questions answered in lounge

cursive crypt
#

r/gatekeeping

pearl elk
#

tbh I dont visit the other channels much, I ask hard questions no one answers ๐Ÿ˜›

#

"Not getting paid enough for this shit"

quasi mantle
#

Oh, now cpp get the same level of complaint as anime thread?

pearl elk
#

I didnt ask it did I

cursive crypt
#

There is some duality+ between anime and cpp

pearl elk
#

tbh Im crap at anime and Im still better at it than I am at cpp ๐Ÿ˜›

cursive crypt
#

Maybe you need programming socks.

pearl elk
cursive crypt
#

Tbh, c++ is straightforward, albeit hard here&there than... wtf is UE doing

cursive crypt
#

It was a bluff I guess.

pearl elk
#

pascon or pythal

cursive crypt
#

Ah

#

uh

#

Wait... are you... young?

terse wasp
#

Pascal and Python? Done.

cursive crypt
#

Who didn't made tic tac toe in turbo pascal

pearl elk
timber viper
#

Who is Pascal

pearl elk
timber viper
#

Ah, that dude huh

cursive crypt
pearl elk
#

its all the things

night grove
#

SkookumScript?

cursive crypt
#

Maybe is a dude from the district.

pearl elk
#

but its mostly to control my programming speed

cursive crypt
night grove
#

Am I the only one that hated working with that?

terse wasp
#

I just remember it's name because of the drug in Elder Scrolls, lol. Skooma.

cursive crypt
#

It will be always Skooma script.

pearl elk
#

I uses nsis ages ago, since then never touched an installer

night grove
#

Maybe it was because I was working at a company that had plenty of money for an alternative, but insisted I try to make it do things it wasn't designed to do

cursive crypt
night grove
cursive crypt
#

uuh... 2nd in this world.

pearl elk
#

heh nsis is still being updated by the looks

night grove
cursive crypt
#

It is fine as long you need only a damn wrapper. I pretty much hate its stack language.

left granite
cursive crypt
#

Why nobody just make a python installer and we be done with this.

#

It is always, invent the wheel.

pearl elk
#

admit it, you like UWP ๐Ÿ˜›

night grove
vestal violet
night grove
cursive crypt
#

I dunno really. I have installed Discord twice maybe, lol

pearl elk
#

MS installer is so good there are no games launching this year tehehe

cursive crypt
#

Is it subscription based?

terse wasp
#

@sand oxide Honest question - have you actually given Godot a look? More than like a 3 minute peek that is.

cursive crypt
#

gdscript

terse wasp
#

Ah - alright. I would've just been interested in your technical analysis of it. That's all.

cursive crypt
#

sounds like gobject, fufu

#

... I guess nobody knows wtf is gobject ๐Ÿฅฒ

terse wasp
cursive crypt
#

The GNUs predecessor of UEs GC

icy mulch
#

Wait. Wasn't GObjects from GNOME?

cursive crypt
#

Yah, I don't know whether they are related by blood, but by idea.

icy mulch
#

Oh. Well, that explains a LOT.

pearl elk
#

I thought the g was silent

cursive crypt
#

I guess you can also pronounce uobject as wow object.

cursive crypt
#

til, DeterminesOutputType does not work with soft class ptrs

timber viper
#

Reflection system is too fusty for those modern things

#

I guess ๐Ÿ˜‚

cursive crypt
#

Another annoyance: tabbing out execution wire to create for loop, makes it array based. Doing the same on empty space, makes it int range based ๐Ÿ™ƒ

tiny gazelle
foggy path
cursive crypt
cursive crypt
#

I have some big list of small things (mostly POC assets).

#

But then my real treasure are the QoL plugins, like that snapping level assets per verts one.

#

In any case, as usual I let decide in the last moment, because that list goes smaller and smaller with the days ๐Ÿ™‚

wraith harbor
#

i forget the artists name sadly but s/he did a tonne of Dune stuff in the Lynch era and it was p good

carmine frigate
#

bob ross?

quasi mantle
carmine frigate
#

does discord take alpha gifs?

cursive crypt
#

iunno, does it? ๐Ÿค”

quasi mantle
#

So the previous frame didn't get cleared

carmine frigate
#

ahh

terse wasp
#

There a sale going on somewhere?

#

Oh neat.

#

I need to check my wishlist

#

Yeah, like everything on mine is 50% or more.

#

Also - Bioshock collection is the free game

#

Thank you Fortnite

deep copper
#

OR tim fell for it and that's the scammer using his account

cursive crypt
#

Free nitro, dont name more iconic duo

carmine frigate
#

Tim accepted free nitro for the entire community

deep copper
solid hull
#

!8ball will netflix ever release the 2nd half of Stone Ocean?

turbid spindleBOT
#

@solid hull, :8ball: Signs point to yes.

deep glen
#

!8ball will we ever get a new Grimgar season?

turbid spindleBOT
#

@deep glen, :8ball: Outlook not so good.

celest musk
#

gentleman it's my great pleasure to inform you that it just took me ~8h to find the reason for a crash caused by a missing nullptr check

#

compiles engine for the 6th time today....

zinc matrix
#

wow so many people in vc

soft night
#

!8ball you like bb8?

turbid spindleBOT
#

@soft night, :8ball: Outlook good.

cursive crypt
#

!8ball tell me bud, should I shortcut Live Reloading to the middle mouse button?

turbid spindleBOT
#

@cursive crypt, :8ball: Signs point to yes.

cursive crypt
#

Good.

#

Seeing nanite mesh nowadays instantly makes me think - it is badly optimised.

deep glen
#

im purposely trying to make a few objects with ugly geo. damn my ocd is fighting back hard XD

trail wedge
keen grove
#

sike

#

is it just me that hates if theres anything i miss from the free content shop lol. even if i dont use it i just hored everthing lol

quasi mantle
trail wedge
deep copper
#

i wonder how sharing of these horaded free assests work ๐Ÿค” licenses are so mysterious

quasi mantle
trail wedge
deep copper
#

looks very holdable ๐Ÿ˜„

#

like a puzzle piece that should fit perfectly

quasi mantle
graceful sequoia
#

i scoop everything up

#

even stuff completely outside of my current project-- hey i might make a zombie game some day

#

can't hurt

cursive crypt
#

Gotta reach that 1k Launcher limit fast.

graceful sequoia
#

wow theres a limit?

#

seems like a strange economic incentive, that

trail wedge
#

kinda dumb to make the buying experience full of freezing

graceful sequoia
#

i guess im around 435 of them

#

half way thurrrrr

graceful sequoia
#

marketing 101

trail wedge
graceful sequoia
#

we need to focus group this, maybe we can introduce some terrifying clowns to amp things up for you. Sure, knowing that you could buy this bucket model for $30 in any other given month but this month its free might not be enough.

#

Was it worth $30? No.

#

But damn if that FOMO doesn't sell it

cursive crypt
#

I have a bunch of 3$ models in the shopping cart. Including a dung, because why not?

zinc matrix
#

Ayo

cursive crypt
#

Just realized why there are tons of parsley avatars lately.

cursive crypt
zinc matrix
#

I kind of hate this feature tbh

cursive crypt
#

Hmm... your nickname is familiar.

zinc matrix
#

Yes

#

@deep copper would know I've been here before at least

deep copper
#

yes! they have curly hair and use 2FA

quasi mantle
cursive crypt
zinc matrix
#

it should be for actual first timers

#

not someone re-joining lol

cursive crypt
#

hmm

#

Anyway

deep copper
quasi mantle
#

So the emblem isn't visible on mobile

left granite
#

@zinc matrix Hi

zinc matrix
deep copper
#

why is your name stutter by the way? @zinc matrix

zinc matrix
#

D-d-dunno :/

scarlet cedar
#

Does anyone know the technical reason why satisfactory devs delayed lights for so long? Afaik they said it was because of performance reasons but there's been lights in unreal for ages

dark sequoia
#

because they needed to pay their electrical bill first

deep glen
#

just because lights have been in unreal for ages doesnt mean its cheap, and especially in a large-world-dynamically-placing-objects-withloadsofmovingparts-kinda game, its going to be expensive

soft night
#

cheap and expensive with lights are relative to how the world works

pearl elk
#

lights that look good across an entire day/night cycle isnt easy

soft night
#

MOnsy i saw Mon Calamary in High Republic panel as a jedi monsycalamary

pearl elk
#

You should go to Mons Espa and ride a swoop bike

#

you know whats really frustrating about modelling car stuff, its that its not in a single unit system it swaps from imperial to metric and back again

#

tyres for eg 225/45R18, metric/metric~R~imperial

#

rims are all imperial x imperial

#

be cool if the unit systems were smart enough to do the conversion for you if you input inches into a metric grid or vice versa

quasi mantle
#

IDK I don't play Satisfactory

pearl elk
#

least its starting to get there now ๐Ÿ˜›

#

coke can for scale

#

not sure in which country that exhaust is street legal

scarlet cedar
cursive crypt
pearl elk
#

How else do you drive to the moon

cursive crypt
#

Cheese can solve all of our problems.

deep glen
#

i should ban people posting max verstappe stuff as his face is fricking everywhere on dutch tv

#

:p

pearl elk
#

lol we'll just post Alonso then

soft night
#

no other drivers?

celest musk
pearl elk
#

they renamed it Monsaco btw ๐Ÿ˜›

#

its cuz I beat Ayrton Sennas best time and in the wet too

deep glen
#

i barely do, and every time I see his face I wanna punch it XD

cursive crypt
#

I dunno who is even that.

#

Is there only one channel in Dutchland?

#

lol

deep glen
#

no, but commercials are the same on each of em

pearl elk
#

what are these commercials in which you speak

cursive crypt
#

We have video channels here too.

pearl elk
#

I have netflix, prime, paramount and stan channels

#

they all play mostly the same stuff

cursive crypt
#

Are you a hacker?

cursive crypt
#

In front of the supermarket โ˜๏ธ

kind lily
soft night
quasi mantle
#

inb4 Max Verstappe in MetaHuman/Unreal Engine 5

deep glen
soft night
#

surely dutch tv need other commercial than they F1 driver for sure

carmine frigate
#

mythbusters kinda failed with the running on water thing

#

one went with the lizzard as inspiration but it was a massive fail ๐Ÿ˜›

#

fun show tho

zinc matrix
potent blaze
#

Hey, I'm trying to do something which seems like it should be relatively simple, but I can't find any beginner-friendly resources. I'd like to set up a system whereby a user is asked to fill out some preliminary information (using drop-down menus, written text, and possibly checkboxes), which is then used to populate different sections of a word document (or any text document which allows formatting, I just thought Word would be easiest).

Could anyone point me in the right direction (bearing in mind my only programming exposure is self-taught through the unreal engine, first with visual scripting and then C++)? Thanks!

cursive crypt
foggy path
#

html is pretty ezpz for guis

broken sigil
#

A fancy survey powered by UE5 and Nanite

foggy path
#

might not look swanky but the basics are easy to set up

cursive crypt
#

Lumen checkboxes. Gotta bounce that light out of that check.

#

Not to mention.. maybe just use Google's survey's lol. It directly dumps into an excel sheet your ppls response.

#

Don't need any programming.

foggy path
#

Yeah something like form builders such as that are handy for quick n dirty stuff

cursive crypt
#

... series of std::cin >> user_choice and std::cout << "What you choose?"

#

terminal solution

foggy path
#

A piece of paper where you write the questions

cursive crypt
#

Sending them email with questions.

fathom wadi
#

is it just me or are some of the Paragon models not available anymore?

cursive crypt
#

I don't have their instagram, so I don't know what is happening with them.

#

Barely used them.

fathom wadi
#

I know I had all of them and the marketplace says I do, but my launcher has some missing and I cant download them from the marketplace. I even have the Murdock model which isn't available anymore.

cursive crypt
#

Eventually ask on the official forums ๐Ÿค”

fathom wadi
#

I would but I'd be waiting 3 weeks to get an answer :p

deep copper
#

does that mean it got outdated ? ๐Ÿค”

#

i think they still keep it up for version whatever to whatever2.. so probably not

fathom wadi
#

it says the models still work from 4.19 through to 5.0

#

I can install the other ones too

#

๐Ÿ•น๏ธ DraugraKs Discord https://discord.gg/u53TCrZUSv

โ—๏ธ Hexen HD v1.0.2
https://www.moddb.com/mods/hexen-hd-2020/downloads/hexen-hd-v102
โ—๏ธ Hexen Better sprites (If Using With Hexen HD Put These At The Bottom Of You're Mod Order)
https://forum.zdoom.org/viewtopic.php?f=46&t=67983
โ—๏ธ ShadowCaster & fantasy style monsters for Heretic and Hexen
htt...

โ–ถ Play video
cursive crypt
#

Nice. Also, scary game. I remember now.

mossy nexus
#

Apparently I'm due to have something delivered. If the invoice number is anything to go by, a number of Epic Patches. Yay?

cursive crypt
#

Do this only at home kids ๐Ÿ˜ฌ

zinc matrix
cursive crypt
#

Going for a nap...

carmine frigate
#

is Ukraine made in Taiwan?

#

they make stuff there

#

australia is part of eurosongcontest

#

so its somewhere around here

#

the irish are prolly hiding it

carmine frigate
#

think ill go doodle a bit ๐Ÿ˜›

#

any requests?

misty python
#

Is it me or is this overkill for a phone

#

Its 65-87fps ish

trail wedge
misty python
#

No

#

Showcase

carmine frigate
#

ikea

trail wedge
#

oh sorry forgot the /s

misty python
#

Am runnin on a budget phone lol

#

And the wierd thing its all live rendering

carmine frigate
#

a power pc wil do that

misty python
#

Octa core 2.1ghz

#

Som like that

#

Its on a full hd res too

trail wedge
#

what about some person obsessed with making GameCube/Wii games

misty python
#

Ps3 and xbox 360 still have good graphics ngl

carmine frigate
#

wiiU would be super dope to dev for

misty python
#

My phone got hot playin that showcase though

trail wedge
carmine frigate
#

phones wil do that

misty python
trail wedge
#

right I thought it was called the Wii

carmine frigate
#

the adapter however

misty python
#

Commedore?

carmine frigate
#

u could deepfry on the adapter

misty python
#

Lol

#

I mean if you run these games on today hardware it would not even rise point one degree

trail wedge
misty python
trail wedge
misty python
#

Its a budget phone

#

Its 300 euros

trail wedge
#

I agree for profiling, I was just saying it wouldn't get as hot frame limited

misty python
#

Oof lol

trail wedge
misty python
#

I am getting a new phone though

#

Since this one has way to less storage

carmine frigate
#

my new tablet was 300 .. i can make doodles with it ๐Ÿ™‚

misty python
#

Lolol

#

And it only has 3gb ram

#

Everything crashes on the background

#

Yep

#

Yup

trail wedge
#

I just get phones a couple generations old for much less, they work just fine. (Currently using a Pixel 2)

misty python
#

Am switching to a samsung s20

trail wedge
misty python
#

Th reason why i'm gonna switch is because my phone is only 32gb and this thing is getting sloow even with factory reseting and costum roms

trail wedge
misty python
#

Lol

#

Rip me

#

Lol

trail wedge
#

yeh my post was a bit of a lie since I have a few games installed but I play one maybe once a year in just such an occasion

misty python
#

The spec of the switch is wierd

#

Yep

#

A quad core 1.1ghz and a bottle necked nvidia chip

#

Even worse

#

The chip is an nvidia tegra

#

Thats a real bad chip

median wraith
#

Hows doing people?

misty python
#

Good

scarlet cedar
#

does anyone know why windows gets increasingly slower the longer it runs? like if i leave my pc on for a few days it starts getting unusably slow. opening programs takes longer and longer, even mousing over stuff takes ages to show tooltips, swapping windows, etc

#

if i reboot its like brand new and everything is fast and responsive

carmine frigate
#

cheack taskmanager

scarlet cedar
#

is there anything in particular i should be looking for? nothing is pinning the cpu or ram

carmine frigate
#

uptime 14h

scarlet cedar
carmine frigate
#

i dunno if its slow now

#

ahh

scarlet cedar
#

its slow right now, its a constant thing not just spikes of slowness

carmine frigate
#

i dont see any stand out

scarlet cedar
#

opening programs takes longer and longer, even mousing over stuff takes ages to show tooltips, swapping windows, etc

#

yes

#

nope

#

not that im aware of. maybe some anti cheats for multiplayer games but none of them are running that i can tell

#

no AV other than the windows one

carmine frigate
#

could be the spindisk in sleep mode?

scarlet cedar
#

like i said if i restart my pc it stops being slow af and everything is fast for a few days

scarlet cedar
carmine frigate
#

if it needs 1 file from spindisk and its weirding out it could happen but i duuno

#

like taskman looks fine

#

if windows grabs stuff rom there..

scarlet cedar
#

how long should i run this for?

carmine frigate
#

like i said taskmanager looks fine... i would never rule out hdd... with weird windows something if it isnt my pc ๐Ÿ˜›

foggy path
#

I've noticed Chrome and Firefox will sometimes randomly hate a certain web page and start chugging over time

#

But it's very random

carmine frigate
#

@trail wedge my time reading skills seem super off ๐Ÿ˜›

foggy path
#

lol

trail wedge
#

can't help it when you're a Lead Dev

scarlet cedar
#

so i think it might be a page fault issue? but i shouldnt be running out of ram

carmine frigate
#

@scarlet cedar is it fast again with task man open?

trail wedge
#

I dunno, Tank said you're a "lead dev"

scarlet cedar
carmine frigate
#

memmory.. hard drive... vid card... place ur bets now!

#

there is an AMD bug that runs vid card 100% cpu when firefox hardw accel is on

#

in combination with some radeon stuff

carmine frigate
#

also gpu dropped from 100 to 0 with taskman open... i was 100% sure it was some crypto shit stealerr or something

#

but was amd bug

trail wedge
#

I too have fond memories of Netscape Navigator, but those days are gone... time to let Mozilla go

carmine frigate
#

sry but i wont fire my fox ๐Ÿ™‚

deep copper
#

"if you love something set it free"

carmine frigate
#

no there you are

#

firefox!

trail wedge
#

I mean you could just dig in and use Mosaic with that mindset ๐Ÿ˜›

#

actually, with Valve involved, caring about Linux games makes more sense now, but 1-2 years ago that would be spot on

trail wedge
#

Chrome should show up wearing an Edge suit

scarlet cedar
#

doesnt seems to have made much difference. it feels a bit fast alt-tabbing but everything else feels about the same

#

which exe do i run?

#

theres x64 and x64a

#

nah no difference :(

#

ye thats ok

#

i can just reboot it lmao

celest musk
trail wedge
celest musk
#

no

#

you talked about a chrome suit

trail wedge
celest musk
#

did you edit that, or am i not awake? xD

trail wedge
#

so I guess wake up?

deep glen
#

too lazy to verify XD

celest musk
#

i'm certainly sure that you said "edge should show up wearing a chrome suit"

trail wedge
celest musk
#

i do

trail wedge
deep glen
#

more like, its on an external source I havent logged into for a long time, and prolly need to reset my password XD

#

not sure if its even up still XD

celest musk
#

i feel tempted to say something about the linux games, but you gonna change that quote then ๐Ÿ˜›

trail wedge
#

gonna need you to just realize you misread something in a way that wouldn't even make sense....

I wouldn't lie about something this stupid

celest musk
#

but to say the least, from all the linux games i bought on steam, the UE4 one was the worst

#

and i ended up playing it in wine ๐Ÿ˜„

ocean parcel
#

my money don't jiggle jiggle it folds

trail wedge
ocean parcel
#

i don't got any bit coins.

deep glen
#

an IOU because he didnt have enough jiggle jiggle

trail wedge
#

I only know how to launder them

#

nice and clean

ocean parcel
#

๐Ÿ˜ญ

burnt lake
#

yeah

deep glen
#

jesus, blast from the past

burnt lake
#

that is a nice setup btw

deep glen
#

thats the old setup

burnt lake
#

show now/present

burnt lake
#

supplements

#

and floor photoshop

trail wedge
deep glen
#

i had a big tonberry as well, but somehow lost it. will get a new one someday

burnt lake
#

hey luos how much have you developed in those 6 years btw?

deep glen
burnt lake
#

just curious

deep glen
#

developed? as in my anxiety? Xd

trail wedge
deep glen
burnt lake
#

technical skill ect

trail wedge
burnt lake
deep glen
#

hmmz. dont know the exact details, but i know most of the material editor on the back of my hand. finally getting into blueprints, and learning niagara still, but getting the hang of it.

#

wiser? partially. lot less f*cks to give.

burnt lake
deep glen
#

<_<

trail wedge
burnt lake
#

because that man doesn't give any fucks aswell

deep glen
#

think he's giving ducks

burnt lake
#

lol

celest musk
#

wall mount or go home

trail wedge
#

I was just saying.... any monitor arm

#

stands are what they come with... you mean arms/mounts

#

only if they don't attach to something

celest musk
#

my top screen is mounted with 2 steel strips to the lower screen, total cost $0

deep glen
trail wedge
#

lol that's old

deep glen
#

still need to watch that one

trail wedge
#

speaking of old.... that word "glomp"

#

that's already been used this chain

#

copy cat

#

that is true

thick belfry
#

Omg

#

I found a place to live

#

๐Ÿ˜

#

Not much but it's a place to live lol

#

Which is not easy here at the moment

#

Has a bathroom too

trail wedge
#

๐Ÿฅณ

thick belfry
#

Especially for students it's tough

#

Because a lot of landlords don't want students

broken sigil
#

Some nice indirect lighting there
Is that furniture using Nanite?

thick belfry
#

Lol

#

That'd be a good prank see if anyone would notice it wasn't a real photo but a render

#

But I can't model that well

#

It's all falling together though, the study, a job, a place to live

#

Ready to make a new start

celest musk
#

no, you will stay you

thick belfry
#

I'll stay me but in a better environment

broken sigil
thick belfry
#

No it's real!

#

Well I hope otherwise I've been scammed lmao

celest musk
#

xD

broken sigil
#

lol

celest musk
#

wake up neo

thick belfry
#

Nah its legit

broken sigil
#

It looks like a nice place ๐Ÿ‘

thick belfry
#

It beats the student room I live in now

#

And it'll still be student living around me

#

Just not in my space lol

celest musk
#

it looks indeed neat, no large buildings ahead, hope your neighbors arent like mine ๐Ÿ˜„

thick belfry
#

It's a student complex

#

So the neighbours should be fine

celest musk
#

i had the whole day beeping (empty battery) of a smoke detector for the 4th day this month... and other shit

thick belfry
#

Damn

#

That's not zen

celest musk
#

but that shit can drive you insane while trying to work

tulip orbit
zinc matrix
tulip orbit
#

it sounds like a location ping, so I have wondered if someone is trying to get me to look at a resource node

celest musk
#

or you are just in a coma and hear the medical heart monitor

tulip orbit
#

๐Ÿค”

zinc matrix
tulip orbit
#

5 more min ๐Ÿ˜ด

celest musk
#

just 5 more minutes please

#

nvm ๐Ÿ˜„

zinc matrix
tulip orbit
#

nuke em and let me sleep!

zinc matrix
#

real talk how much do yall walk in a day

tulip orbit
#

...actually, I have to goto work.

#

I do lots of walking at work

#

๐Ÿ‘‹

zinc matrix
#

my smart watch says ive hit 21k steps today

#

which balls to the wall insane for me

#

new meds for my GERD really help with my asthma

#

limitless energy!

#

i burned 1000 caloires today it told me just from walking

#

i hate runningbut i might need to take it up

celest musk
#

100 steps max

celest musk
#

just let me die slow and painful

#

like its used to be

zinc matrix
#

couch potato

celest musk
#

i dont even have a couch

zinc matrix
celest musk
#

you walked 17km?

#

~11 miles in mcdonalds

primal summit
deep copper
#

i guess 1k steps, but 4-5k if i go for a walk

celest musk
#

how many when hunting people for hugs?

deep copper
#

none ๐Ÿ˜„

zinc matrix
#

really ought to replace this mouse

#

can't really use maya without a working middle mouse button

pearl elk
#

what if you could fit a whole keyboard worth of buttons on your mouse

#

theres no push to pass button on your mouse

deep copper
#

scary

cursive crypt
#

Worst button to press - Middle mouse button. Yet everyone at UX/UI seems to be told this is the best idea.

pearl elk
#

what if you had to double click everything to select it ๐Ÿ˜ฎ

cursive crypt
#

You get finger pain.

rare sparrow
#

I love when things use the middle mouse button, but only since I use a superior mouse with an extra button I map to middle mouse

cursive crypt
#

If I remember well, there was some softwares which were dealing with triple clicks even.

cursive crypt
#

Gonna fat finger these all the time.

rare mauve
#

i had to completely disable my middle mouse button to make myself stop using it, changed a sidebutton to it

#

i still scroll with it, that's a softer more wussy push

#

my tender digits can handle scrolling

rare sparrow
rare mauve
#

are you Hrithik Roshan ?

#

mr maybe 6 fingers over here

rare sparrow
#

I couldn't live without all the side buttons. For example I mapped shift control and alt to some of them and it's really nice instead of trying to stretch one hand across the whole keyboard

pearl elk
#

I should really use my thumb buttons more, I got 3 of em

rare sparrow
#

I use 4 of them as arrow keys so I can keep my hand on the mouse to use them

cursive crypt
rare sparrow
#

It's just nice to have the option. Like if you're on google maps and want to tilt the camera around it's nice to use control on the mouse for that

#

And dragging out variables in blueprint. Can easily hold control or alt

#

And the arrow keys make small node adjustments super easy

rare mauve
#

one of the software programs i use is made for poor superboomers who can't mechanically parse the muscle instructions required to send two inputs to their computer at the same time... it has menus with ctrl alt shift in it... you click on the menu dropdown, go and turn on a modifier key like ctrl... then hunt and peck the key you want to press, like 's' to save, then click back into the menu and turn ctrl back off utried

cursive crypt
#

Have a mouse button.

scarlet cedar
#

Class action time

cursive crypt
#

Static class for him.

pearl elk
#

I cant wait for Apples buttonless mouse

#

least you dont need to also buy their expensive bracket this time ๐Ÿ˜›

scarlet cedar
#

Does anyone know if I pay the $100 to steam to get a game entry, am I able to change the name later? Like if I only have an internal name for my project can I use that then rename it later when it gets released?

pearl elk
#

you dont have the Apple wireless electrical sockets?

cursive crypt
#

Talking about shortcuts:

#

But two hands

#

... to press

#

Need one more button, use all fingers.

#

Ctrl + 7 + Insert + Enter

pearl elk
#

I only have 3 fingers

cursive crypt
#

The yellow one has 4...

#

Didn't Mac user got the Any key?

#

Or was it called Meta

harsh yarrow
deep glen
zinc matrix
#

any idea how this is made?

#

or is there anything similar completely free

#

i bet most of beatstars use generators lol

#

it was made using this

zinc matrix
#

i got a new xbox controller yesterday

#

im happy

#

its a good one

#

theyve definitely come a long way

#

theres so many small ergonomical things that you would never think of

deep copper
deep copper
#

i wonder if it's recently repaired or fragile or something

quasi mantle
quasi mantle
zinc matrix
zinc matrix
quasi mantle
#

Xbox barely make a dent in far east landscape, even when (to Microsoft's credit) they tried back in Xbox 360 days.
As far as far east goes, it's both PS and Nintendo having significant impact.

quasi mantle
#

And yeah, I kinda not liking previous 3 DualShocks lol, the grips were small for my big hands

carmine frigate
#

i had snake and tetris on my casio

#

w8 it was somekind of texas instruments

#

no color display tho

quasi mantle
carmine frigate
#

yea they were great

#

could also program em and do all sorts of stuff

carmine frigate
#

like for hardware modding and crap

proud jay
#

I actually started programming on a TI84 lol

#

made flappy bird with a friend

#

and a teacher was impressed and asked us to participate in a programming competition

#

we got a crash course in programming in like a weak

#

and still did better than the other team of our school

#

origin story

#

other team who had been programming for a year btw

deep copper
deep copper
proud jay
#

or with, whatever you wanna say

deep copper
#

as in "for a T184" xD or is it possible to do it with those buttons ?

tulip orbit
#

I started programming on a chair. But used a computer.

proud jay
#

yeah, you can just do it completely on the calculator itself

#

nothing external

deep copper
#

..really?

proud jay
#

yup

deep copper
#

that's, impressive ๐Ÿค”

deep copper
quasi mantle
tulip orbit
#

I used a ti83, but never really programmed on it

quasi mantle
#

I mean, many YT videos out there talking about linking TI calculators, programming on it, and downloading homebrew apps

tulip orbit
#

It was pretty much just Basic, nothing fancy

deep copper
quasi mantle
#

Perfect for sneaking entertainment in math class (or school that confiscates phones)

tulip orbit
#

I played a lot of drug wars on my calc in class

deep copper
tulip orbit
trail wedge
#

there's whole line of them, I personally had an Ti-86... it's crazy how cheap they are now but it also makes sense

pearl elk
#

Why do I have to wait for the next half of Stranger Things ๐Ÿ˜ฉ

tulip orbit
trail wedge
pearl elk
tulip orbit
#

Ahh. Good thing i dont have time to binge

pearl elk
#

Love, Death + Robots is abit frustrating so good but not long enough to be bingable

#

But more Black Mirror so thats a bonus

tulip orbit
#

I couldnt watch black mirror, i found it too depressing/frustrating

pearl elk
#

Too much existential dread?

tulip orbit
#

yeah

pearl elk
#

True Detective S3 man that was a slog, do not recommend at all

#

Its told through the words of a detective whos slowly getting dementia... wonderful idea because its impossible to follow

tulip orbit
#

I'm finally finishing off breaking bad. about halfway thru s5

#

just an ep or two a day at work on breaks

pearl elk
#

Ahh, thats one Ive got to start lol keep putting it off

#

Keep watching junk instead for some reason

tulip orbit
#

I started it, stopped for a while, got back in for a few eps, then stopped.... but I'm running out of shows I actually wanna watch on netflix at work

pearl elk
#

I liked the new GiTS animated show

tulip orbit
#

gits?

pearl elk
#

Ghost in the Shell

tulip orbit
#

ah

pearl elk
#

Netflix is abit thin on content tbh, lots of crap

tulip orbit
#

yeah

#

cant cancel membership till I've watched latest season of stranger things

pearl elk
#

Its good, still a great show. Lots of gore

proud jay
#

I cancelled last month

#

haven't missed it so far

tulip orbit
#

time for me to go pass out. 'night all

pearl elk
#

Take it easy

cursive crypt
#

Sleep hard.

cursive crypt
pearl elk
soft night
cursive crypt
deep copper
proud jay
#

this dude flies with his nutsack, no cap

deep copper
#

where's that from ๐Ÿ˜‚

proud jay
#

it's from Jungle King Tar-Chan

soft night
deep copper
#

or fun

#

or good, whatever

proud jay
#

idk haven't seen it

deep copper
#

?huh
then do you plan to see it?

cursive crypt
#

*galaxy

#

I think they work already on me4

quasi mantle
#

"we'll bang okay"

zinc matrix
#

try programming and AVL or redblack tree from memory

#

shits not easy

deep copper
#

ohh,

#

i am also not easy

quasi mantle
cursive crypt
#

The irony.

deep copper
#

what would that be like

quasi mantle
#

Also known as DUSK

quasi mantle
#

Curse those meddling New Blood kids!

zinc matrix
#

I'm so fucken irritated

short grove
#

going on about hugs again I see, eh?

deep copper
#

no wait! this is NOT what it looks like

pearl elk
#

they should change the 2nd amendment to be about the right to bare hugs

deep copper
#

they were irritated, so it was the only thing i could think of

short grove
#

yep that's a big no from me

deep copper
#

ANYWAY how's everyone doing ? ๐Ÿ˜„

#

i thought he wasn't able/supposed to walk ๐Ÿค”

fleet tangle
#

Heh

celest musk
#

are you free OF something or free FOR something?

regal pecan
#

Either. One or the other but rarely both.

quasi mantle
#

free TO be creepy

graceful sequoia
#

with a sufficiently sized dropbox folder, dropbox kills performance

#

but since it does its fancy windows stuff, it just looks like System is eating a bunch of CPU

#

and no, my project is not in dropbox

graceful sequoia
#

swore it off, in the early days of win10 i lost a bunch of stuff with onedrive. im sure its better now but the scar cuts deep

celest musk
#

praising VS and OneDrive.... are you MS employee?

#

for what?

#

oh i see

#

have you recently tried it again?

#

yea i missed that, but it's not like linux users have much of a choice

#

which makes it a even better product

#

supporting those 3 poor people doing unreal on linux, is brave

graceful sequoia
#

I don't have any particular problem with VS but rider is just really nice, and all the UE specific integrations are icing on the cake

celest musk
#

it's not thaaaat much of a challenge anymore

#

5.0 seems to be rather stable, and performs quite well on vulkan

#

they recently also started to add hw raytracing to vulkan

graceful sequoia
#

when they finish that new one

#

what is it, flock?

#

flight?

#

fleet yeah lol

#

it's not

#

to the first question

#

it is, to the second

celest musk
#

its not

graceful sequoia
#

Im a big vs code fan for anything other than c++ so I'm not afraid of that

celest musk
#

like most of the things through ssh ๐Ÿ˜„

graceful sequoia
#

hmmm that's not my experience

#

the wsl remoting for instance doesn't pipe the UI or anything

#

only the data

#

ohhhhh

#

ssh with x11 forwarding

#

yeahhhhhhhhhhhhhhhhhhhhh

celest musk
#

have you tried RDP?

graceful sequoia
#

RDP Parsec

celest musk
#

or spice if it's a thing on windows

graceful sequoia
#

rdp is fine for quick usage but parsec is amazing

celest musk
#

๐Ÿ˜„.

graceful sequoia
#

we use it for video editing at my day job company

#

I demo my unreal game to friends across the country with it

#

it's free for personal use still I think

celest musk
#

sounds like pixel streaming with extra steps

graceful sequoia
#

but the teams license is expensive

#

like 40/seat/mo iirc

#

it used to be way cheaper

#

but the pandemic

#

the money left on the table, all that

#

we were one of their first customers

#

(they were) small enough to schedule a chat with their ceo during our onboarding to teams

zinc matrix
#

Hello loungers

#

damn

#

still have that leaf thing

deep copper
#

want me to pluck it ? <3

#

jk

zinc matrix
#

aaaaand

#

you just made it weird with one message XD

trail wedge
#

look at all those leaves

tulip orbit
zinc matrix
deep copper
#

i thought that was a fairly safe remark

zinc matrix
#

don't think it was that bad either

trail wedge
#

Donut Cat

deep copper
#

aww

regal pecan
#

When has it ever taken two messages to make it weird?

tired dust
#

Here take a look at penguin

deep copper
#

i feel like my image is getting worse and worse day by day ๐Ÿ˜” ๐Ÿ“‰