Jump to content

FreQUENCY

Member
  • Posts

    268
  • Joined

  • Last visited

Awards

This user doesn't have any awards

System

  • CPU
    2700x
  • Motherboard
    B450M MORTAR
  • RAM
    16G GSKILL 16CAS 3200
  • GPU
    MSI 1660
  • Storage
    M2
  • PSU
    GS 650
  • Display(s)
    XL2411P

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

FreQUENCY's Achievements

  1. Hello. My first NEW EC2C has been a complete disaster for me with freezes and mouse skips. So,i got the EC1C just to see and i noticed it has the exact same issues but at not that extend. I will get microskips with the mouse and it is completely annoying and messes with my aim. My EC1A will work amazingly with 0 issues. I have a deep feeling that it is a ryzen issue since my 8K polling rate razer mouse wont work either.My specs here. Any ideas? Thank you!
  2. I dont really care to be honest.I need good quality and need to hear footsteps for once in my life. @Imbadatnames
  3. As the title stated.I need a headset (not logitech or hyperx etc) for games and general purpose. I am not the greatest for this and need a bit of help. I have really big ears sadly and i want need a headset with bigger earcups from the G933s from logitech. I am also using an AUDIENT EVO 4 as my audio interface. Thank you guys.
  4. Hello @C2dan88 .I forgot to mention to my original post. I avoid using a 3rd party library because i have files moving from drive to drive. This means that my code will run to an other PC but i do not know how to make this as an EXE. Meaning that,i have to find a way to complile a lot of files to 1 exe.I avoid winshell because at this stage,i have to tell the client to download winshell etc. Trying to find a way to do this as natively as possible until i find a way to make a proper exe!
  5. Gentlemen.Title says it all.I cant find a way to get the path of the startup folder in windows using python. I found my username using the getlogin function but i wont want to do string surgery and replace words. Is there a direct way to get the directory from a command?
  6. Works like a charm.I picked a course that teaches regex too and i am so lost. I need to figure out how to: get the word that is previous of the date find the words that start with a Capitalised letter and have at least 3 characters in length. @JogerJCan you please explain me in english how this is formed? So i can understand it ?
  7. @C2dan88 Works but i need to tweak it to get the C too. The result is ['-1.7', '0.7', '1.4', '1.5', '1.7', '1.9', '24.3', '24.2', '23.8', '23.3', '23.1', '22.8', '22.7', '22.6'] 14 Is your way the "correct" way or is it a workaround for this case?
  8. for eg the items inside (-1.7 C) will be output as ('0.7', '.7'), There is something with the decimals.I will look into the link in the meanwhile
  9. @C2dan88The result i get is [] . Inside the parentheses are items like (24.2 C) or (25.2 C)
  10. Hello. I cant find a way to get the text inside a sentence in python. This is the code import re f=open("weather.txt", mode="r", encoding="utf8") content=f.read() f.close() pattern=re.compile("[0-9]") # TO BE CHANGED! result=pattern.findall(content) print(result) print(len(result)) I cant get the proper command for re.compile. For eg. I need to get the program to tell me the items inside the ( ).
  11. It runs if change this from os.system ('cmd /c "I:\TEST\FINAL\pr.exe I:\TEST\FINAL\ file.bat" ') to os.system ('cmd /c "regedit /s beta.reg" ') and works like a charm
  12. Hello. os.system ('cmd /c "I:\TEST\FINAL\pr.exe I:\TEST\FINAL\ file.bat" ') This code will run the program Powerrun which will run a file with the highest privileges. First portion is the program directory and then the argument on the right.It will work fine if i do some basic windows commands but i changed the code inside the file.bat to reg import beta.reg It will not work.I cant find a way to import a reg file from python code.I think it is because it needs UAC to run which makes sense. Can i somehow run this on python and ask the person to click on the UAC to accept? Thanks!
  13. @noitcelfeR Your code works like a charm.I moved the folder and the files inside the C drive location.
  14. @Alexeygridnev1993,no luck with running it as admin. I dont know how to properly find a way to fix it,yet.
×