Last active
December 24, 2025 04:19
-
Star
(292)
You must be signed in to star a gist -
Fork
(36)
You must be signed in to fork a gist
-
-
Save atenni/5604615 to your computer and use it in GitHub Desktop.
Revisions
-
atenni revised this gist
May 18, 2013 . No changes.There are no files selected for viewing
-
atenni revised this gist
May 18, 2013 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,14 @@ **Problem:** When linking to the raw version of a gist, the link changes with each revision. **Solution:** To return the first file from a gist: `https://gist.github.com/[gist_user]/[gist_id]/raw/` * Example: <https://gist.github.com/atenni/5604522/raw/> * Works even when you change the filename. To get a file from multi–file gist: `https://gist.github.com/[gist_user]/[gist_id]/raw/[file_name]` * Example: <https://gist.github.com/atenni/5604522/raw/README.md> _(via: <http://stackoverflow.com/a/14529686>)_ -
atenni created this gist
May 18, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ **Problem:** When linking to the raw version of a Gist, the link changes with each revision. **Solution:** `https://raw.github.com/gist/[gist_id]` returns first file from the gist. For gist with multiple files: `https://raw.github.com/gist/[gist_id]/[file_name]` The url works even when you change the filename: * https://raw.github.com/gist/4636655 * https://raw.github.com/gist/4636655/imdb-getglue.js _(via: <http://stackoverflow.com/a/14529686>)_