Skip to content
View nealchawn's full-sized avatar

Block or report nealchawn

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. TreeClass TreeClass Public

    The Tree Class Will copy a Directory and subDirectories to another Location. It Also allows you to modify the files in Transit by passing in a function.

    C#

  2. ruby_fundamentals ruby_fundamentals Public

    Basically a cheatsheet for ruby, mainly things I do not use often.

    Ruby

  3. mac_dotfiles mac_dotfiles Public

    dotfiles for zshell and others

    Shell

  4. WebServer WebServer Public

    My Own WebServer

    C

  5. A small PowerShell script to save Wi... A small PowerShell script to save Windows 10 lock screen images to a more accessible location.
    1
    $files = gci $Env:LocalAppData\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets |
    2
        where Length -gt 1kb
    3
    if ($files) {
    4
        $shell = New-Object -ComObject Shell.Application
    5
        $folder = "$Env:USERPROFILE\Pictures\Spotlight"
  6. python equivalent of ruby's binding.pry python equivalent of ruby's binding.pry
    1
    import code; code.interact(local=dict(globals(), **locals()))