Jump to content

burnttoastnice

Member
  • Posts

    1,525
  • Joined

  • Last visited

Everything posted by burnttoastnice

  1. it sounds like the system is actually managing to boot to desktop, so at least it's working... does your system have an ssd or a hard drive as the primary o/s drive? what does your display show when you power on the system? is your system hanging on the BIOS logo, or the windows spinning circle? could you check the temps in the BIOS and report back here with the numbers?
  2. My ancient 7260 chip allows me to tell it I'd like 5GHz instead, you could see if your existing wireless adapter has something similar hidden away somewhere... How close are you to the router exactly? Could be your WiFi adapter refusing to do 5GHz because it's far away. If you can get an extended antenna for it then that could be an option.
  3. My girlfriend streams (in-home) almost exclusively from her gaming PC. VNC is used to do things on the desktop like changing settings and restarting things (it's a bit clunky but always works reliably, and reconnects after a reboot to the login screen), and then Steam in-home streaming for everything else requiring low-latency input. I wouldn't say it's the best solution for permanent computer use (she occasionally runs into games that don't like being streamed), but it's definitely more than usable. You should be able to add custom apps such as Visual Studio etc into steam and then stream them through there no problems.
  4. I run a bunch of websites on my server using Lighttpd (although I recommend Apache). I just have one cert which signs all the websites on my server, since a single cert can hold several website names on it. I use Let's Encrypt too by the way Each individual site on my server has its own folder, so if someone requests google.com and points it to my server IP, my server looks for a folder called 'google.com' and if it's found, it will serve the website in that folder. If it's not found, it tells the user they're in the wrong place. Getting a bit more technical... If you don't have access to the server configuration, and the websites on your server are developed with a controller (similarly to an MVC app, where all the GET requests made to the server are then sent to a single webpage which then processes the request info), you can programatically check the host name that the user requested, and then execute the controller for that application.
  5. Expensive keyboards exist with true N key rollover, some of which have each individual key wired in to the microcontroller individually, and others using the typical matrix arrangement. An example of such is the Happy Hacking Keyboard - which supports full rollover over PS/2, as long as there is BIOS support. LOL the good old days of Windows XP... computer would completely lock up but still respond to mouse movement and keyboard activity . DOS is so guilty of 'buffering' interrupts though, for lack of a better word
  6. Edit: Just realised you already got it checked out - my bad. Should read the whole thread next time ?
  7. Hard Disk Sentinel has an option for that
  8. Noooo nooo nooooo that won't work. Go grab your old router and turn off it's DHCP server, give it a static IP (make sure it's an unused one on the same subnet as your Ubiquiti router). Plug your portable hard drive into the old router, then plug your old router into your Ubiquiti router. Point your pc to the static IP of the old router. Problem solved. This might be quite a complicated process though if you're not used to networking, I'm hoping someone else has the time to break it down further.
  9. It's gonna have to be either all or nothing unfortunately like snipergod87 said. Save up some mula and grab yourself a 1TB ssd, format the hard drive and keep any new games on there. If you knew you were gonna migrate to an SSD beforehand you could have pre-partitioned it so a utility such as EaseUS/Macrium Reflect/Partition Wizard could easily migrate the OS while keeping your games on the hdd. In future, limit your Windows partition to say 100GB, while leaving the rest of the hdd for data files, so if you choose to migrate to an SSD you can just clone the windows partition over while keeping all the data intact on the hdd.
  10. Quite a neat idea, although personally I keep my documents folder synchronised with my flash drive, and all my videos/programs/games/backups on two backup drives (using FreeFileSync). I have another drive that I use for downloads/tempfiles and steam games (which can be re-downloaded any time). Might take a leaf out of your book and keep my files slightly more organised though lol. One unused advantage of your symbolic linking is that it allows you to have multiple OS installs (windows 7, windows 8, windows 10 etc) alongside each other, presenting you with the same desktop and documents anytime you log on. Possibly allowing you to use software that isn't compatible with one OS from another OS instead ? Out of curiosity, how do you manage off-line data backups? I see you have a redundant drive for on-line backups - but one thing I'd be concerned about is a random power surge turning those hard drives into glorified steel bricks
  11. Late last year I bought myself a cheap TC-SUNBOW 60GB SSD to for my daily-driver laptop. So far it's been going fine, however at times there is some noticeable performance fluctuation during boot-up. Sequential reads are around 320MB/s, and sequential writes around 87MB/s. So far it's managed 1.2TBW and has 99% health remaining. The low sequential writes had me wondering how many NAND chips are inside this thing, and well... ...yeah. Inside is a legit-looking SM2246XT controller (Sata 3, No DRAM), and one no-brand 64GB 2-bit/cell MLC NAND flash chip. Boot times are what matter the most to me - so I ran some boot time tests to get a better idea of noticeable performance difference. These were done on up-to-date installations of Windows 7 with manufacturer drivers, a browser and Office installed. Measured from 'Starting Windows' to desktop. Seagate ST500LM000 SSHD 500GB, 4GB Cache: 10 seconds Sandisk SSD 240GB: 11 seconds TC-SUNBOW SSD 60GB: 16 seconds Seagate ST750LM022 HDD: 52 seconds I'm here wondering how long exactly might this SSD last, and are these cheap SSDs actually worth it for the performance difference?
  12. Definitely replace that power supply. Given you're in a hot country, and most capacitors are rated 10,000 hours at best running at between 80C to 110C (which is about 1 year of non stop use) - the capacitors in your PSU are most likely almost dried out by now and aren't holding enough juice to get your computer going.
  13. Could be your PSU then... What brand is it and how long have you had it for? The hot weather's probably had it shot
  14. Sounds like a power supply issue to me. If it was a broken CPU the motherboard would stay on, doing nothing, or just beep (I've had that issue already). Motherboards usually always stay on during a failure mode if it's not related to the power supply (or other power delivery issues on the motherboard) as most UEFI firmwares are not programmed to shutdown upon encountering a hardware fault.
  15. I currently do this on my own webserver (lighttpd). I opted not to use a pre-made framework (like Django etc) and designed my own instead because I wanted web application code to be easy to port between PHP and Python, and to be able to interchangeably use both languages in a single web application. When you set this up on your webserver, make sure you add ".py" files as an exclusion to the static file extensions list. The configuration I use on my webserver: $HTTP["url"] =~ "^(.*)\/cgi-bin(.*)" { cgi.assign = ( ".py" => "/usr/bin/python3", ".cgi" => "" ) } This allows .py files to be executed by python3 as long as they are in a folder called cgi-bin, (so if I was to host a .py file for downloading it would download as intended, and not return a webpage with the code output). Files with the .cgi extension are executed as binary applications (you won't need that, I only have that included for testing purposes). You might be wondering how form data submitted online gets to the .py script. This data is sent into your script through its standard input (stdin) and placed into environment variables, which can be accessed by the python script. Working with the data directly isn't very feasible, hence why I made a library to extract, interpret and place this data into workable python lists and dictionaries. Here's what the logout code for one of my python web apps look like: Using a premade library such as django is miles easier than writing your own, as you likely wouldn't have to worry about creating secure sessions etc, managing logins/cookies and the like.
  16. The sound card or sound chipset used on the motherboard might not play well with the headphones and mic sharing the same ground connection. Personally I prefer them separate, as it allows me to use audio passthrough/aux connection THISS! Its easy to find wireless backlit mice, but no decent wireless backlit mechanical keyboard. I definitely agree with the last point, which generally applies to almost all peripherals nowadays - too many stupid peripheral shapes and horrid logos all over the product to appeal to 'teenagers' who are probably gonna use them on a cheapo $100 desktop to play minecraft prefer larger psus; more spacing between power components and more space for heat dissipation SSHDs are also a very viable option for budget builds, but admittedly from personal experience after a few OS updates they go from 20 seconds faster to just 5-10 seconds faster (reconditioning negligible)
  17. That's one beast of a sleeper. Tempted to make my own out of an old dimension 520 now easier said than done though. That brace at the back could probably be modified to accomodate a support for the psu? The usefulness of a shroud would probably depend on whether you'll be using the pc with the side panel on or off more. Finding an older case supporting the r1 Ultimate might not be that diffucult, seeing as most old PC cases have lots of unnecessary space inside. If there's cable routing space at the back then probably not. LOL @ the tiny exhaust fan compared to the beefy CPU cooler though. I'd maybe use a sleeper pc as a HTPC or a travel desktop for gaming
  18. If I was in your situation I'd just let the card die. The oven method literally kills capacitors (degrades their working life significantly) by drying them out at an accelerated rate, so if your card does get 'fixed' by the oven method the capacitors assisting the VRM modules will eventually give up, leading to a permanently dead card. Imo it's probably a better option to use the card until its completely dead, but ultimately you're free to do the oven method seeing as it's your card. As for lead fumes, it really depends on the type of solder they used. Seeing as they wouldn't intend for people to be 'reballing' their cards, the solder is probably cheaper and fumes from that maybe wouldn't be so pleasant.
  19. If that router was provided by your ISP then it probably isn't the best, try another router and see if there's any improvement. It could just be that WiFi channels in your area are overpopulated and some intense activity at night is causing your signal clarity to degrade, but I'm really no expert in the subject. P.S. devices like microwaves etc. degrade wifi signal when they're being operated
  20. When they use the body recognition to suggest clothes that'll be when I go into ultra tinfoil mode
  21. Python is ridiculously easy to get started with and use, and development time is next to none. I used to dislike it but eventually started using it in web projects instead of PHP. Not to mention its very portable; I can develop a script on my Windows machine and it'll run as intended on my Linux server.
  22. Sounds like a really interesting idea, but I don't think current technology is ready for something like this. It's an interesting concept though. Wonder what they're doing with all the collected data...
  23. Black braided option would be nice, but these look amazing. Don't forget straight ones too for mobos with an angled header Same My case only has 1 usb3 and 1 usb2...
  24. Is that a PCI bus at the front and another bus at the back? Wow...
×