Jump to content

Klemmbrett

Member
  • Posts

    633
  • Joined

  • Last visited

Reputation Activity

  1. Agree
    Klemmbrett got a reaction from Fasauceome in NVIDIA Titan RTX Yields 99% Adobe RGB?   
    As far as i know u can also get 10 Bit color from a 1080:
    "High Dynamic Range, or HDR, isn't a new concept in photography. It isn't even new to PC gaming, as some of the oldest games with HDR (using simple bloom effects) date back to the Valve Source engine (early 2000s). Those apps, however, used the limited 24-bit (8-bit per color, 16.7 million colors in all) color palette to emulate HDR. Modern bandwidth-rich GPUs such as the GTX 1080 have native support for large color palettes, such as 10-bit (1.07 billion colors) and 12-bit (68.7 billion colors), to accelerate HDR content without software emulation. This includes support for 10-bit and 12-bit HVEC video decoding at resolutions of up to 4K @ 60 Hz, or video encoding at 10-bit for the same resolution."
    Source: https://www.techpowerup.com/reviews/NVIDIA/GeForce_GTX_1080/3.html 
     
  2. Agree
    Klemmbrett got a reaction from LogicalDrm in Fan LED strip not working   
    Can you share some details like which fan and which motherboard ? 
  3. Agree
    Klemmbrett reacted to WereCatf in How to Add Scripts to Ubuntu's Autostart?   
    #!/bin/bash cd /home/comp/ ./srcds_run -game csgo -console -usercon +game_type 0 +game_mode 1 +mapgroup mg_active +map de_dust2 -port 27050 -tickrate 128 Save this as e.g. /home/comp/runcs.sh and make it executable (on the command-line, you'd make it executable with chmod ugoa+x runcs.sh), then run crontab -e, and at the bottom add @reboot /home/comp/runcs.sh
     
    Explanation: cron is a program that basically executes stuff at certain times, crontab -e allows you to add or remove things for it to run. @reboot tells cron to run the following command when the PC has finished booting up, so your CS-script will run then.
  4. Agree
    Klemmbrett got a reaction from UncleJarvis in is the gtx 980ti a good card for 2019   
    Depends on what you wanna do with it if its enough. 
  5. Agree
    Klemmbrett reacted to Electronics Wizardy in Need a second opinion on FX-8350 liquid cooling   
    You should be able to get 4ghz easily on a 212. There is probably something wrong with the mounting or voltage or something. I have ran 4.4ghz on a much worse cooler. Id remount and repast the cooler and check mounting pressure.
     
    The 120mm aio really isn't that much better than a 212
  6. Like
    Klemmbrett got a reaction from skillz22 in Will static actually hurt my parts?   
    Love that: "Ok just to be sure he does not fry himself"  
  7. Like
    Klemmbrett got a reaction from Roger3006 in NVIDIA Titan RTX Yields 99% Adobe RGB?   
    Well im currently not sure what display to buy because a part of me wants high refresh rate gaming with gsync and the other wants an HDR display with nice colors and brightness contrast. And currently the only one display that does both is the 2-2,5 K  euro depending on stock and where you look. Wont necessarily need 4 k,  2560*1440 qhd is fine but there you cant find display that does it all. Not willing to spend 2k + on a display atm. 
  8. Like
    Klemmbrett got a reaction from Roger3006 in NVIDIA Titan RTX Yields 99% Adobe RGB?   
    From what i know the Professional cards like quadros have specific strengths where it outperforms a consumer card but those are features consumers would not use anyway. In the current gens 9,10 and 20s series lots of this features were made available to the consumers. Like RTX now supporting nv-link the "better SLI". For the most people a professional gpu makes no sense. 
  9. Like
    Klemmbrett got a reaction from Roger3006 in NVIDIA Titan RTX Yields 99% Adobe RGB?   
    From nvdias whitepaper of the 1080:  IT mentions support for up to 12 bit rec 2020 which is more than 10 bit 100%adobe rgb
    And the 1080 is pure consumer so i just guess i find the same information also for the titan x.  
     

  10. Like
    Klemmbrett got a reaction from Roger3006 in NVIDIA Titan RTX Yields 99% Adobe RGB?   
    As far as i know u can also get 10 Bit color from a 1080:
    "High Dynamic Range, or HDR, isn't a new concept in photography. It isn't even new to PC gaming, as some of the oldest games with HDR (using simple bloom effects) date back to the Valve Source engine (early 2000s). Those apps, however, used the limited 24-bit (8-bit per color, 16.7 million colors in all) color palette to emulate HDR. Modern bandwidth-rich GPUs such as the GTX 1080 have native support for large color palettes, such as 10-bit (1.07 billion colors) and 12-bit (68.7 billion colors), to accelerate HDR content without software emulation. This includes support for 10-bit and 12-bit HVEC video decoding at resolutions of up to 4K @ 60 Hz, or video encoding at 10-bit for the same resolution."
    Source: https://www.techpowerup.com/reviews/NVIDIA/GeForce_GTX_1080/3.html 
     
  11. Like
    Klemmbrett got a reaction from genexis_x in [Help] Re-thermal pasting laptop CPU   
    Yes the die and not the "entire surface". 
     
    Well about the grain in the middle you can do that there as well but since the most are not a square and more rectangular its more a sausage like application:  

  12. Agree
    Klemmbrett reacted to redteam4ever in Help with a basic Java thing?   
    Also, it can prove very useful to interpret compiler errors for your future. I've seen a lot of my friends ignore compiler messages and just look for what's wrong in their code and it takes much longer when you don't know where or what to look for.
     
    That error might seem very cryptic at the first sight, but if you have the knowledge of what symbol might be (or you try googling it), you can find out where is the problem. I really want to avoid the definition what a symbol is (it wouldn't be useful), but you can think of it as anything that has a name in your program - so functions, variables, procedures, methods (depends on the language). Modern compilers also usually point to the exact spot where they "found" the error (more like when/slightly before they stopped understanding your code) and this might be misleading (especially when you make a typo), but for this type of message it's correct. Then your compiler listed what symbol cannot be found - method with name printin. That means that the compiler searched its symbol table and couldn't find it amethod with that name. I need to specify that symbol table is basically a big list of all the symbols (mostly variables and functions) that the libraries and your program contains so that compiler can verify that your program is correct and can be compiled. So the compiler was trying to tell you that method printin doesn't exist and you should look at its name.
     
    I'm sorry that I got carried away with this, I'm just really happy that I made my final on compilers last week (we had to write a compiler that translates subset of FreeBASIC to custom 3-address code for a project in that course).
     
    It happens to the best of us Don't let this stop you, later down the line you will definitely forget a semi-colon somewhere and that is going to be a wild hunt But semantic errors are the worst - you will compile the code, it compiles, but does something else and you don't know why.
  13. Funny
    Klemmbrett reacted to BelgianNoise in Postgres Server config   
    Okay im sorry for this post.

    after 5 restarts it worked. 

    what a spammer i am.
     
    Also not sure on how to delete topics
  14. Agree
    Klemmbrett reacted to WereCat in RTX 2080 or GTX 1080ti ?   
    If you dont need the extra VRAM then RTX 2080
  15. Agree
    Klemmbrett reacted to wasab in How To Know Which Code To Use?   
    Only care about performance if your application needs it. Optimizing something that does not need to optimize can result in ugly code, unreadable/maintainable code, and bunch of bugs. 
     
    Premature optimization is the root of all evil 
    http://wiki.c2.com/?PrematureOptimization
  16. Agree
    Klemmbrett reacted to geo3 in How To Know Which Code To Use?   
    If you have customers (people paying you money) and expecting a secure service from you and you are a total beginner when it comes to programming the proper thing to do is hire an experienced professional to do it for you. 
  17. Agree
    Klemmbrett reacted to schwellmo92 in EVGA GTX 980 ti low FPS?   
    You should've ran DDU before you installed the Nvidia drivers. Use DDU to remove both the AMD and Nvidia drivers and then re-install the Nvidia drivers.
  18. Agree
    Klemmbrett reacted to Origami Cactus in One of the fans spining less than the other   
    The GPU temperature on your picture is smaller than CPU temp, no wonder that it spins slower.
     
    Lower temperature = slower fan speed.
  19. Agree
    Klemmbrett got a reaction from _Hustler_One_ in Just changed from Nvidia to AMD and now there's no display. Help!   
    And when ur in uninstall ur nvidia drivers properly, there are tools to do exactly that. 
  20. Agree
    Klemmbrett reacted to immaguy1234 in Just changed from Nvidia to AMD and now there's no display. Help!   
    1) Unplug all the components and devices on the MB, and then reinstall the CPU,­RAM (one piece), VGA card and power supp­ly only.Please add some thermal gel on the CPU, and then rei­nstall the CPU fan correctly and tightly­.Be sure JPWR1 and JPWR2 are connected to proper ATX power supplies to ensure st­able operation of the motherboard. If th­ere are 6 pin or 8 pin Power Connectors on your VGA,please make sure they are co­nnected to power sup­ply。
    2) Clear CMOS (How to clear CMOS, you could refer to the ma­nual)for a try. 
    3) If the problem still persists, please change the RAM wi­th different RAM slot to check again.
    or 5) change the HDMI cable
    or 6) spam reset until it goes into BIOS
  21. Agree
    Klemmbrett got a reaction from LukeSavenije in Just changed from Nvidia to AMD and now there's no display. Help!   
    VGA output mode not actual VGA its like a fallback.  As mentioned now by someone else and me try to clear your CMOS. 
  22. Agree
    Klemmbrett got a reaction from Cansadoyguay in Just changed from Nvidia to AMD and now there's no display. Help!   
    And when ur in uninstall ur nvidia drivers properly, there are tools to do exactly that. 
  23. Agree
    Klemmbrett reacted to Cansadoyguay in Just changed from Nvidia to AMD and now there's no display. Help!   
    Try no gpu just go through mobo hdmi output
  24. Agree
    Klemmbrett got a reaction from myselfolli in What to learn?   
    Whats mentioned before is already pretty good to start with. You should also look into Databases, and how they work and how to communicate with them. Also it does not hurt if you have some Linux skills as most software will be deployed and run on Linux environments. 
  25. Agree
    Klemmbrett got a reaction from RyzenPower in B450M-DS3H motherboard can't use cpu_led header for RGB fusion?   
    and 2 clicks further your directed to learn more about fusion to their supported motherboard listhttps://www.gigabyte.com/mb/rgb/Product and also their supported led strips fans ram sticks https://www.gigabyte.com/mb/rgb/ready. Again its dubious marketing but seems like ur way to go is bios settings and not the app. 
×