6
md5: 94dc6e09853572df4e1b1a7081424f42
๐
Is saving on WaybackMachine broken?
>>>/wsr/1536204
I can't save (archive) these:
https://rawr4firefall.com/soundtrack/bootleg/bootleg.7z
https://rawr4firefall.com/soundtrack/original/original.7z
https://rawr4firefall.com/soundtrack/fan/fan.7z
https://rawr4firefall.com/research/soundtrack
How do I automatically close this notification on xt?
I don't under how dbms work even after I read what it does and read about update, create etc. Whats the fastest way for a retard to learn and create his own dbms by himself.
>>106171691Idk about fastest way, but usually they cover concepts in a undergrad system software course which make this obvious. At least how to write a shitty one.
>>106170513 (OP)Ignore the girl, what computer and OS and trading platform is she using? Is this AI?
My mouse scroll is scrolling infinitely in the last scrolled direction when scrolling menus in games like Skyrim, where there is no access to raw mouse input.
I'm house sitting hours away from home and apparently not leaving in a mouse fucks with MMB when remote streaming https://github.com/LizardByte/Sunshine/issues/1873
Is there mouse-faking software I can use that doesn't necessitate reboot?
>>106171735oh yes let me just enroll in a course and wait another year until I can find out how to create my own dbms. Thank you for the advice retard.
>>106172080bitfinex
it says right there are you blind
so when I built my pc I hit the power button to see if it would start up and check the leds on the mobo, it would power on the instant I pressed the button on the case. but now after connecting a monitor, all my usb shit, and installing an OS, whenever I click the power button there is like a second delay before it powers up.
why is that?
>>106172348hybrid sleep probably
>>106170513 (OP)how do i make sure that tor actually resets to its default position? it used to be that it would happen automatically when i either hit "new identity" or deleted & reinstalled. now its just fuckin staying there.
any help would be greatly appreaciated
>>106172665included this example image because another anon was confused about what i meant but i checked backed to last and the thread was archived
If a site has prevented Ctrl + C, what"s the best around it?
>>106172415nah I disable all that shit
Why is it called big tech?
Is getting into iptv services a good thing? If so, which ones are decent enough?
>>106172080thats an asian she has seven vhite roses you have heard of rosespeak computer is maybe elitebook very good computer but worth nearly nothing os is not relevant trading is done for me i am more curious about words she guides
Why is my pc suddenly giving me โcannot verify identity of the device because date and timeโ errors when I try to remote desktop? Bloody thing was working yesterday
>>106173816How old is it? Maybe the cmos battery finally gave out.
I wanna get my mom a laptop since her current one is probably a decade old now and it runs slow and shit.
Anything good under ยฃ700-800 range? She mostly used her laptop for emails, storing and viewing pictures she took and watching videos. Obviously something not beefy because she doesn't need it.
>>106174043Any laptop with a ryzen cpu should be fine. Search laptop on amazon and filter cpu type to amd.
>>106174043Even I want it
https://www.amazon.com/Lenovo-ThinkPad-Business-Aluminium-Accessories/dp/B0BZ54NQZP
I'm running Linux Mint 21.2, should it not be considered a bug that it seems only possible to set the output volume of a program while it is playing audio.
In both pavucontrol under the playback tab and the application tab of sound settings an application's volume slider will disappear once audio has finished playing.
I guess is something to do with the way the sound system works.
>>106173401because it's big
>>106174199No, that's just how pipewire works
>>106173351You can always open the dev tools (if they detect that then do it in another tab). I use one of those anti-click jacking, anti-pointer event extensions to solve it though
Which way to go, Python user?
python -m venv myenv
pip install pipx && pipx install black
>>106172348Device enumeration during POST takes time.
If you connect USB devices, they'll be initialised and EFI drivers will be loaded for USB storage, networking, input, serial, and so on.
>>106173625Do you mean to consoom, or to provide IPTV?
>>106174190That's ancient.
>>106174043Whatever you do, avoid Acer and Asus Vivobook. Perhaps read reviews to identify decent laptops...
Also check here for deals from time to time: https://www.hotukdeals.com/tag/laptop
>>106175042What do you want to accomplish?
pip installs packages into a virtualenv, pix installs applications into separate virtualenvs for each.
Anything like ChatGPT that can analyze audio? Such as uploading a short music clip and asking what are the instruments being used etc
>>106175711HAVE YOU TRIED ASKING THAT QUESTION TO CHATGPT
JUST A THOUGHT
>>106175711YAMNet with some fine-tuning using NSynth.
>>106175798Hey, hey, hey, heeey... calm down, little buddy! What's the matter? No shiatsu this morning?
>>106175855just stop asking stupid questions that can be easily answered by Google or ChatGPT
dumbass
>>106175923I didn't ask, you retarded fuck.
>>106174018Itโs not that old at all, and in fact has no problem keeping time
God I feel like such a retard when it comes to networking
hi /g/
why does having the original JPEG of an image FEEL different now? like they're exposed, trade secrets or summat
There's some twitter accounts that xcancel seems unable to scrape properly anymore, in particular they're not showing any uploaded media. For some reason, it's only some accounts, there's others that work fine. They're all anime porn artists so it's not like all porn is blocked or anything, some just work and some don't.
Is there another nitter instance that is actually functional, or some other way to view them?
>>106173401Big tech refers to the corporations centered on technology that are big. In this context big means something like hundreds of billions of $ in valuation, though there's no hard cutoff or definition
im fucking with my own web projeect. my current approach is to use html, css, javascript, ajax, php, sql. i heard about react recently and was wondering how it would be used here. is it meant to use js to generate html and css procedurally?
>>106174043Buy a used thinkpad. T490 for example.
>>106175179>That's ancient.Anon it's from 2021. CPUs have barely improved for a decade and you literally said your mom doesn't even need much, you're buying her a facebook machine not a productivity workstation.
>>106178100Yep. Frameworks like React work by basically sending off a placeholder blank HTML page and a ton of javascript to the web browser, and the react javacsript then executes and constructs the actual website's HTML in-situ.
If this sounds backwards compared to actually sending the page HTML to the client, it is; but it makes a bit of sense in the context of very dynamic sites, or "web apps", where the page layout might change dramatically depending on what the user does. This is particularly common with so-called "single page applications", i.e. where an entire website just lives on a single page so instead of loading a new HTML page from the server any new layouts are rendered in the browser using javascript.
So if you're re-rendering huge chunks of the HTML dynamically anyway, it's not such a big cost to render the initial page in the browser too.
But not every site is gonna do that, so people then came up with "server-side rendering" which basically runs react on your server and creates the initial state of the page as actual HTML and CSS, and serves that directly to the user, with the react scripts obviously still running but they don't have to render the entire page on initial load anymore. This way lazy developers who only know how to use react can use it like usual, but the user's browser gets an actually usable HTML page on load.
>>106178348damn i didn't think about the difficulty of manually configuring a dynamic page through my own javascript logic couple with the html/css components, but if the user could do stuff like resize textfields, or if there's a lot of animatable o-hover stuff like highlighting, im guessing that wouldn't be feasible to just directly code via js.
so the user gets a react script for single page apps, but normal html pages generated by react if it's a more traditional page layout with static content? jesus this is gonna fuck my head up for a bit.
Is this true?
I am currently learning how to codeโฆ
Does anyone know any tech or programming youtubers that aren't faggot personalities, but people that actually want to spread valuable information or make passionately talk about the subject?
Are there any decent HTPC frontend alternative to Kodi? Preferably something that doesn't require changing filenames and directory structure to match its arbitrary limitations?
>>106178100React is javascript.
Might be easier to just download play around with it.
>>106178564Learn to read. Video tutorials suck and on youtube they are probably click-bait from "tech influencer"
>>106178540I mean browsers always do the same thing, they render an HTML document, apply CSS styles, and execute any JS code. All pages need at least an HTML document.
What react does is that you, as a developer, define the "HTML pages" as part of your React code, so there's no separate "page.html" file anywhere. React then sends a nearly-empty HTML to the browser, and uses all your React code to then build up the actual full web page.
Anything you can do with React you can also do with "normal" webpages, you'd just need to write a bunch of JS code that might end up quite big if what you're doing is very complex. React automates this by letting you define "react components" that mix html-like markup and JS code, and then the react library itself handles all the actual logic on how to make HTML pages out of this. But other than making it easier to write, it's not that different than just making a "page.html" that's almost empty and then writing a bunch of javascript to manually insert all the elements you want, and then having a bunch of logic in your code to edit, change and remove elements as needed.
The difference between SPAs and more static pages is just how useful react is. It'll work the same way every time, but if you want an SPA, it would be a shitton of work to write by hand, whereas React makes it reasonably easy. If you want a static site, it'd be pretty easy to write by hand, so React is just "bloat" in the sense that you COULD serve a complete "page.html" that the user's browser could just display straight up, but if you're using react then instead it gets a blank page and a ton of javascript and then runs all that javascript which creates the final page, and only then the user can actually see the real page; and if the page is meant to be mostly static then this entire process is kind of unnecessary.
>>106178540>>106179775Ran out of space: server side rendering is therefore a very roundabout hack to let you write the site using react but then have the server pre-run the javascript to create the HTML page so it can actually serve a complete HTML to the browser and skip most of the process of dynamically building it in javascript, which is much faster for users and puts way less load on their browser.
It's retarded (I'm sure you can understand why if you've grasped the concept of react by now), and the reason it exists is basically if say you have a dynamic site that you build entirely using react and then you have a few static pages like an "about" page or whatever, you can include them as part of the react site and just have them pre-rendered, rather than having to maintain both react and plain html pages. It lets devs be lazy basically. Some devs also are so lazy and/or incompetent that they only know react (or vue or similar frameworks) and never want to write normal HTML ever again, even for mostly static sites where you really don't need any frameworks.
Has anyone actually bought one of those cheap used Epyc combo deals on eBay or Aliexpress? What did you buy and what was your experience?
>>106178963I just want white noise in the background. I would never watch a shitty "programming/tech tutorial"
>>106179854is there a way to AJAX it so that only some interactive elements hinge on react but it all operates on a static canvas with a fixed html/css configuration?
I have an old Macbook Pro I want to pawn/sell. Whats the process for (totally) wiping the thing? I know data has to be rewritten for it to really be deleted, but Im too much of a noob to know the actual process.
I modded my ps4 with goldhen or whatever when the 9.0 jailbreak came out. Haven't really touched it since. Just been waiting for a homebrew or something to come out to let me play my installed disc games without putting the disc in. I know there's a homebrew to fully dump the games and install but I don't wanna have to delete and reinstall my whole library just to do that.
I also have all the ps+ free games I got over the years still installed, is there a way to play those?
Any general tips or updates to goldhen I should check out? My ps4s just been collecting dust and I don't really remember how any of the hen stuff works
isn't the best way to safely delete a storage by just encrypting it entirely?
after that there should no data left to restore?
>>106180482they say some data can still be extracted from SSDs even after a full write over
>>106180482Nah it's orthogonal. I mean yes, it will usually work well enough, but they do different things with different tradeoffs.
Encrypting will basically overwrite the storage with an encrypted version of the same. One you throw away the encryption key, it might as well be random data so you're right that it will work to erase the data, but you could've just used random data from the start and it'd use less CPU than actually running the encryption operation - the act of encrypting the original data is entirely redundant and useless here. Or you can even use all 0s and it's also fine for deleting data.
It also used to be possible to maybe get hints of the original data if you overwrote it only once, hence the idea that you have to overwrite it three times or even 24 times or whatever. On modern drives this is basically impossible so overwriting just once is fine, but again encryption is just equivalent to overwriting once. If you are one of those people who want to overwrite it three times anyway "just to be extra sure" (even though it's placebo), encrypting it is not gonna achieve that. Like I said though it's fine on basically all storage from the last two decades or so.
There is one aspect in which encrypting the drive might actually be worse - and it's that it won't overwrite empty areas of the drive, so you will leak information about how much of the drive was full. That may be completely worthless information, but it is still information that would not be available if you did a full overwrite.
Also this
>>106180548, and again encrypting here is completely equivalent to a single overwrite pass: there may be some old data left in cache in both cases.
>>106180548>>106180585>Data left in SSD after full write overHow is that even possible?
>>106180585Actually I just thought about it and for SSDs it may be even worse: because wear levelling tries to distribute writes across the drive, if you don't do a full overwrite, "encrypting" your data naively may actually leave a LOT of old data still there in the memory cells. E.g. in the extreme case, if you take a brand new drive, fill it exactly 50% with data, then decide you want to wipe it so you encrypt that data, the controller may well decide to write your encrypted data to exactly the other half (that was blank), and then just mark the first half as "empty sectors" even though all your old data is still there.
So a full write over is important.
>>106180599Wear levelling and over-provisioning. Flash cells wear out on writes, so SSD controllers try to spread out writes evenly to every part of the storage so you don't end up with half of the storage having failed while the other half is still brand new.
If you were to fill up close to 100% of the storage this would no longer be possible, so nowadays all manufacturers included over-provisioned capacity, i.e. some extra storage available to the controller's firmware but never exposed to the rest of the computer. That way, even if you fill up 100% of the disk, there is some hidden empty space that the controller can use to shuffle writes around. The problem is that because it's completely hidden from everything accessing the disk from the outside, it's impossible to make sure you actually overwrite 100% of the physical storage.
In theory, if you keep writing to the disk the controller will likely try to distribute the writes evenly so eventually every physical flash cell will get overwritten, but there is absolutely no way to know that for sure and there is no way to know what algorithm the firmware uses: maybe it writes to one set of cells 20 times before directing writes to new cells, or maybe it picks them randomly and you get really unlucky, etc.
>>106180778Would the data hidden by the controller be of use to anyone? Can it be used to recover info besides whats in the controller?
>>106180797NTA but I wouldn't risk it
>>106180797Yes, it's literally just data that you wrote to disk previously, and just happened to not be overwritten.
Imagine you have a 100GB SSD. It comes with firmware overprovisioning of 10%, so there's actually 110GB of storage, though your computer will only ever see it as a 100GB SSD. You fill it with 100GB of holocaust denial material, but now you're travelling to germany so you want to wipe it, so you delete everything, and then write 100GB of random data to it.
Imagine the controller spreads out writes in a round-robin manner. The first time you filled up the drive with 100GB, you left 10GB of unused storage. The second time you write 100GB, the controller will first write it to those cells that are still brand new, and then write the other 90GB to the cells that had your previous data.
The result is that the drive reports that it's full of random data, but if the german authorities confiscate it and connect directly to the flash storage cells bypassing the controller, they will find 10GB of holocaust denial material that never got overwritten.
>>106180860So how do you mitigate this?
>>106180905>>106180908You cant just do 2 passes?
>>106170513 (OP)My text messaging app just took a shit, what should I get, using a Google Pixel
mount
md5: 9ff378c39a5841fc76dc29aa043a7d3a
๐
This kind of desk mount will fuck up my ikea malm desk, right? How do i prevent that? I'm planning to mount two of those on one desk
>>106180933Problem is that like I said controller firmwares are closed source so there's never a 100% guarantee that you've overwritten everything. Maybe it just picks where to write at random, and you can do 10 passes and it will overwrite most of it but like 500mb of the old data will remain because you didn't get 100% lucky. Maybe the drive manufacturer decided to do a little trolling and at some point during the SSD's life the controller will pick like 1GB of data and just never overwrite it again, and if you're unlucky that will happen to be holocaust denial material. Yeah this is very unlikely but the point is that you can't know wtf the firmware is doing.
Realistically, if you're selling an old laptop, almost nobody who buys it will have a sufficiently advanced electronics repair station to access the flash chips directly and analyse the remaining data on them. It's not like when you just forget to overwrite the data and anyone who buys it can just run photorec to get it all back - controllers normally actually hide it properly, the over-provisioned chunks are marked as "not in use" and there's no way to read them directly. So it's only a problem if you expect the drive to ever be handled by an actual forensics department.
But if you're throwing away an old drive, big hammer or physical heat (e.g. torch/lighter against the flash chips inside) is a cheap and easy way to get peace of mind.
Also, a good preventative method is to encrypt your data BEFORE you start using the drive. If nobody has your passphrase, then nobody can read the data, deleted or not, and this whole thing doesn't matter at all, and you can sell it, give it or throw it away without any issues - again, provided your passphrase is secure and nobody else has it.
>>106181028I use something similar and unless your desk is solid wood, it's going to warp the area that its mounted to especially if your monitors are heavy.
>>106181035Makes sense.
Does Dban work on Mac?
>>106181028It's prooooobably fine. I got a couple on my cheap ikea MDF desk, including a pretty heavy 27'' curved monitor (though not a megaultrawide, to be fair). It did press a small dent on the underside of my desk, so if you want to keep it in pristine condition it's not good, but structurally it's sound and has remained sturdy for several years by now. IMO shitty MDF furniture is not some sort of heirloom, and nobody will be regularly looking under your desk, so the dent doesn't matter to me.
If you really want to prevent this, or for peace of mind especially if your monitor is fuckhueg, add a plank of hardwood between the desk and the vise. Especially on the underside where the contact point is typically a lot smaller. It'll distribute the force and lower the pressure. Or it doesn't have to be hardwood, just some solid wood, a softwood will also get dented but it won't crack and worst case it's a tiny piece of scrap lumber that you can just replace.
hdmi
md5: af3d7d0bcb93729e9a10dfc83dfae792
๐
I just noticed that my speakers have an HDMI ARC input. Can I just plug in a second HDMI cable from my GPU and get it to work? Because Windows sound manager shows the monitor but not any other connected HDMI device. The monitor has no built-in speakers and everything else is unplugged. Can the RTX series be configured to send HDMI ARC or is this just for normal tv sets?
>>106181028It will absolutely destroy the desk.
I did the same, one monitor still warped the desk.
>>106181126I think you'll have to try and see. Never heard of this being done.
Keep in mind that there's no advantage compared to SPDIF because GPUs lack HDMI CEC, so you'll have to do everything manually every time.
>>106181314I tried before making the post because I'm not a buffoon. It didn't work. Right now I'm using a cheap ass aux cable. ChatGTP says I need a new 2.1 cable but I'm not buying shit before I get a definite answer.
I have x3 24inch 1080p monitors, and I am planning on upgrading at least the middle one to 27inch 1440p. Is there any real "point" besides aesthetics to upgrade all 3? The other monitors are only used for media/browsing with gaming taking place on the middle one. Guess I buy 1 and see how I feel? Seems expensive to upgrade for possibly no reason.
>>106181028Never had problems with Idasen, but that's a ~30mm MDF tabletop. You could always use a scrap piece of wood to spread the mounting force. I doubt it'll snap the tabletop off either way. Do you actually care about the resale value of a glit dressing table?
>>106178557currently it looks like the safe careers are those that require real world interaction.
>>106181028can't you just put a plank on the underside of the table, or thin metal sheet? preferably above as well if you don't care about looking at the plank/sheet
should spread out the weight of the monitor
>>106170513 (OP)Just got a Ubiquiti gateway fiber, after a move I intend to put together a proper NVR but the m.2 slot will work for now. The prices are pretty good on enterprise 22110 gen 3 nvme drives (~2TB for ~$100), the endurance is what I'm after but I'm worried about the temps I'm not sure the built in fan will be able to keep it under control. Anyone try this or have any experience with this class of drives in a low airflow device, I tend to think the idle temps will be too much.
>>106182788Flash likes high temps. As long as the controller isn't constantly at 100C and throttling it's fine.
>>106182803That's not exactly true, it's an NVR and with the constant writes extended time at higher temps will shorten lifespan. The 22110 drives I'm looking at are double sided enterprise drives, intended to be used in servers with high airflow not prosumer network gear with a 'silent' fan. And being enterprise gear they don't have idle states like consumer drives, we're talking >8W at idle. I pretty much already know it's not going to work but I'm hoping someone else was dumb enough to try it and can goad me into doing it anyway.
Got a new full PC I'm about to build up, my current PC is using a SATA SSD as the OS drive/only drive in the computer. New build has an NVMe that I'll use for the OS and most things. Will I be able to plug in the SATA SSD to the new build after fully setting everything up and have access to those files without reformatting it? Old SSD has Windows 10 and the new one will have 11. I'm externally backing up my important art/photo/design projects anyways but I have some things that aren't as important but they're easy to redownload, but will take a while.
>>106179901I was literally looking at them too earlier this week.
>>106181862A plank helps, but it needs to be slightly softer than the shitty table, otherwise the plank itself dents the table.
>t. ruined an IKEA table this way, at least it was free>>106182953Yes, you'll have access to the data easily. Of you use disk encryption, write down the passphrase/recovery code for the disk while it's in your old computer.
>>106183213Awesome, thank you.
I'm on Windows 11 and I wanted to adjust when the screen turns off on the login screen, but I accidentally set it to 1 minute and now I have no idea where that setting is. I feel like it was in one of the options in the Power Options section of the Control Panel window, but I can't find it anywhere.
I limited my processors to play an old game using msconfig. I went back and unchecked the box to make it run normally again and I'm stuck in a BSoD loop, tried repairs using cmd promt to make sure there's no limit on the procs anymore and ran some other bootrec. Can anyone please help me figure out how to get things back to normal?
Are there extension cords with USB ports that deliver power as much as chargers?
>>106185454>does xyz exist?>post picrel of xyzgee i wonder
an ethernet port on my modem/router is bad, and now i don't have enough ports. is an ethernet switch what i need?
>>106185870Most of what I've seen only have 3 Amps for the USB.
>>106185870answer the question or fuck off tranny
I got a couple hundred jpg files to convert to png. what should I use to convert it?
>>106185964is there a difference between a switch and a hub?
>>106186051https://github.com/victorvde/jpeg2png
>>106186056not him but a switch intelligently routes traffic between only the ports the traffic is intended for, while a hub simply repeats all traffic to all ports
a hub is a much simpler device, and has limited performance and creates a lot of collisions. i'm not sure if anybody makes/sells hubs any more. i used to have one over 20 years ago but i wouldn't get one today
>>106186427damn that's some good shit right there
My MX518 crapped out
Looking for a decent all around mouse to replace it, wired, doesn't have any fancy shmansy gaymer shit, maybe like $60? Was considering Deathadder V3, what would you recommend?
>>106170513 (OP)Is waifu2x still a good choice for image upscaling or has something better came out in the last 5 years?
>>106185964>>106186056>>106186437Hubs are ancient and obsolete tech but I guess some people still use the word.
>>106186051Why would anyone do that?
>>106185941Yes, there's not much market for cramming a nice charger inside an extension cord.
why is my instagram on my pc blurry? I'll open an image and it will be great quality then suddenly become blurry instead. pic related. I use firefox and I have done so for my whole life and it's never mattered.
Is it true that God of our universe has name - Steve
>>106186888>Why would anyone do that?well fpr one,
>>106186427
>>106181556>Guess I buy 1 and see how I feel? Seems expensive to upgrade for possibly no reason.I agree with your intuition.
The main point would be if you use them for ultra-widescreen triple monitor gaming. If you don't, then it's basically just vanity yeah.
>>106182788>>106182876Are you able to put a heatsink on them?
>>106186051convert to webp
>>106177316I've had the same issue over on nitter.net
I hope it's not due to the new age verification nonsense.
>>106188097Only a very slim one on one side, all the drives I'm looking at are dual sided and the tray makes it impossible to put one on the other side.
best shareX setting for recording video gif to 4chan?
>>106170513 (OP)what the point of doing this shit?
>>106188342You mean a webm? Just record whatever you want and then use math.
>>106186051Converting lossy to lossless image is a placebi and waste of space
Any torrent chads here?
>Find TV series torrent
>77GB
>Estimated 20 hours to download
>Start downloading as I go to sleep
>Wake up and it's done
>Haven't been asleep 20 hours
>Sometimes speeds up dramatically after a while though
>Open folder
>There's one subfolder in there with season one when there should be ten
>Open season one folder
>Has one episode in
>Play it
>Flashes on and off again instantly
>Check file size
>16kb
What the fuck bros?
>>106189376Seed-box and less people on your network streaming at night. The bandwidth of a zip code affects everyone with the same ISP.
>>106189244it can prevent generational loss from further conversions
>>106189376Yeah it got fucked somehow. Try again.
can those fancy color calibrated monitors that have 100% sRGB and 100% rec.709 handle HDR content?
>>106170513 (OP)back when 4chanx addon worked in chrome i was able to copy paste images instead of saving them in my pc and then upload them to reply.
After installing tampermonkey and the 4chanx script i am able to do most of the stuff i used to except copy pasting images, is there a script somewhere to add it?
Also why it takes an extra refresh to load the 4chanx script in every thread? it's annoying that all features don't work immediately unless you give it an extra refresh
>>106189990Depends. The HDR spec has a bunch of stuff about brightness, so it's somewhat orthogonal. They possibly can, but you'd have to check
>>106186518for mice with similar shape, check this:
https://www.eloshapes.com/mouse/find-similar?p=logitech-mx518
Help a niggas out /g/
My desktop is constantly having troubles with internet speed. It's connected over wifi with a pcie card. Drivers are installed but for some reason speed regularly drops bellow 1 mbit/s and no other devices (laptop and phone) have this issue. Any pointers to what could be the problem?
I'm an idiot, yes. But I am really curious about this. Is there something similar like Qubes OS but for docker? If I use VM and then Qubes OS, it's too much resource consumption. I just want to point my browser to the container that's different internet protocol and easily switch back to normal internet, but I'm not an expert in these secure processes. I already had to install Tunnel, IPFS, and now another more because of a shitty censorship. Please help, I already have a lot of installed virtual network shit....
>>106186518chinese gaming mouse
>>106190104Change your energy profile to performance mode?
>>106190141Changing your DNS didn't help with censorship? Might want to invest in a VPS and then wireguard to it to use it as a vpn.
>>106190182Not 100% sure this it is what you mean since I'm using German but I've already set it to max performance
>>106190242Change wireless channel to one that doesn't conflict with neighbors? Use a wifi analyzer to see what your neighbors are using and then change your own in router settings.
>>106190257I've also done that. All the basic things that come up when you google this issue I've done but the problem is still there...
>>106190290Make sure bios is up to date, and read the motherboard manual to see if there are shared PCI ports; If there is, swap ports around to you don't have conflict. Check to see if there are multiple drivers for the device installed, remove the one windows installed and make sure the one you downloaded/installed isn't a beta driver.
>>106190347Drivers were already in order, but I've updated to bios now. Doubtful it will change anything. Inserting the card into the other pcie slot had the pc refusing to boot so I assume it's in the correct one since I couldn't find anything on pcie lanes in the manual.
>>106183501advanced power settings in a power plan?
>>106185070After the bsod loops a few times, does it show the menu where you can boot into recovery mode?
I know it's expensive, but worth it?
t. back problems
>>106191368>t. back problemswalk 5 miles per day
>>106191235An absolutely ancient MSI 970 Gaming
>>106191368In general high quality chairs are worth it BUT there is no single chair that everyone will find the most comfortable. This means that you must try a few yourself, or be confident in the return policy but even that is a mediocre option if you don't know what else is possible; trying multiple chairs is way better than just trying a single one.
Personally I have a very low opinion of herman miller chairs but a lot of people do like them. I've been using HAG chairs for the past decade or so. But again, you really ought to find a place where you can try multiple chairs from multiple brands and judge for yourself.
Also look around for refurbished office furniture outlets, high end chairs often go for way way cheaper than new, while still being in decent condition and well cleaned. I've never tried it myself but I've heard the steelcase Leap is a very common office chair, so easy to find for cheap when offices get rid of them, and is maybe not the same as a top-end flagship chair but still very very adequate in ergonomics and quality.
The shithole where I live blocked Twitter, and I want to create an account to do some things. I don't want to pay for a VPN, and the only free one I trust, ProtonVPN, has also been blocked in my country. Which VPN could I used? I was thinking about TunnelBear or Windscribe. As long as my email and password don't end up in the wrong hands, I don't care about my privacy.
By the way, I tried changing my DNS, but it didn't work.
>>106191472Doesn't protonvpn support a stealth API in the settings that gets around blocks?
>>106191472Doesn't protonvpn support a stealth protocol in the settings that gets around blocks?
>>106191532The problem is that their website is blocked in my country. I haven't been able to download it yet to see if it works.
>>106191569Even their github? https://github.com/ProtonVPN/
>>106191607I had no idea of this. Thank you, anon. I'll give it a try.
Sorry for the stupid question.
file
md5: 3fc3294127c4da8a604169d7dfd00724
๐
>cock.li still works (can download messages), use Sylpheed email client
>try to send message
>get this error
WTF
>>106191472How about Cloudflare Warp?
file
md5: 4562fd9d6dbd73c72e82c710e1573ae8
๐
>>106191728fixed it, under "Preferences under current account..." check SMTP Authentication
>>106191766I hadn't heard of this before. I'll check it out.
>>106191192In this window? I checked that before I posted and none of the options seemed to be it.
>>106192213Oh right, apparently there's a registry variable to enable the setting to control the locked timeout
>>106192331Yeah, I finally found a thread on doing that after searching the same thing 50 times. Just tested it now it seemed to work, thankfully.
And for the one or two other people that will ever care about this: https://www.elevenforum.com/t/change-lock-screen-timeout-to-turn-off-display-after-in-windows-11.8691/
You can either go here
>>106192213 and change the Display > Console lock display off timeout value (if it even exists) or input one of these two commands in Powershell:
On battery:
powercfg /SETDCVALUEINDEX SCHEME_CURRENT SUB_VIDEO VIDEOCONLOCK <seconds>
Plugged in:
powercfg /SETACVALUEINDEX SCHEME_CURRENT SUB_VIDEO VIDEOCONLOCK <seconds>
Setting <seconds> to 0 counts as "never" turning off the display on lock screen.
>>106180482how can it be the best way when you still have all the data on it just in encrypted form, waiting for the password to be broken or for a side channel attack to happen.
overwrite the data fully a couple of times
>>106186051you are losing data converting it
but if you dont care then ask ai to write a simple ffmpeg script to do the conversion to png instead of using some ancient garbage from 10 years ago
>>106186427>>106189937no it cant because retards like you will convert it back to jpg at some point to save on space, losing data again
>>106189376maybe actually look at the content tab of qbit to see what the problem is
why are there no packet losses or speed recudctions with NAT?
a bunch of devices having the same IP seems like a big problem?
is it same as if a bunch of devices had the same mac adress?
>>106193656do you know what a port is
>>106170513 (OP)lads im using 4chanX and oneechan, i lost all my old configs and shit so im starting over
anyways
the fucking post number is onlyt visible on hover and the image name / sauce shit is only visible on hover and its pissing me off
how the fuck do i make this shit always be visible? i cant find that setting
attaching a cute anime girl for your attention / troubles / help
thanks
>>106193880disregard that i suck cocks
i literally found it after posting, so thank you
How long will it be before the technology to create 14 foot tall female androids that can pick up a 6'4" adult and gently sway them to sleep in their forearms is available to the masses?
>>106193976your children might see them
>>106191368>worth itAbsolutely not. No chair can fix your back problems. Get a $200 office chair, a $400 electric desk and $500 gym training equipment. You'll pay less and fix your back.
>>106194058No chair can fix it, but some can certainty make it worse.
Are there any resources you'd recommend for learning pentesting/hacking? Books, courses, video series, etc.
I grew up on 4chan 15 years ago but gradually moved away from computers. Now have fallen into a senior App Support role where I've taught myself some SQL but would like to play around and learn other skills.
>>106194554my PT has me doing these.
How do I edit source code in a mainstream way without needing to move my hand to the mouse or the arrow keys all the time
>>106180270look up ambient soundscapes or check out Blume's channel for background noise/music
>>106195049I've been using Vim for a long time now, but I want to switch to mainstream options now
>>106195088vim is fucking mainstream nowadays you retard
if you want you can use vscode with a vim keybindings extension
best powerbank to get? looking to get at least 20,000 mah
>>106195298I like Anker, I've never had any issues with any of their powerbanks. I think my current one is the 325. I've had it for a few years and it's still reliable and holds a good charge.
>>106195298just check that it gets mostly positive reviews on Amazon and you should be good. I've got a blue "no-name" power bank that is still holding up well from frequent use a couple years later.
How come my razer sound card sounds low quality
>>106195298>bestpower tool usb adapter + 5ah tabless battery
eg dewalt dcb094k + powerpack
>best buypick the cheapest of anker, baseus, ikea, iniu, onn, ugreen, xiaomi
Ideally output wattage should be 2x what you plan to use to minimize conversion loss.
>>106195783No balls. Should've bought an Apple A2049
>>106193593>ancient garbage from 10 years agoyou have no clue what that tool does
>>106170513 (OP)So at a individual level im not a company i dont code. What can AI actually do for me? Seems just like a better google or interactive wikipedia to me
Does anyone have that meme of the evil AI getting sprayed with a hose?
>>106193912not him, but basically even without NAT each IP address can be communicated with with a port number as well, from 1-65,535. common services have fixed ports like websites use 80/443, ssh uses 22, etc. when you visit a website, your browser connects to port 80 of the address you entered since that's the standard web server port.
a connection is port-to-port, but the originating port doesn't need to be the same number. like when connecting to a server's port 80, you don't need to use your port 80 to do it, you can make multiple connections to different web servers by using random other port numbers on your computer.
when NAT is involved, all computers behind the NAT now have to share the public IP's 65,535 available ports... but that's still a lot of ports, chances are you won't need to make more connections than that at any one time anyway.
>>106170513 (OP)I've never done any mobile dev at all. What's the easiest way to see network activity in an app? I have android studio but still poking around and figuring things out
amd adrenalin software doesn't open for me. my pc crashed couple minutes ago, I knew it was due to the GPU since upon booting up again I had to disable and enable GPU in device manager. I checked for a new driver update and there was one. Installed and when I try opening AMD software, it just hangs for a bit and never boots.
I have a feeling it may have been due to the latest windows update, because prior to that everything was working fine. Anyone know anything about this?
I built up a new fresh computer and I'm trying to be better with file organization for my creative projects (Blender, After Effects, Photoshop, etc). What I used to do was have two big folders (one for Blender, one for everything else) on my desktop for each program and organize projects, resources, etc in folders within those folders. Kind of chaotic but it makes sense to me.
Couple of questions. Does having that stuff on my desktop instead of a different directory make things slower? Also, does anyone have any words of wisdom/resources to share for better and faster file management for creative processes? I feel like I generally have the hang of it but there's always ways to improve.
thoughts on this printer?
I need a very simple black and white laser printer, this one has a scanner, so thats good.
I will be getting it through work rewards points, not amazon.
as long as its not pozzed and i dont ever have to use an app.
it doesnt appear to have Ethernet, but oh well. i guess i can connect it via wifi to my router, or just use usb.
>>106196976i have the m110w, which is the even more basic version and it's surprisingly fine. i just store it in a closet and pull it out whenever i need to print shit. i think i had to download some program to link it to my laptop - don't believe i had to download an app.
>>106196976If it's not native postscript / pdf it's pozzed.
I need ideas for mass downloading an open directory on Windows
>>106196678>Does having that stuff on my desktop instead of a different directory make things slower?That depends on whether you overwhelm the drive I/O bandwidth. At this point you should be fine with basically any SSD. I doubt your CPU/GPU can render frames fast enough to cause a problem. Photoshop might still ask for a scratch drive. But I doubt it makes much difference on even a mid-grade system.
>Also, does anyone have any words of wisdom/resources to share for better and faster file management for creative processes? I feel like I generally have the hang of it but there's always ways to improve.Redundant backups. I have two mirrored HDDs where all paused/completed projects are backed up. But that's not what you asked. For personal stuff; working files go into a projects folder on a secondary SSD and I keep projects in folders separated based on type, which then have subfolders for each project. The desktop is only for temp files or imports/exports. I'm in charge of creating document standards/processes where I work and the most important thing is logical/consistent naming conventions and organization so you (or a coworker) know where everything is if you have to pick something up later (or hand the project off to a someone else). Also, back up everything.
Can I add USB 3 ports to my PC without replacing the motherboard? I'd have to replace cpu as well and I just did, stupid minmax build
>>106198526what motherboard do you have
you might have an unused usb 3 header
>>106198541Asus ROG Strix B450-I Gaming Mini ITX AM4
>>106198556well it only has the one usb 3 header so if you're already using it for the front panel then you're out of luck there
has header for 2x2.0 ports which are slow, but could be used by your keyboard/mouse to free up other faster ports
otherwise without using your gpu port, you're looking at using a riser cable from the m.2 slot
>>106198604That's the thing, the m2. slot rejected the ssd and the enclosure doesn't recognize it, I may need usbc
>>106198621What model SSD?
>>106198637Crucial MX500 1 TB M.2-2280
keeps dropping off, I want to move data out of it but I can't
>>106198653Only one of the m.2 slots on that board supports SATA mode, and a lot of enclosures won't support it either
>>106198668Worked fine for 5 years only recently started giving me shit
file
md5: dbf6915e50a3fdd453e740b2bc5ca82d
๐
>>106186427>jpeg2png is smarter and fills the missing information to create the smoothest possible picture.not that I care, but you are losing extremely valuable details if you do this to any photos you care about.
Even in their photo example, you're losing all of the subtle skin details. Invariably this will also warp text beyond recognition.
>>106198675well, good luck, just make sure that whatever enclosure you get supports m.2 sata
>>106188584probably helps with impaired vision
>>106198701anon... the input to the decoder is the bottom left, and the output is the bottom right. the top two images are just source and cropped source for comparison.
while it doesn't add detail, it greatly reduces jpeg-specific artifacts like macroblocking and mosquito noise
>>106198711Thanks for your help, will do
>>106198724>the input to the decoder is the bottom left, and the output is the bottom rightokay... that makes more sense now. That is incredibly impressive. My point still stands somewhat, as details will be irreversibly lost. The glimmer in her eye was lost completely.
I hate github faggots so much it's not even funny. how hard is it to label your fucking example photos in a way that makes sense?
>>106198764it says right under the photo.
>Top left: original Lena image>Top right: original, 64x64 detail>Bottom left: JPEG encoded at 10% quality with 4:2:0 chroma subsampling using the GIMP, 64x64 detail>Bottom right: JPEG decoded with jpeg2png using the default settings, 64x64 detail
>>106198774let me translate as someone who works in enterprise IT but still has no fucking idea what any of this means.
>Top left: original Lena(??) image>Top right: original, 64x64(??) detail>Bottom left: JPEG encoded at 10% quality(??) with 4:2:0 chroma subsampling(????) using the GIMP (who cares), 64x64 detail(??)>Bottom right: JPEG decoded with jpeg2png using the default settings, 64x64 detail(??)autists need to exercise brevity and learn to use layman's terms
a
md5: d964a4179d472bdae4a53b813df6319d
๐
>>106198764>The glimmer in her eye was lost completely.and sure, it's not magic. it can't really know what the original input was to create the coefficients the resulting jpeg had, and is simply searching for the smoothest result. it's a pretty extreme example as well, in some circumstances it may be impossible to know if a particular pixel is detail or an artifact
here i made a more realistic example with content more suited for it. top is a screenshot saved as 75% jpeg, the default in a lot of programs. bottom is the output of jpeg2png from that jpeg, default settings.
>>106198805"Lena" is a common test image, it's simply the name of the source image. it's been around for like 50 years and anybody who has touched any image processing tools will recognise it.
"64x64 detail" is a detail image that is 64x64 pixels, "crop" would perhaps be a more common term if you aren't familiar with this usage of "detail"
Is AI good enough to scan a scanned book in pdf and give me all the contents in a text format? Basically doing OCR but not having to do it myself. Unless there's already programs to do this, in which please tell me what they are. The only one I know of makes me do it myself.
>>106198805if you work in IT and don't know what jpeg quality means I don't know what to tell you
>>106198805>>106198827>10% quality(??)how much a jpeg is compressed by is typically expressed as a percentage, with 0% being garbage and 100% being the highest quality (not lossless mind you). many programs default to 75%, especially older programs. 10% is exceptionally low quality
>4:2:0 chroma subsampling(????)colour channels are saves at quarter resolution. this is commonly used for photographs as human vision is more sensitive to the resolution of brightness changes (i.e. black and white) compared to colour. most jpeg's are 4:2:0
>GIMP (who cares),people who want to reproduce the results will care
>>106198835he's the guy who reads facebook and resets AD passwords all day
file
md5: ed5792434da3c50a60c1bd16dea0a7af
๐
Is it possible to get this piece of shit working with wifi 6 on linux or should I buy a new Intel based card?
So my SSD died.
Was not my OS drive, neither did it had anything that I couldn't just download again.
But is there any way to know what was in there? Getting the filenames is enough for me.
like some file index in C drive or somewhere.
Already could download back many things from my brain, VLC recent list and screenshots but these 3 aren't everything.
>>106198814this is a much easier to understand example
>>106198827anybody who has touched any image processing tools will recognise it
that is way less people than you assume, anon.
>"64x64 detail" is a detail image that is 64x64 pixels, "crop" would perhaps be a more common term if you aren't familiar with this usage of "detail"thank you for the explanation, this makes more since.
>>106198835why do you assume IT people are editing jpegs in enterprise IT? I've set up Microsoft cloud tenants from scratch as a solo tech, including Intune, Autopilot, Entra, Defender, Exchange, Teams Phone with calling, etc. Do you understand why using layman's terms are important now? not every industry professional is fucking with jpegs and image compression
>>106198850thank you for the explanation, this makes more since.
>>106198870I spend my day cleaning up after the fuckups that retards like you make. I'm an enterprise janitor.
>>106196374It's this photo but it has a funny caption. I just saw it on here, I wish I could remember the thread.
>>106198959i'm alright with anyone willing to learn, just know that you'll get negative responses if you show up saying "nobody understands that shit" rather than "can you explain what these mean"
what the program does is quite technical, and i don't expect everyone to understand how it works. people who don't at least get what it does wouldn't be using it in the first place
it's also not a silver bullet, the output does tend to be softer than the original. jpeg encoding loses information, duh, and you'll never get it all back
>>106199107>i'm alright with anyone willing to learn, just know that you'll get negative responses if you show up saying "nobody understands that shit"yeah I do agree. I am being hyperbolic partly intentionally, but also just venting from frustrations. I do genuinely enjoy learning, and I appreciate the explanations that have been given. You are right, though.
genuinely it is pretty impressive.
>>106199138in your defense, while Lena is a go-to image processing example image, this project isn't really meant for photos, it even says so in the readme. he should have done an example with text at least to begin with, and he doesn't do any. i think you'll agree my screenshot example shows it off a lot better
>>106198951Typically a NAND flash failure state allows you to read off the drive, but not write. Are you sure it isn't something like the OS failing to mount the drive? Does it show up in BIOS?
>>106199182More like short circuit in the SSD. I was even preventing my whole computer from turning on randomly by shorting out the power lines.
does randomly show up though when I risk leaving it in there.
>>106198889I have the USB version of this, MT7921U. It works out of the box on Linux, mine is currently attached to a router and serves as my WiFi 6e access point.
>>106199213Pic related. in ubuntu, it does show up as what I originally named it as (Adata) but fails to/ takes forever and never mounts
>>106198889then i just need to git gud. I installed Endevour and the signal was just trash, refused to connect to the 5GHz band. which drivers are you running?
>>106199160>>106199138>i think you'll agree my screenshot example shows it off a lot betterwell, you already did. also regarding
>>106198835 (not me), i also find it a bit odd, not because someone needs to be familiar with saving jpeg's to be in an IT role, just that it's something he, and also myself, would expect someone who spends a lot of time on a computer to at least know about. like it's the one setting you should know about when saving jpeg's.
>>106198959>Do you understand why using layman's terms are important now?someone who works with computers should understand that this isn't always so straightforward. not everything can be reduced to laymen's terms, and if you try to hard to do so, your text becomes less useful to people who aren't laymen. this project isn't aimed at laymen in the first place, so there's no need to explain it in laymen's terms. at least he made an .exe for the few who do end up there
file
md5: 79c7a4c159b7779b5f156bef0fac2d89
๐
>>106199281it's something he, and also myself, would expect someone who spends a lot of time on a computer to at least know about. like it's the one setting you should know about when saving jpeg's
what are you even rambling about, and who are you replying to? like 90% of programs that allow you to save in jpeg don't ask you what quality you want them saved. And even if they do, the majority of people, even technical, will just leave it at the defaults.
>someone who works with computers should understand that this isn't always so straightforward. not everything can be reduced to laymen's terms, and if you try to hard to do so, your text becomes less useful to people who aren't laymen.oh geeze, so there's no solution to this? there can't be a summary at the top for laymen, and then technical details at the bottom? that's impossible so I've heard. We don't have the technology yet.
you might wonder why I'm so frustrated. It's because I deal with autists every day who can't get it through their magnificent heads that not everyone is as spirited about tech as they are. Soft skills are the most important in a career. It's not even tech knowledge that matters. the most brilliant people in history were also the most difficult to work with and were largely pariahs.
>>106199259>>106199272>>106199289windows and other OS's are often very picky about the stability of drives before allowing you to interact with them.
You may try dumping the drive into an image using something like clonezilla and ignoring errors. At least then hopefully some of it can be recovered.
Pmagic is a distro with a bunch of utilities packed. https://partedmagic.com/
>>106199344well there's also the issue of someone who is deep into something doesn't even know what counts as layman information. you say "laymen info at the top and technical at the bottom", but that's what i see on that page. he starts off with a few simple lines;
>Silky smooth JPEG decoding - no more artifacts!>JPEG encoding loses information. But it is JPEG decoding that introduces artifacts by filling the missing information with noise.>jpeg2png is smarter and fills the missing information to create the smoothest possible picture.followed by a couple of pictures, and only then does it get technical
if THAT isn't simple enough, then the program probably isn't for you. and that's fine, too, not everything has to have mass appeal.
>>106170513 (OP)I feel like both of my HDD keep stalling. What's the deal with that? I transfer some files, and I can see it jumping from 100MB/s down to 0MB/s for a 15 seconds. Temperatures seem normal. It's happening to 2 of my HDD at the same time. Both are SEAGATE. One being 8TB, the other being 4TB.
>Ryzen 5 7600X>OS running on a 2TB NVME M.2>32GB DDR6 (I believe)>RX 9070XTI've got a USB-attached screen running on my heatsink, and during speccy, it's now crashing. The software is on my OS.
Any ideas for tinkering?
>>106199528transfers jumping up and down in speed usually means there's a mismatch between read speed and write speed, namely when writing is slower than reading. like if the source and read at 100MiB/s but the target can only write at 50MiB/s, you may see bursts of 100MiB/s followed by pauses as the target writes it out at a slower rate
>>106199528>>106199747-- also note that there may be other factors than physical, like even if the target can do 100MiB/s as per the example, other things may slow it down, such as if you're writing near the end of a hdd (specifically) you can expect slower writes just due to the fact it's a disc-based media. filesystem fragmentation or other overhead can slow things down as well
file
md5: b412a9b6c17a829775c481778be7b4db
๐
>>106199757>>106199747Ah, thanks for the heads up
I used some software to check speeds too, just to see what I was working with.
>>106170513 (OP)I removed the Graphics Card from my old PC that I was using as a Server
Now it won't turn on anymore and there's 2 red LEDs on the mainboard, what's going on, I thought it can run without Graphics card?? What's going on???
Don't ask for specs I have no idea
>>106199965Ok nevermind turns out my CPU doesn't have it's own integrated graphics unit
Iโm using ASR to transcribe a face to face conference meetings where everybody is talking/shouting over each other, and I need to do some AI magic to split the transcript into sub-conversations. Have audio stems for each individual speaker. Any savants know how to this?
>>106200112diarization is what you're looking for
whisperx can do it but I can't promise it will be easy to set up
>>106200133Already got whisperx setup with diarisation, but it wonโt infer who is talking to who, it just assigns speakers to utterances. For this I need to do some clever semantic clustering and heuristics but no idea what works best
>>106199528Is the destination drive SMR?
>>106199360Damn dude,
as if data recovery field wasn't obscure enough with only Russians and Italians making videos babbling about it, why are data recovery tools also always subscription based?
Also, so far, I've accounted for 230gbs out of my used up 340 gb, had 3 torrent dumps of only fans account but I forgot where I got them from. also, deleted .torrent file associated with it.
>>106200280>subscription basedSuccessful data recovery is very valuable to a lot of people and companies, and is very expensive.
Paying a few $ for a chance to recover the data and save $$$ isn't such a bad deal.
Also: https://archive.org/details/parted-magic
file
md5: c94723091af5ce30235c946a39a4f4c9
๐
>>106199784>>106199528Downloading game. I have the same issue somehow.
Should I disable the 9800X3D iGPU in BIOS? Does it hurt performance like it did a decade ago?
>>106200879It's tiny and on the I/O die. So I can't imagine it either competes for resources or adds much heat. There's probably benchmarks somewhere with it on or off since YouTube reviewers are always desperate for content.
>>106195783Get a USB soundcard from a company that caters to audiophiles?
Otherwise check your settings.
>>106200879>>106201739I'll offer a quick supplement. The two RDNA compute units are small, but with the assorted other components like the A/V encode/decode and so on, everything that you might count as part of the iGPU takes up about a third of the I/O die.
But it's still not going to be using resources during gaming if you have a dGPU.
i saw a guy posting over a CLI
bypassing 4chinks captcha
how?
>>106196374>>106198998Here is your reddit caption my good sir
why exactly is javascript unsafe?
and why can you even enable it if it's that bad.
seems like if a site forces be to enable it it's a shitty website security wise?
>>106202029and the image it's referencing
>>106180421https://support.apple.com/en-us/102773
>>106191368I like mine but if your back hurts you should start deadlifting (get a trainer to show you how to do it properly)
Other anons fix their backs with yoga
>>106196976https://www.theverge.com/tech/641940/best-printer-2025-just-buy-a-brother-laser-printer-middle-finger-in-the-air
>>106198526https://duckduckgo.com/?q=usb+3+pci+card&t=ipad&ia=web
>>106176778because more people own nothing and want some semblence of ownership, even if it's a tenuous argument
>>106198477Great advice, thank you so much. I've got a solid naming convention down but my process of backing things up could use some work.
I have a 6 year old 3600x+5700xt PC. It's been constantly shitting itself over the past couple of months crashing every few days. I have no idea why but I'm guessing it's getting old. When it crashes sometimes the display shows funky shit so I'm suspecting it's the GPU.
However I took a look at the prices and concluded that GPUs (9070xt) are expensive. I thought of just building a whole new rig but that doesn't seem to be economically viable, so I figured maybe I could replace one part at a time.
I've been keeping my eye out on a 5700x3d which has disappeared from the face of the earth. But I found a shop with it in stock (240 bucks). Is it a good idea to get this now and stay on AM4 with the endgoal being to eventually get a 9070xt? Or should I get a new motherboard with a 7800x3d (480 bucks)
Whats the most secured hacker os? blackarch linux on qubes?
>>106203676You want to troubleshoot the existing problem before exposing new parts to defective old hardware. Run memtest+ and replace the PSU minimum before adding new logic components. New parts + bad PSU = damaged new parts.
So i've got an issue with Firefox. I've got Tree Style Tabs and some custom CSS to tweak it out. Just a pretty simple "expand on hover" type deal.
Problem is, it seems like when i hover, tree style tabs is expanding the tab bar behind the web page instead of on top of it. I've been searching far and wide trying to figure out what is happening and i'm coming up with nothing. If needed i can provide my userChrome and the CSS i'm using for TST
I'm gonna buy a micro SD card for my Steam Deck OLED. Should I get the SanDisk Extreme or Gameplay instead?
Are SanDisk Gameplay cards worth it for handheld gaming, or will I just be paying gamer tax for it?
I'll be using the card for emulator ROMs and some indie Steam games.
>>106203676like
>>106203817 mentioned, fix your shit unless you're fully comitted to an entirely new build. Slapping new hardware in a broken system just means that you're wasting money.
From what you describe, it sounds like a dying GPU is your issue. If you're going to spend *any* money for an incremental upgrade, you want to start there. Pretty much any modern xx70 variant (both AMD and NVIDIA) is probably going to be overkill for your CPU right now, but it's better to just get that over with than buy a new CPU that you probably won't be able to use in a few weeks when your GPU dies for good anyway.
The AM5 X3D cpus are only ~$100 more than the 5700x3D (at least in burger bux), and are on a relevant platform instead of a dead platform (not that it matters too much anyway), and are notable enough in performace gains over the 5700x3D that it's worth the price of the CPU itself.
All of that to say, put your money into a new GPU now, so you can continue to use your PC while you save up for the new CPU/Mobo/RAM/Other shit you need to incrementally upgrade down the road. If you buy a new CPU now, you're still going to have the same issue, and still going to need a new GPU anyway.
>>106203977set z-index on the elements to a higher number? Make sure the context menu still draws over it tho
>>106204068i've got the z-index in my userchrome set to
z-index: calc(var(--browser-area-z-index-tabbox, 10000) * -1) !important;
There's no defined 'browser-area-z-index-tabbox' variable, and even if i remove the calculation and replace it with a static number (like 10000) it still doesn't do anything.
as for context menus, they work fine except the TST context menu, which also draws behind the webpage, just like the tabs do.
I've heard that wireless charging is bad for your battery. Is the only reason for this the heat generated, or is it intrinsically bad in some other way?
If it's only the heat, why the fuck does nobody add a setting for "slow charging", so you could drop your phone onto a wireless pad and just have it drip-charge, either to keep it topped up during the day e.g. while you're at your desk, or to charge overnight? It's still more convenient than plugging it in, the main downsides are that it's still slower than proper fast charging and that it damages the battery. Why not lean in to the slow charging aspect and make the convenience usable without impacting battery health
>>106198830there's a certain .pdf and .epub reader that lets you copy text from the file itself. I'm pretty sure it was called foxit, but I could be wrong. But I know I recall using a proper pdf reader once and I could actually highlight and copy text from the file itself. So if not foxit, know there's some readers that do allow this.
>>106204036Get Sandisk or Samsung Endurance instead, they have higher read/write endurance versus the non-Endurance cards.
>>106202043Not secure enough or something, but it is so widespread that it gets used anyway. Important pages (like payment pages) tend to not have it and also have 128-bit SSL encryption or whatever it is called.
>>106202043It's shitty client security because modern JS runtimes are performance optimized to the hilt and expose lots of host hardware features, esp GPU processing. Any time someone tells you they can run untrusted code near native speed with security, they're lying. It has never and will never work unless we drastically change how hardware is designed.
It's good for site operators because it puts maximum work on the client, which means less processing and code exposure for them.
>>106204215A good phone will have "standard" charging as an alternative to fast charging as well as the ability it limit the max charge level to 60-80%. I have my Pixel 7 Pro set to 80% max and standard charge rate. I do not know if this applies to wireless charging, I only use wired charging.
>>106204738>I do not know if this applies to wireless charging, I only use wired charging.What part of your post is relevant to my question exactly then
Can someone please link me to that website that allows you to get randomly sent to old, abandoned websites from the late 90s and mid 2000s?
/g/ used to make threads about it
>>106204215Because they want you to buy mfg certified battery replacements and new devices.
F
md5: 9632a95b99b114dd3ed19221ac0c740c
๐
>>106170513 (OP)how can I disable audio autotranslate in freetube?
had to updoot to latest version to fix the 403 error and now I cant hear original spic audio......
>>106198951If you can get it to work make a linux USB stick and use ddrescue (it's free)
>>106199528>>DDR6Doubt
But you are probably writing to shingled drives as
>>106200252 implied
Typically it writes in bursts because it blocks other operations while writing
Best bet for SMR is to not use SMR, or use RAM as a cache, accepting you may lose data if you crash/lose power/disconnect the drive
Search for SMR vs CMR if you want to know more
If the problem is not SMR, you probably have bad blocks at a minimum and you want look at the SMART data
(See pic)
alright I'm getting tired of this and I don't understand why
>3 different monitors keep getting this same smear on the same spot that keeps coming back about 10 minutes after I wipe it away
>Doesn't matter if it's microfiber, screen cleaning wipes, a regular ass tissue or even a baby wipe
>It's not happening during mounting because I keep it in the wrap that it sat in while boxed when mounting
Am I just cursed? I even made sure to specifically NOT touch that spot on this current monitor and the smear STILL appeared
why is copy/paste on firefox so fucked up?
i move a lot of text between sites and text editors, and every now and then when i paste something, Firefox messes up the formatting and styling, adds spaces or line breaks, or even refuses to paste the text for no reason unless i paste without formatting, a problem that i never had on chrome. then there are times where i somehow copy a text โwrongโ, and am unable to paste it.
i recently switched from chrome, mostly because of ublock origin, but so far my experience has been worse in every single way
Where should I start out in dipping my toes into CS? Are there any noteworthy programs and resources that I should be aware of? The whole field seems too vast and I'm stuck on deciding where to start
>>106205380what interests you about CS? start with what you're interested in/build projects you actually want to make. you can do theory stuff simultaneously but will prob lose interest without practical investment
>>106205218This happens when copying from PDFs and it is a PDF problem.
The thing about it randomly deciding not to register a copy command is a real issue tho
Is this the general general?
I need your help /g/. The situation is dire. And the problems are multi faceted. Theres psychological components to my issue like irrational fear of loss, discipline issues like inability to care for digital hygiene and technological issues like WD SMR and shit.
So here is the situation:
I'm on my build from 2015 or so. Cared about computers and alot of other things that now are mere tools to me autistically back then.
It's got 1TB NVME and 4x4 TB WD red in a btrfs raid. They might have SMR.
OS is Ubuntu 16.04 or so. I think I upgraded once since 2015 and also made all sorts of changes to it.
Also sitting on a pile of external HDDs of varying capacity with old shit I didn't need in years, like most stuff probably, but would like to keep.
No backups of anything run regular. But some backups exist, especially on the RAID. Mostly the product of disorganized rsync. Backups are messy, redundant, incomplete, perhaps even partial backups that are backed ul in backups.
So you see my computer is like a squatters house. I'd like to change that. I'd like all my files to be organized in my ~/ and everything else to be disposable. I'd like a device on me that mirrors my ~/ and automatically syncs to it two ways. I'd like regular backups to run. And I'd like my old stuff to be kept safe long term. Perhaps I'll sift through it one day. I'd like to wipe and upgrade OS and just automatically reinstall from a package list and keep my ~/.
The storage situation is a bit like a parking lot where everything is full and there's no space to maneuver.
What do? Please coach me through. I can't be the only one struggling with this.
>>106176778not sure but maybe ccd jpg with N picture control is like highly optimized for brightness contrast and color smoothing
>>106185454maybe but 2A is big current
>>106205955hire a spic whos tech savvy (not a pajeet) and let him do your job
>>106186051why would you do such thing
mogrify -format png *.JPG
>>106205955Why you would raid a NVME and HDD is beyond me. Compress the files you want to keep and toss them on a flash drive or dvd. Wipe both drives, install fedora on the nvme, and use the hdd to store all your bullshit.
>>106205955is not generic
you maybe tell me your favorite superhero character from comics is blackheart
if no raid no btrfs no userscripts no snapshots no scripted backups no canonical it might be simpler and more like manual work
My laptop screen shuts down at full brightness. What do?
>>106206183lower the brightness
>>106173401diesel powering metro is fugghueg dc valves are like biggest pumpkin ever maybe computer running metro is also big
>>106174199you do not want system sounds speech dispatch and third cannot remember what?
>>106174199you happen to know what cpu sa audio enable disable does
>>106180482maybe but shred like 32 times and write zero over it is recommended in legacy texts
>>106206028mhmm no.
>>106206068no no the NVME is / anf then there is that 4x4TB cluster of HDDs, they are in RAID.
>compress the files you want to keepwell there's the issue.
I would like to make the whole thing safe, stable and a good working environment ASAP. I'd like to go through sfuff eventually later. I am. pretty sure I could wipe everything, setup clean and feel hardly any remorse over what... lost photos? Books I've read, movies I've seen, files I'll never need again?
But you get the picture.
>>106206170generic?
>favourite superhero, comicIfk about comics and superhero. Ik theres superman and batman. That's it. Didn't care as a child and sure wont now.
>if no raid no btrfs... manual workyou're saying i should manually rsync regularly and just never fuck up?
>>106185070bios wank ahci non ahci mode till clean boot is possibility
>>106185899you say modem is broken maybe visit isp service desk for new modem if you have old modem with you they recognice you
>>106186583jenny spoke of manually vectorizing image might take some time
>>106189990HDR might have been Rec.2000 feature not sure about that
>>106191368lining might be special but i see strange chairs for students for 1/10th
>>106189937you probably have ยดget it hereยด cardboard readymade
https://www.youtube.com/watch?v=RyirQOCUUK8
This woman says that a hotspot allows for extra privacy when using SIM networks if you use a VPN directly on the hotspot.
But what if you use VPN on the hotspot AND on your phone? Would it become an "onion" like Tor or would it produce an error?
>>106195783likely impedance missmatch or audio cable from optical drive is non optimal
How effective are robots.txt and user-agent filtering in reality? What's to stop some jeet with a scraper bot from simply ignoring robots.txt and spoofing user-agent on every website in existence?
>>106207119It's mostly effective if the bot is bannable. The point of robots.txt is you're basically saying, "it's fine to scrape my site, just stay away from these pages". If the robot doesn't follow it, then any number of automated detection and anti-scraping mechanisms can be used to blacklist it. If it's some small-sized scraper, or anyone operating infrastructure not specifically engineered to be able to bypass blocks (e.g. without a massive pool or proxies and IPs available ready to use), it's in the bot operator's interest to "behave" and not get themselves banned from everywhere.
Of course if the operator IS set up for ban avoidance they can easily ignore everything and just hammer your site, and it becomes a cat and mouse game where you're trying to ramp up bot detection measures while the scrapers try to bypass them. This has been happening recently with AI scrapers, where shady third-party companies registered in the third world just throw everything they can at websites to grab all text from them and then sell it to AI companies. They obviously ignore every robots.txt, and this is why shit like aggressive cloudflare captchas and proof-of-work checks (like anubis) have been getting more common.
>>106206570I'm not sure what you mean by your first sentence and I'm not watching your video, but in my experience android seems to route hotspot traffic outside of the any active VPN. I've never tested it rigorously but I'm like 95% sure I've definitely been able to use my phone hotspot to post on 4chan without bothering to disconnect my phone's VPN first (yet I had to disconnect my laptop's VPN, naturally).
Yeah it's mediocre but android's VPN routing seems quite primitive unfortunately.
>>106205955>>106206374First thing to do is deduplicate. Backup solutions like borg or restic usually support it, or you can use a tool to deduplicate your current btrfs filesystem.
>https://btrfs.readthedocs.io/en/latest/Deduplication.htmlBEES looks like what you need. I've never used either but it looks reasonable.
If this doesn't free up enough space, then you need to buy more storage, simple as. You can't backup your files without any space to back them up to.
RAID is mostly backup if you're not anal retentive (I assume it's btrfs RAID1?), but it's still not fully a proper backup, e.g. if you get ransomware or something you'll still be fucked. But if we assume you're not gonna get ransomware, there is one more scenario that's worth protecting against, and that's the rm -rf one: for this, just set up btrbk to generate regular snapshots.
If you want actual proper backups, that will survive even your computer going completely crazy (or getting ransomware...) and overwriting or destroying the drives, then you need to back up externally. Btrbk works nicely with a native btrfs external storage, something like borg or restic are more flexible. The best backup setup you could have would be offline drives in a drawer or fire safe that you periodically plug in and sync a new snapshot to, as well as an encrypted cloud backup in case some natural disaster destroys everything in your house. But you don't have to go full autism, even a little bit of safety is better than no safety, and RAID + snapshots protects against a LOT of data loss scenarios with minimal effort.
>I'd like to wipe and upgrade OS and just automatically reinstall from a package list and keep my ~/.This, however, is orthogonal and also hard to achieve with most distros. You'd also need to save /etc, and make sure there's nothing interesting in /var or /opt, and you better not have installed any binaries manually.
is there a simple solution for just file sharing through a LAN by connecting a storage device with an ethernet cable to my gateway? I don't know if having a microprocessor is overkill
>>106207119Traditionally it's a courtesy to identify ephemeral pages to indexers not a permission system. In the post JavaScript professional web dev hellscape it's largely obsolete.
>>106207357>>106207691Thanks anons, I think I get it. I'm guessing that excluding explicitly malicious stuff like DDoSing, the whole "ignoring robots.txt and spoofing user-agent" thing is a new problem now that there's monetary incentive to scrape the hell out of every site.
>>106204335That would probably work fine on normal pdfs. I have some pdfs of books that are pretty much just scans of the book. Some of the text is selectable but not all of it.
>>106207658With a shared folder? If it's networked then I assume the device already has a processor?
which rss reader do you guys use on android and pc?