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 characters
| Using https://raw.github.com/libgit2/luagit2/master/lua-git2-scm-0.rockspec... switching to 'build' mode | |
| Cloning into 'luagit2'... | |
| remote: Counting objects: 60, done. | |
| remote: Compressing objects: 100% (38/38), done. | |
| remote: Total 60 (delta 32), reused 38 (delta 20) | |
| Receiving objects: 100% (60/60), 52.90 KiB, done. | |
| Resolving deltas: 100% (32/32), done. | |
| gcc -O2 -fPIC -I/usr/include/lua5.1 -c src/pre_generated-git2.nobj.c -o src/pre_generated-git2.nobj.o | |
| src/pre_generated-git2.nobj.c: In function ‘odb_backend_read_cb’: | |
| src/pre_generated-git2.nobj.c:1264:11: error: ‘GIT_ENOMEM’ undeclared (first use in this function) |
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 characters
| require 'csv' | |
| CSV.read('results_formatted_copy.csv').each do |row| | |
| puts row.class | |
| end |
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 characters
| require 'rake' | |
| gem_files = FileList[ | |
| 'src/models/*.rb', 'src/public/*.png', 'src/views/*.erb', | |
| 'src/app.rb', 'src/config.ru', | |
| 'catbird', 'catbird-gui.vala', 'extconf.rb' | |
| ] | |
| Gem::Specification.new do |s| | |
| s.name = 'catbird' |
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 characters
| using Gtk; | |
| using WebKit; | |
| public class CatbirdWindow : Window { | |
| private WebView web_view; | |
| public CatbirdWindow () { | |
| this.title = "Catbird"; | |
| set_default_size (800, 600); |
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 characters
| #include <gtk/gtk.h> | |
| #include <libappindicator/app-indicator.h> | |
| int main (int argc, char **argv) { | |
| gtk_init(&argc, &argv); | |
| GtkWidget *menu; | |
| GtkWidget *menu_item; | |
| AppIndicator *indicator; |
NewerOlder