Tagged Questions
The gist tag has no wiki summary.
12
votes
1answer
2k views
PostgreSQL: GIN or GiST indexes?
From what information I could find, they both solve the same problems - more esoteric operations like array containment and intersection (&&, @>, <@, etc). However I would be interested in ...
11
votes
5answers
796 views
How do you manage your gists on github?
I love github and their gist service and that's why I'm keeping a lot of code snippets and even development notes as a gist on my github account. It also makes it easy to share them with my ...
5
votes
2answers
149 views
Can I share an entire Git project via Gist?
I'm writing a tutorial for users of our API, and want to incorporate code snippets and complete files for example purposes. I can expose the entire directory structure as a git, for people to ...
5
votes
2answers
436 views
How to delete a specific revision of a github gist?
I created a Gist on GitHub and I saw informations I don't want anyone to see.
I updated the file since, but everybody can still access the old revision of the file.
Except deleting the Gist, is there ...
4
votes
1answer
241 views
How to delete a gist on GitHub? [closed]
Is there a way I can remove a gist on GitHub? Created a gist earlier, but don't really want it there anymore.
3
votes
1answer
90 views
Can I make a pull request on a gist on GitHub?
Can I make a pull request on some else's gist on GitHub?
I'm aware of the fork, clone and commit workflow for a gist I own. I'd like to know if I can request to update someone else's gist with my ...
3
votes
1answer
42 views
What are the green and red gems beside Github Gist Revisions
I have just started to use Github and have been doing some tests with Gist, I notice beside each revision there are little green and red dots of varying amounts. Does anyone know what they are?
The ...
3
votes
3answers
416 views
Github commiting (push) gist
I cannot understand this.
I have created a gist. Then I run
$ mkdir mygist
$ cd mygist
$ git init
$ git pull git@gist.github.com:869085.git
Then I add files, change files and try to commit.
$ git ...
2
votes
2answers
138 views
Github gist page won't load in iframe
I want to list all my gists on a single page and an iframe seemed like the quickest and easiest solution, the problem is that it won't load. My example show the same html used to make gist.github.com ...
2
votes
2answers
635 views
Is there an internal alternative to gist.github.com to run behind a firewall?
gist.github.com is incredibly handy, but I'd like to be able run something similar for sharing code samples internally with other developers behind the firewall where I work, so I don't constantly ...
2
votes
2answers
510 views
Using the Github Gist API from Haskell
First of all, I've never really used APIs before, and I've never used the HTTP library in Haskell. I'm not sure what I'm doing wrong here, so maybe somebody who knows can help.
I'm using what I can ...
2
votes
4answers
3k views
What's the difference between B-Tree and GiST index methods (in PostgreSQL)?
I have been working on optimizing my Postgres databases recently, and traditionally, I've only ever use B-Tree indexes. However, I saw that GiST indexes suport non-unique, multicolumn indexes, in the ...
1
vote
1answer
34 views
Adding file to github:gist thats not text
https://gist.github.com/1595572
I'm adding a ttf font to a github:gist so i can share it. the person above did it but I'm only seeing ways to add it as text. How might one go about adding the actual ...
1
vote
1answer
49 views
Git gist - Markdown does not work
I am not able to get Markdown work in a gist. My post is available here.
Notice that the same Markdown works when I add a comment.
What did I miss?
1
vote
1answer
201 views
push to gist returning wtf error
I cloned a gist using the Public Clone URL. I made my changes, added, and committed. However when I run, git push origin master I get the following error:
fatal: remote error:
You can't push to ...
1
vote
3answers
139 views
Pull All Gists from Github?
Is there an API call or any scripts that I failed to overturn that would pull all my Gists from Github to an outside git repo or just return me a list of their names? I know each one is a separate ...
1
vote
2answers
162 views
Lazy load github gist files to display source code on the website
I have a couple of gists which I need to include in a website post to showcase the source code. Currently, I'm inlining each of the multiple gists at various places in the HTML with script tags, ...
1
vote
1answer
235 views
How do I use this github url?
I just uploaded a little coding project I was working on at gist.github because it seemed like a nice fast way of uploading a couple of classes at once.
I want to link someone to my "gist" and in ...
1
vote
1answer
241 views
Basics of version control from a Git(hub) perspective
I learned of gist.github.com from Mozilla Ubiquity, and have been using it to post small stuff I've written, and to keep it updated in a public place, with version control so no information is lost.
...
0
votes
0answers
66 views
Anonymous Pastebin / Gist style site that runs Java?
Sure there's a bunch of sites that will let you paste in snippets of source, Wikipedia even has a list http://en.wikipedia.org/wiki/Comparison_of_pastebins
But for my specific use case, there's a ...
0
votes
1answer
71 views
How can I change the colors for my source code on GitHub?
I tried using GitHub to host a gist of Perl code, but I don't think there is enough contrast in colors. Can I modify them? I've tried searching Google, GitHub, and Stackoverflow.
0
votes
0answers
108 views
GIST implementation in Java
I am looking for a Java implementation of GIST vector calculation as in Torralba's website, http://people.csail.mit.edu/torralba/code/spatialenvelope/. The code there is only available for Matlab and ...
0
votes
1answer
102 views
Posting a gist to github.com in ruby not working
I am trying to create a new gist on github.com by posting the the URL. I have done this in C# and it works fine, but when I try to replicate in ruby on rails the post never seems to work I am always ...
0
votes
1answer
64 views
Bookmarklet for github gist paste service?
I would like something like in posterous, for example (see here). Just a link on my browser that allows me to grab the code or pre blocks inside a web page, and choose the one to add to my gists.
...
0
votes
2answers
211 views
A way to add markup to gist in http://gist.github.com/?
Seems like a lot of people use gists for cheatsheets, including me, so unlike code line wrapping would be nice! Any way to do this?
-4
votes
1answer
113 views
What is the difference between github and gist? [closed]
What is the purpose of gist and how is it different from regular code sharing/maintaining using github?