#programming
1 messages · Page 251 of 1
ive never used those functions in python so 
idk what language that even is
Rust
i see
shuuumi
cursed
i also like it
but then again i also like prefix types so
@sage crag how many languages do u learned
I know u learn ( rust then ? )
*Rip my English
what does this function even do 
????
what is i32
i32 main = (i32 x) {
return 101
}
i know its bad i just love them
int32_t
is it equal to this
looks like assignment
but return type is on the left side 
it is a lambda
kill it 
no real difference between function that returns a value and a value
provided the function has no effects, but accessing values can also have effects
3 question
Cpp=>
#include <bits/stdc++.h>
using namespace std;int f(int n){vector<int>v;v.reserve(n);for(int i=0;i<n;++i)v.push_back((ii+7)%13);mt19937_64 r(101);shuffle(v.begin(),v.end(),r);sort(v.begin(),v.end());reverse(v.begin(),v.end());long long a=0;for(int x:v){double d=sqrt((double)(xx+1));string s=to_string(d);double b=stod(s);a+=(long long)floor(b);}unordered_map<int,string>m;for(int i=0;i<5;++i)m[i]=string(i+1,'x');volatile long long k=a^(long long)m.size();(void)k;return 101;}
int main(){ios::sync_with_stdio(false);cin.tie(nullptr);cout<<"Calling the MOST USELESS function...\n";int r=f(100000);cout<<"It returned: "<<r<<'\n';}
Output is
/Calling the MOST USELESS function...
It returned: 101/
pls learn how to use ``` for code blocks i beg
yes there is
function has parameters, value does not 
also this reminds me of some scala people that will become very angry when you define a function that takes no arguments as a function
as opposed to a definition
Well I'm free after fixing attention
or maybe it was about side effects idk
Cyrus 2 on phone is very hard fps drop 120 to 12 fps 💀
I hope never goes 8 fps
what the fuck did i just do 
oh right
g++ -c -O3 -Wpedantic cpp_bot_test8_moveeval.cpp; g++ -O3 bitboard_lib.o chessapi_lib.o cpp_bot_test8_moveeval.o -o cpp_bot_test8_moveeval.cpp; ./cutechess -style kvantum-dark
thankfully vscode managed to ctrl-z that even though it was changed externally 
might want to do yourself a favour and make a build.sh 
~/cpp $ ls
abcd.cpp file l.hpp
it was a copy of a bot anyway that i was supposed to edit
and my main bot is copied to different drives just in case
#include "l.hpp"
Print("hello bro")
abcd.cpp:1:10: error: 'l.hpp'
file not found with <angled> include; use
"quotes" instead
1 | #include <l.hpp>
| ^~~~~~~
| "l.hpp"
,j1 error generated.
Sleeping time bye (12:41 am) or 00:41
how about
let main = (i32 x): i32 {
return 101 + x
}

either remove the : or put it for the parameter 
better
though if you're doing prefix you might as well do
let main = i32 (i32 x) {
return 101 + x
}
with that you'd need an extra case in the parser so it doesn't think it's just a type alias 
that should already be covered by starting with let, unless you also want that to do type aliases for some reason
depends if types are first class values i guess, if they are i don't see the point in having a separate keyword for defining types
humm
main := (x i32, y i16) i32 {
return x + y
}

i want to reduce random symbol usage without making it unreadable
where possible
actually i think im even more evil than this
i32 (x i32 y i32) main = {
return x + y
}
i32 x0 = 1
i32 y0 = 2
i32 z = main(x0 y0)

i still dunno how to feel about go allowing you to do stuff like
func main(x, y int) int {
return x + y
}
is kinda nice but eh
I guess this works as long as you're assigning it
x any y int 
i32 (x i32 y i32) as a type would make sense 
yes that was the intention
though i might have to make it different to make the closure { return x + y } make sense
isnt it a valid move in many languages to define like this:
int a,b,c
this one is actually kinda nice IMO
could omit even more but this is readable 
i32 (i32 i32) main = x y: {
return x + y
}


might as well put the parameters randomly after the function body...
ok but now you can accept that as a type for another function
i32 (i32 (i32 i32)) erm = func: {
return func(1 2)
}
main = x: y: {
return x + y
}
it's basically nix
ohh currying is ok
forgot that existed
hm
me evil
if i ever write a language i will use this syntax

i wonder if zig is ever going to get closures
would fit well syntax wise, function declarations just kind of stick out compared to everything else 
struct SomeStruct = {
i32 x i32 y
This (i32 i32) new = x0 y0: {
return { x=x0 y=y0 }
}
}

struct is a type maybe
or maybe
type SomeStruct = struct {}
auto inheritance 
have struct be a type and assigning to it automatically inherits from it
implicit return is cool right
idk i lost the plot
i dont think i like constructor syntax
what if i want to construct something that isnt type inferenced
nope wont happen
just don't 
SomeStruct x = { x=1 y=2 }
pretty easy
using an equals is kinda annoying but makes sense
i think i will just parse commas as whitespace 
comma operator in shambles
type some_struct = struct {
i32 x i32 y
this (i32 i32) new = x0 y0: {
return { x=x0 y=y0 }
// or with implicit return:
{ x=x0 y=y0 }
}
// alternatively, this should also work i guess
this (i32 i32) new_other = x0 y0: { x=y0 y=x0 }
}

im choosing between being able to refer to a type in its own declaration or having a this type
this this 
This this 
another thing is this entire thing could be declared on one line without using any semicolons because of the way i've done this
struct SomeStruct = { i32 x i32 y This (i32 i32) new = x0 y0: { return { x=x0 y=y0 } } }
i guess semantically this makes methods members of a struct with a default value
so uuh
this code technique is banned in 87 countries
SomeStruct x = {
x=1 y=2
new = x0 y0: return { x=x0*2 y=y0*2 }
}

@tender river you read this cursed 
i cant tell if its unreadable or readable 
its pretty readable to me but also having the type of parameters be separate from the parameter names is bad for readability
c-style constructors are also pretty bad but you know 
how would you even use the member functions
SomeStruct x = SomeStruct.new()
is pretty bad
SomeStruct x = .new()
in theory you could omit this i guess?
but now there's a dot
maybe it represents member access
let x = SomeStruct.new()
SomeStruct x = .new()

x = SomeStruct.new()
SomeStruct x = .new()
first one is way more readable 
but this one has strict grammar rules 
i still dunno how to feel about the 2nd one, it does keep things a lot more concise generally when type inference can carry but also idk
i think all this needs to be ok is type inference
x = SomeStruct.new()
and now x can be inferred as SomeStruct
SomeStruct:new() 
this isn't lua 
colon harder to type than full stop, banned symbol
x = SomeStruct new()
now it reads like pseudocode even more 
also breaks grammar rules in practice
x = new<SomeStruct>()

last offer
actually you have given me a great idea
circular brackets are stupid

i32 [i32 i32] main = x0 y0; {
return x0 + y0
}
also replaced : with ;
this wont have any negative consequences
ye curly braces are next to go 
semantic whitespace 
i32 [i32 i32] main = x0 y0; [
return x0 + y0
]

only 1 symbol in this requires pressing shift
oh 
technically the return type could be inferred here too 
20 minute compile time incoming
something something *
in fact, these should be semantically equivalent in this cursed language
main = i32 x0 i32 y0; {
return x0 + y0
}
i32 [i32 i32] main x0 y0; {
return x0 + y0
}
provided type inference exists
yeee 
oh it's rust i have no idea then
its not rust its a fake language
just using rust for highlighting
congratulations on crafting the most cursed thing, maybe ever
this is NOT rust 
i see this on top of codeblock i stop reading and go yep
zero further investigaton or effort needed 
no rust is like this:
let main = |x0: i32, y0: i32| return x0 + y0;
NUH UH

this is how js devs write rust
i wonder if it works with main
doesn't i'd imagine
drat
idk why i assumed there to be an extra case in the compiler just for this
guess not
feels like they would do something like this
does calling them pipes piss off rust people since they are unrelated to piping anything anywhere
in fact it feels more like a special case for it to not work
or more accurately that main is handled as a special case
legitimately, for me its different between windows and linux
and between my keyboard and my keycaps
what
i feel like 31337 when i type | whether it be for a silly grep or in conversation, a src file, whatever
do you use different keyboards
i have US layout keycaps but UK keyboard
so youh ave CHONK enter key
and the actual way to type | changes between linux and windows at least on UK layout
huh
no i have a 65% keyboard
return*
must be using a different layout, that makes no sense 
same is true for \
its because the way i type | and \ on UK layout keyboard requires pressing alt
yes
i hate this symbol more than you do
like i said, my keyboard has US keycap layout
have you considered just not using the UK layout 
Look up ISO vs. ANSI keyboards. UK is ISO. UK is ANSI.
but electrically reports like a UK layout? why not just swap layout in software too lol
no it reports like a US keyboard 
|
1 | const main: fn() -> () = || println!("hello!");
| ^^^^ ^^^^^^^^^^^^^^^^^^^^^
warning: konii explod```
now im confused
US keyboard layout + US keycaps = just an iso layout yea/?
UK ANSI keyboards do exist, btw.
ISO cooler
DOES THAT SAY BACKSPACE
ANSI => america
ISO => international
mine also says that
average 61key tier decision
the backspace key does in fact say backspace yes
apparently there is a windows layout in here too
no space on 60% keyboard
apparently my layout is supposed to look like this but i can confirm it doesnt actually look like this 
yes there is

i dislike small keyboards in general mostly but i do have this thing that i got for 3 dollarz on temu (i use it for work, it's so fucking loud)
my smolest keyboard
61key
healthy layout backspace is in a sane spot
i have never touched a keyboard with square enter in my life 
$2.50
there's something nice about having a chonky enter key
i wish i could replace the keyboard on my laptop 
alt for \ who does that 
yeah this one is actually fairly well thought out i think for the layout, at least in my opinion, and even using the FN key on the bottom right for like arrow keys and such is not hard to get used to surprisingly
IMO ANSI enter keys are easier to hit with your pinky from the home row.
i have to press Alt+ the key left of 1
to type the |
and Alt+Minus to type \
i only use ansi for compatibility reasons
it's just the default 60% layout 
„“
this sentence makes me think your fingaz are absolutely FLYING all around
oh well
good job default designers
like i said i dont use small keyboards lmao
alt minus does nothing for me
doesnt matter to me im the fastest 
koni ispeed player
i believe you
do you have windows key
i think i generally only clock like 100-120 wpm every time i go on humanbenchmark
i have door key. window no key just handle
door key
is that what it's called
i kinda just figured linux call it super, mac call it command or whatever their term is
that's what you're called
never heard "door key" lol
door-key
refer to following image :
so it's like an analogy for it unlocking elevated privs or something thus unlocking the door lol
i dunno that seems a bit contrived
i am confused are you genuinely asking
i genuinely have never heard it called a door key so yea i guess it's a legitimate query
the joke is me taking "windows key" as literally as possible
Wait, what software is this? I wanted a good British Colemak layout for so many years but all apps suck
a key to space
me rn
mmm kde
plasma ugly
no
sorry
Plasma – the best
shell32.dll
CLI people do not have the right to have an opinion on DEs
?
well they were saying it's wandows more than anything

win11 i dont think looks bad ngl, i like the design of the interface for the most part
win10 i thought was fairly unattractive
i agree fully
I thought they meant that they’re one of the DOS fanatics that open up PowerShell and navigate their system like that
are there literally more than like 5 of those left worldwide
i feel like most win users barely even know where pwsh is
imagine actually using powershell
The same can be said about BSD, and we love BSD (in server rooms)
hey ghostBSD AND netBSD worked without any issues whatsoever the brief time i was messing with them
Exactly my point
for sure windows server goated we ALL love it i speak for EVERYONE
cant say that for even the majority of mainline linux distros ive just slapped in on a whim
I want to speak bad things about you and your bloodline
too bad i don't actually feel that way
You’re supposed to ragebait me further
i'm tired
i am genuinely tempted to give ghostBSD another shot to try out that gershwin environment they came up with
i've had enough fun
maybe next time my poor laptop gets reflashed it'll be ghost again
i found my layout
that sorry thing ends up with a new distro//os in general every week
i would ask "but why" for the changes but the answer is always "le typewriterz were like that 90 years ago idk"
Huh, I didn’t see this one yet. But I doubt that I will test it; I don’t want a BSD machine rn anyways
i think it's only been a matter of like a month or 2 since i read about it
it's very new
Most of those special characters are easy to type with a compose key. For instance Ø is <compose> + / + O
heres how it looks with colemak
i know how to press alt

i was gonna feign shock that you could type Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch but then when i went to grab the name i realized the damn thing has 0 accented characters anyways so it's over
I love this one. It has ‘’ exactly where I am used to them
Super L 
Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
Llanfairpwllgwyngyllgogerychwyrndrowblllllantysiliogogogoch
ultra gaming edition L
One extra l 
i can handle symbols being in funky spots
if actual letters were to suddenly be moved though
i think it'd be over
i'd just stop using the computer
Colemak
im not a programmer but i was wondering if anyone has any recommendations on where to start learning? I imagine youtube might be the best way but i figured i should ask those who are already doing it
@sage crag i need idea is there any triplet of mathematical function:
1 encoding function that will encode a specific position into a n-dimensional vector (e.g. Absolute/Rotary Position embedding)
1 similarity function that is invariant of the position embedding that will act similar like cosine similarity/dot product
1 similarity function that strictly uses the encoded position
try finding a subarea you like and start from there. i liked games so i chose gamedev to start
GPT-5 and Gemini told me there can not be such a triplet of functions with some long ass proof
uuh
let me parse this
check pins
what do you specifically mean by invariant
this is what Gemini said:
The assumption that a triplet of functions (E, F_{\text{inv}}, F_{\text{dep}}) satisfying all conditions can exist leads to a logical contradiction. The core of the problem is that the Isometry and Invariant Similarity constraints create a system where F_inv must be able to "undo" the positional transformation to recover the original semantic dot product. However, because a single vector w \in W can be the result of encoding from multiple different positions (e.g., w = R_{m_1} u_1 = R_{m_2} u_2), the function F_inv cannot know which transformation (R_{m_1}^{-1} or R_{m_2}^{-1}) to apply. For it to be well-defined, all these transformations would have to be the same, which violates the non-triviality of the positional encoding.
ignores
some specifics
your question is kinda lacking any details
i dont know what you want from me 
two number nines, a number nine large, a number six with extra dip, a number seven, two number forty-fives one with cheese and a large soda
cheese mentioned
artificial intelligence building seems cool
I would ask vedal if he has any tips but from what i hear i shouldn’t ping them
Just do it if u need guid how to build ai !
=> Machine learning is ai
=> Deep learning is also ai
=> Super
=> General
=> AGI
==> Tree
===> Python,js,cpp,asm
====>Data
======>Training
========> maths , physics optional
Where do u find data wikipedia,Google<=====
I hate rules based ai but training it is good
Well I'm working on boot ai
=>Asm (main)
.sector .data
cheesed to meet u
Hey everyone! I'm interested in learning more about LLM's and AI as a whole. I read through the FAQ and Vedal's advice document but found no sources for further research. Are there any good places to start looking into things? I have a very basic understanding of how most LLM's work, but my knowledge stops around the area of transformers, embedding, vector data bases, and the perplexity metric. Are there resources people could recommend or an AI-specific FAQ?
Read this bro
#programming message
If u need sample how ai works then I will provide GitHub and samples of network
Where is uploaded reach paper I'm @uneven pulsar dumb
Re uploading research paper
??
??
mhm you know windows 11 is great when trying to add an account results in windows prompting you to select a debugger, and that prompt then stops responding 
that part is on VS
?
will you stop ?ing people
Still funny, it also might have stopped responding because 2026 insiders was in the middle of an update
https://github.com/PrismaticDepths/bsp-challenge/blob/main/README.md
anyone up for this, it'll be fun i swear
https://en.wikipedia.org/wiki/Binary_space_partitioning - PrismaticDepths/bsp-challenge
Does any programming language include brainfuck?
sure
Hey can u make data of maths !
Because I want test ai
AUDIO SAMPLE OF FROM @68+1,phuf

listen, it was for the hp prime
literally everything I would've done normally wouldn't work
to give you a perspective on how buggy it is
the builtin abs() [absolute value] function literally causes a full on crash
completely kills the firmware
needs to restart
Wait is that a graphing calculator 
yeah
the micropython implementation has like only weird undocumented libs specific to the hpprime
not even standard library stuff
huh
Phone battery is very slow
I was running it on the emulator since I didn't have the actual calculator available at the time
i got texture mapping on basic 3d rendering working
I feel like making it on really any other device would be more practical
but it was like 2fps
since I said no external libs you can still use stuff bundled with languages
I didn't even have that liberty
and you can actually have proper documentation
so you might have it better off than me
and you dont have performance concerns
or weird unsolvable debugging issues
I'm a web developer, I don't know what a binary space partitioning is
that's the fun in it :3
i didn't know either
Laxnet 62
then I learned
mhm I clicked a link to one of wikipedia's sources for it
nice cover image
lol
I'm not allowed to use the code given in the article am I?
must be your own code
this is why jis layout is the best
Can I rewrite the shown (it's either c or c++) code in typescript?
i mean
as long as it's your code
and you arent copy and pasting
or manually typing other code
for reference

om i remember seeing someone ask about this on bsky recently
but anyway, with lazy evaluation it's true, but with strict evaluation there are multiple complications:
- stack allocation
- non-termination
- impurity
- panics
which can happen in functions but not in values
Are you replying to messages from 9 hours ago?
usually a prefix like fn or \ or is used to help parsing, imagine how you'd parse that if your language had tuples (possible but ye good luck
)
and easy to parse language means easy to port or write tooling for
you're joking (maybe) but i genuinely think it's a good idea
(not in the way you said it but struct really has no right to be a language builtin smh)
doubt it but maybe, it's a systems language after all they tell you to just use structs
ban panics (panic is UB)
ban stack (stack is UB)
ban impurity (impurity is UB)
ban non-termination (bla bla bla)
have created a
config language


json parsers do have stack overflow protections though 
im too hblang pilled and i thought, how can a value be of type struct when it is of type type
mental illness


type is value, what is its type
can of worms from "typesystem"
metaprogramming at what cost 
bro wtf is enif

with dependent types each type is from a particular universe, so type of type is type1, type of type1 is type2
ultimately while there are typed metaprogramming systems like metaocaml i think this approach is fundamentally restrictive
thats why im making an untyped language (maybe gradually typed with dependent types but uh i'll make it without dependent types first)
i tried making a dependently typed hblang mockup and it killed me
@glad path is this right 
rest in peace
im now dead please send your grievances to my grave


I don't know?
hblang is already pseudo-dependently typed but only at comptime
is does enif just end the if statement? I've never fucking seen that before
what language
ultimately hblang just fancy c while a dependently typed language wouldnt be fancy c

yuh
It's on that site wikipedia used as a reference, it looks like c but i'm honestly not sure
its unsafe because it was designed to be 
i did actually realise this a while later and changed it
but it felt less pure

🐸
Oh, fuck, it's not a language 
that's what i was thinking
looking closer I think enif might also just be a typo of endif lol
It's actually kind of obvious now that I look at it more 
yeah lol
return as a function is weird though
yeah

anyhow it has like 20k stars
Also, a reminder to always give your project directories meaningful names
so it's probably fine
fr
👍 I think this is it
Elif hmmm
@glad path I think I'll stick to web development, I can't figure out what I'm doing 
try:
print(10/0)
except ZeroDivisionError:
print("Cannot divide by zero")
finally:
print("Done")
ok
Testing code BUILD
I add all documents in python
Input :Generate a train- able model
Output:
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
from sklearn.tree import DecisionTreeClassifier
from sklearn.metrics import accuracy_score
data = load_iris()
X, y = data.data, data.target
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
model = DecisionTreeClassifier()
model.fit(X_train, y_train)
y_pred = model.predict(X_test)
print("Accuracy:", accuracy_score(y_test, y_pred))
Alpha mode ! 😮💨
Here is all documents
English programming language 
Good morning.
Apparently I woke up at 4
I did sleep at 4 tho, so that might have something to do with this
To display icons in the app settings that was recorded from menubar items
Me when c 
After fixing hallucination
Code builder not ready sir
I offical say that English is also coding language
Cobol
Cobol is High-language,
English-like programming language created in 1959 for business and administrative applications, especially on mainframe computers
I tokyo drifted on my bike and ate the pavement (im fine) and my laptop got some of its skin removed too 
Atleast laptop is working tho
lucky mf
I was watching spy x family (subtitles embedding)
i feed data in ai 🤣

Ans .
try not to make an llm xenofobic challenge
🧠 _+Rz+>ORGn?
wild

im suprised the hinge survived
lenovo could never
my sisters laptops hinge broke yesterday because she opened the laptop
I mean are there many other ways that a hinge would break?
what laptop is it
gigabyte g5 ge
damn
my sisters laptop was a lenovo ideapad 5 or smthing
hinge is metal but it attaches to the screen with plastic
Oh shit yes i had old laptop with same issue
They literally screw super steel hinge to shit tier plastic
It just breaks the bottom of laptop still attached to the monitor part
it was the part inside the screen that broke for her
and we already replaced that part once, but now we just ordered a new laptop
"Lenovo IdeaPad Slim 3 15ARP10" it was only 480 bucks
dropping the laptop mainly
it shouldnt break from normal usage
damn pricy
nah i conider it a good deal
normally theyre 600
the specs arent bad
not exactly a gamin laptop but should be good enough for roblox are whatever kids do these days
oh yeah that's actually good deal
thought its some low end cheap ass low budget laptop at first
fhd@60hz? holy skip
If you just need something to browse Google and are morally impure enough, just get a Chromebook that looks suspiciously like it’s had its school sticker scraper off
Bonus points if you embark on the journey to install windows on it
Un train ai bot 🤣🤣🤣
what's the point of buying a laptop at all then, who cares if there's an i5 or an i9 if it still will throttle
My bro is running ai bot without data 🤣🤣💀💀
?
I think you may be the ai bot here pal
What should I do tell him or more roast

o_o
@true hemlock is arm64 not x86_64
So throttling vs not throttling is equal to
Shit 60 hz micromonitor vs shit 140 hz micromonitor
idk about that
why nerd this is literally nerd channel



I take it back
Don’t kill him
He’s chill
@uneven pulsar hey kiddo want to go through the pigskin around?
Throw
I meant throw
Question 1
Test
Can u fix this code
#Include <n.hpp>
Print("yo")
print(“yo”) is correct as is
They grow up so fast 
gurt
(before I get in trouble I must clarify that this entity is not mine)
(Idk who made this)
(Not to point any fingers but I did take a guess earlier)
That isn’t a question
Test 2
A = [1 2
3 4]
B = [2 0
1 3]
6 7
That still isn’t a question

Solve it
oh my god fuck you
Can you restate it as a question please
Test 2
Neuro A = [1 2
3 4]
Neuro B = [2 0
1 3]
No it's ARM64
i love aarch64
I hate it due to it being confusing for users
what's the difference anyway
A lot actually, it's a whole entire different CPU architecture
there's like a billion differences
That still isn’t a question buddy
dead? only a living being can be that confusing
❌
have you seen ai "art"
It went offline 
that shit is so confusing
I miss Hmmf already
HALF THE INTERNET DIED TODAY??
Yes
how'd i miss this
I3 = [1 0 0
0 1 0
0 0 1]
A = [2 3 1
4 0 5
1 2 3]
- Write P.
- Compute B = P * A
- What does multiplying by P do to A's rows?
is the answer nothing
There is no P, just I3 and A

Just solve it don't give me EXPLAINS and use ure brain

But
But
But there is no solution
BYE I HAVE WASTED TOO MUCH TIME ON THIS
Okay bye
its for my sister to do schoolwork, she doesnt need 4K 240hz
it just needs to run powerpoint, word, and roblox decently well
Sam
hi
i have class rn so mayhaps
@uneven pulsar 

A RTX 5090 Ti for school
mama may i have cookies
Websites be like
Just keep your 240hz monitor you got for school
do i need to sue my past schools to get it
i didn't get it
240hz 4k is ultra stupid
everyone needs 21:9 2k 240hz



Im back home 
maybe this will fix my skill issue in programming
a shuttlecock and two socks for cat's back paws?
intellij my behated
I like IntelliJ, it's cool
the only thing I need.. is yoooouuuu
I don't know why you would need whatever that other stuff is for programming
they're shoving ai tools down their users' throats now
Eh I have seen 0 AI tools in IntelliJ
i've chosen to go back to using eclipse because of this
i don't want my code to be training data for some random rich person

Really I only just need an IDE and documentation
I don't get what that other stuff is for
thigh highs -> more blood circulation to your brain
skirt -> go spinny, higher dopamine levels
crop top -> exposes belly for temperature adjustments in hot climates
I have none of that and I program just fine
you'd program so much better if you had the starter pack
skill issue
!felloff

How is being broke a skill issue though
It's just a thing that happens when you have a need for infinite hardware and can't afford anything else
skirts, crop tops, and thigh highs are hardware

Are they though? I sure can't compute NeuroSynth on those
they help you compute neurosynth
increases bloodflow to the brain and dopamine
better programming results
its like how rgb is also hardware
NeuroSynth isn't computing on my brain
It computes on my really expensive RTX 3090
hi assist
hi 🔺
hi
put it in a skirt then
Either way couldn't afford that kinda stuff anyway
If I was to ever end up with such it'd be from someone else just deciding to send me it for some reason
Wha? A virtual singing voice?
the most enjoyable part of college is having a schedule where you're home alone for 5 hours 
now i can put my pc speakers at full volume
yes
And why and how would I even do that?
I have no such thing as a skirt
Virtual singing?
get a skirt

Can't afford stuff like such
If I was to ever end up with such it would be from someone randomly sending it
And pretty sure on the entire server there are only 2 people that would know where to so that's not happening
Recommend b200 gpus = 700k$
Too pricy
Actually it was 1 set of b200
Each carry
180 gb vram
Total 1440 gb vram
U need 1m to buy a hole Server
do you have a po box
And how do you think I would suddenly get 1m if I can't even afford a 3090 without going broke?
No I don't know what that is
I only have a crypto wallet
i'm looking up how much the cheapest skirt costs and sending you that amount in crypto

Wha
actually no i'm not i'm lazy
THANK GOD I INVEST ON MY ______ BUT I WAIT MORE THEN YEAR
But 2019 ask dad behalf of me
Silly
Chances are though I would have no idea how to even get one
-# If you seriously wanted to send me something the best way would be convincing Sam but that's not going to happen

what do you want me to do?
i know where he lives yes, im not gonna dox him

-# As I said, not going to happen
if i sent you the money to get a skirt and a little extra as a bribe would you get him a skirt


I don't think shipping a single cheap thing all that way would be worth it
time to save up for the superbox skirt fund
Would have to be like with another GPU or something
Or at least more than one thing

Shipping overseas for one cheap item is just not worth the cost since the shipping cost usually doesn't significantly change with number of things
a skirt on amazon seems to be 20 bucks, another 20 for shipping, and another 20 to bribe me
The 3090 though that was enough for it to be worth is since it was so much cheaper than getting locally
so 60 bucks total
60 bucks 
Shipping overseas is best utilized for bigger things like that
You can completly uninstall that. it is just a plugin
Also eclipse?! you are better off with VSCode and command line gradle 
i use command-line gradle and maven
never the in-editor buttons

Then why eclipse lol
intellij alternative
yeah put you are not using the IDE part lol
i can just worry that little bit less about imports
i literally am
when i generate getters and setters
when i import classes
when i rename fields or types
i just prefer cli gradle/maven
i do not claim that clanker as mine

you both live in europe
what do you mean overseas
Arent they shipping everything over the sea
over which sea
There is a sea in between
i guess it would be easier to technically ship it over the sea
overseas just doesn’t refer to this
as far as i understand “overseas shipping” refers to shipping to another country across intl waters
like a long thing
Silllllyyyyyy
overseas just means over the sea
in or to a foreign country, especially one across the sea.
it's not that expensive
aside from the fact that it's just 3080 with +50% vram and +66% cost on used market
which is surprising since it was +50% cost when i bought my 3080
it was 520 bucks with shipping iirc.
but with a small income its still a large sum
it's also 100% more vram in the worst case 
its 3080Ti level, slightly faster
3080 and 3080Ti has relatively big difference btw
still less than diff of 10 and 24 gb
Well I specifically need the VRAM
I got my 3090 for on the order of 550€ with shipping included
oh ye 550
I've been considering upgrading from my 3060 (for gaming purposes mainly) but I am, unfortunately, a broke-ass bitch 
time to get a job 
I have one but it's in tourist central Florida and it isnt season 

Gives me plenty of time though to work on projects which is nice
imagine being in florida, couldnt be me
Im desperate to get outta here dog, ive been here a decade, I dont wanna live where the old people come to die anymore ;-; but moving is very difficult with less than 1k in the bank account
do most computers have a built-in c compiler
Not Windows I think
Windows doesn't no
But many Linux distros probably come with GCC
so what would be the most widespread language aside for architecture specific assembly?
widespread based on what requirements tho?
I limited by system
I use default inbuilt modules crash
Import maths
Numpy is too heavy for my system
bro what
@olive sable
@rigid snow
@nocturne olive
Any idea
Wha
I need some help
I have 0 context here
"numpy is too heavy for my system" bro has to be running a chromebook or something then
numpy too heavy apparently
i fucking remember us using numpy on potato school pcs
with like 4gb ram
i don't even know what that is supposed to mean
"too heavy"
the used projector market is such a scam
brand new 4K projectors are 1.5K, and these people are out here selling projectors with 1080p panels for 2K because it uses a mirror to shift the existing pixels to double the resolution
2k$ is too much for project!
if its a good deal and its still available by new years then im fine with 2K
these are jsut all bad specs for a lot of money
My country at 300$ u get tv 4k or projector (700$) for 4k
propblem here is a lot of projectors get marketed as 4K because they can procces 4K input
but the actual picture is 1080p
50000000000 dpi mouse
apparently they're allowed to do that because allmost all consumer 4K projectors do essentially the same thing
they just put 4 1080p pictures on top of eachother with half a pixel offsets
the cheaper ones market 4K but dont actually try to get 4K

like ye nah, there's no way these will do 4K
c89 probably, pretty much every device in existence has a compiler for it
hmmm
which one should i get.......
second one has more promising power phases and delivery it seems but maxsun is more well known
random x3d cpu on a random day be like

fr
my main concern is whether those boards will have support for my 7950x ES
i specifically wanted the 600 series chipset for this since AMD are (un)notoriously more picky with engineering sample CPU compatibility
my 13900 ES worked out of the box lmao
buy 4 of the 1080p then manually position them

no
getting 4 1080p ones would be a pain
at least the pixel shifting woudl be more precise
it owuld also be more expensive, cuz theones i showed above for only 150 are in fact 720p
It appears that my pc froze 
i have a nice 720p for around 60 bucks
for relatively simple home theater setup its fine
the built in sound it has is nice
Get 25 of the 720p ones for 4K 
There's already a 4k 49" tv there, id rather upgrade the room not downgradr
My math was not mathing
Its 9
Not 25
The sound in the projector is irrelevant cuz i wont be using it
im saving up for vr headset
- throw few grand to juniper as donation for their hard work on the lava lamp
"Saving up" and "throw a few grand" should not go toghether
If you have grands to spare, 4k projectors are expensive 
If just I was that rich, NeuroSynth would be insane
brother wtf is "philips designline" ???
who in their right mind thought atrtaching a massive glass pane at the bottom was a good idea?
Good way to hide an ugly cable maybe? 
sure its 200Hz and from 2013
but no
the glare is also insane, because the glas spane covers the entire screen too
Honestly I'd never buy a Philips device ever. They're a zombie brand at this point.
Anyone have thoughts on the DGX Spark? I am thinking of getting one for my own AI dev project.
it supports cuda while having 100gb of slow memory so unless you need need cuda and that much memory there's no point
It's probably a device designed for high batch training
For inference it's useless if the mem is slow
indeed
This is peak navbar design fr fr
it's certainly one of the navbars of all time
Depending on the price a regular CPU + 128GB RAM setup may perform better for inference
*need need meaning writing kernels yourself
yeah, it doesn't have much going for it
it has a ton of VRAM but it's slow
compute is decent but way undersized relative to the amount of memory
the QSFP ports are at least somewhat unique but only become useful once you have multiple of these boxes
Whut? We're writing kernels in #programming now?
is it possible to calculate chess in gpu
Not make a neural network but do normal calculations
possible? absolutely
worth it? no clue
So gpu has 10000 cores but they are not universal?
i feel like having to deal with a game tree on a gpu would destroy your perf
they are they're just stupid cores

But why
Oh perf is performance
I thought its related to hardware for some reason
if there's a lot then gl
they're general purpose cores they're just not as sophisticated as cpu cores
Also the silly libraries i wrote for my wierd way of writing html
But what does it mean effectively
They cannot do something at all
Or they can but slow?
And some specific things are fast
the latter 
i wouldn't say that..
its more that gpu cores have milions of tiny stupid logic processors for doing a lot of simple tasks really fast.
while the cpu has just a few way smarter logic processors
graphics are just Massively parallel so a cpu isnt great at them
i wonder how playable crysis is on the new threadrippers
probably not too bad
the zen 2 one i think it was ran the game okayish iirc
it's even so that if you wanna use more complex logic you could make a CPU as effecient at rendering graphics but it's just better to use the simpler equations but just millions more times to get the same effect because it's both easier, and you're not needlessly using the smarter more complex cores taking up precious space for more complex calculations that actually are needed
the thing with graphics as that its never gonne be that complex. but you're always gonna need to do a lot of it
1080p is 2 million pixels, so at the very least 2 million fragment shaders will need to run
so if i need to do million simple operations cpu will have to split it among his 8 cores for example
and gpu can split it among its million cores
so its faster like that
on the other hand this can be an interesting topic to explore.. i have dipped my toes in it a little bit, but i never really deep dived into it
it's more complicated than that.. but i could get a diagram
hold on
but what is "complex" exactly
not million, but a 3090 has 10000 cores.
so instead of my 16 cores being used 125000 times each, my gpu cores will be used 200 times each
damn i was going to grab that image
complex like, predefined operations like some weird "multiply x by y and add z"
and its 1 operation in cpu since it has thingy for it
but not for gpu gpu will have to do x*y then result+z
right?
you're thinking of specialized computation hardware?
im trying to understand what does "dumb core" and "complex core" actually mean
because these words are not very precise
to explain it simply
a CPU might be faster calculating the 6th power of 10 directly
but a GPU can do it faster by doing 10 * 10 * 10 * 10 * 10 * 10 * 10
so this graph tells us at least that these cores have less cache
whaaat
power can be done directly?
how
this is wayyy over simplified tho






if it's worth it
so they are like CPU but reversed