Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 "formula" | |
class Jrnl < Formula | |
homepage "http://maebert.github.io/jrnl/" | |
url "https://github.com/maebert/jrnl/archive/1.9.6.tar.gz" | |
sha1 "925571cd9ba85803a291d0a0816dbf79882e45dd" | |
revision 1 | |
bottle do | |
cellar :any |
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 "formula" | |
class Jrnl < Formula | |
homepage "http://maebert.github.io/jrnl/" | |
url "https://github.com/maebert/jrnl/archive/1.9.6.tar.gz" | |
sha1 "925571cd9ba85803a291d0a0816dbf79882e45dd" | |
revision 1 | |
bottle do | |
cellar :any |
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
diff --git a/SConstruct b/SConstruct | |
index 4bd700e..6aefc58 100644 | |
--- a/SConstruct | |
+++ b/SConstruct | |
@@ -1431,7 +1431,7 @@ if not preconfigured: | |
env["CAIRO_ALL_LIBS"] = ['cairo'] | |
if env['RUNTIME_LINK'] == 'static': | |
env["CAIRO_ALL_LIBS"].extend( | |
- ['pixman-1','expat','fontconfig','iconv'] | |
+ ['pixman-1','expat','iconv'] |
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
diff --git a/Mac/Tools/pythonw.c b/Mac/Tools/pythonw.c | |
index 1d2db38..1edd851 100644 | |
--- a/Mac/Tools/pythonw.c | |
+++ b/Mac/Tools/pythonw.c | |
@@ -170,17 +170,8 @@ main(int argc, char **argv) { | |
*/ | |
char* slash = strrchr(path, '/'); | |
if (slash) { | |
- char replaced; | |
- replaced = slash[1]; |
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
In [1]: import pandas as pd | |
In [2]: df = pd.DataFrame({'foo': ['a', 'a', 'b', 'b'], 'bar': [1,2,3,4]}) | |
In [3]: g = df.groupby('foo') | |
In [5]: for group in g: | |
...: print(group) | |
...: | |
('a', bar foo |
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 "formula" | |
class Hatari < Formula | |
homepage "http://hatari.tuxfamily.org" | |
head "http://hg.tuxfamily.org/mercurialroot/hatari/hatari", :using => :hg, :branch => "default" | |
url "http://download.tuxfamily.org/hatari/1.8.0/hatari-1.8.0.tar.bz2" | |
sha1 "08d950c3156c764b87ac0ae03c4f350febff9567" | |
depends_on :x11 | |
depends_on "cmake" => :build |
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 "formula" | |
class Hatari < Formula | |
homepage "http://hatari.tuxfamily.org" | |
head "http://hg.tuxfamily.org/mercurialroot/hatari/hatari", :using => :hg, :branch => "default" | |
url "http://download.tuxfamily.org/hatari/1.8.0/hatari-1.8.0.tar.bz2" | |
sha1 "08d950c3156c764b87ac0ae03c4f350febff9567" | |
depends_on :x11 | |
depends_on "cmake" => :build |
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
diff --git a/Swift/QtUI/UserSearch/QtUserSearchWindow.cpp b/Swift/QtUI/UserSearch/QtUserSearchWindow.cpp | |
index d69c626..2552d6d 100644 | |
--- a/Swift/QtUI/UserSearch/QtUserSearchWindow.cpp | |
+++ b/Swift/QtUI/UserSearch/QtUserSearchWindow.cpp | |
@@ -221,7 +221,7 @@ void QtUserSearchWindow::setSearchFields(boost::shared_ptr<SearchPayload> fields | |
fieldsPage_->setFormWidget(new QtFormWidget(fields->getForm(), fieldsPage_)); | |
} else { | |
fieldsPage_->setFormWidget(NULL); | |
- bool enabled[8] = {fields->getNick(), fields->getNick(), fields->getFirst(), fields->getFirst(), fields->getLast(), fields->getLast(), fields->getEMail(), fields->getEMail()}; | |
+ bool enabled[8] = {!!fields->getNick(), !!fields->getNick(), !!fields->getFirst(), !!fields->getFirst(), !!fields->getLast(), !!fields->getLast(), !!fields->getEMail(), !!fields->getEMail()}; |