Skip to content
View Flygenring's full-sized avatar

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.

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

    Custom theme for Snappy Driver Installer Origin

    6

  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. HttpStatusHelper.js HttpStatusHelper.js
    1
    /**
    2
     * Reference and translate HTTP Status Codes
    3
     * Modified from: https://github.com/prettymuchbryce/node-http-status/blob/master/index.js
    4
     * Implemented according to:
    5
     * - http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
  5. 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]);
  6. MODX Snippet to get a field from a r... MODX Snippet to get a field from a resource based on a supplied resource id, meant to be used as an output filter.
    1
    <?php
    2
    /**
    3
     * Gets a field from a resource based on a supplied resource id, meant to be used as an output filter.
    4
     *
    5
     * Based on a resource ID a field can be retrieved. This can be standard fields as 'pagetitle' or 'alias',