Skip to content
View SightSpirit's full-sized avatar

Block or report SightSpirit

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 Loading

  1. Bash shell script for updating packa... Bash shell script for updating packages on Debian-based OSs using apt-get.
    1
    #!/bin/bash
    2
    
    
    3
    PROMPT_COMMAND='echo -ne "\033]0;Package Updater\007"'
    4
    
    
    5
    echo "~~~~~ PACKAGE UPDATER ~~~~~"
  2. Simple Windows batch file that resta... Simple Windows batch file that restarts Windows Explorer
    1
    @ECHO OFF
    2
    ECHO "Are you sure you want to restart explorer.exe?"
    3
    SET /P YN="Y/N> "
    4
    IF /I %YN%==Y (
    5
        TASKKILL /F /PID explorer.exe && START %SYSTEMROOT%\explorer.exe
  3. A Python class representing a turnab... A Python class representing a turnable crank
    1
    '''
    2
    Description:
    3
    I got bored and decided to make a class in Python. The `Crank` class represents a turnable crank and tracks how many degrees it's been turned and how many times it has been fully turned. (I may or may not have been inspired subconsciously by *Unbreakable Kimmy Schmidt*.)
    4
    5
    Example Use Case:
  4. Windows PowerShell script to import ... Windows PowerShell script to import Group Policy templates from Desktop
    1
    #Requires -RunAsAdministrator
    2
    
    
    3
    function Pop() { Pop-Location }
    4
    
    
    5
    "$env:USERPROFILE\Desktop" | Push-Location
  5. Some Microsoft Visio macros Some Microsoft Visio macros
    1
    '1-line macro that centers an entire drawing on the page. Moves all shapes together, so their relative positions remain intact.
    2
    
    
    3
    Sub CenterOnPage()
    4
    
    
    5
        Application.ActivePage.CenterDrawing