They acting like they have 90% market share instead of 6%
>>106863321Users of all levels are welcome to ask questions about GNU/Linux and share experiences.*** Please be civil, notice the "Friendly" in every Friendly GNU/Linux Thread ***Before asking for help, please check our list of resources.If you would like to try out GNU/Linux you can do one of the following:0) Install a GNU/Linux distribution of your choice in a Virtual Machine.1) Install a GNU/Linux distribution of your choice on bare metal and run your previous OS in a Virtual Machine.2) Use a live image and to boot directly into the GNU/Linux distribution without installing anything.3) Go balls deep and replace everything with GNU/Linux.Resources: Please spend at least a minute to check a web search engine with your question.Many free software projects have active mailing lists.Comment too long. Click here to view the full text.
>>106872690>But when you need to resize your filesystems and it turns out that it's impossible because of XFS *then* it's a big problemNot really because there's no reason to run either outside high performance flash. Home users are looking at 4TB absolute max b&r. Probably much less because of multiple partition, multiple tenancy.ext4 is is also a shitty filesystem to resize because its metadata size never changes, so dramatic changes in either directions can yield unexpectedly bad results.
>>106873320I have the same filesystem on my RAID since 2019 and it's been grown / shrunk multiple times.
>>106873794yea just unmount it and open up gparted to delet the ntfs partitions and resize the ext4 one
>>106873794>>106873931also if you want ntfs space later you can shrink the ext4 partition ;)
The refurbished 2023 Anus A16 I ordered just arrived. Wanted an all-AMD laptop to dual boot and dip my toes on gaming under Linux (7435HS and RX7700S), and I'm glad that this laptop doesn't have the gayrgb bullshit all the other gaymen laptops have, because otherwise I'd need to install all the custom asusctl packages to disable that, which only have support for arch-based distros. All I want to control are cpu boost and battery thresholds, and it turns out TLP already supports these laptops just fine for that, so I can keep using the same Mint install I'm used to.
Well? Is this right?
>>106873670Sometimes not using else results in more complicated code. But its rare and usually points to a underlying design problem that may or may not be worth solving.
>>106873670"No else after return" is a fairly common rule
>>106873670generally, yes, it's much better to avoid conditionals where you canand single-return advocates are obviously completely retarded
kde users can't find the bug
>>106873752works well on my machine. skill issue
So just got into linux and decided to install debian after reviewing the other stable newbfriendly distros (ubuntu, mint, fedora, etc). Decided not to mess with the corporate leaning ones and settled on debian, but just found out theyre also hopping on the popular kill-all-straight-white-goys bandwagon. Should i be concerned and prepare to switch to something else, or is it just a nothingburger and debian should still be trusted? If the former, what distro should i consider instead? From what i read it seems like void linux ticks all the boxes(stable, non-corpo, non-political) besides the newbfriendly part.
>>106872498>filters cattle with memes instead of brains>allows readers of the post to distinguish large chunks of text more easilyso, what are actual disadvantages of using le plebbit spacing? is screeching in disgust and crying reee reddit your only argument? pathetic.
>>106873621>4 replies out of sheer assblasted seetheIm not even trying today holy shit lol. Go take a rest for the night unc.
>>106873650i'm genuinely curious. i'm considering to adopt a certain style for my posts.>low effort, low q, hard to read and parse, easy to disregard, jeet indian style for posts which are just thoughts aloud, so i'm disinclined to answer anyone>normie literate posts with extremely verbose retardation for bait>short, to the point posts with images and interesting facts if i genuinely want a discussion
>>106873698Ehhhh... sounds good to me
>>106873650>for the nightSEA anon telling on himself...
>>106853090Less than 24 hours later, the 100% tariffs on electronics and software got removed.Phew!
>>106868089>americunt had a meltdownlmao
>>106871598Americans get a bit melty when they can't (afford to) eat their beef.
>>106868111oh no we suck again
lol
>>106867748PoompitnDoompit
is reverse engineering a dying art?are we witnessing the end of it?denuvo plus anticheat plus windows plus online checks have fucked it over
>>106870766Truehttps://youtu.be/U7VwtOrwceo?si=Yu4Nq_bBgVctX-V0
>>106859779I think it’s a good skill to have, but I wouldn’t focus on it too much. It’s kind of boring unless you enjoy solving sudoku puzzles in your spare time. I only ever use it for game hacking and malware analysis. I couldn’t imagine trying to reverse an entire program for something as autistic as backward compatibility.
>>106871498Is it really that boring?
>>106861463Do they crack ida with ida?
>>106859779Honestly it's kind of more casual and boring these days since the tools have gotten so good.
How come that despite of over 30 years of development Linux hasn't managed to solve even the very basics like software bundling and distribution?
what are u talking about? on my machine i just type a couple of letters and the name of what i want to install
>>106873746>distro's package repository>most software missing or way out of date
>>106873746This. Literally never used anything other than my distros package repository and .deb files. You don't need more. It just works.
>>106873943>he fell for the "stable" meme
>>106873751To anyone reading this post, this is bait. If you really cant configure a setting in gui then its in /etc/ or ~/.config>>106873943use a different distro or install using flatpak. having options here is a good thing
How do websites store billion of accounts in a database, won't they cost a lot of storage?
>>106870885math hard innit?
>>106870885You can store billions of accounts in a sqlite database.
>>106873572>You store user name and encrypted password in a databaseYou would hash the password using e.g. argon2id.>You validate it in server side, generate some kind of oauth jwt code and sent it to the userYou can use a jwt and lots of people do, but it's bad for auth because you can't cancel it on the spot for that user. Better to send a session token and store the hash of it in the db. And it's ok to use e.g. sha-256 for this since the session token will be randomly generated server side.
>>106870885>won't they cost a lot of storage?not really notext is very light; site with couple dozen million users and a few billion rows of data here and weighing in around 480GB for the DB>>106871283actually mysql is far more prevalent for large websites, anonpostgres' whole value proposition is in its extensions, and at any serious scale you use more specialized datastores for those kinds of thingseg: timescaledb; great for low-scale time series data, but is utter ass (by about 2 orders of magnitude) than something like clickhouseand for actual insane scale, basically everyone runs vitess (ie mysql) or cassandra, and nothing else even remotely compares>>106873806>You can store billions of accounts in a sqlite databasegreat for device-local storage (eg application preferences or the likes), absolute meme for all other casesstop buying brainded tech youtuber slop ffs; surely you people can't be this credulousComment too long. Click here to view the full text.
(cont.)>>106873955>the content of a JWT is already typically the combination of a session id and some user infoand before someone has a fit over this: signed cookies are WAY older as a concept than JWTs. the whole JW{K, T, ...} thing is just a formalization of good auth practices people had been doing for yearsand not put into the "Cookie" header because browsers have utterly retarded policies with how those works due to 20 years of abuse and vulnerabilitiesbut absolutely nothing in JWT is newif one thing is kinda new it'd be the oauth spec, and none of it needs JWTs specifically to work; you could just as easily implement it with a different transport syntax/format; the world just picked JWT because half the web is JS and that was good enough ™, if verbose
You don't want AI surveillance cams all over the public spaces, do you?
>>106873745I do.Public spaces should always be monitored and people shouldnt expect privacy in them.
>>106873745I do, and I'm tired of pretending I don't.
>>106873788>Nobody except exhibitionists want to be surveilledwhy would they want that?
>>106873745I don't have anything to hide, so...
>>106873957post your face
Usecase?
>>106871359here's a guide, some trackers have their own too https://mahoushoujobu.com/mlemblog/posts/qbittorrent-rss/
>>106869517social media/youtube account replacement
>>106869517Following YouTube channels and the occasional blog.
>>106869517it lets you watch for content updates automatically, so you can take your rss client and kindly ask it to nab anything new for archiving.>achually there's nothing worthwhile in the netthen you don't need it. leave it alone and move on.
You can control your feed and not let the "algorithm" manipulate your brain.
ITT formats that aren't supported by anything
>>106867663Supported by every browser and has been for years>>106871289>after the guy blocking it croakedMore info on this?
>>106866048so we're moving the goalpost now? wanna specify how far exactly? otherwise answering seems kinda pointless...
>>106865893wdym? All browser based voice chat (which is most of voice chat) runs on opus
>>106865893literally everything modern with audio IS opus with the exception of trademark registrererered copyright Blurays (TM) that require specific proprapripreprepri formats.
>>106866048>Name one device other than PC and smartphoneThe HiBy R1 supports Opus ootb. My entire music collection on it is Opus.
Why are you not using GuptaSQLWindows, /g/?
>>106873933>SQL Injection is a feature>verbal interface based on string parsingI have literally zero usecase for this bullshit to the point where I wrote my own database + network stack.
Do you /g/uys know of any source, where I could be able to find docs for obsolete military tech, like radars? I am especially interested in old Soviet radars and missiles with early passive or active radar homing (like S-200 Vega).Schematics, blueprints, whitepapers, etc., everything is welcome
>>106873915Archive.org, maybe some hobbyist forums like radio amateurs. You need go around a bit.
>>106873915Also, there's this game about SAM,https://www.youtube.com/watch?v=KF2SOvV5vW8It probably has tons of information.
>>106873952I feel like getting info about this on "american" internet is much harder than browsing some random russian forums etc., but even tho I can read cyrillic and vaguely understand Russian, I am not ready for that place :D >>106873961holy shit that's the nerdiest coolest software I have seen, tysm