Jump to content

KNG_HOLDY

Member
  • Posts

    100
  • Joined

  • Last visited

Reputation Activity

  1. Like
    KNG_HOLDY reacted to WereCatf in Should LTT Make A Video On   
    I vote "neither of those options."
  2. Like
    KNG_HOLDY got a reaction from 220VoltsallCore in Need fast and free VPN   
    dunno if they have a app but i really like protonvpn 
    if you really have good reason to using a VPN i would pay for it
     
    if you dont pay for it you are the product
  3. Agree
    KNG_HOLDY got a reaction from Eigenvektor in Help in charging app name in Android Studio   
  4. Informative
    KNG_HOLDY got a reaction from NystriX in Help in charging app name in Android Studio   
    https://stackoverflow.com/questions/5443304/how-to-change-an-android-apps-name
     
    changing the name in the header =>
     
    val actionbar = supportActionBar actionbar!!.title = "YOUR NEW TITLE" i would use String resources instead of a hardcoded String btw
     
    if you are using java instead of kotlin just google actionbar title java
  5. Like
    KNG_HOLDY reacted to Trinopoty in My Lightweight 'Ping' App for gamers with bad internet   
    That's a weird way to distribute source code on GitHub.
    Put it in the repository proper for better effect.
  6. Like
    KNG_HOLDY reacted to Kuzonisonfire in Searching for somebody that can cut/edit videos (Comparing H.264 to H.265)   
    https://mattgadient.com/x264-vs-x265-vs-vp8-vs-vp9-examples/
     

     
    That site might help and also the image gives a brief explanation on how the two codec work
  7. Like
    KNG_HOLDY got a reaction from EL02 in My 15th take on a website...any advice?   
    looks good - i esp like the feature & updates part!
     
    i would problem change the font-color of your loupe to the same color of youzr title-text-color
     
     
     
     
    same for the placeholder text-color (this placeholder doesnt have to be same color as text-color but i would make it a bit brighter)
     
    __________
     
    i would fix the burger menu to the top so that if u scroll it doesnt float 
    or i would fix the entire header and make it float, this way you dont have the problem with scrolling => white background => you cant see the burger-icon anymore
     
    ___
     
    if you have fun making websites i maybe would take alook at some backend stuff like php (laravel) so that you can build fully functional websites
    your frontend already looks very good!
     
     
  8. Like
    KNG_HOLDY reacted to Eigenvektor in csgo python   
    If you're in it for the money, being a developer for anything other than games is probably a lot less stressful and usually has better pay, too. Best pay is usually in maintaining some business critical, non-replaceable legacy system that no one wants to do, because the language it was written in is old and clunky and simply "not as much fun".
     
    An ex-coworker of mine previously worked as a game dev. He said he left because he could simply no longer endure the extreme workload, long hours and bad pay (now that he had a family). Mind you, we still had crunch time and long hours close to product releases but according to him it was considerably less and better paid than his previous job.
  9. Like
    KNG_HOLDY got a reaction from Eigenvektor in csgo python   
    i wrote a game from scratch in  c++ (render-engine, lights, model-loading, collision detection, everything) and one in unity (c# scripts)
     
    if you are asking which language is right for game dev you prop should start with unity
     
    unity takes care of ALOT of stuff for you that c++ (even with opengl etc) doesnt => collesion detection.. => therefore you still need to be good at math but not asgood compared to writing everything from scratch 
    unity has more online tutorials
    unity has more questions asked & answerd (e.g. stackoverflow)
     
     
    but if you want to work for a company the chance is very high that they already have tools that they are using and you have to adapt
     
    like @Eigenvektor already pointed out - if you are just in it for the money i wouldnt develop games for a company
    maybe if you have a brilliant idea and you can realize it alone or as a small team its worth it because you get more cash out of it
    but if you work for a company you get pretty good salary but you have extrem long working hours
     
    one of my profs was working as a game dev and he told us that he earned alot of money but didnt want to work in that industry anymore because he had no time for his family
     
     
     
     
  10. Informative
    KNG_HOLDY got a reaction from WillLTT in [C++] write everything that exists in list into a file.   
    just to be clear - you want a vector of strings to be written into a file, each item seperated by a line break
    and when you start your programm you want to read that same file and fill your vector again with all these items?
     
    saving:
    (1) just open a filewriter and itterate through every item and append it to that filewriter aka the file
     
    loading:
    1)read the file line by line and each line is a new item => 
    learned_.push_back(item); istead of push_back(file)
     
     
     
    your problem sounds quite easy to realize so im not sure if i understood it fully
     
  11. Informative
    KNG_HOLDY got a reaction from Hip in Is it still common to do buttons with <button> in HTML?   
    im not 100% sure because im more of an backend guy
    but i think it doesnt matter if you use <button> or some other tag because the styling is done by class name in frameworks like bootstrap later
     
    if you dont use bootstrap, you will style your buttons yourself anyways and you dont really have to use the button tag in that case
    but imo its cleaner to use button
     
    what im trying to say you can make <div> the same look / feel & same actions as a <button> if you use javascript & css
    but i like to use the button tag because the code is a bit cleaner that way 
  12. Agree
    KNG_HOLDY got a reaction from Eigenvektor in Android App Support   
    1) couldnt you flash your OS and use something like lineage os?
    2) could u maybe use a older version of ionic? maybe v3 supports older android versions?
  13. Agree
    KNG_HOLDY got a reaction from Eigenvektor in Creating Environment Variables   
    if they just tell you to set an environment variable you just have to do the following 
    (3 pic is just a test if the variable is set)
    first pick choose 1 or 2 depending on what users should be able to use the variable i would just use system (2)
     



  14. Like
    KNG_HOLDY reacted to Eigenvektor in Android studio error when emulating !directory.isDirectory()   
    Quite possible. The project may be using outdated configuration that no longer works on the latest version of Android Studio/Gradle.
     
    Try to check if the permissions are set correctly, as @KNG_HOLDY said. I've also had issues where a previously empty directory was missing (e.g. "res") and that was causing build issues. If you have a project that works, try to see if any src, res or build directories are missing.
     
    Alternatively, you could try to create a new empty project in Android Studio, see if that builds. If that's the case you could try to port the code into the new project. It'll be a pain but might be easier than trying to figure out what is broken in the old code. Ideally don't port everything all at once and use something like Git to keep track of changes. If the project breaks again you'll have an easier time figuring out the cause if the changes between "works" and "stopped working" aren't too many.
  15. Like
    KNG_HOLDY got a reaction from Kingslayer Kyle in Delete me   
    sounds like you should try a hacking forum
    guided-hacking
    unknownhacks
    because prop you have to reverse your game 
  16. Like
    KNG_HOLDY reacted to GER_T4IGA in Where to Buy CPU Waterblocks / Fans in 2020?   
    Yeah but it's usually not worth it to order from outside europe. You will very likely pay 19% tax ontop of high shipping cost, long wait times and warranty will also by freaking nightmare.
    I had to send back a keyboard to massdrop once. It was not as advertised and they aknowledge it. I had to go to my local state import/export facility and have them SEAL them damn package. Also I had to pay for return shipping. I am really hesitant to order internationally now. Some cheap stuff from china but I wouldn't wanna order a GPU waterblock from NA to then maybe have the wrong item ship or anything else go wrong. If you really want to there are some mroe interesting vendors in the UK which will get iffy by the end of the year, depending on what the final agreement looks like but until then it should be fine.
  17. Like
    KNG_HOLDY reacted to WereCatf in Website SSL   
    One of the best ways of obtaining free SSL-certificates is using Let's Encrypt at https://letsencrypt.org/
  18. Like
    KNG_HOLDY reacted to Beerzerker in Where to Buy CPU Waterblocks / Fans in 2020?   
    Check these guys out. Performance-PCs.com Homepage
    They ship everywhere except North Korea and Brazil according to their site.
  19. Like
    KNG_HOLDY got a reaction from For Science! in Where to Buy CPU Waterblocks / Fans in 2020?   
    A12x25 30€ ufff
     
    i just read that overclocking the 3700x isnt beneficial so maybe i dont even get fans for my front radiator or some really cheap fans
    360 rad without fans and 240 with 2x eloop pwm should be fine if its pointless to overclock the 3700x anyways
    i just dont want to hear fans q.q after using watercooling for yrs the stock cooler sounds like a plane to me hehe even at the lowest speed i can hear them
  20. Like
    KNG_HOLDY reacted to GER_T4IGA in Where to Buy CPU Waterblocks / Fans in 2020?   
    Fellow german here using almost all parts from EKWB. I also ordered at caseking a lot. They are expensive but customer service is pretty good.
  21. Like
    KNG_HOLDY reacted to For Science! in Where to Buy CPU Waterblocks / Fans in 2020?   
    If you can't see them anyway, then I would recommend the A12x25, they are just so good. Or the Noctua Chromaxes, but they only have the NF series, which aren't as good ath te A12x25. Vardar's are okay, but they have so many variants these days I've lost track if they are actually any good, I remember they're good at high rpm, at the cost of high noise.
  22. Informative
    KNG_HOLDY reacted to AbsoluteFool in mySQL server installation failed on ubuntu 18.04   
    You should try to acess the database.. mysql -u root -p. if this doesen't work then set sudo infront of it, make a new user and create table for your CMS. Alot of people seem to have been "locked out of their databases".
  23. Like
  24. Like
    KNG_HOLDY got a reaction from mrchow19910319 in mySQL server installation failed on ubuntu 18.04   
    https://github.com/aspendigital/docker-octobercms#mysql--postgres
     
    you could almost all server applications on docker
     
    docker is like running a VM with less overhat 
    just create a file with the name "docker-compose.yml"
    and use the 2 cmd's below to start your container from inside the folder you created the docker-compose.yml in
    docker-compose is the default name so you dont have to tell docker the name of the compose file
     
    your docker file should contain 
     
    edit:/ you prop want to save data on your host pc in that case you'll have to use volumes aswell
    just read the whole readme in 
    volumes:
    - /x/:/y/
    the first path is on your host system (/x/)
    the second path is on your container (/y/)
     
    your file should prop look something like this:
    version: '2.2' services: web: image: aspendigital/octobercms:latest ports: - 80:80 environment: - DB_TYPE=mysql - DB_HOST=mysql #DB_HOST should match the service name of the database container - DB_DATABASE=octobercms - DB_USERNAME=root - DB_PASSWORD=root - TZ=America/Denver volumes: - /some/dir/on/your/host/pc/resizer:/var/www/html/plugins/aspendigital/resizer - /some/dir/.env:/var/www/html/.env - /some/dir/plugins:/var/www/html/plugins - /some/dir/storage/app:/var/www/html/storage/app - /some/dir/storage/logs:/var/www/html/storage/logs - /some/dir/storage/database.sqlite:/var/www/html/storage/database.sqlite - /some/dir/themes:/var/www/html/themes mysql: image: mysql:5.7 ports: - 3306:3306 environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_DATABASE=octobercms volumes: - /some/dir/where/you/want/to/safe/your/mysql/data/mysql:/var/lib/mysql  
    root as name & password is obv. not great if you ever want to expose your service
     
    my writing is kinda clutterd so just ask follow up questions if i just ignored your question and wrote else
     
     
     
     
     
  25. Like
    KNG_HOLDY got a reaction from For Science! in Where to Buy CPU Waterblocks / Fans in 2020?   
    yeah i never bought noctua fans because they are so damn ugly hehe
    i cant use eloop fans because of the position i would place them
     
    ek vardar fans where a thing a time ago never bought them are they worth it? or should i just get cheap low rpm fans because the position they would be in i cant really see them and i've got 1 360mm & 1 240mm Radiator for just one CPU so the 3 on my 360 wont need to run very high
     
    and ty for the sides i will check them out tomorrow, never really liked caseking bc of their chipment pricing but maybe thats changed
    never new highflow or that watercool has a dedicated shop  ty for that info
×