microsoft winned
>>108509882The existence of competition has nothing to do with a company being a monopoly. Microsoft was considered a monopoly because they forced OEMs to sign agreements requiring them to only use windows on their computers. I can’t tell if you’re just ragebaiting or you’re genuinely retarded, either way I’m not giving you anymore (You)s.
>>108497038Me was hot garbage, XP SP5 was great. 3.1 was GOAT and 95 wasnt bad.
>>108510032Read a dictionary, pablo. Words have meanings.
>>108506940And dozens upon dozens of lazy devs hard-coded their colors.There are custom themes for Win11 that dark theme Win32 UI, and Microsoft could do the same. But because of those lazy devs they don't want to open up to the liability of some corposlave having issues using software from 1997 they need to use in dark mode because whoever wrote it back then didn't give a shit about respecting the Win32 API so we're stuck in the decades old Windows bodge parade. Bring your own dark theme! (warranty void if used)
If Microsoft has ANY SENSE, they build on the success of the .NET/C# team.Develop a WinForms successor that is cross platform, Windows/Mac/Linux. Exportable to the web as well kind of like Avalonia. Simple drag and drop style native UI design with the ability to tweak and refine in the code. Make this a part of the transition to native UI.This shit would do numbers and wreck the current landscape. Everyone is dead fucking tired of working on front end sloppo for even the smallest apps and internal tools. The OG WinForms was a gateway drug for getting into C# itself because it was so easy and streamlined to work with for any kind of basic app.
why hath he forsaken us /g/entlemen . . .?
>>108509823someordinarygamers is not that bad. at least he recognizes pop os is shit unlike linus tech tips
There is no real reason to use W11 over W10 Enterprise IoT LTSC
>eceleb grifter thread
linux used to be exclusively white. i remember scrolling through youtube and never seeing a non-white using linuxnow i see asians, indians and blacks using linux
>>108510151https://www.youtube.com/watch?v=MJDvJSTbie4
hello /g/. Recently ive been working on a project for some time now, it took me a while but atleast i am satisfied with what i did, i present the Think Operating System, Or ThinkOS. its written in bare metal assembly, with some features[as you can see in the picture], it has a bootloader, a terminal with some nifty commands, and more. it can even run DOOM
>>108508874nope it isnt DOS based. i just made a demake of DOOM
>>108506835usually when people post an OS they post the VM window since it obviously cannot be ran on a device
>>108507003
april fools was yesterday
>>108506854Hes already writing it in assembly. What does he need a compiler for?
What are some dead programming languages and frameworks? This piece of shit is rightfully mocked on hacker news and reddit. I don’t understand how anybody could ever tolerate a dynamically typed language. Static types are necessary for a language being a useful engineering tool and not some entry level, poorly scaling baby crayons.
>>108509100Two more rust rewrites.
>>108508459You are Jewish or Chinese
>>108509457Rails was the low IQ tool of choice until nodejs took off.
>>108509646You are trans and indian
>>108509310>thousands of dollars a month>richfagYou are squarely in the “goyim zone”
PTP is fucking down edition>Not sure what private trackers are all about?Private trackers are not secret clubs. They are exclusive clubs. They exist to create well seeded and properly curated selections of high quality media. Also to make freeloaders seethe and shill shitty Android apps that don't work without paying to pirate.>Have a question?- FAQ https://files.catbox.moe/t2mslu.txt- WIKI https://igwiki.lyci.de/wiki/Private_trackers- NEWFAG PYRAMID https://inviteroute.github.io/graph or https://inviteroute.github.io/sheet/- STUDY https://www.cambridge.org/core/services/aop-cambridge-core/content/view/2F379FE0CB50DF502F0075119FD3E060- SPREADSHEET https://hdvinnie.github.io/Private-Trackers-Spreadsheet/- TEN CURRY COMMANDMENTS https://pastebin.com/raw/dBbdE73M- TEN NEON COMMANDMENTS https://pastebin.com/raw/Ud2pGYaE- RED SPAMMER'S BIBLE https://rentry.org/69zbxh4h- #ptg is on irc.sageru.org but it's pretty deadComment too long. Click here to view the full text.
>>108504502RuTracker and any with 0days like TL, IPT, DCC, etc
>running software from rutracker
>>108504361what is this
I just made a script that checks a list of application pages for changes two times a day that makes a popup on my screen when said changes are detected. Feels like a good idea.
>>108509061https://keiyoushi.github.io/extensions/extensions for https://mihon.app/ and the forks
do people like authenticator apps?i broke my phone and got locked out of my bank, steam, post office and other things.everysingle one needed an authenticator or some app i didn't have access to anymore.i had to take out my sim and plug it into another phone to end up using the sms verification stuff, if i didn't have another phone, i'd be screwed.do people enjoy this? like are jobs made solely for this so they won't go away?I'm honestly so lost why things need to be so complex now, where just not having a single device causes so many issues
>>108507866Google Authenticator backs up to to your Google account nowadays. Aegis has a back up feature too that it will nag you about if you haven't backed up your data. You have to be a complete retard to have lost your auth app access.
>>108507871Which shouldn't they?
No. They're still better than fucking email 2fa because if you lose your email address, you are locked out for life. You can't back up a gmail address, but you can back up your authenticator keys. Not with google authenticator though, I use aegis.
>>108507866i have authenticator on my phone for my work VPN. i've thought about what a pain in the ass it would be if my phone died. then i stopped caring because it's mr. shekelberg's problem. all forms of authentication and 2FA are fucking retarded. whoever invented this nonsense is going to be tortured in hell for all eternity.
>>108508153Most normie apps sell your data so at this point I think the best defense you could have is unironically writing your stuff in pencil on a sticky note or a real life notepad.The average internet zoomer is afraid of leaving their house so anything in your physical house is safe. If the state busts into your house thats a different can of worms but they have backdoors etc anyway so whatever.If I get hacked somehow then I'll worry about it then. Hasn't happened yet.
What are you working on, /g/?Previous: >>108471984
>>108506581>What alternative do I have?functions, nigger, functions
>>108504739the one thing I like about msvc is that it just works with address sanitizer and vcpkg.mingw gcc does not support address sanitizer, but clang does (llvm-mingw).Clang-cl requires /MT /MTd for address sanitizer which is annoying (you don't need to rebuild vcpkg unless a library uses the C library).Clang has ubsan (it does a lot of things) which is kind of neat since it converts __builtin_unreachable into an error unlike msvc's __assume(false). In C /C++, Debug builds usually don't mean "Debug This". It just means "generate debug info".Msvc has better sane Debug defaults in cmake / VS projects (RTC is similar~ to ubsan but asan is 100x more useful).gcc/clang will not enable warnings by default...Also you can avoid cmake by using VS projects and it works with vcpkg. And clang-cl works in VS.Vcpkg is ideal for windows because it will copy DLL's for you (personally my issue with mingw is more C++ related, since in C you don't need any DLL's since mingw just uses msvc's C library. You could statically link BUT I like DLL's).Also note that on mingw/linux, all your functions are public. You need -fvisibility=hidden, but now your debugger wont work at all with optimized code.On MSVC (and clang-cl) you get no info on a "Release" build". So you can't even use a debugger. cmake's RelWithDebInfo is close enough but it should also have /OPT:REF to reduce size...Also linux has a lot of thread debugging tools (valgrind/thread sanitizer), if you are not using threads, there is no point to using linux. Dr Memory is identical to valgrind (asan does not check uninitialized memory bugs, unlike valgrind/dr memory, but it's so slow).Also asan on linux will detect leaks, which I find annoying since graphical libraries tend to create false positives.One reason why msvc wont make a pdb file for a release, is probably because it will leak the full path (this is only an issue if you build in your desktop, but I like keeping asserts enabled on release).
>>108509427fuck off claude
>>108509427that's a lot of words to just say use linuxprograming on windows is a fool's errand
>>108505391no, can you read? I recompiled every file and also added additional dereference everywhere but that one line
Grim.
>>108509893Network cameras are not evil. Not controlling the software on your networked camera is evil. Learn the difference. If you control the software, the police or whoever is misusing it will have to go through normal legal channels to obtain the footage (unless you - a chud - give it to them willingly)
>>108509904A surveillance state is factually less bad if the people running it are of the same kind and work towards the benefit of your nation.It becomes a horrid dystopia when the people running it are foreigners.It becomes even worse if those foreigners see you as mere cattle to serve you.
>>108509893Is there a preferable alternative to Ring if I'm planning to go traveling and want to keep tabs on my house and make sure everything is alright while I'm away?
>>108509893
>>108510074tapo
you use your phone every day. so why not buy the best one?
>>108509185Also>shit screen>shit camera (singular)>shit software support (2 major updates and 3 years of security updates, seriously?)>shit all-plastic build>only IP54 ratedBut hey, at least you can take the back off with a screwdriver because you're definitely gonna be using it for long enough to need a battery replacement right?
>>108507375The best (least worst) option will be a high end Motorola with GrapheneOS. The second least worst option is Sony Xperia (good oled screen with bezels, headphone jack and easy to remove SD card/Sim) The third least worst are jewgle pixels (also for GrapheneOS)
>>108508540Humiliation ritual
>>108507375Because my S10 does everything I need and still works. I'll get a new phone when it breaks.
>>108509444>whatsapp loving poodroid luser>whiterquite impossible saar
How do you respond without sounding mad?
>>108509067And being too narcissistic, autistic, retarded, they can't see how they are ruining their own plans and continue to demand VISIBILITY VISIBILITY PRIDE VISIBILITYno no no you morons what you want is for John Normie to forget you exist while you continue to subvert his children and his society
>>108509079Nah, it is more about them looking like biologically engineered monsters.Before seeing them IRL, one might think that all trannies get advanced surgeries and completely pass for a woman in every way
#TransrightsAreHumanRights
>>108509131That's what I'm saying though
>>108503595Pull request: Give equal time and attention to all sorts of marginalized communities.>It's literally hundreds of disabilities
Can this dogshit app stop incessantly switching playback to my phone? I WANT IN ON MY PC YOU DUMB SWEDES!
What the fuck is wrong with MacOS's newest Finder?>search "Word">doesn't list Microsoft Word>search "Microsoft Word">doesn't list Microsoft Word>search "Steam">doesn't list SteamI may as well use the terminal at this point.
>>108502086tf is finder kek
>>108508226great post. maybe you should ask copilot.
>>108502992windows 7 search is very good>>108502086finder is the explorer of macos, dont you mean spotlight??? or are you larping faggot?not gonna lie spotlight has always worked great for me but the search in finder is near useless, and slow especially compared to windows explorer search
Why do major organizations struggle so mightily with a generic universal search function?
>>108508274suits demand sponsored slop to be included
You don't need more than 75 Gigabytes of storage.
>>108506442normies aren't good with numbers and future planning.
>>108508163Did you check the calendar? Did you really think I would concede to a loser like you?
>>108508213Anyways, how is your day?
>>108506442>You don't needI don't need you or your family to breathe so are you going to kill yourself or do we have to do it for you?
>>10850644275GB will only fit 100 audio CDs ripped to WAV like they're claiming. Anybody with a sizable CD collection would've needed a lot more than 75GB by their own stupid metric.
Is it a controversial opinion on /g/ to say that I preferred when TVs didn't have their own OS frontend?I'm not saying linear TV didn't have it's problems but at least it always felt like it did what I wanted, not what it thought I wanted.The golden middle-ground was when you connected a streaming stick to a HDMI port on your dumb-TV.
>>108505954I left the TV scene when they stopped making dumb screens. Been using projectors since. I have a 4K Epson EH-TW7000 now, great budget projector (cost around €1100) connected to my HTPC.
>>108505954Not at all. The two dream features I wish my TV had:>no OS>Brightness slider on the remoteMy 2005 CRT has a better UI than my 2020 LG OLED.
>>108505954Apples monitors now have 50% more RAM than their latest laptops. Just buy a raw n dumb panel from China and wire it up as best you can.
Problem is it's malware running on underpowered hardware.
>>108505966You get copilot
Freedom to fork things that work instead of improving them.Freedom to rewrite things that work instead of improving them.Freedom to have things not working because the developers have to account for a billion different configurations.Freedom to incorrectly configure your machine and cause obscure cryptic issues that seem unrelated and impossible for other people to replicate without taking the same steps.Freedom to have inferior software because the developers can't assert the user environment.Basically, freedom to fuck it up in every step of the way.MacOS "just works" because they control the hardware and the software.Windows "just works" because the user has no control over the entire OS stack.Linux "works in your machine" because you happened to have a similar environment as a specific developer.After using Linux for so long I treat so many things as minor inconveniences (like different display/audio protocols supporting different features, how enabling the compositor fucks specific games, and so on) that would never happen on any other OS.I just don't feel like Linux will ever go anywhere as long as things keep fracturing whenever they reach past a certain size. Having a BDFL in your project seems to work well but I don't know if that's a good solution, it won't stop people from forking your shit instead of contributing to a single effort.Comment too long. Click here to view the full text.
>>108508318Did you ask chatgpt to read the post for you?
>>108505189>Linux is FreedomThis thread could've just as easily ended here. Nobody owes you anything. Learn to code.
>>108505189you haven't tried chrome os yet and it shows
>>108508660No, I read it and it was all whining and bitching and crying, and the only statement of substance seemed to come from a personal issue with a compositor, so they can't play gamgams.
>>108505189Anon what you're experiencing is Stockholm syndrome. Like a battered wife, you're rewiring your brain to treat every issue that Linux has that no other OS experiences as something good. That is not healthy. Windows users at least have the gall to complain about their OS being shit.