Skip to content
View grafst's full-sized avatar
🚲
🚲
  • Not a Business Inc.
  • Winterthur, Switzerland
  • X @grafst
Block or Report

Block or report grafst

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. choclatey installieren und verwenden choclatey installieren und verwenden
    1
    # Chocolatey
    2
    _Windows Equivalent zu aptitude und homebrew - Installiere Software à la 20xx_
    3
    ## Installieren
    4
    1. Powershell als Administrator ausführen
    5
    2. Scripts für diese Session erlauben: `Set-ExecutionPolicy Bypass -Scope Process -Force`
  2. Excel Blattschutz entfernen ohne Pas... Excel Blattschutz entfernen ohne Passwort
    1
    1. Rechtsklick --> 7-Zip --> Open archive
    2
    2. xl/workbook.xml öffnen
    3
    3. nach dem gewünschten Blatt suchen und die rId merken z.B. rId55
    4
    4. Datei schliessen
    5
    5. xl/worksheets/sheetXX.xml öffnen
  3. get the ssid of the currently connec... get the ssid of the currently connected wifi
    1
    powershell (get-netconnectionProfile).Name
  4. split the list into at most n chunks... split the list into at most n chunks of approximately same size
    1
    #!/usr/bin/python3
    2
    
                  
    3
    def split_into(list,n):
    4
        chunks=[[] for x in range(min(n,len(list)))]
    5
        # ^--- replace the 'min(...)' with just 'n' for empty lists if len(list)<n