• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
TRIGGERcmd
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  1. Home
  2. Nico Ramirez
  • Profile
  • Following 0
  • Followers 0
  • Topics 1
  • Posts 3
  • Best 1
  • Controversial 0
  • Groups 0

Nico Ramirez

@Nico Ramirez

1
Reputation
8
Profile views
3
Posts
0
Followers
0
Following
Joined Jan 4, 2021, 3:43 AM Last Online Jul 30, 2022, 6:14 AM

Nico Ramirez Unfollow Follow

Best posts made by Nico Ramirez

  • Python code that obtains the parameter that was sent to alexa, and puts it on the clipboard

    The parameter is also stored in the variable 'par'

    import pyperclip as clipboard    
    import time   
    time.sleep(2)
    ruta = r"C:\Users\nicoa\.TRIGGERcmdData\debug.log" 
    
    with open(ruta,"r") as f:
        lista=[]
        x=1
        texto=[]
       
        for i in f:
            texto.append(i)
        for pos,char in enumerate((texto[-3])):     
    
            if(char == '.'): 
                x=x+1
            if char== '\'' :
                x=x+1              
            if x==2:
                lista.append(char)
            
        lista.pop(0)
        par="".join(lista)
        clipboard.copy(par)
    
    posted in General Discussion
    N
    Nico Ramirez
    Nov 4, 2021, 4:26 PM

Latest posts made by Nico Ramirez

  • Python code that obtains the parameter that was sent to alexa, and puts it on the clipboard

    The parameter is also stored in the variable 'par'

    import pyperclip as clipboard    
    import time   
    time.sleep(2)
    ruta = r"C:\Users\nicoa\.TRIGGERcmdData\debug.log" 
    
    with open(ruta,"r") as f:
        lista=[]
        x=1
        texto=[]
       
        for i in f:
            texto.append(i)
        for pos,char in enumerate((texto[-3])):     
    
            if(char == '.'): 
                x=x+1
            if char== '\'' :
                x=x+1              
            if x==2:
                lista.append(char)
            
        lista.pop(0)
        par="".join(lista)
        clipboard.copy(par)
    
    posted in General Discussion
    N
    Nico Ramirez
    Nov 4, 2021, 4:26 PM
  • RE: Open Specific Netflix Movie with Alexa

    @AdalbertUma pergunta, eu uso python, quando procuro que o argumento está vazio, você poderia me ajudar com qual seria o problema, por favor

    posted in Windows
    N
    Nico Ramirez
    Oct 21, 2021, 8:58 PM
  • RE: How can use the ZOOM Meetings app meetings with the Trigger CMD?

    Good afternoon, I am trying to do the process which you indicate, but when opening, it only opens the zoom but does not enter the meeting, I do not know if you have any video or could you help me in any way please

    posted in Windows
    N
    Nico Ramirez
    Jan 4, 2021, 4:27 PM