#programming
1 messages · Page 134 of 1
Does anyone know if that is good, reasonable or absolutely horrible for remote audio?
Depends on the distance and hop, but, if video can achieve < 1s latency. then audio should be able to achieve that too
I wonder where the latency is coming from
Video is being handled by VNC, and audio is ffmpeg -i pulse ...> ffplay
All over a pair of SSH tunnels
The VNC does not use the SSH tunnel right?
It does
Both are using SSH tunnels
So I don't necessarily need to expose the services and get some kind of encryption hopefully
Ye, SSH will provide that. So not the SSH if the video latency is small
You don't perform any encoding to the audio by the ffmpeg?
I think OPUS shouldn't add that big of an overhead either
Yeah, I doubt it's the encoding
what did you do to that poor cpu?
#naked #inside-out #exposed-in-open #hot #dripping

Rare Elvyn appearance
The pen for my tablet should be arriving soon 
I actualy have another parcel with graduation presents already waiting for me at the parcel pickup location but i didnt want to go twice
live (optional) where
Come on
Being alive is the bare minimum
i wonder why i have 2 of these on my desktop
afaik there shouldnt even be 1
Desktop.ini shouldnt even show up on the desktop i think
I see assetto corsa

we all love vroom vroom cars
I do own one of these
How silly
I dont really play that much tho
I just have GPUs (2)
No fancy controllers of any kind
I game on keyboard and mouse, be it a console emulator, normal PC game or Osu
3090 is great
I did spend more than im willing to admit on my keyboard and mouse, but i do still like playing on contrller ngl
The ps5 controller just feels so nice to use
I can't afford a controller because broke
Even if keyboard is supposedly better, WASD isnt as nice as an actual joystick
I took his last money 
That indeed happened
Everything running on integrated?
Maybe because you're looking at nvidia-smi not using them 
I mean someone else should theoretically use it
Also smh we're on cuda 13 now get with the times
but im happy with this
I would refuse to upgrade my cuda again
and packages too

There's CUDA 13?
Yes
The Release Notes for the CUDA Toolkit.
its really hot
13.0
but I don't fw odd number versions
If you have a gpu that's volta or older, yes
That's crazy
Mine are a 3090 and 4070Ti
Then it should work unless you've ignored deprecation warnings for the last year or so
Great success!
Those are not volta or older
Professional 3090 dealer, now that's a job title
i am iron man (still failing at making the ai bot work)
Is it running on a local model or an API model?
yes
Which?
Gemini
Yes
For chatgbt worked but out of credits to teat
Local or API?
api
Well, are you using the correct API and passing in the right arguments?
yes
So what does the error you're getting mean then?
when i used chatgpt it worked bit out of credits
old model not being available
Then change the model?
no credits
What GPU do you have?
What CPU do you have?
How much RAM?
4gb
Ok you're just screwed
Get some hardware before trying to LLM
Cloud models are not worth it
I can work woth deepseek
I haven’t tried deepseek
I don't recommend using API models, especially for testing
Maybe in prod, but not while testing
why
i just want to well learn apis
I don’t want to use it in prod
Because in testing you need to constantly call the model in order to know if it works
Wait I didn’t call the model
oh fuck
Then run an OpenAI API compatible server on your device after getting some reasonable hardware
wdym
APIs are perfect for testing because you don't have to get huge hardware for it, you only pay for as much as you need
big hardware is great for when you continously need to serve a ton of requests
300$
testing is the opposite of that
You constantly have to call the API though
Since you need to do testing stuff
i am determined to become iron man
You could easily get a 12GB 3060 for that
oh yeh
but i am fine
for now
a lot of models are like below $0.2 per million tokens, it's fine
If you're spending so much money on APIs that you could get a GPU and don't explicitly need an intelligent model, like for testing, just get the GPU and run locally
sure, if your testing consumes 1.5 billion tokens, consider getting a GPU
I hope it doesn't do that
Well, this seems concerningly high
Why do some apps disable screenshots 
Privacy
Ill just take a picture with another device i guess
Even more so
Its not like im trying to take a sreenshot of any private info
Its hhe graph of my savings account
DRM probably, Linux most likely fixes this
Ill stick with android for now
Android uses a Linux kernel by the way
Cool i guess
all banks worth their money have some way to export the data
and then you can be a nerd and put it into GNU cash 🤓
I found some 2D ahh looking trees
cool trees
gemini 2.0 flash my beloved
#pragma once
#include "Network.h"
#define BEGIN_MUTATION(name) \
struct name : public Mutation { \
static const char* ClassName() { return #name; } \
const char* get_type() const override { return ClassName(); }
#define END_MUTATION };
struct Mutation {
virtual const char* get_type() const = 0;
};
BEGIN_MUTATION(M_AddExistingNode)
NodeID id;
END_MUTATION
BEGIN_MUTATION(M_CreateNewLeafNode)
ActivationFunction activation;
END_MUTATION
BEGIN_MUTATION(M_CreateNewBranchNode)
size_t node_count;
END_MUTATION``` I'm not really pleased with this approach, anyone got a better solution?
unfortunately if they didn't have it many more people would probably open themselves up to scams
I just want to have a base class I can use for storage (Mutation), and convert it to a derived class during evaluation. I could do it with an enum, but I'd have to add the enums manually
this solution works, but I'm not a huge fan of comparing const char*
(or loss of {} with that macro)
idk much about how c++ works but is there a way to take a compile time hash of the name?
because that would maybe be less bad than comparing char*
ye
idk any hashing algos but I feel like basically ```cpp
constexpr unsigned int hash_name(const char* name)
and hope you never have a hash collision
constexpr uint32_t fnv1a_hash(const char* str, uint32_t hash = 2166136261u) {
return (*str) ? fnv1a_hash(str + 1, (hash ^ *str) * 16777619u) : hash;
}
constexpr uint64_t fnv1a_hash64(const char* str, uint64_t hash = 14695981039346656037ull) {
return (*str) ? fnv1a_hash64(str + 1, (hash ^ *str) * 1099511628211ull) : hash;
}
#define BEGIN_MUTATION(name) \
struct name : public Mutation { \
static constexpr const char* ClassName() { return #name; } \
static constexpr uint64_t ClassHash() { return fnv1a_hash64(#name); } \
const char* get_type() const override { return ClassName(); }\
uint64_t get_type_hash() const { return ClassHash(); }\
#define END_MUTATION };
struct Mutation {
virtual const char* get_type() const = 0;
};
BEGIN_MUTATION(M_AddExistingNode)
NodeID id;
END_MUTATION
BEGIN_MUTATION(M_CreateNewLeafNode)
ActivationFunction activation;
END_MUTATION
BEGIN_MUTATION(M_CreateNewBranchNode)
size_t node_count;
END_MUTATION```
I think that should work
if there's a hash collision
it would be really easy to figure out
Gemini models with enormous free API limits: 
Me who just made a discord ai bot

I named him jarvis
if you want just to play around with api, try gemini-2.0-flash
this amount of requests should be more than enough
for testing atleast
i am using 2.0 flash

well anyways gotta be careful when using tokens
bye bye electron 35
Damn outdated
vscode just updated to electron 37
What does Rdns do
before i had 35, 36, and 37 on my machine
I always either do Rns or Rdd
honestly i dont remember any more 
supposedly removes configs, orphaned deps, and ignores dependency checks
but it doesnt actually skip dependency checks unless you do --no-deps 
I guess that's why you need Rdd as a nuclear option
Man
I do like pacman but these flags 
yeah
i usually just do -Rs... i think

what lenovo is this
pencil?????????
Yes
i swear if its 50$ pencil...
The tablet i bought for it was 240
oh ok
wait you're going to do digital art
Its just the lenovo flagship tablet from 2023, but lcd instead of oled, and its shipped from china instead of lenovo shipping it from china and tripeling the price
Do they sell replacement tips (ideally not just the same hard ones)
Maybe
Idk tho
The 2025 pen doesnt work on the 2023 pen devices cuz fuck the customer
So its hard to even find the whole ass pen cheaply

It was only 30 bucks, if it breaks it breakd
Sam artist arc? Finally the bingo box will be filled
I bought a coke while getting my packages, and the 2nd package had a coke already inside with my fucking name on it 
er that's crazy
of course 
the pen is supposed to do wireless charging on the tablet, but it wont connect. so either its broken or i need to charge it via usb-c first
I wonder what game will you make
at least the usb port is in the side and not the top
the best games
👍
surely
if i can make games withou having real education on it, imagine what i can do with actual education 
like didn’t you go to college man..i wish if you where in a technical school
but ye i doubt the classes on 3D an aplied physics and math will make me learn even a single thing.
they would hella made you a hacker from early age
I see
nah, i only did secondary so far
I see
im mostly there for the other classes
well i am bot going to lie I can’t even write a function
and I forgot how to I access a list index
o7
Well idk
i am an idiot
I question my self why people belive i am something
like i am an total idiot

how long have you been coding??
1 year and a half
and already forgot a lot
eh
a year is already at the point most people would remember how to do it. so either you just dont code that much in your time off or your memory is swiss cheese
I don’t have a great life
both
I only know typescript
and java
I honestly i am screwed in most ways
you don’t have to
its your life, you full control
not something to worry about
yeah thanks ill find my way I guess
this yt video bro said "first we gotta memorize this equation" like nah i aint memorizing shit wtf is that
you now shit is bad when there are only 6 numbers is an equation that size
i see
this is probably the worst summer for me
…
can i ask you i have a python passage exam
i got till 15 semptember
And I don’t have anything to practice on
ii see…
well you probably can easily pass my exam
i find python hard for some reasons
https://github.com/samvanmaele/game-engine-python
i have a game engine in python if you wanne see
oh thanks
this is a game made in that engine
https://github.com/samvanmaele/A-neuro-who-can-t-sing
thanks
That has to be the most useless equation I have ever seen
There's no t or x anywhere 
there's a t here now
I can't believe that after all these years I finally noticed that middle mouse copy paste reacts to the mouse cursor position in vim
hi toast
This will be your new norm very soon 
its some type of fluid dynamics euler equation
🌏 Exclusive! Grab the NordVPN deal ➼ https://nordvpn.com/angethegreat and get extra subscription time. Try it risk-free now with a 30-day money-back guarantee ✌
Thanks to NordVPN for sponsoring this video.
Links for further study:
Excellent course available online (probably the best I was able to find): https://www.ita.uni-heidelberg.de/...
surely not
its aplied math for game dev
im not gonna be doing fluid dynamics
hopefully
i do admit that the fluid dynamics in the new astro bot looked juicy asf but im not there yet

awa
awa
it's not about fluid dynamics it's about the math in general 
i miss numbers 
<- ✅
another day, another shellcheck update that brings a couple dozen haskell dependency updates with it 
running the code
i think the order is actually reversed
i do wonder why haskell went with the dynamic libs approach
its arch packagers rather than haskell itself
haskell allows both dynamic and static linking
i think, anyway
i suppose so
Python does not fare better
seems like a poor choice to be honest, every rust binary is statically linked so i dont have to download a million updates
thats only because rust simply does not provide dynamic linking
python dependency management in package managers is pure hell
if it did, it would be used
packaged versions of dependencies are randomly different to ones downloaded through pip
- managing them when you have a mix of both pip dependencies and packages is awful

thats why everyone says "use venv"
yup
i just realised im complaining about this to a nix user

you shouldnt have this issue because you use nix
i dont have pip dependencies
in general though
if im lazy i just use venv and steam-run if it requires native code
if im not as lazy i do write a package
steam-run simply runs the package in a bwrap that contains a fhs system thats sufficient to run steam games
which is enough for just about anything
how could you post this, there are children here
🧇
teto inside sticker
my new pen wont connect bwaa


NPU 
i like how, if you make the first version really sht you casn boast about incredible improvements
i might have bought the wrong pen 
i even asked shadow if this was the right one but i guess not
return
-# That's as much as exists at the moment
Guess I have to enable DNSSEC at work. I'd rather eat rusty nails but it is what it is
dnssec
[Resolve]
DNS=xxxxxxxxxxxxxxxxxxxxxx
DNS=xxxxxxxxxxxxxxxxxxxxxx
DNS=xxxxxxxxxxxxxxxxxxxxxx
DNS=xxxxxxxxxxxxxxxxxxxxxx
DNSOverTLS=yes
DNSSEC=yes
Cache=yes
mm resolved.conf
back when i self hosted my site's authoritative dns server i signed my own dnssec records with some utility from bind? or whatever
then they removed it
i just updated shellcheck pls
its a huge pain in the ass and gives no real security benefits
not even google implements it
and we have a split horizon as well
this tablet is supposedly the same as the p12 but with a different screen, but i geuss the different screen also has a different pen digitizer layer
Tablet?
it does protect against dns tampering even though that's not too important with https
Like one of those Android devices or the thing people play Osu on?
its like a phone but big
So the Android one
I've never had one, I don't see the point when I can just carry a laptop
it is what it is. Government says do it despite what the real internet out there is doing. and this is specifically about mail and DANE
also didn't djb call dnssec a double barrel ddos shotgun
im invincible
since its a free amplification attack
what are you supposed to say here when you just bought the wrong one?
oh i relaize now yall cant read this lmao
i think Item is defect is fairly clear
articles are missing
i was not giving a suggestion
damaged²
i guess "a wrong item has been sent"?
even tho im the one that bought the wrong thing
don't think too hard about it, its amazon 
aliexpress but close enough
those are mostly for analytics anyway, it legitimately does not matter which one you pick i'm pretty sure
okay
i just said it doesnt work
anyways now i gotta figure out which pen is the correct one

write a new parser in hblang 
yes that is the plan
after the python version is done
I heard that people really like Rust for building parsers
Rewriting in Rust is never a waste of time 
I'm split between wanting to learn Swift/Zig, after I finish learning Julia
wat even is tat?
awa
I'm arguably left more confused 
learn AWA5.0 instead, the spec is more complete

yeah, I really like how it completely specifies all instructions with no ambiguity whatsoever 
and how the spec correctly documents the standard 
Ahh I see now
https://esolangs.org/wiki/AWA5.0
May the cancer spread on to my brain after seeing this
you should learn zig (i'm not biased at all)
stop having fun



global rom mean sunlocked bootloader so no netflix right?
not necessarily
i think you need widevine L1 for netflix which should be okay if it's just a global rom and the bootloader is locked afterwards
could be wrong
i thought not being able to load the fstab with all the drives loaded will cause the boot to halt
but it loaded just fine without the drive
for my other tablet i got from aliexpress i didnt get widevine L1 cuz of global rom
is that with a locked bootloader though
i think you'd have to figure out how to boot into the recovery or bootloader and then go from there
cuz like i can install the netflix app but it wont go further than the spalshscreen witht he logo
same for prime video
And it occasionally does this too

so locking the bootloader should fix it?
not guaranteed but it might
i find it weird cuz here it says L1 but idk
raise StopIteration()
it might already be locked tbf
oh also just in case you didn't know, (un)locking the bootloader wipes everything
ah shit
no thank
i dont want to indent more
have better way
well i dont really have much of value on this tablet anyways, but installing 120gb of gacha games did take long
i barely play them anyways tho
no thats just how python generators work
i just use break
awa
yesterday i wrote the tokeniser with regex but i realised today that hblang doesnt have a regex engine
so im writing a manual version
Booting up safe mode this is the first thing i see 
this message used to be in engrish
it started with something like "The bootloader has been unlockerr"

okay it's "Your device has been unlocker and cann't be trusted"
Its no longer for geeks
i rarely find that website particularly informative 
It used to be informative
Like w3schools
theres zero things to tokenize in lisp-like grammars anyway awa
This makes me feel old for some reason
oh i didnt even get the chance to do the android recovery mode screen
it jsut went to factory settings
{conclusion}.
they really do be adding dolby atmos certification to anything nowadays huh
how a tablet gonna give me surround sound?
IIRC, dolby atmos is not always surround
dolby atmos is suppsoed to be spatial audio tho no?
Or right
This is soo funny
Yeah, I mistake it with other dolby things
that didnt even locj the bootloader, i guess there is just a shortcut key combination to factory settings?
what is that even supposed to be used for?
oh i just realised the g.co/placeholder 
i fix it
awa
dubious (include "path")

it works but i dont trust numbers
smocus

seems like it doesnt want to lock
c
ↄ
u
n
: (this is a cross section)
υ
𐌵
awa
ɐʍɐ
n
c ᴐ
ᴜ
av (this is half of awa)
awa
apparently "Chinese market (PRC) firmware" blocks any attempt at lockign the bootloader
eventho this is supposed to have global rom
was about to ask wtf eentho was 
You forgot the cross-section in the middle 
the bootloader is still for the chinese market
waht r u talking about
if it says "global rom" it usually just means the seller unlocked the bootloader and flashed global fw
: is the cross-section of the 4 symbol
but the bootloader stays the same as its signed and typically non flashable
and what is the 4 symbol 
n c ᴐ ᴜ
uhh
web-sys trying to cope with arbitrary arguments in javascript ... my beloved
draw_image_with_html_video_element_and_dw_and_dh()
they keep getting longer 
draw_image_with_video_frame_and_sw_and_sh_and_dx_and_dy_and_dw_and_dh()
so either i need to try to get a diffrent bootlaoder on here, or i spoof widevine

is spoofing widevine even legal?
because it is difficult to spell

what's the easier alternative
variable arguments, just dont say variable variables
this variable variable may variate on various variates


that's a variant I can support
what is the most common word in #programming that's more than 6 letters
seems like i cant just change the bootloader. its tied to the mb apparently
segfault
ok it might be "programming" the word itself 
uvuvwevwevwe onyetenyevwe ugwemubwem ossas

aawagaa
was about to say that
can we do hblang in holyc
so it's more holy

holy byte
"https:/" 
11570 results
hmm its midnight in bejing
you know, this is and has been my application launcher icon if i didnt just reinstalll
chat, call me chizo or going insane, but like the 5090 has been released already right
i swear i took my pills today
it do be released and it still be overpriced
went to microcenter last week and found a bunch of 5090 sitting there but they were all $3k or more still
this CLLA i shant say, this complex calculator just said nuh uh to me telling him the 5090 has been released
WHAAATTT i just saw one thats like £2000
oh wait thats dollars
yea
I kinda refuse to pay more than $2000 so i will probably never get one
2000 is already a stupid amount
tru
each time i've added one to cart my grandma's ghostly presence appears in the back of my head and says "it's HOW MUCH??" like she used to when i told her my pc parts were anything over $500 a piece
i mean theres a listing rn on the nividia marketplace for £1,940
prolly the cheapest we can get a hands on a 5090 rn icl
LMAOO
am i seeing things rn
ok, booting into "Qualcomm Manufacturing and Maintenance Interface (QMMI)" did make the netflix app work
waht the fuck
i dont get tablets man.
atleast it works, but idk if i feel like going into the bootloader to go to QMMI everytime i want to use netflix
DRM related
i geuss QMMI activated my tablet's widevine certification?
there are some widevine bypasses out there
it basically slaps a device profile and key on your device so idk how long a single one would last
bare-metal? N
, probably not
if it's in a VM then it should be fine but that's still really new AFAIK
apparently the Asahi Linux people made an installer for aarch64 systems
but you'll only get L3 so resolution will be shit (same as on any non-proprietary Linux system I think)
fun fact an 5090 is cheaper than a 4090 in my country
ok so i wont be returning the wrong pen
dose discord bots have ready made / commands?
instead we'll just be buying a tablet that has support for that pen
or do i have to code them
No, you need to make them
oh ok
It's easy enough though, first declare the command, then listen for that command
ill just make a function where i ping him and tell him a specific key word to kick the user
like !kickass
surely the tablet im gonna buy does support the pen that my current tablet doesn't 
oh ye, im not just replacing my tablet btw, its for my sister now
It has not. It's all the voices in your head
You should ask chay regarding linux on mobile device
Oh, I take back my catdespair
async def command_handler(message):
commands = ["kick", "ban", "mute", "unmute", "help", "info"]
if message.content.startswith("!"):
command = message.content[1:].strip().lower()
for cmd in commands:
if command in commands:
if command == "help":
await message.channel.send("Available commands: " + ", ".join(commands))
elif command == "info":
await message.channel.send("I am Jarvis, your AI assistant. How can I help you?")
else:
await message.channel.send(f"Command '{command}' is not implemented yet.")
else:
await message.channel.send(f"Unknown command: {command}. Type !help for a list of commands.")
well something like this?
no !
i can use !
🍪
Om nom nom
You've given me 2 cookies! | I've received 240569 cookies total!
That's called "prefix commands" by bot devs
slash command
but it should be able to parse it
i see
tatsu uses it
!trank
something like that
their prefix is t!
Can we give neurobot cookie anytime?
The neat thing about slash commands is the autocomplete, that's the main selling point really
why wouldn't we be able to
also should i be aware of the ai bot doesn’t give my bot token and cookie and
Making sure when it’s given profanity inputs make sure it warns the inputter or mutes em
I have no idea what is and isn't allowed to interact with neurobot
sooo like i should use /
also it not sending a message to everyone/sending it to you only being an option
Slash commands are not parsed, they're handled by the Discord API
also not having 2 messages per interaction
If you're not putting those in the context, then it's not leaking any tokens
it's a regular ass bot wdym
wait like wdym leaking tokens
WAIT
MY BOT COULD LEAK TOKENS?
yeah, slash commands have a lot of stuff that prefix commands don't
user-installed bots for example
Well a bot still needs to be hosted so I don't know what is and isn't allowed man. Who knows if I accidentally DDoS-ed the bot
well good thing only me in the server
It should not if you're not an idiot and pass the token to the bot context
what? give computed the account back whoever you are!
ohhhhh ok
i aint passing my bot to a nother one

but like if you're genuinely asking, the compute necessary to host a discord bot is so negligible (especially as simple as neurobot!) it does not matter
i'm gonna be surprised if an rpi couldn't handle neurobot in 20 servers the size of this one
To be fair, I am not that familiar with Discord stuff and I don't really bother to explore it
pretty sure that Discord will rate-limit you way before you break NeuroBot
that too
The more important part is that Discord has a rate limit of 1 request per second
iv just exited my fucking quota limit
unless you actually use many IPs and accounts, in that case it's just a genuine intentional DDoS 
Time to actually get a GPU
My account may be older than 6 month, but I'm really only been using it actively since joining the Neurocord lol
- that has to be for non verified bots only
- if you're replying to slash commands i assume it doesn't count towards that
how many tokens did you consume in what amount of time? 
well for today
If you could afford a 5080 the whole time why did you not just get that a long time ago?
idk
i was using mac
nevermind i misread

just curious if you actually need a big GPU or not
because I still think just using an API will be way cheaper (and better) 
silly
yeah
i should probably stick with api ig
you can always just try API and see how much that costs before committing to buying a GPU
You can try to scrape API token from the net
(This is one of the reason I resign from my previous employer)
there's being cheap and then there's being cheap
being free
It is what it is lmao. I don't know if they still afloat today or not tho
not even, you have to pay for employee time to maintain the scraping 
wait i didn't even process tht
they were doing that at an actual workplace
ain't no fucking way bruh
nvm jarvis is working again
guys it was just an error
i just debuged him again
I told you I've experienced work at shady workplace lmao
may your free quota be plentiful and your token usage low
thanks
https://www.theverge.com/news/757461/microsoft-github-thomas-dohmke-resignation-coreai-team-transition cool so apparently this is a thing now
AI engineering team
whyyy
no
they're obsessed with copilot
Codeberg it is
I don't need to read tech blogs to know that
but GitHub != GitHub Copilot 
now github is going to be full ai shi
so now we going to see pull req are based on ai
why is github part of the ai engineering team again 
(rhetorical question)
because we're getting replaced by AI by 2024
(rhetorical answer)
question: are c and c++ crash dumps (ccpp files) in linux by abrt important or can I delete them
If you don't plan to debug it, then you can delete them
probably a good idea to just turn them off and turn it back on if you ever need it
if you're using a system with systemd-coredump configured properly then they should already be cleaned up automatically, so you don't really have to care unless the coredumps are very large
but yeah, if you never plan on using a coredump at all then it should be safe to disable them

i dont want to bother them so ill just wait till they're here
Ye which is why I don't ping either lol
im everpresent


linux doesnt have play store
but you can use waydroid for android emulation (its somewhat similar to wine)
depends on the tablet
probably not then
the stock bootloader typically only supports a single os
maybe with a/b partitions for safe ota updates
so two os'es but normally functioning under the expectation that they are interchangeable
hmmm
additionally linux is generally not something you can just install on a mobile device
i think for now ill stick with android since i need it for school, but i can change it later
widevine is not an issue anymore and i dont want to break it again
No devstream 
aw man my shitty code is getting mixed into copilot
Intel won't be bankrupt anytime soon
They have ton of inertia and support from government
Bruh, why there is gemini at yt comments summarizing top comments
I just make another user account on my linux installation for my online presence. So Discord can actually resize the side panel 
the leadership changes are so insanely stupid
previous guy made heavy investments, new guy does his absolute best to undo those investments and shrink the company as much as possible
be thankful it's not bard
Bard can't do korean for sure
My other user account must've been so messed up in the config that even some web feels janky lmao
yeah, unless something major happens they will live, somehow
the question is more whether they will remain a competitive alternative to AMD or not
they're trying somewhat
Yep. Company that has invested in Intel hardware won't just suddenly move to AMD for no reason before having their ROI
also their gpus are cool
And their CPU availability is higher for OEM
that fab they got paid 10 milion for... thay kinda paused that
AMD has to compete with other TSMC customer
well ye, competition is good
paused
more like completely cancelled and abandoned
TIL that most of my issue most likely stems from sooo much junk piling up on $HOME
he meant to compete over tsmc's production capacity
To be fair tho, that user account is used for a wide variety of development
Intel is basically having the opposite problem, their chips are currently unpopular enough that they have too much fab capacity because their designs don't sell as much
they were planning to invest into their fabs and make them available to external customers but apparently that is cancelled too
the way i see things buying shorts on intel would potentially bring a lot of profit. im just not irresponsible enough to do trading
to invest into their fabs and make them available to external customers but apparently that is cancelled
is intel stupid?
as I said, new CEO guy is doing his best to undo as many investments as possible
frick making money, reduce cost
is the new ceo the reason we dont have 15900k?
Yeah, which is a shame. That lithography production capabilities could be used for other stuff beside CPU. But I guess they are not equipped for stuff other than CPU
they should be, they make WiFi and Bluetooth stuff already
realtek vs intel
and cellular modems too right
also great network cards
I think so? but in that space Qualcomm is the market leader AFAIK
yes, Realtek is ass, Intel is usually good
their WiFi cards can have issues but that's just WiFi being WiFi
to be fair, the "both are hated" is probably because nobody cares if they work well, but when it doesnt work they immediatly get their pitchforks
apple used intel and qualcomm modems for iphones, then they dropped qualcomm in like 2020, now they apparently have developed their own one???
what is apple even about at this point
I wish atheros didn't stop making wifi card
they have the luxury of the government not allowing them to fail completely
OH they did WHAT?? how don't i know about this?
its like the banks ye, the government cant allow them to fail
altho in my honest opinion, banks should kinda be allowed to fail cuz of the whole "vote with your wallet" stuff
a bad bussiness shouldnt exist
its all the fault of the reddit intel guy tbh
glue
Well, banks are allowed to fail here
After failing hard at osu lmao
Well yes, I said failing hard 
i cant believe i never questioned this before, but why is your name konii?
because making a name is hard
just stick to whatever you came up as a stupid kid like i did. is it cringe? yes. do i care? no
that is the one thing i wont do
xXx_EpicGhostAssassin420_xXx
I do have a public account to deal with professional stuff, but we don't really use discord for communication lol
This is cursed ngl
in Japanese is a term of endearment, often used by younger siblings to refer to their older brother
ye lets not do that
i don't get it why
If anything it should be onee
unless konii wants to be older brother of #programming then sure, but i wouldnt call her that myself
welp, my windows hdr broke again

rr
resource record
cursed
turning windows hdr on bricked my laptop once
You've failed to sleep again
wdym failed its pretty early
Wait, is it?
it is
Oh my math is off
mhm
It's almost 5 AM please undestand 
its an hour earlier than where im at, so since its 23.22 here its 22.22 there
decently early
esolangs 
spoilers for worlde!!!
but 

What COBOL does to a mf
erm activating sleep mode 
the other pen i was going to buy was 40% of this afternoon and now its ou of stock
fuck
they dont sell them new anymore besides that last lenovo stock
so i had to buy a refurbished one
it may be used, but i saved a whole 3 euros

id just rather get a new one for that litle diffrence
apparently the lenovo freestyle app has been shadowbanned from the microsoft store.
and they're also now mixing in microsoft laptops inbetween the apps as ads
What did you want to do with the tablet exactly? Is it a drawing tablet or Android tablet?
both
"wow that was a really expensive app I just got"
Oh, I didn't know there are tablet with both capabilities tbh
So, isn't it just an android and windows app then?
the lenovo freestyle app lets you use your tablet as a 2nd monitor or as an input for your pc.
opposite way around works too
i can for example stream android apps to my pc an dplay them on my pc without actual emulation
This can be done with adb/scrcpy
So does scrcpy 
It can use ADB over wifi
Painless is subjective tho
This is a sign Sam
Move to linux 
i couldnt get pc screen to tablet to work, i worked better on my laptop. but tablet to pc does work quite well
This can be used on windows IIRC
the official lenovo one should work too
but my pc cant find the tablet on the local network
And yet it doesn't 
erf
Oh there's also this GUI for scrcpy if you want to check it out and compare performance
https://github.com/SimonAKing/scrcpy-gui
Maybe a single line is changed multiple times
an intern got their hands on an LLM
huge code churn ensued
(surely)
mlem
i figured out why it wasnt working and why the app was shadowbanned on the microsoft store
they made a diffrent app that does the exact same thing
and you're supposed to use that now
the new one is nicer tho, you can sync your wallpaper
Nice
now i just need to find a background that will work
ye nah
pass
i gotta admit tho, the touchscreen is suprisingly nice for using ms paint
A drawing tablet is nice for drawing. Shocking right 
i mean, its not actually a drawing tablet
its a cheap lenovo tablet that happens to be able to connect to windows
Does the pen that you're looking for have pressure sensor?
ye
Yeah, that have the same function as drawing tablet alright
wtf ur so stacked
did you notice they deprecated freestyle?
for somewhat reasons, the art style reminds me of shinchan
i used to play clas of clans a lot 2 years ago and before, but i got kinda bored
its cuz i drew it with my big ass fingers
i dont have the pen yet sadly
oh ye shadow, the pen you linked me was the wrong one 
i need the precision pen 3 apparently
i ended up with the tab pen plus tho
its fine tho
Bored with the flower now?
I did not even know a mandarin duck is a name
i put all that effort into the drawing and i get skipped by konii in favour for birds 
My biology knowledge is very shallow 
Pretty sure the male is the pretty one too






