Skip to content

Instantly share code, notes, and snippets.

@designbyadrian
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save designbyadrian/ab3d957af0589e509543 to your computer and use it in GitHub Desktop.

Select an option

Save designbyadrian/ab3d957af0589e509543 to your computer and use it in GitHub Desktop.

Revisions

  1. designbyadrian renamed this gist Oct 27, 2014. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. designbyadrian renamed this gist Oct 27, 2014. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. designbyadrian revised this gist Oct 27, 2014. 2 changed files with 0 additions and 0 deletions.
    File renamed without changes.
    File renamed without changes.
  4. designbyadrian revised this gist Oct 27, 2014. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -1,3 +1 @@
    Based on the article [The Tiniest GIF Ever](http://probablyprogramming.com/2009/03/15/the-tiniest-gif-ever)

    and comment by *Example*
    At only 26 bytes, this GIF is based on the article [The Tiniest GIF Ever](http://probablyprogramming.com/2009/03/15/the-tiniest-gif-ever) and comment by *"Example"*
  5. designbyadrian created this gist Oct 27, 2014.
    3 changes: 3 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    Based on the article [The Tiniest GIF Ever](http://probablyprogramming.com/2009/03/15/the-tiniest-gif-ever)

    and comment by *Example*
    1 change: 1 addition & 0 deletions tiniest-base-64.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    document.getElementById("img").src = "data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=";
    4 changes: 4 additions & 0 deletions tiniest-base-64.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    <?php
    header('Content-Type: image/gif');
    echo base64_decode('R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=');
    ?>