So trying to build a new AMD based system, but having no such luck – the power LED and CPU fan turns on, but no POST beeps or BIOS screen. Specs and list of things I’ve tried below. Any suggestions? Specifications (all parts are brand new unless noted otherwise): CPU: […]
Blog
vim works fine on the first invocation on a remote Windows host, but further use leads to my terminal getting messed up. :redraw! and reset do not help: Using the same local terminal, vim works fine on a Linux remote host. The broken remote host is a Windows server running […]
I enter a game, right now most recent one was rust, and it just freezes after 2 seconds in the menu. This had happened before but I reinstalled windows and it stopped but now its back. I fixed the issue in other games by going windowed/borderless where everything seems to […]
EDIT: Right clicking on the the pdf/text document prints it but I need the menu before that to select how it prints. This menu can be brought up only on the printer properties, but on all other computers it shows it prior to printing each document. Screenshot – https://take.ms/RSi3o Laptop […]
this is the code i wrote. numbers = [5, 2, 555, 7, 111, 7, 2, 111, 2, 2, 5, 5] for num in numbers: if numbers.count(num) > 1: numbers.remove(num) print(numbers) the result was: [555, 111, 7, 111, 2, 2, 5] What is wrong with this code? Thanks in advance.