- Olé
- Prestige 7105
- Lush life
- Traneing in Coltrane with the red garland trio
- the last trane
- ballads
- coltrane
- live at the village
- live at birland
- bags and trane
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
| FROM ubuntu:14.04 | |
| RUN apt-get update && apt-get install -y wget | |
| RUN wget http://netcologne.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list | |
| RUN apt-get update && apt-get -y --allow-unauthenticated install --reinstall d-apt-keyring && apt-get update \ | |
| && apt-get install -y dmd-bin dub libcurl3-gnutls libevent-dev libcrypto++-dev libssl-dev | |
| # Where the app live inside the container | |
| ENV APP_ROOT /var/www/dlang-api-ecratum |
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
| [llaine@localhost foo] $ dub -v --compiler=ldc2 | |
| Using dub registry url 'http://code.dlang.org/' | |
| Refreshing local packages (refresh existing: true)... | |
| Looking for local package map at /var/lib/dub/packages/local-packages.json | |
| Looking for local package map at /home/llaine/.dub/packages/local-packages.json | |
| Note: Failed to determine version of package foo at .. Assuming ~master. | |
| Refreshing local packages (refresh existing: false)... | |
| Looking for local package map at /var/lib/dub/packages/local-packages.json | |
| Looking for local package map at /home/llaine/.dub/packages/local-packages.json | |
| Found dependency vibe-d 0.7.30-alpha.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
| connection = ActiveRecord::Base.connection.raw_connection | |
| => #<PG::Connection:0x00563e2c718098> | |
| [30] pry(main)> connection.prepare('user_id', "select * from users where id = $1") | |
| PG::DuplicatePstatement: ERROR: prepared statement "user_id" already exists | |
| from (pry):35:in `prepare' | |
| [31] pry(main)> st = connection.exec_prepared('user_id', [786]) | |
| => #<PG::Result:0x00563e26a5bd78 status=PGRES_TUPLES_OK ntuples=1 nfields=29 cmd_tuples=1> | |
| [32] pry(main)> st.each_row do |x| | |
| [32] pry(main)* p x | |
| [32] pry(main)* 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
| import React, {Component} from 'react'; | |
| import {render} from 'react-dom'; | |
| // Parent Component | |
| class TimelineContainer extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| currentSupplier:'A', | |
| currentYear:'2010', |
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
| $ git rebase -i a860a43~ | |
| 1 edit a860a43 Add footer + rename header menus | |
| 2 fixup 1e2ac88 Add style.css (footer) | |
| 3 pick c09d958 Add breadcrumb | |
| 4 pick 0e37c70 Add jumbotron |
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
| $ git log --pretty=format:"%h %s" HEAD~3..HEAD | |
| adcf4a6 Adding navbar (Part 3) | |
| 0cdff26 Adding navbar (Part 2) | |
| 0ce7553 Adding navbar (Part 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
| % http://dept-info.labri.u-bordeaux.fr/~musumbu/Expert/td2.pdf | |
| /* | |
| ***************** Les faits ******************* | |
| Arguemnts du predicat bio : | |
| bio(enfant, sexe, annee_naissance, annee_mort, pere, mere) | |
| */ | |
| bio(louis13, h, 1601, 1643, henri4, marie_medicis). | |
| bio(elisabeth_France, f, 1603, 1644, henri4, marie_medicis). |
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
| [recommendedReasonPhrases:protected] => Array | |
| ( | |
| [100] => Continue | |
| [101] => Switching Protocols | |
| [102] => Processing | |
| [200] => OK | |
| [201] => Created | |
| [202] => Accepted | |
| [203] => Non-Authoritative Information | |
| [204] => No Content |