Jump to content

GreenScarz

Member
  • Posts

    2
  • Joined

  • Last visited

Awards

This user doesn't have any awards

GreenScarz's Achievements

  1. I got this M.2 NMVe drive (was $22, now $29) and put it in my Mac Mini. Was okay, eventually replaced it with a 970 evo due to performance consistency issues. https://www.amazon.com/gp/product/B07Q61XYTZ/ref=ppx_yo_dt_b_asin_title_o02_s00?ie=UTF8&th=1
  2. Is there a reason we didn't automate this process? Could've used Python to open new tabs automatically until the machine crashed: import webbrowser import os import time chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s' os.startfile( 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe', "open" ) x = 0 while isinstance(x, int) is True: webbrowser.get(chrome_path).open_new('lttstore.com') x += 1 print(x) time.sleep(1)
×