Jump to content

elpiop

Member
  • Posts

    755
  • Joined

Reputation Activity

  1. Agree
    elpiop got a reaction from m1lk3y in Helldivers 2 - Egregious root level anti-cheat?   
    Arrowhead devs have stated that the anti-cheat is only active while the game is running. I'm pretty sure this is the case with EAC and BattleEye as well. Yeah, they add another attack vector that can be exploited.. but so does everything you install on your computer
  2. Informative
    elpiop reacted to Dedayog in Upgrade from 8700k   
    Not sure how much to put on this random tester, but he seems the only one doing 8700k vs 7700x..  Seems like a 25-40% increase depending on title, but it's the 1% lows that really caught my eye...
     
    I can vouch that New World had serious stutter and lows in towns on my 8700k/9900k machine (see sig).,   The new machine with the 7700x is much better but it also had a solid GPU upgrade as well.
     
     
  3. Agree
    elpiop reacted to aiwiguna in Any Swift nerds? need help pulling data out of datatask()   
    Your issue is concurrency, you are accessing the weather array in viewDidLoad, numberOfRowsInSection and cellForRowAt function before the datatask finish because the data task is running in background thread.

    Here some change that you need to do to fixed it
    override func viewDidLoad() { super.viewDidLoad() getDataFromAPI(){ weather in switch weather { case .success( let gotWeather): self.weather.append(gotWeather) print(gotWeather) DispatchQueue.main.async { self.latitude.text = String(weather[0].latitude) self.longitude.text = String(weather[0].longitude) self.temperature.text! += String(weather[0].currentWeather.temperature) self.windSpeed.text! += String(weather[0].currentWeather.windspeed) self.windDirection.text! += String(weather[0].currentWeather.windDirection) self.elevation.text! += String(weather[0].elevation) self.table.reloadData() } case .failure( let error): print(error) } } // Do any additional setup after loading the view. table.delegate = self table.dataSource = self } } extension ViewController: UITableViewDelegate, UITableViewDataSource { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { if weather.count != 0 { return weather[0].hourly.time.count } else { return 0 } } func numberOfSections(in tableView: UITableView) -> Int { return 1 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! WeatherTableViewCell if weather.count != 0 { cell.loadCell(weather: weather[0], arrayIndex: indexPath.item) } return cell } }  
  4. Agree
    elpiop reacted to Sauron in Twitter reportedly set to accept Musk's offer [Twitter accepts deal]   
    I can't bring myself to care much. I kinda hope Musk burns it into the ground by taking his financial advice from reddit and loses billions in the process.
    Sigh
     
    Twitter is a private platform, moderation is necessary for it not to be completely unusable and even if it weren't they have a right not to host what they don't want to host. Just like you have a right to turn me away if I want to shout my political positions from your home's window. There have been social networks that have tried doing without a TOS and they have all instantly failed, because it's a bad idea. We'll see what happens with twitter but if Musk doesn't want to lose money on it forever he'll probably only do some performative reinstatement and never touch it again.
     
    Free speech in the US applies to public forums and other situations where your ability to speak depends on the US government. Even then there are limits and the US government is not required to signal boost your speech, only not to prevent it.
  5. Like
    elpiop reacted to peasee in I made an open-source Strawpoll Replacement   
    Hi all,
     
    In the last few WAN shows, Linus' complaints and troubles with Strawpoll motivated me to do some experimentation and development with a potential replacement for strawpoll that actually works.
    So I came up with this - a fully open-source, MIT licensed polling platform built on NodeJS and Redis. I've put a bit of thought into it to ensure it can manage high levels of load, with the details of some of my decisions and choices outlined in the README.md on the repo.
     
    The full source and details on a publicly available instance of it that I run are available here: https://github.com/peasee/poll
    It's relatively easy to install, and I've made an easy-install script that would be suitable for most installations if people want to install it for themselves to run their own polling platform (for whatever reason).
     
    Theoretically, LTT could also install it in their own racks with their hundreds of cores to handle any level of load the community could possibly throw at it. My publicly available instance isn't too high spec, but should be suitable for most loads for a theoretical 20-40k requests per second.
     
    If you encounter any bugs while using or installing it, feel free to raise issues on the repo and I'll get around to them. Hope you all enjoy!
  6. Informative
    elpiop reacted to RONOTHAN## in $400 Build for parents   
    https://www.ebay.com/itm/185077492740?hash=item2b177a6c04%3Ag%3A4w4AAOSweTlhYNhZ&LH_BIN=1
     
    https://www.ebay.com/itm/165208807139?hash=item26773656e3%3Ag%3APB4AAOSwvClhpW3d&LH_BIN=1
     
    https://www.amazon.com/dp/B08QV1V17R?tag=pcpapi-20&linkCode=ogi&th=1&psc=1
     
    https://www.amazon.com/dp/B07MFZY2F2?tag=pcpapi-20&linkCode=ogi&th=1
     
    This is what I'd buy. It's faster, cheaper, and smaller. 
  7. Informative
    elpiop reacted to Pixelfie in $400 Build for parents   
    For RAM I'd recommend this, because it's dual channel which is much better and costs the same.
     
    If the budget allows it it may be worth spending $40 extra on a 10400 in the long run. Right now there probably isn't much of a difference, but the 10400 would probably last a few more years before needing an upgrade.
  8. Agree
    elpiop reacted to pcshme33 in $400 Build for parents   
    Looks good to me. Really, any system with an SSD is "fast" for parents because they don't know the underlying parts of a PC. Just make sure you install an Adblocker like uBlock to keep him from downloading sketch software so it doesn't slow the system down and he should be good to go!
  9. Informative
    elpiop got a reaction from OhioYJ in Putty keeps my script from Completeing   
    PuTTY can not be run in command line mode only, as far as I am aware. However, you can use "plink" which comes packaged with PuTTY. If you have the directory added to your path, you should just be able to run plink.exe to achieve the result you're looking for.
  10. Like
    elpiop got a reaction from OhioYJ in Putty keeps my script from Completeing   
    You can use "start" to launch putty.exe in a new command prompt window.
     
    start putty.exe -ssh root@192.168.1.4 -pw mypassword -m "C:\shutdown.txt"  
  11. Agree
    elpiop got a reaction from MineTrain in how to cap fps in portal   
    in the developer console, you can enter "fps_max 60". you might need to do it at the menu before you load your save
  12. Agree
    elpiop got a reaction from Eigenvektor in JAVA show the cube and squares of numbers 1-10 using a loop   
    you can use Math.pow(number, power)
  13. Like
    elpiop got a reaction from Levent in [React] How can I import components from a template/theme that I bought?   
    I think to import the module that way you need to use `require` instead of `import`. Otherwise if the module is already packaged you can use `npm link` (or `npm install <path>`)  and then `import` should work
  14. Agree
    elpiop got a reaction from Eigenvektor in Python Fitbit dashboard 401 error, even when logged in browser   
    401 indicates that you are not authenticated to access the API. You need to authenticate to retrieve data from it. 
  15. Agree
    elpiop got a reaction from Kilrah in Python Fitbit dashboard 401 error, even when logged in browser   
    401 indicates that you are not authenticated to access the API. You need to authenticate to retrieve data from it. 
  16. Like
    elpiop got a reaction from starwarscity9 in Minecraft Modpack: Project Paragon Crash   
    try to disable optifine if you have it installed
  17. Informative
    elpiop got a reaction from yuh25 in Valve to start charging 1$ a month for better CSGO statistics   
    As far as I can tell, the only real new information you get in the stats page is the accuracy stats and heatmap. Match data / statistics are still available for free under CS:GO's "Personal Game Data" on your Steam games list. The stats page was added in-game as a part of Operation Broken Fang for players who bought the pass. The data was never freely available in this format prior to the operation. Doesn't seem compelling enough for me to pay for, but some of my friends have and they like it. 
  18. Agree
    elpiop reacted to dizmo in Valve to start charging 1$ a month for better CSGO statistics   
    I don't see the issue. If you're competitive, or play it enough to really need those stats, I'd say you owe them a little money.
  19. Informative
    elpiop got a reaction from Bomdur in Error while trying to build a proyect in xCode   
    you probably need to adjust the framework search paths in the build settings for your target in xcode so that it can find the facebook sdk
     
    For UILocalNotification, you would need to update the syntax if it's in your code. If it's in a framework then not much you can do unless there is a newer version where it's fixed, but it shouldn't break anything. 
  20. Agree
    elpiop reacted to CarlBar in Facebook exec says in hidden-cam discussion that Facebook and Google need to be broken up, and Zuckerberg stopped   
    The moment i saw that CRISPR bit any credibility went out the window for me. it's clear someone knows nothing about it and that harms their credibility on anything else.
  21. Funny
    elpiop reacted to StDragon in Facebook exec says in hidden-cam discussion that Facebook and Google need to be broken up, and Zuckerberg stopped   
    The problem isn't Project Veritas, it's your cancel culture mindset. Project  Veritas is a gift to humanity as of the few legitimate sources of investigative journalism. Sorry you find that offensive. The truth often is!

    As for CRISPR, yeah, everyone seems to be on a bandwagon to slow down or reverse aging; specifically Big Tech. A dollar to a donut they're looking to increase telomeres.
  22. Agree
    elpiop got a reaction from ukr4ever in youtube lagging while playing full screen games   
    disable vsync for google chrome in nvidia control panel
  23. Funny
    elpiop reacted to oeci in Please for the love of God stop using the term "PC Master Race"   
    After having heard this term in many tech youtube videos including LTT and also read it on many forums I finally decided to bring the issue up in this thread. I live in Europe and here the term "Master Race" is commonly associated with Nazi Germany language (a so called Nazism). I don't know whether this is also the case in the U.S. and/ or Canada but let me quote Wikipedia as a reminder:
     
     
    Here is the link to the entire article: https://en.wikipedia.org/wiki/Master_race
     
    As described above the Nazis assumed that they were the "Master Race" and thus superior to any other race on the planet. And some races (most prominently Jews) were deemed so unworthy/ inferior by the Nazis that they should not be allowed to reproduce and therefore needed to be exterminated. So in short words the Nazis used the term "Master Race" as justification for the most gruesome crime against humanity that mankind has ever committed, the industrialized killing of Jews, homosexuals, mentally ill and other people they deemed unworthy/ inferior.
     
    I don't know about you but find it disgusting to use an utterly toxic term like "Master Race" in combination with a hobby like PC gaming that is supposed to be fun. What are we implying here? That console gamers are so inferior/ unworthy that they should be gassed in concentration camps? What about the approximately 40 000 Canadian and the hundreds of thousands of American service men and women who gave their lives in the fight against the terror regime the Nazis established throughout Europe and in parts of Africa? What would they think about us if they saw that we call ourselves the "PC Master Race"?
     
    https://en.wikipedia.org/wiki/World_War_II_casualties
     
    Given the historic background I strongly believe the term "PC Master Race" is completely inappropriate and should therefore be banned from all future LTT videos and the LTT forums. I constitutes an insult to the millions of victims of the horrible Nazi Regime and their relatives/ descendants and trivializes one of the worst crimes ever committed. Or in other words: I'd rather be an unworthy console gamer than being part of any kind of "Master Race".
     
    @LinusTech @alpenwasser @Glenwing @GzeroD
     
    Thanks in advance for taking my request into consideration.
  24. Like
    elpiop got a reaction from Dainan in A fatal javascript error occurred. Cannot find module   
    reinstall discord, have had the same thing happen to me
  25. Like
    elpiop reacted to Light-Yagami in Help me with Google Sheets please   
    I figured out what was wrong. Google Sheets does accept the formula, but you have to write an ";" instead of ","
     
    That is all. Took me 2 hours to figure out, when I uploaded a working Excel document to Drive and opened it with Google spreadsheets - and it automatically merged the formula. Thanks for the help though, I greatly appreciate it
×