Bro programming on a mac is worse than not having a job. fuck this shit. Their ide "xcode" is worse than cancer. No wonder that steve jobs piece of shit died of cancer. His OS is trash fuck you mac
>>108500416I just use the Mac like if it was Linux. Open a a browser and a terminal. Renaming is the same, changing directories is the same, vim is the same.
>>108501256I really do need to learn the terminal. I did learn the keyboard shortcut ctrl + ^ but why isn't there a button to go up. This OS is made by retarded faggots. I'm sorry but it's true. Even though win is jeeted it's still way better than whatever the fuck this is
>>108500416I'm cursed with abap but at least I don't have to use that piece of shit
>>108501433who do you think you're saging here? I have to deal with this pos ide and you're saging? Fuck off
>>108501446sorry name was still set to sage from previous post, options clear automatically I cleared it nowI know sage don't work as name, but sage goes in all fields..
why only a moon orbit and not a landing? nice, though
>>108501333idk, but the window opens up after 6:30 pm and lasts 2 hours >>108501339we need to test the rockets somewhere>>108501353>thirdie>conspiracy retardpick both >>108501374>thirdies try not to root for china challenge impossible
>>108501428I don't root for anyone, tardo.
>>108501428>>thirdies try not to root for china challenge impossibleI'm American but I sure as fuck don't root for this joke of a country.
>>108501454don't lie, homo>>108501457no you aren't, faggot. don't lie
>>108501489Who the fuck would you root for in this fucked up world where you're just a little cog that everyone wants to abuse to get richer themselves? No country in the world actually cares about their people.
Magic editionprev: >>108474299
>>108501062do you work remotely?
>>108501188>built a successful career>made enough money to own a home in nyc>retired earlyenjoy the independence, dude. the last thing you want is to hitch your woman with baggage.
>>108501029I'll be slightly more generous and say that 100k is the entry to lower-middle-class, assuming that you're defining middle-class by having the same quality of life that the middle-class had in the 1960s.
>>108501456Sadly i go to work in person.
Should I schedule an interview to be as soon as possible or give myself some time to prepare? I wish to join your ranks as a wagie my fellow anons :(
What the fuck is this, I have never seen this beforeAlso it's shit because it didn't accept Ayumu Kasuha
>>108499107Holy sovl... I only get fotm anime images...
>>108501337/mlpol/, fuckAnyway the seethe was hilarious. Also I loved how fun /cock/ was.
I don't know any of these characters
>>108501480newfag
>>108498217it's tom cruise
Slackware>Void>Gentoo>Devuan>Artixpkgtools>xbps>portage>apt>pacmanthe best init you can use on Artix is OpenRC. It's neat enough for you to rc-update delete udev, elogind and dbusDevuan lets you use SysVinit which is ideal, you run ln -sf /bin/true /usr/sbin/update-rc.dln -sf /bin/true /usr/sbin/invoke-rc.dfind /etc/rc?.d/ -type l -deletefind /etc/rc?.d/ -name "*udev*" -deletefind /etc/rc?.d/ -name "*elogind*" -deletefind /etc/rc?.d/ -name "*dbus*" -deleteand edit /etc/rc.local manuallyIn Gentoo things are simpler, you write USE="-udev -elogind -dbus"Void takes it a step further you rm the symlinks for udev, elogind and dbus from /var/service/Comment too long. Click here to view the full text.
>>108501186I am using devuan with runit. Am I doing it right?
>>108501408don't care, I have zero issues with systemd
>>108501186OpenRC is trash, they still haven't managed to make parallel service start work, which systemd has since day one.
>>108501426Unfortunately, in Devuan, you must still castrate apt, even if you delete the /var/service/ symlinks to udev, elogind and dbus, as apt upgrade may re-populate them, you still want to run ln -sf /bin/true /usr/sbin/update-rc.das well as ln -sf /bin/true /usr/sbin/invoke-rc.dthen deleting the symlinks in /var/service/ works. :)Happy hacking!
>>108501458>parallel service startDon't care. With minimal services at boot, your system still starts instantly, maby even faster than systemDisease.>systemd has since day one.This is an illusion by the way, it just puts all of that loading in the foreground. And you don't get to see them.>>108501445>I have zero issues with systemdWell if you just use your browser and Docker, sure.That is the consoomer's position.The problem is not that it "doesn't werk," but it is non-transparent. Your skill of understanding your system atrophies, and you do not learn what your ps aux outputs by heart.
Users 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.
>>108501369dnscrypt-proxy or cloudflared to get DoH outside of web browsers.
does anyone here uses shotcut? it is lighter and simpler than kdenbloat but i wonder if its stable enough to basic stuff.
>>108501136>>108501149Google has official deb and rpm packages for Chrome so yeah you can just use those (unless you're on Arch, in which case you deserve the consequences of using a meme distro)And yes for Firefox, Mozilla has their own deb repo, so you can add that to your system and get Firefox from there. If you're on Fedora then stop beta testing for Red Hat and switch to Debian.
>>10850140Check out OpenShot.
>>108500644Yeah and you want to hold it. Right?>>108501060>Firefox and Chrome often write 20-30GB/day.What kind of web browsings results into that?>>108501369Doesn't work like that. Your web browser has that specific ability programmed in.
>128gb>256gb>512gb>1tb>2tbhow much storage is enough for a dev machine?
>>108500734I wouldn’t consider anything less than 1TB for a dev machine.
for rust, I suggest 4 TB minimum
>>1085007345TB.Depending on workflow, modern AI workflow will require ton of space
>>1085007341 TB ought to be enough for almost anyone, 2 TB if not.
Guys I have a computer. How much storage do I need? Should I get a external keyboard?
What are you working on, /g/?Previous: >>108471984
How to get started with programming?
>>108496531Go actually has jobs and is used in the industry.
>>108501225Start with C and find out if you can understand programming basics and if you even like doing it.
>>108501253What should I do with C though?
dynamic programming is finally clicking for me>Calculate the minimum cost to reach each of the cells, starting from the top and going down>first row is static>answer for each cell in the second row is the minimum of the top 3 adjacent cells (if they're out of bounds, use Int.max as the value) + the cost of the current cell>repeat until you reach the bottom>final answer is the minimum value in the bottom row of your DP tablehttps://leetcode.com/problems/minimum-falling-path-sum/?envType=study-plan-v2&envId=dynamic-programming
>What phone has X and Y feature?Don't ask, use these!https://www.gsmarena.com/search.php3https://www.kimovil.com/en/compare-smartphoneshttps://phonedb.net/index.php?m=device&s=queryGood Resources:>Reviewshttps://www.gsmarena.comhttps://www.phonearena.comhttps://www.notebookcheck.net>Frequency Checkershttps://www.frequencycheck.comhttps://kimovil.com/en/frequency-checkerComment too long. Click here to view the full text.
Apple bros how many years do we have to wait for the update that let's us hold our phone however we want when using the camera?
>>108501415PicrelTotal Indian victory
>>108495459If your phone can't instantly kill someone if you throw it at their head, is it really a phone?
>>108495459lining up the 3 cameras like that is pretty hot ngl
>>108501259YesFeels like when I first got my Galaxy S5, before they started to git rid of everything
lollmao even
>>108497769niggerfaggot
>>108496830I wonder how good the goon sesh was
>>108497716wtf I got gaped for this too
>>108498584He's probably working one out right now. Can't get any worse, eh?
I hate how this guy got in trouble for this, but it's perfectly fine for schools to do the same during penis inspection day.
This year's Debian Project Leadership election has only ONE candidate and it's a Pajeeta (Sruthi Chandran):>She is inactive on the mailing lists, and her Salsa profile is private so we can't even see what her coding contributions are.>She's run for DPL 4 times before; lost each time>Her entire platform is just about diversity and bitching about cis males>She intends to formally incorporate Debian in the US, which would force Debian to introduce age verificationHer only claim to fame is organizing DebConf23, an event where a Debian developer literally fucking DIED because basic health & safety measures were not followed.A much more qualified candidate was hospitalized during the nomination window and couldn't apply in time, yet she has refused to reopen nominations.Debian is FUCKED unless the Debian developers all vote NOTA (None of the above).
>>108500364>>108500364>can't keep up with basic desktop packagesjust use unstable then. despite the name it's not actually unstable and is perfectly fine for everyday desktop use. stable is for servers and professional desktop use.if you want the latest drivers you need to use unstable. even Debian devs suggest that.
>>108500496>just use a branch where packages can stay broken for weeksWhy would I do that when real rolling release distros like Arch, Gentoo, Tumbleweed, ... exist? Why do Debian cultists assume the end goal is to use Debian?
>>108500572>real rolling releaseNo one claimed that Debian was a rolling release distro.>Why do Debian cultists assume the end goal is to use Debian?No one's assuming anything, he just gave you a solution to your problem, schizo.
>>108495496>/deg/It should be>/peg/ Pajeeta Election General>>108495735If this golem can force her way into presidency of one of the most important FOSS projects just by using the politically correct buzzwords, imagine what state-backed infiltrators can do. It's over.>>108495798I bet most of them are trannies or schizos who acked xemselves. Debian is the type of project to attract this type of mentally ill people, yet instead of telling them to seek help, they encourage their behavior, fucking retards.>Lucy Wayland>https://www.flickr.com/photos/aardvarkoffnord/lmao even, this should be a joke. So it was Gayland all along. Xe literally kill(1)ed xerself kek
>>108495496RIP debian and linux in general, time to move to something else bros
>download chrome>install chrome>install violentmonkey >"This extension is no longer available because it doesn't follow best practices for Chrome extensions.">install tampermonkey>install 4chanx>open 4chan>it doesn't work>open manage extensions menu>enable developer mode>restart chrome>still doesn't work>install 4chanxt>doesn't work>download firefoxComment too long. Click here to view the full text.
>>108499640The problem with 4Chan-XT is that it slows down my browser to a crawl if I have 20 chan tabs open. Anyone know how I can fix this? Are there certain features I should turn off by default?
>>108501035I'm a millennial who has been here since 2006. It is not 2006 anymore. I can't just write whatever and post it without a captcha. My old favorite stylesheet, the gurochan one, is long gone. To use 4chan now is to fight against a broken ass mess. The process of making this post proves it. I refreshed the thread because I thought it was broken but it was just a Cloudflare captcha taking it's sweet ass time. Then I kept getting the spur.us/mcl.io error even though those aren't blocked. I didn't lose what I typed even after refreshing the page multiple times because of my vibe coded update to 4chan-xt that adds a drafts feature.
>>108501137>I'm a millennialstopped reading there
>>108501310No you didn't.
>>108501400Yes, I did.
>>108501202>Guy releases method to cook food 10x fasteryou say>Restaurant companies BTFO>Hopefully they all go bankrupt.read it and reflect on yourself silly.
>>108489041Here’s why it matters:
>>108500529Sorry that I try to talk to other anons.>>108500606>>108500669>>108500893Thanks.
>>108501275>guy finds way to make your laptop cook good food for you>so you don't need to pay a company to have their giga mainframe 5000 cook food for you>whatever benefits giga mainframe 5000 brings to the table are too overkill for the price>therefore that company either goes bankrupt or becomes a small, poor, niche companyAnon, you silly goose.
>>108489716You are hitting way above your class — not because you want to censor internet but because you are *sanitazing* it. No noise. No rubbish. Just pure unadulterated content.
>save file as dialogue appears>don't remember clicking anything
>cmd.exe pops up for a split second
/aicg/ - A general dedicated to the discussion and development of AI chatbots.white and nerdy edition>NewsGLM-5.1 by Z.ai is out: https://nitter.net/Zai_org/status/2037490078126084514#mXiaomi MiMo V2 Pro released: https://mimo.xiaomi.com/mimo-v2-proAnthropic SUING USA: https://www.cnn.com/2026/03/09/tech/anthropic-sues-pentagonGoogle to rollout HARD CAPS for API keys: https://nitter.net/OfficialLoganK/status/2028842571934670988#mGoogle Gemini 3.0 Pro Preview Deprecation soon: https://ai.google.dev/gemini-api/docs/deprecationsGoogle releases Gemini 3.1 Pro: https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-1-pro/Additional info: https://aicg.neocities.org/info.html>FrontendsComment too long. Click here to view the full text.
>>108501348It kind of sucks, yeah.
>>108501375This year's April's fools is sanitized, wholesome, family friendly and very Reddit. 4chan is doing it's part to comply with the World Economic Forum's internet safety guidelines.Do you feel safe now?
>>108501348It's shit as an april fools event but I think the captcha should stay around permanently.
>>108501423there aren't enough of them for it to work as a captchai saw someone post the exact same triforce one that i got
>>108501442not at present yeah.it seems like a lot more work to change/upkeep vs the current gradient/texture shifting they're doing with the shapes and whatnot, but if bots are going to be posting either way I'd rather they be as filtering as some of these seem to bethe 'google' ones are fun