This file contains 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
{ ~ } » VAGRANT_DEBUG_LAUNCHER=1 vagrant --debug ~ 127 | |
2017/08/18 12:33:04 launcher: path = C:\HashiCorp\Vagrant\bin\vagrant.exe | |
2017/08/18 12:33:04 launcher: installerDir = C:\HashiCorp\Vagrant | |
2017/08/18 12:33:04 launcher: embeddedDir = C:\HashiCorp\Vagrant\embedded | |
2017/08/18 12:33:04 launcher: gemPaths (initial) = []string{"C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.9.7", "C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-share-1.1.9"} | |
2017/08/18 12:33:04 launcher: bad gemPath += C:\HashiCorp\Vagrant\embedded\gems\gems\vagrant-share-1.1.9\lib\vagrant\version.rb | |
2017/08/18 12:33:04 launcher: gemPaths (final) = []string{"C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.9.7"} | |
2017/08/18 12:33:04 launcher: gemPath = C:\HashiCorp\Vagrant\embedded\gems\gems\vagrant-1.9.7 | |
2017/08/18 12:33:04 launcher: windows detected OS - cygwin | |
2017/08/18 12:33:04 launcher: env "CFLAGS" = "" |
This file contains 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
<?php | |
class Link | |
{ | |
public function __construct($name, $url) | |
{ | |
$this->name = $name; | |
$this->url = $url; | |
} | |
} |
This file contains 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
2016/08/19 12:51:36 [INFO] Packer version: 0.10.1 | |
2016/08/19 12:51:36 Packer Target OS/Arch: darwin amd64 | |
2016/08/19 12:51:36 Built with Go Version: go1.6.2 | |
2016/08/19 12:51:36 Detected home directory from env var: /Users/jmcguire | |
2016/08/19 12:51:36 Using internal plugin for null | |
2016/08/19 12:51:36 Using internal plugin for virtualbox-iso | |
2016/08/19 12:51:36 Using internal plugin for amazon-chroot | |
2016/08/19 12:51:36 Using internal plugin for docker | |
2016/08/19 12:51:36 Using internal plugin for parallels-iso | |
2016/08/19 12:51:36 Using internal plugin for vmware-iso |
This file contains 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
create table exercise ( | |
id integer primary key, | |
name varchar(50) | |
); | |
create table session ( | |
id integer primary key, | |
date datetime | |
); |
This file contains 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
declare_mortals([]). | |
declare_mortals([X|Xs]) :- mortal(X), declare_mortals(Xs). | |
mortal(socrates). | |
main :- | |
OtherMortals = [plato, aristotle, philosoraptor], | |
declare_mortals(OtherMortals). | |
% ?- main. |
This file contains 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
:- dynamic people/1. | |
:- dynamic portray_message/2. | |
:- use_module(library(prosqlite)). | |
set_gender(_, []). | |
set_gender(Sex, [Name|Names]) :- | |
sex(Name, Sex), | |
set_gender(Sex, Names). |
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 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
# first import the global | |
from global import myspecialglobal | |
# now import bootstrap which changes the global | |
import bootstrap | |
# what is the value of myspecial global? | |
print myspecialglobal |
This file contains 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
/** | |
* Firefox custom CSS for Numix GTK Theme | |
* To use with Firefox Numix Theme : https://addons.mozilla.org/fr/firefox/addon/numix-gtk3theme/ | |
* Better with Omnibar FIrefox Add-On : https://addons.mozilla.org/fr/firefox/addon/omnibar/ | |
*/ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
/* Awesomebar improvements */ | |
#urlbar { |
This file contains 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
# Robots | |
This is supposed to be the future. Where are my robot servants!? | |
The robots below could potentially be split up into a group of specialized robots. | |
Those independent robots could also potentially connect with each other and transform into a more powerful robot. | |
## Mailbot |
NewerOlder