Jump to content

EpicCrumbCake

Member
  • Posts

    28
  • Joined

  • Last visited

Awards

This user doesn't have any awards

EpicCrumbCake's Achievements

  1. You're right, it's working I'm stupid I changed my CMakeLists a while ago and part of the change was a different output directory. I ran the wrong, outdated binary all the time. Sry for that, I very much appreciate your effort
  2. int main(int argc, char **argv) { FILE *f = fopen("/dev/tty", "r+"); SCREEN *screen = newterm(NULL, f, f); set_term(screen); curs_set(0); // some program logic and output here getch(); endwin(); delscreen(screen); return EXIT_SUCCESS; } After exiting, the Terminal settings are not properly restored and I can't figure out how to solve this. The common issue, according to the internet, seems to be not calling endwin() as last action, but this doesn't work for me. I also tried without calling delscreen. And I tried applying the same to the previous screen (return value of set_term). Btw, the reason why I use newterm instead of initscr is because I need clean stdin/stdout for data processing.
  3. The Cooler has 3 Connectors: the 4 pin FAN-Power, a 4 pin RGB and a USB 2.0. As I turned the PC on with only the Fan-Power, the Fan worked and the LEDs were on a rainbow cycle. I want to turn off the Lighting. Now, I know that the 4 pin RGB Header needs to be installed in the correct orientation on the MB, but on the ASRock Fatality B450 K4 it isn't labeled on the Board and the Manual seems to suggest to put the Arrow-side of trhe cable on the left. I'm pretty certain that this is correct, but what can be the worst outcome if it is wrong? Does it only kill the LEDs or does it also have issues for the MB or the Fan? And then, there's another question: if the Lighting is working without plugging in the 2 cables and the RGB-cable is used to control the lighting, for what is the USB-Cable then used? Is this a second method to control the Lighting or just used for auxillary power? Thanks in advance
  4. I tried it earlier today. The Update Assistant requires a valid Windows 7 License in order to continue. I think it *was* the case while the official Windows 7 to 10 Update period.
  5. Yeah, that's what I feared. I won't get a Ultimate Key for cheap, barely found a Home Premium Key. True, but that means more work for tech support (me). Relatives that can barely use computers are the best Thanks guys
  6. Has anyone experience with this? I'm trying to activate a (already installed) copy of Win7 in order to upgrade to Windows 10. Depending on what works I'll buy a 8 or 10 key. I'm pretty sure that a 10 Key won't work to activate 7 Or is there another way to Upgrade to Win10 without having to reinstall Windows?
  7. In multiple reviews of the B450 Tomahawk Max I read complaints about very high POST times at launch. I'm curious on how the current Agesa Updates improved on that or if it's even a thing. I would really like to hear from users of this board on how long the POST time really is (with the most current available Update installed and from a cold start). I plan to buy that specific model together with a 3700X Thank you
  8. I'd like to know if there is a chance to get the XBox One Wireless Controller to (fully) work on Linux (Ubuntu and Arch to be specific). I saw packages like xpad and xboxdrv which looks promising, but I would like to know from someone who uses it: 1) does it work wireless and/or wired? 2) does the headphone jack work? 3) Is the experience (installation and usage) rather buggy or does it work fine 4) what is your overall rating of the gamepad / would you recommend it to someone like me who needs precise analog inputs (I do glitches that require precise aiming / player angle adjustments)? I'm afraid that MS put in some 'special sauce' which makes it really hard or impossible to use it on other systems than XBox and Windows. My current, cheap gamepad has really bad jittering analog inputs after not even a month of moderate use. I'm not able to compensate this enough by calibrating without rendering it unusable for performing certain glitches. If you have other gamepad recommendations for me, feel free to post them. Thank You
  9. I have: - Eclipse Oxygen 1A for PHP development - A Project using Composer - The folowing Project structure: ProjectDir/ Core/ Model/ ToDo.php Service/ ToDoService.php index.php The files contain classes (of the same name as the files). The classes are insinde namespaces that match 1:1 the Project Directory Structure. If I try to use the Model Class in my Service Class Eclipse can not resolve the Model class and displays an error. I tried fully qualified name (MyProject\Core\Model\ToDo) as well as the use Statement to import the Class from the other namespace. And the namespaces are imported correctly since there's no problem when executing the Website (index.php contains the vendor/autoload.php and instanciates/uses my service class). It's just eclipse not knowing how to resolve the types. Since I use Composer's PSR-4 Autoloading, there is no direct include in my Service Class file. This is how my composer.json looks: ... "autoload" : { "psr-4" : { "MyProject\\" : "./", } } Libaries of other vendors (I imported using "composer require ...") are fine and can be resolved. It's just my stuff. How do I tell Eclipse to resolve my types? What did I miss?
  10. I know I have to add a line to the fstab but I get confused because of credentials. This is what I have: //REMOTE-IP/movies /home/MYNAME/Movies ntfs-3g users,auto 0 0 Is this right so far? What do I have to do to specify username and password of the share? I don't want that the user has to enter them. I want read and write access.
  11. That's unfortunate. But I might have found a solution to my problem: another browser. Currently I'm checking out Vivaldi and I'm pleasently surprised. It's technological close to Chrome, but the UI fits better to my needs.
  12. As you might know, Google Chrome has no titlebar when maximized. Instead the tabs are displayed on the very top to save space. I'm used to drag maximized windows to the sides or on other monitors. Currently I have to click the restore button first and uncountable many times I accidently closed the browser because I missclicked. This is such a small detail but so annoying. Is there a (hidden) setting to keep the "over the tab drag space" of the non-maximized Chrome window when it's maximized? Or get at least 1 or 2 lines of pixels on the very top that are draggable
  13. Spying on children: Not cool. Banned immediately. Spying on adults: No problem, go ahead. There's so much more stuff and so much many practises that deserve a ban too or at least stricter regulations. I try to imagine how the moms apply the order... "Schatz, kann ich mal deine Puppe haben?" "Warum denn, Mama?" "Ich will sie kaputt machen" ...wait, I can hack into a doll and listen
  14. I like the Keyboard. It looks so clean. Please let me win
  15. Topology: - I have a router (DHCP on), subnet is 192.168.178.0/24, IP is .1 - the router is connected to a dumb TP-Link switch - on the switch there are 2 physical machines: - my LAN-internal File/TV/Subversion/Web-Server "Hurricane", IP is .39, Windows 7 - my Main Rig "Taifun", IP is .49, Kubuntu I need now on Taifun a Windows VM ("Whirlwind") for Softwaredevelopment that connects also to the internet, as well as to Hurricane (just like a third physical machine). Using the default settings (NAT on the VM Adapter) the VM is in a different subnet (192.168.122.x). I can connect Hurricane, the Router, the Internet, but not Taifun out of the VM. How can I fix this?
×