Skip to content
View IanoNjuguna's full-sized avatar
:electron:
:electron:
Block or Report

Block or report IanoNjuguna

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

    BoBa is a ball bouncing around within a window. I built this to demonstrate the principles of animation and collision detection using the Python's Turtle module.

    Python

  2. Sockets Sockets Public

    This repository contains C programs for building both HTTP and TCP servers. These servers handle client requests and demonstrate basic networking concepts.

    C 1

  3. BashResources BashResources Public

    A collection of BaSH resources.

    1 1

  4. yozaka yozaka Public

    Yozaka is a 2D platformer game built using Python's pygame-ce library

    Python 1

  5. Use wget to download a website's ass... Use wget to download a website's assets, including images, css, javascript, and html. From http://www.linuxjournal.com/content/downloading-entire-web-site-wget
    1
    $ wget \
    2
      --recursive \
    3
      --no-clobber \
    4
      --page-requisites \
    5
      --html-extension \
  6. When executed, this batch script con... When executed, this batch script converts all video files (mp4) in a folder to audio files (mp3) and stores them in the output\ folder (automatically created). NOTE: You should have ffmpeg installed before execution.
    1
    echo off
    2
    mkdir outputs
    3
    for %%a in ("*.mp4") do ffmpeg -i "%%a" -b:a 192K -vn "outputs\%%~na.mp3"
    4
    pause