[a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / r / s / t / u / v / vg / vm / vmg / vr / vrpg / vst / w / wg] [i / ic] [r9k / s4s / vip] [cm / hm / lgbt / y] [3 / aco / adv / an / bant / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / pw / qst / sci / soc / sp / tg / toy / trv / tv / vp / vt / wsg / wsr / x / xs] [Settings] [Search] [Mobile] [Home]
Board
Settings Mobile Home
/g/ - Technology

Name
Options
Subject
Comment
Verification
4chan Pass users can bypass this verification. [Learn More] [Login]
File
  • Please read the Rules and FAQ before posting.
  • You may highlight syntax and preserve whitespace by using [code] tags.

08/21/20New boards added: /vrpg/, /vmg/, /vst/ and /vm/
05/04/17New trial board added: /bant/ - International/Random
10/04/16New board for 4chan Pass users: /vip/ - Very Important Posts
[Hide] [Show All]


[Advertise on 4chan]

[Catalog] [Archive]

File: youtube.png (66 KB, 2560x1075)
66 KB
66 KB PNG
>just continues to get worse and worse
21 replies and 3 images omitted. Click here to view.
>>
>>106979492
The fuck is the point of a video platform with no content on it? These aren't imaginary weaknesses, no one uploads to these alternative sites.
>>
>>106979572
I got hit by this a few minutes ago. Any way to get around it, or do I have to pay for a burner phone number just to make a new account?
>>
>>106980182
All it'll do is restrict you from watching Adult Content (sexy videos and rated R movies).
If you don't care about anonymity, the credit card is easiest.
You could try to be cheeky and take a selfie of some random dude's face, but that might be illegal? Dunno. The email option is basically giving a third party receipts to your inbox that'll look for whether or not you are paying bills or shit like that to verify you are an adult.
>>
>>106977993
This isn't the problem. People think Youtube is a service, but it isn't. Youtube is a library of content, and unless some other platform has Youtube's library then there can be no competition.
>go to not!Youtube
>"hello yes I am looking for [funny video]"
>"sorry, we don't have that, it was only uploaded to Youtube. Go back there, or something."
And people upload to Youtube to begin with because that's where all the people are, and the people are there because that's where people upload. It's a vicious cycle and the only way to break it would be either a massive migration of content, or a massive deletion of content, or new rules that would make further uploading/viewing of content impossible.
>>
>>106980247
>sexy videos and rated R movies
Its a lot more than that. Youtube loves to arbitrarily age restrict videos for no reason. I found out I was ID required by attempting to watch one of those innocuous "why is this age restricted" videos.

File: 1730310678997347.mp4 (3.33 MB, 1080x1920)
3.33 MB
3.33 MB MP4
yesterday i was driving home from work and some script kiddie with a thinkpad fastfetch'd me. thank god my car had millitary-grade ICE and his ICEbreaker was shit he almost total'd my car.
now im putting faraday cages over everything i dont wanna get fastfetch'd
24 replies and 7 images omitted. Click here to view.
>>
>>106978875
you aight white boy
>>
>>106978974
no
when zoomers first run fastfetch thats how they react
>>
File: hacker.mp4 (3.65 MB, 1080x1920)
3.65 MB
3.65 MB MP4
>>106978809
>>106978821
>>106978949
nice try, I only use TOR from my tails OS usb
>>
File: 1741061743525712.gif (101 KB, 640x640)
101 KB
101 KB GIF
>>106980332
WTF
>>
>>106978949
Being this new
Sigh

File: csg.jpg (463 KB, 1920x1080)
463 KB
463 KB JPG
Everything is already from China, but here we discuss the cheap chink shit you see on various sites.
1st rule of /csg/: If it looks too good to be true, it probably is.

Useful links
>TWS IEM reviews: www.scarbir.com/
>Guide: csg-guide.neocities.org/
>Wiki: https://igwiki.lyci.de/wiki/Chink_Shit_General

>What headphones/earbuds should I buy?
>>>/g/iemg
>I want a cheap smartphone what should I buy?
>>>/g/spg/
>I want to buy some sort of emulation device
>>>/vr/hhg/


Comment too long. Click here to view the full text.
299 replies and 63 images omitted. Click here to view.
>>
i want an ebook reader but i use google play books and keep a collection there because I like reading off my phone

What is the solution?
>>
>>106978410
>>106978642
used to be great. for the past 2 years i've only used it to scout special prices for things that i want so i could buy them when BF comes with upsized cashback
these western CB sites don't really recognize 11.11 as a holiday and BF is when all the good stuff comes
>>
>>106979103
>>106979840
>>106979996
just get a tablet bro
>>
>>106980227
i'm the last anon
i have a tablet
it's not the same anon. it's not the same
>>
>>106978595
no tablet can imitate the reading experience of e-ink. or for that matter actual paper

File: file.png (253 KB, 1242x1149)
253 KB
253 KB PNG
imagine still falling for the rust scam
51 replies and 10 images omitted. Click here to view.
>>
>>106979510
fuck off cloudef
>>
>>106980237
>we could write an interpreter for c in safe rust, with the exact same semantics as c normally has. Now we could take an unsafe c program, and run it on top of our "safe" rust interpreter. It would have the exact same semantics as c normally has, hence it would be unsafe.
No, it actually wouldn't. C language has undefined behavior, but your interpreted will not have any. You do not implement a language in an abstract sense, but instead write an interpreter that matches the behavior where it is defined, and chooses some other behavior where standard is not defined. In order to actually inherit undefined behavior in this scenario, you would have to explicitly invoke undefined behavior in unsafe Rust wherever you attempt to interpret C code doing it. If you do not do that, all that behavior that is undefined under C standard is implementation defined in your interpreter.

>So the c program has an out of bounds access. Does the rust program?
The C program would contain out of bounds access and undefined behavior. But your interpreter running that code would not inherit either because in contrast to C code, it is not limited to what is defined by the C standard. It defines its own behavior for these nonstandard scenarios.
>>
>>106980301
>cloudef
What does that even mean
>>
>>106980237
This is pedantry, what is “out of bounds” is contextual, and in this case, no, the interpreted C code could not access another processes memory, protected memory, or hardware registers, unless the facility to do so was implemented in the interpreter. The aforementioned cases are where memory safety presents security concerns in the majority of cases, and are what are exploited to chain exploits and achieve code execution outside of the limited confines of the original process. If processes regularly received large, contiguous chunks of memory, many memory safety issues would not be easily exploitable, because you’d only be able to access your own programs memory in the majority of cases. However, most environments do not allocate memory like this, and reading past the bounds of an array or struct will land you in another programs memory.
>>
>>106980279
don't interrupt the comedy.
where else would you find a file format parser bug described as "undefined behavior at the program level that the compiler could not catch because of lacking type safety"
kek
i think i'm going to intermittently giggle for a week every time i remember this sentence.

File: 1731027083688934.png (459 KB, 1044x1213)
459 KB
459 KB PNG
Prices have already risen and they do not drop any more. As you can see year long waits are expected for 30TB+ HDDs.

The same applies to RAM and SSDs too, OpenAI plans to buy 40% of all NAND in the world next year, going directly to SK Hynix and Samsung, purchasing the wafers themselves before they are even turned into chips, other AI companies will snap up the rest, there will be nothing left for end users.

OpenAI's Stargate project has a $500 Billion budget and they plan to spend all of it.
3 replies omitted. Click here to view.
>>
>>106978343
It's a shitty clickbait headline
>may have to
>warns research
>>
>>106977834
when the bubble bursts I'll buy 5 of them off Sever Part Deals lmao
>>
>>106977834
>Prices are totally going to stay up after we invest a literal trillion and replace our drives after 5 years
These are going to be the freshest drives ever
>>
File: 1755177580162394.jpg (70 KB, 520x347)
70 KB
70 KB JPG
>>106977834
Imagine being a slave to 1's and 0's.
>>
>>106977834
so them getting more money = slower innovation?

File: fuc.png (37 KB, 860x452)
37 KB
37 KB PNG
I'm tech illiterate

If I keep win 10, should I dl an antivirus? Will it make a difference? If so, what is the least shit and bloated one out there?
Hell, id probably revert back to win xp and win 7 if most of my apps worked on there and if I knew what I was doing
Pirated shit for many years with just using basic windows defender, never had any problems

Should I just go to linux? I don't want it, but I don't want win 11 even more
30 replies and 4 images omitted. Click here to view.
>>
>>106978307
Not necessarily - e.g., Japanese companies' general acceptance of their hueg doujinshi scene.
Nintendo are being kinda weird there. Not as weird as Sony BMG tryna rootkit, like, the entire world in the 2000s, but still.
>>
File: 1752187640246023.webm (1.85 MB, 1280x718)
1.85 MB
1.85 MB WEBM
>>106973025
>upgraded from W10 to W11 25H2
>PC is working
>However...
>For some reasons, I can't start-up or reset Windows Firewall
>error 0x800706d9
Literally upgraded for security and I can't access my Firewall now.
>>
stop using mas
>>
>>106979945
I never have to use it on windows 7. I never let the OS phone home so I never get any issues with using it unlicensedd. M$ hates this one weird trick
>>
>>106979933
Could be worse. When I upgraded my first PC from Windows 8 to 10, the process bricked it. Dunno if she overheated or what, but the motherboard was gone. Just salvaged my most recent one from another overheating disaster (fuck Unity), I ain't taking the chance on that happening again.

Is there a more poorly made, broken piece of software than this shit?
105 replies and 10 images omitted. Click here to view.
>>
>>106956263
Logitech G HUB
>>
>>106956263
Jellyfin is not made by Microsoft, Oracle, or Adobe. So: yes, there is.
>>
>>106960624
>>106961173

Well honestly this is maybe the only prob that I've had with jellyfin since it came out. Its been prevalent all the time, the subtitles will always go out of sync if jumping in video, or starting it from anywhere else than start.

And I've run multiple jf instances with different osses and hw. Its always been fucked.

I still like it tho
>>
>>106967727
>>106970395
Just set up the *arrs and trash-guides.info for anime once, never touch it again. If your library is only anime maybe try shoko or seanime.
>>106976235
Try a client that isn't the jellyfin one. Plex does have better clients typically but the 3rd party jellyfin ones give it pretty much parity in my experience.
>>
>>106967727
Yeah, god forbid you want to have custom libraries with personalized organization categories that don't fall into the normie-tier metadata scheme
Would a regular folder hierarchy library really be that hard to implement, just like old DNLA servers had?

File: msedge_3qaMJml9nI.png (9 KB, 711x252)
9 KB
9 KB PNG
Is this true did the Japanese have fiber as early as in 2005?
7 replies omitted. Click here to view.
>>
File: 1745097172824405.png (1.73 MB, 1692x1720)
1.73 MB
1.73 MB PNG
We need more adoption
>>
>>106976780
That's a BS excuse and you know it. ISPs are raping everyone sucking up cash and doing NOTHING
>>
File: 1600967538466.jpg (48 KB, 462x476)
48 KB
48 KB JPG
I remember hearing that they even had a dedicated satellite network for some arcade or console game
and the "street culture" coming into early 10s waning everywhere else was only bolstered by having some arcade machines be able to connect to other machines at external arcades, so you'd always find some salaryman to spar with

the future seemed soo bright
>>
>>106976741
My local ISP offered two tiers of dial-up until 2022, alongside 1gbps/1gbps service. They've also been 100% fiber-to-the-home since 2015. So, dial-up over fiber.
>>
>>106976578
I'm sure the general idea of "Japan is a leader in broadband deployment" is true, but the US also had "early fiber" in 2005.
https://www.oklahoman.com/story/news/2001/05/10/sbc-plans-fiber-optic-links/62147365007/
https://www.cnet.com/tech/tech-industry/verizons-fiber-race-is-on/

>>106977420
>fiber to the building
Does the definition they're using here require at least an Ethernet handoff, or can they count DSL and cable as "fiber" as long as the conversion happens inside the building?

File: 1755317607933334.jpg (67 KB, 600x315)
67 KB
67 KB JPG
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.
208 replies and 28 images omitted. Click here to view.
>>
>>106979836
It's a UNIX fork like Linux is. A separate tree, most famously used as the base for macOS.
>>
>>106979867
It's the saving grace of macOS
I can fix shit because the term is similar
>>
>>106979867
>UNIX fork like Linux
No.
>>
Why does everything I can find on implementing transparency in i3 point to something that isn't even a standard anymore?
>>
is there a relatively user friendly way (gui based?) to mirror drives on linux? I want to stop using windows but I have a drive mirror set up in Microsoft storage spaces

Discussion of Free and Open Source Text-to-Image/Video Models

Prev: >>106975747

https://rentry.org/ldg-lazy-getting-started-guide

>UI
ComfyUI: https://github.com/comfyanonymous/ComfyUI
SwarmUI: https://github.com/mcmonkeyprojects/SwarmUI
re/Forge/Classic/Neo: https://rentry.org/ldg-lazy-getting-started-guide#reforgeclassicneo
SD.Next: https://github.com/vladmandic/sdnext
Wan2GP: https://github.com/deepbeepmeep/Wan2GP

>Checkpoints, LoRAs, Upscalers, & Workflows
https://civitai.com

Comment too long. Click here to view the full text.
206 replies and 36 images omitted. Click here to view.
>>
>>106980315
? ah, I was talking about the actual model, not the lora, I didn't notice
>>
>>106980316
well its merely an aetheric tune so
>>
>>106980316
no its not?
>>
>>106980340
it is, crushes details and slops the output. if you don't think so you need to get your fucking eyes checked
>>
>>106980343
show me comparisons

File: ChristmasKeeb.jpg (200 KB, 1462x727)
200 KB
200 KB JPG
Stroke edition

Previous: >>106926847

>Keyboard recommendation template:
https://pastebin.com/n220xk9V (embed)

>Find vendors
https://www.alexotos.com/keyboard-vendor-list // Up-to-date list of reputable vendors with brief descriptions
https://keycaplendar.firebaseapp.com // Tracker for current and upcoming keycap group buys

>This keyboard stuff is so expensive!
https://aliexpress.com (or Taobao if you know how)

>Learn about Cherry MX switches

Comment too long. Click here to view the full text.
241 replies and 38 images omitted. Click here to view.
>>
>>106978187
Don't listen to that sperg, it's actually crazy what he said and he has an agenda that is anathema to the spirit of mechanical keyboards. Restoring a model f is a fun, rewarding project and you are lucky to find one.
>>
Shit audio, I know, but even here you can hear the lubed and filmed BCPs sound deeper. The downstroke feels positively luxe now as well.
Before and after:
>https://jumpshare.com/s/XTimpyW8l860T9XX2s4b
>>
>>106974896
It's not "self-evident" because it's not obvious that they were trying to get the same red. One obviously leans a bit darker and orange, more Vermillion, while the other leans a toward Amaranth. That's not 'the same color but less', it's different.

It's easy to imagine someone wanting the Swagkeys color and being disappointed if it turned out they ordered something that looked like the GMK. It's also easy to imagine the converse. That's not "brutal" lol. And all of Swagkeys' promotional pics for the set look like in your pics so it's as-advertised, too. Something GMK can't always do with their group buys!
>>
File: i.shgcdn.jpg (92 KB, 1512x1280)
92 KB
92 KB JPG
>>106976602
>nuphy
seems to be air75.
btw there's also air75 HE, with low profile magnetic switches. they seem to use magnets in the side of the switch, which solves the need for having the sensor right under the switch. but they also advertise 0.01mm precision, which is tmr not he performance. weird
>>
>>106980322
they have webpage config for keyboard, tried looking at their demo:
https://drive.nuphy.io/?isDemoMode=true#/demoSelect
but I noticed no way of setting hall effect keys as controller joystick. which for me is the most interesting application for magnetic switches (tho this clearly varies from person to person).
what other keyboard apart from keychron can set controller joystick for magnetic switches?

File: Jared Taylor PC Magazine.png (2.51 MB, 1924x1535)
2.51 MB
2.51 MB PNG
Picrel is one of mine. He later went on to become a popular author and political theorist.
>>
forgot source: https://youtu.be/eAiZBUYNUBA?t=311
>>
>>106979564
Edsger Dijkstra for hating on plebs.
>>
>>106979564
>>106979569
giving me cuck vibes
>>
>>106979564
Wow, I only know Jared Taylor from his /pol/ tier content. He's a very talented hWhite man.
>>
>>106979564
and just like that I like Jared Taylor even more. I didn't think it was possible.

Hello ni/g/gers
i would like to learn cyber security and whatnot
i'm currently taking some college courses and learning python on the side.

What are some games/resources where I can do more hands on stuff like simulate brute force attacks, write some scripts, infect a system, etc. As you can tell I am very new to this world but it seems like a cool venture to go on.
2 replies omitted. Click here to view.
>>
File: shaka-zulu-life.jpg (105 KB, 1200x690)
105 KB
105 KB JPG
Get a job Ni/g/ger
>>
Hello Picard here, I don't think ethnics like you should be handling anything cyber-security.
>>
File: 1754167090865139.jpg (33 KB, 400x400)
33 KB
33 KB JPG
You don't "learn" cybersecurity. It's not a fucking trade school skill. It's an innate way of thinking that you either have or you don't. The fact that you're asking for games and resources proves you don't have it. No amount of python tutorials will ever fix the fundamental flaw in your brain. You are a consumer, not a creator. Give up now and save yourself the time.
>>
>>106980310
>Give up now and save yourself the time.
no thanks
>>
>>106980310
So you're telling me that the only way to be a Cyber Security Technician is to be born a Brahmin caste Hindu from New Delhi?

how do i are becom bilionaire at 20?
17 replies omitted. Click here to view.
>>
File: 1761189467160.gif (336 KB, 480x360)
336 KB
336 KB GIF
>be born to a Jewish billionaire family or be related/close friends with Jewish billionaire families and also be Jewish yourself. Or marry into jewish billionaire families. Sadly, your family has to be worth something or the jews won't marry you in. Maybe if your dad is in a high political position and they plan on using him and/or grooming you then you have a chance. Even then we're talking millions tops not billions
>>
>>106974527
Post more of this.
>>
>>106974527
20 is too early. I suggest a way that'll help you get there by four mid30s ans ealy 40s. Join politics and become the minister for public works department in any third world country.
>>
I assume Jay is leaving this up because a) he's been gooning for 10 hours or b) he thinks she looks adult enough to not get in trouble for keeping it up. Either way he's a retarded nigger and will be raped in prison. Report OP as CSAM via Kikeflare so someone higher up sees this thread.

https://abuse.cloudflare.com/
>>
>This thread requires an aged IP due to a generic block
Yeah, Jay definitely knows what OP is.

File: 2025-10-22_043730.jpg (103 KB, 444x582)
103 KB
103 KB JPG
Why is `Return Youtube Dislike` now throwing ads all of a sudden? Anyone else start getting this?

>Still using YT in current year +X
I know. Where else am I going to watch VHS recordings of Toonami and Adult Swim 2002 blocks with commercials?
49 replies and 4 images omitted. Click here to view.
>>
>>106971454
the extension has a higher accuracy for most disliked videos by design which is what i use it for.
>>
>>106976379
Loled at the magamouthbreather still miffed by dark Brandon.
>>
>>106971355
>Video game and Hollywood studios
jews and their trannissary class of medical experiments
>>
>>106971813
grease monkey
>>
>>106971172
NewPipe (or superior forks), or
Seal (custom command) + Orbot (power user mode), all off Neo Store (get on github).

Custom Command:
-o "%(id)s.%(title)s.%(ext)s" --proxy "socks5://$RANDOM:$RANDOM@127.0.0.1:9050" --restrict-filenames --trim-filenames 64 --recode-video mp4 --socket-timeout 90 --retries "infinite" --retry-sleep=1


Optionally add something like this for video sizes:
--format-sort "res:720"


SponsorBlock categories:
--sponsorblock-remove "sponsor,selfpromo,interaction,music_offtopic" 


Comment too long. Click here to view the full text.


[Advertise on 4chan]

Delete Post: [File Only] Style:
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
[Disable Mobile View / Use Desktop Site]

[Enable Mobile View / Use Mobile Site]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.