I use Windows on my desktop PC because it's better for playing all gamesI don't use AI chatbots, refuse to care about LLMsI don't even rice my desktop any more because it's annoying and gayI have a bachelor's degree in cybersecurity but still work at TargetMy station is dirty and gross and I have a prebuiltI am peak /g/
>>106522202Yeah, real men use meth instead.
>>106520620i have a friend with a cybersecurity degree and he cant even set up a router with a raspberry pihe keeps insisting i go to the same school he did
>>106518972Coffee can disrupt your sleep cycle, has acrylamide which can cancer, raises blood pressure, and messes up your heart rhythm. Overall it's bad for you.
>>106521599>Dude just eat better and touch grassr/thanksimcured
>>106524419SAAAAAAAR DO NOT REDEEEM THE COFFEE BEANS YOU BLOODY BASTARD
>>106519566what did they dodge?
>>106519192You see the pile of money that wojak is sitting on, nigga? Do you really need this explained to you, nigga?
>>106519192>Why does this keep happeningBecause users are massive hyporites. Nobody is forcing them to use shitty services, yet they continue to use them. Its the same with 4chan users who complain how bad 4chan is, but for some reason they keep on using the site.
>>106519255>Huh, lets look up that case and see what all the fuss is abou-
>>106519255I'll spoonfeed for the zoomers:> court ruled in favor of minority shareholders; Ford had to pay them dividends instead of paying his workers and investing in factories, so he can lower car prices.>case affirmed the principle of "shareholder primacy" in corporate America
How to request advice:>Budget>Intended use (media, source, environment)>Frequency response preference and music examples>Past gear and your thoughts on themFAQ:>Where do I buy IEMs?Amazon, Aliexpress, Linsoul, Hifigo, Shenzhenaudio>Shopping Guide (IEMs, PMPs, Cables, Ear Tips, etc.):https://rentry.org/consoomer_guide>EQ Guide (EQ 101, Targets, Myths & Misconceptions, Case Studies, etc.):https://4ciemg.github.io/IEM-EQ-Guide/Comment too long. Click here to view the full text.
>>106501589so is lilith, which is who i thought it was at first glance.
is the Tangzu Wan'er S.G 2 still the best entry iem
>>106502176>>106521027another flangezo hereI won
>>106526257till you realize the insertion doing is scraping your ear canal skin off and the comfort is ass
>>106526275with hexa it is indeed ass, but for the LM those tips are perfect
>After almost five decades on air, the future of satellite TV remains uncertain beyond 2029 with broadcasters reluctant to commit to the platform for longer.A decision needs to be made within the next two years if satellite TV services from Sky and/or Freesat will continue. That’s because the current fleet of satellites are reaching their end of life dates and any replacement satellite needs to be commissioned at least three years in advance.https://www.youtube.com/watch?v=6KKmGGh1AxM
>>106513600First, they kill television broadcasting over the air with regular antennae, now this, everything is being migrated to the internet.
>>106521757Who gives a fuck? If your job can't pay for itself it shouldn't exist. Rural faggots hate this simple fact and think the universe owes them the right to work whatever useless job they somehow managed to fit into their peanut brains.
>>106524823>If your job can't pay for itself it shouldn't existDon't let jannies see this
>>106522874changing "shit" to "shoot" isn't the same as permanently editing the content to remove scenes that portray whites as intelligent, well adjusted human beings
>>106526290>umm actually this long history of re-editing and censoring movies doesn't count because arbitrary reasonsGlad to that we've confirmed that the statement "they didn't modify movies and never will" is completely false.
You don't need more than 160kbps.
>he doesn't understand the graphs or that transparency depends on the individual
>I have special ears
i just use --vbr
you don't need audio
>>106520555need was never even a consideration
I've tried to move to Firefox from Chrome, but Firefox is just so fucking clunky it's unbelievable.It has so many annoying quirks that make it a pain to use.Chrome just fucking works.
>>106525297ah I See and yeah you're right, block origin lite isn't that good compared to block origin, it's lacking lot of stuff.
>OOOH MUH CLUNKY
>>106518247what do you miss in Firefox that Chrome can do? what do you find clunky in Firefox?
>>106518247it's slower but if you have an ancient pc you'll notice that
>>106518247Firefox is literally a clone of Chrome now, if you have problems with Firefox then you also have the same problems on Chrome
previous >>106452260
>>106524842>I'm on 4chins so all desktops must be cuhrazy and cringeThe only redditor here is you. Go back.
>>106526033I admire these mixed-orientation monitor setups. Is any one person responsible for setting or popularizing this recent trend?
>>106526219They're the same size, just different bezel sizes & angle of picture.
>>106526259This, and the monitor mount leans to one side. Absolutely disgusting.
Big search engines like Google track your activity and sell your data for ads — which is why a lot of us don’t search freely anymore. I’ll share a few alternatives I’ve found, and would love to hear what others are using too!**DuckDuckGo**: Best for untracked searching** Startpage**: Best for unprofiled browsing**MyAllSearch**: Clean interface and an emphasis on user privacy.**Qwant**: GDPR-protected searching**Startpage**: Combines the top results of multiple engines, primarily Gigablast and Yandex.
I'm going to submit this feedback>You're shit mojeek
>>106526144I'd rather get my advice from a legit source rather than a 9 year article from an AV vendor pushing their software lolResults speak for themselves:https://www.urlvoid.com/scan/myallsearch.com/https://transparencyreport.google.com/safe-browsing/search?url=myallsearch.com&hl=en
>>106525098you forgot brave search
My List:DuckDuckGosearXQwantSwisscowsStartpageMetaGerMyallsearch
>>106525951startpage does have ads but they don't target you.
>Lisp is a family of programming languages with a long history and a distinctive parenthesized prefix notation. There are many dialects of Lisp, including Common Lisp, Scheme, Clojure and Elisp.>Emacs is an extensible, customizable, self-documenting free/libre text editor and computing environment, with a Lisp interpreter at its core.>Emacs Resourceshttps://gnu.org/s/emacshttps://github.com/emacs-tw/awesome-emacshttps://github.com/systemcrafters/crafted-emacs>Learning EmacsC-h t (Interactive Tutorial)https://emacs.amodernist.comhttps://systemcrafters.net/emacs-from-scratchhttp://xahlee.info/emacshttps://emacs.tvComment too long. Click here to view the full text.
(cons* ...)or(append (list ...) ...)?
(cons* ...)
(append (list ...) ...)
>>106524702(define (cone . rest) (cons (reverse (cdr (reverse rest))) (car (reverse rest))))
(define (cone . rest) (cons (reverse (cdr (reverse rest))) (car (reverse rest))))
>>106524702`(,@(list ...) ...)[\code]
`(,@(list ...) ...)[\code]
>>106524702(defun nlist (&rest list) (let ((n (- (length list) 1))) (setf (nthcdr n list) (nth n list)) list))
(defun nlist (&rest list) (let ((n (- (length list) 1))) (setf (nthcdr n list) (nth n list)) list))
>>106524681>I'm not a CL expert so other than recognizing this as a compiled file I don't know what's going on here. Is this bytecode or architecure specific? Is there someway to recompile this while still using the package manager?An alternate solution is to download "Portacle" which is an Emacs already configured with Slime, Swank, SBCL, Quicklisp, and Paredit. It works out of the box.In that way you don't need to lose time configuring or troubleshooting things.
Previous /sdg/ thread : >>106503934>Beginner UIEasyDiffusion: https://easydiffusion.github.ioSwarmUI: https://github.com/mcmonkeyprojects/SwarmUI>Advanced UIComfyUI: https://github.com/comfyanonymous/ComfyUIForge Classic: https://github.com/Haoming02/sd-webui-forge-classicreForge: https://github.com/Panchovix/stable-diffusion-webui-reForgeStability Matrix: https://github.com/LykosAI/StabilityMatrix>Early Preview UIAniStudio: https://github.com/FizzleDorf/AniStudioComment too long. Click here to view the full text.
>>106524900wut
Are there any up-to-date standalone lora trainers that have any of this implemented?https://github.com/hako-mikan/sd-webui-traintrain?tab=readme-ov-file#multi-addift
>>106524271I'm sorry for my rude reply.
>>106522903Are you Asian?
>>106522903mating press
>>106478183Perfection. Can you drop where you found the theme?
I don't get it.Why is this still not the standard?
>>106516299I used to be a cashier when I was 19 and I was fast, what now motherfucker? Self checkout is miles faster if you're not a tard and know the interface layout
>>106516153i hate these shitty things. half the time you use them there's some retarded error that sets off an alarm and calls a wagie over. sorry asshole, niggers are snorting drain cleaner or vaseline or whatever the meme to get high is this week so we gotta call a wagie over to approve your no-no purchase
>>106519072I live in America and everywhere has them. even gas stations.
There has to be a way to make construction workers lose their jobs faster. Commieblocks would do the trick but nobody wants commieblocks.Also taxis, cooks and farming.
>>106526161Well really it solves itself because should taxis, cooks snd farmers lose their jobs commie blocks will make a comeback.
>NEW /g/ ALBUM: Shitposting Fundamentals (2nd edition)Watch: https://youtu.be/Wae8LdBoN_EDownload FLAC: https://dmpproductions.org/files/Album%2016_Shitposting%20Fundamentals%20%282nd%20edition%29/16_Shitposting_Fundamentals_%282nd_edition%29_flac.tar>/g/ makes a 17th albumTheme: Pirate musicTitle: [accepting suggestions]Deadline: 25th of OctoberListening party: 1st of November, 21:00 UTC>/g/ makes an 18th albumTheme: [Accepting suggestions]>Song submission rules/guidelinesUpload the file somewhere, preferably in a lossless format, and post the link here. If you want to update your track, make a new post.Comment too long. Click here to view the full text.
nvm what the hell, you have to manually increase the scan range for spectral synthesis in Serum 2 to make it scan fast?ok, there you go
ReaJavaScript
>>106522368'rrheascript
Has anyone tried the Slate VSX headphone + software combo, worth it? I can buy it for 240 bucks second hand
bump
Are there other programming languages as performant yet expressive as Rust?
>>106518844Rust syntax is disgusting so I’ll never use it
>>106524612>300 hours of full time-programmingIn the early episodes he spends most of his time explaining things and going on educational tangents. If you want to make game fast just use Unity or whatever. Everyone knows making your own engine with 0 libraries is not the way to do that.
>>106524738Because it's an educational stream about low level programming. It's not really about making a game, that's just dressing on top. Casey refuses to do any real game design because he's still traumatized from that one time he spent 3 years making a game before realizing it's not fun.
>>106524582>false dilemmathat's a lot of locking
>>106522655>>106522601>>106522572>>106522546avatarfagging is against the rules. pls cease and desist immediately.
I just said it hallucinated a chrome feature and it then said I'm not hallucinating. Is this the true power of ai?
>>106525847How many levels of wrong were you shooting for with this post, anon?Because I think you might get an entry in the Misc And Trivia section of Guiness World Records.
>>106525919i'm sorry you had to find out this way, but you don't have to get mad at me about it.
>>106525919lmaooo some of yall are way too emotionally attached to chatbots
>>106525956>>106526014I'm not mad at all - I'm actually quite entertained at how much, and how many levels of, wrong you managed to cram into two short sentences.I haven't seen this since I had a freetard (the same people who can't disable pride flags or updates, despite half the WWW explaining how to do it in excrutiating detail) try to explain to me how the Windows virtual memory manager works a few weeks ago.While he got WAY more wrong than you, his wrongness was spread over two, many-line posts, and (of course) he went ad hom when corrected, resulting in more wrong, but also equal levels of projection.
>>106526163>goes on impotent rant about how wrong you are about his chatbot waifu>doesn't point to any thing in specific that was not trueuh huh