Jump to content

elpiop

Member
  • Posts

    755
  • Joined

Everything posted by elpiop

  1. 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. It doesn't continue running after you exit the game. I don't really see it differently from any other anticheat like EAC or BattleEye
  3. set external and local port to 25565 (or whatever port you have in the server properties file), leave source ip blank, set local ip to the local ip of the machine the server is running on
  4. decided to pick up the 7700x bundle since it dropped to $449 - https://www.microcenter.com/product/5006269/amd-ryzen-7-7700x,-msi-b650-p-pro-wifi,-gskill-flare-x5-series-32gb-ddr5-6000-kit,-computer-build-combo
  5. Improvement in 1% lows would be nice (like above). Hogwarts Legacy is probably the newest game I've played and it stutters pretty badly. I know that's game-specific but it seems like a lot of new releases tend to have performance problems, which is worse on older hardware. Also, I get a lot of reprojection in VR which is annoying sometimes.
  6. Yeah, the price difference makes it an interesting option. Will think about that as well.
  7. In the past, I have kept my CPU for 5/6 years before upgrading. I don't really know if I would need to upgrade my CPU again before AM5 is no longer supported. So that 13700k combo does seem like a good option (minus its higher power consumption )
  8. Looking to upgrade from an 8700k, mainly just for gaming. I was leaning towards AM5 since Microcenter seems to have some decent combos: https://www.microcenter.com/category/4294833320/computer-build-combos, but I wasn't sure if it would be better to pick up a 7800x3d instead (or if RAM from those combos is actually good) Budget (including currency): Don't really have a budget but would like to keep it reasonable Country: US Games, programs or workloads that it will be used for: CS:GO / AAA games / VR Other details (existing parts lists, whether any peripherals are needed, what you're upgrading from, when you're going to buy, what resolution and refresh rate you want to play at, etc): - My main monitor is 1440p 144hz, and I have 2 others that are 1440p 60hz. - Keeping my existing GPU (rtx 3080) - Will reuse my PSU (850w) if I am able to, not opposed to buying a new one though. I might want to keep my current build in one piece. - Reusing 3 drives for storage but will buy a new SSD for OS
  9. Your weather array is empty. Initializing it using [Weather]() creates an array with 0 elements. So trying to index into it will crash your app. instead of `self.weather[0] = gotWeather` (which will give you an index out of range exception), you can use either: self.weather.insert(gotWeather, at: 0) // or this self.weather.append(gotWeather)
  10. You could read an environment variable to do conditional imports: import os if os.environ.get('ENVIRONMENT') == 'dev': import x else: import y # in this case, ENVIRONMENT=dev would only be set on your local machine
  11. If you can provide a sample input and expected output that would be helpful
  12. you could put the actual sheet link in an iframe with only view permissions. Or you could have one sheet with the headers and another with the data, then publish the two sheets separately and put the header sheet above the other one in the web page
  13. The nearbysearch API will return only 20 results per page and up to 60 results total (3 pages). See here: https://developers.google.com/maps/documentation/places/web-service/search-nearby#PlaceSearchPaging. You may need to add a delay between calls to the API with the page token.
  14. In the past i've had to allow incoming connections for the java exe that the minecraft server jar file is launching from. For my router I need to leave the incoming port as blank (or any), does it work if you don't specify any incoming port?
  15. are you blocking access to port 25565 on your firewall (for java)?
  16. I was looking at some Optiplex before, didn't realize people sold them barebones like that. I'll definitely keep that in mind
  17. Looking to build a new pc for my parents (mainly my father). Would like to keep it around $400 not including OS/monitor/peripherals. He's just going to be using it for web browsing/youtube/video streaming, but I'd like it to feel relatively fast so I don't have to hear any complaints about it being slow in a few years. I was thinking something like this, but would appreciate any feedback if there are better deals out there right now. PCPartPicker Part List CPU: Intel Core i3-10105 3.7 GHz Quad-Core Processor ($123.84 @ Amazon) Motherboard: Asus PRIME B560M-A Micro ATX LGA1200 Motherboard ($99.99 @ Amazon) Memory: Corsair Vengeance LPX 8 GB (1 x 8 GB) DDR4-3200 CL16 Memory ($39.99 @ Amazon) Storage: Samsung 970 Evo Plus 500 GB M.2-2280 NVME Solid State Drive ($64.98 @ Amazon) Case: DIYPC F2 MicroATX Mini Tower Case ($42.96 @ Newegg) Chose this because he likes orange but if it sucks I'm fine with changing it to anything else Power Supply: SeaSonic CORE GM 500 W 80+ Gold Certified Semi-modular ATX Power Supply ($29.99 @ Newegg) Total: $401.75 Prices include shipping, taxes, and discounts when available Generated by PCPartPicker 2021-12-01 15:25 EST-0500 Thanks in advance.
  18. depends on the terminal you are using, if it's bash, this explains it https://medium.com/@ajaykarwal/edit-the-terminal-prompt-name-on-macos-4d80163be6a1. For zsh I think it's the same but the file will be different
  19. 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.
  20. 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"
  21. Typically you would do this using a sourcemod plugin or vscripts. Is there any reason you have to just use console commands?
  22. 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
  23. You have a typo here (hight) which may be part of the problem. Also if you try to build with the network manager stuff commented out then with it uncommented it might work. Other than that you can try to remove some elements from the single ZStack, and put them in another one as the error message states Spacer() .frame(hight:100)
  24. 401 indicates that you are not authenticated to access the API. You need to authenticate to retrieve data from it.
×