Skip to content
View kerkenit's full-sized avatar
Block or Report

Block or report kerkenit

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. jquery.logging jquery.logging Public

    JavaScript

  2. Detect browser Detect browser
    1
    $(function () { 
    2
      $.browser.chrome = $.browser.webkit && !!window.chrome;
    3
      $.browser.safari = $.browser.webkit && !window.chrome;
    4
      $.browser.firefox = $.browser.mozilla
    5
      $.browser.internetexplorer = window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0;
  3. Reset the pixels of a screen to prev... Reset the pixels of a screen to prevent burning in
    1
    #PixelReset {
    2
    	position: absolute;
    3
    	left:0;
    4
    	top:0;
    5
    	width: 100%;
  4. Add 150 times the last 250 files to ... Add 150 times the last 250 files to GitHub
    1
    #!/bin/bash
    2
    for n in {1..150}; do tac .gitignore | sed "1,250d" | tac | tee .gitignore2 && mv .gitignore2 .gitignore && git add --all && git commit -m "Old checkin" && git push ; done
  5. ffmpeg-install.sh ffmpeg-install.sh
    1
    #!/bin/bash
    2
    # Compile and install (or install via Apt) FFmpeg Codecs
    3
    # Compile and install FFmpeg suite
    4
    
                  
    5
    echo "Begining Installation of FFmpeg Suite"
  6. Test CPU Test CPU
    1
    #!/bin/bash
    2
    # Detects which OS and if it is Linux then it will detect which Linux
    3
    # Distribution.
    4
    
                  
    5
    # -e option instructs bash to immediately exit if any command [1] has a non-zero exit status