Skip to content
View m-nccloud's full-sized avatar
💭
camelCase PascalCase snake_case kebab-case
💭
camelCase PascalCase snake_case kebab-case

Block or report m-nccloud

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 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. ImageInverter ImageInverter Public

    Use found images or your own photos to create abstract art

    Dart 1

  2. Graph_Algorithms Graph_Algorithms Public

    Framework for constructing graphs and computing graph algorithms(shortest path, etc)

    Java

  3. C-Book C-Book Public

    Kernigan and Richie's C Book Problems

    C

  4. Text_Shuffle Text_Shuffle Public

    A small Java gui/console program that shuffles strings a specified number of times, outputs all the shuffles, all matching shuffles in alphabetical order, and the most frequently occurring shuffle

    Java

  5. Xmas-Screensavers Xmas-Screensavers Public

    A collection of 3 different Christmas screensavers, each with unique (toggleable) music and adjustable snowfall animation.

    Java

  6. Bash shell function to toggle the ni... Bash shell function to toggle the night light feature in the Gnome DE for Linux. To use, slap in your ~/.bash_aliases (or ~/.bashrc), source it and type nl to toggle on and off.
    1
    nl () {
    2
            if [ "$(gsettings get org.gnome.settings-daemon.plugins.color night-light-enabled)" = true ]; 
    3
            then
    4
                    gsettings set org.gnome.settings-daemon.plugins.color night-light-enabled false
    5
                    echo 'Disabling night light...'