π²
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
| At the end of your Blogger post , using HTML editor, append this | |
| <script src="https://raw.github.com/moski/gist-Blogger/master/public/gistLoader.js" type="text/javascript"></script> | |
| In the content of your blog post, simply add this: | |
| <div class="gistLoad" data-id="8488564" id="gist-8488564">Loading https://gist.github.com/8488564....</div> | |
| Note: adding the URL is useful because when the javascript does not work, readers can copy and paste the URL themselves. |
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
| <project_name>/ | |
| application/ | |
| configs/ | |
| application.ini | |
| controllers/ | |
| helpers/ | |
| forms/ | |
| layouts/ | |
| filters/ | |
| helpers/ |
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
| βββ bin => Contains binary of your project | |
| βββ docs => Contains documentation and future aspects about your project | |
| β βββ ToDo => ToDo List of your project | |
| βββ etc => Add configuration files under this directory | |
| β βββ imdb-xplorer.cfg => Configuration file | |
| βββ LICENSE => Add license for your project | |
| βββ logs => This directory contains logs about behaviour of your script | |
| β βββ imdb-xplorer.log => log file | |
| βββ README.md => Contains how to install, and use your project | |
| βββ setup.sh => install the project on your machine |
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
| |ββ autogen.sh | |
| βββ CODING_STANDARDS.md | |
| βββ configure | |
| βββ data | |
| β βββ characters.json | |
| β βββ font | |
| β β βββ font.ttf | |
| β βββ images | |
| β β βββ animation | |
| β β β βββ running |
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
| ./ Makefile and configure scripts. | |
| ./src General sources | |
| ./include Header files that expose the public interface and are to be installed | |
| ./lib Library build directory | |
| ./bin Tools build directory | |
| ./tools Tools sources | |
| ./test Test suites that should be run during a `make test` |
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_relative "rules" | |
| # An object which represents the checkout process or cash register. | |
| # It scans items, which are added to an internal list of items, | |
| # which are then used to return the #total at any given moment. | |
| # This total tries to use the rules which lead to the cheapest price. | |
| class CheckOut < Struct.new(:rules) | |
| attr_accessor :rules # list of available pricing rules (passed on initialization) | |
| attr_accessor :items # hash of scanned items and quantities | |
| # { "A" => 0, "B" => 1 } means we have scanned one "A" and zero "B"s |
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
| Introduction to git | |
| What is git? | |
| - git is basically, a version control system where you can collaborate with | |
| other and work on your projects. Developed by Linus. | |
| Advantages of using git over other version system? | |
| - git maintains snapshot of your projects, while other SVN store the diff for every change. | |
| - git uses SHA1, so data loss is almost impossible (checks for data integrity). | |
| - git maintains the local database, so the search is faster as compare to other. |
NewerOlder