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

Block or report Flygenring

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. sdio-theme sdio-theme Public

    Custom theme for Snappy Driver Installer Origin

    5

  2. HttpStatus HttpStatus Public

    A small, self-contained utility for working with HTTP statuses

    JavaScript

  3. A proper drop-in replacement for apa... A proper drop-in replacement for apache_request_headers() when that's not available
    1
    <?php
    2
    
                  
    3
    if(!function_exists('apache_request_headers')) {
    4
    ///
    5
        function apache_request_headers() {
  4. Just a quick thought on generating F... Just a quick thought on generating Fibonacci numbers
    1
    for(var f=[0,1], i=0; i<20; f[i+2]=f[i++]+f[i]);
  5. Script for a slightly improved full ... Script for a slightly improved full screen YouTube (prefix with 'javascript:' and it works as a magical bookmarklet)
    1
    url = window.location.href.replace(/(>|<)/gi,'').split(/(vi\/|v=|\/v\/|youtu\.be\/|\/embed\/)/); if(url[2] !== undefined) { id = url[2].split(/[^0-9a-z_\-]/i)[0]; el = document.getElementsByTagName('html')[0]; el.style.height = "100%"; el.innerHTML = '<body style="width:100%;height:100%;padding:0;margin:0;"><iframe width="100%" height="100%" src="https://www.youtube.com/embed/' + id + '" frameborder="0" allowfullscreen></iframe></body>'; } else { alert('No video was found'); }