- BUILDING A 2D AND 3D GAME FROM SCRATCH
Build a game like Pong or even one in 3D similar to Doom. You'll build your own game engine from scratch. - BUILDING A DATABASE ENGINE
Learn about the data structure behind every database engine. Building your own index mechanism for run queries faster. - BUILDING A VIRTUAL MACHINE
Learn how a CPU, a GameBoy emulator or your programming language work inside by building a virtual machine. - BUILDING A BACKEND AND FRONTEND WEB FRAMEWORK
Make a backend framework similar to Express or frontend one like Backbone. Or go wild and create something totally new. - BUILDING A NEURAL NETWORK
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
| { | |
| "_id": "55c191fc9f9553312368df1e", | |
| "location": [ | |
| 13.0063555, | |
| 80.25238880000006 | |
| ], | |
| "name": "Prems Graama Bhojanam", | |
| "phone": "9840062772", | |
| "image": "http://s3-ap-southeast-1.amazonaws.com/clozerr/app/coupons-alpha/", | |
| "fid": "5161203245370561", |
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
| { | |
| "_id": "55c191fc9f9553312368df1e", | |
| "location": [ | |
| 13.0063555, | |
| 80.25238880000006 | |
| ], | |
| "name": "Prems Graama Bhojanam", | |
| "phone": "9840062772", | |
| "image": "http://s3-ap-southeast-1.amazonaws.com/clozerr/app/coupons-alpha/", | |
| "fid": "5161203245370561", |
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/sh | |
| """:" | |
| exec python $0 ${1+"$@"} | |
| """ | |
| import sys | |
| import re | |
| import fileinput | |
| if len(sys.argv) != 5 and len(sys.argv) != 3: | |
| print "Wrong command, sample commands: \n python setproxy.py 202.141.80.19 3128 username password \n OR \n python setproxy.py 202.141.80.19 3128" |
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
| {{--a--}} | |
| <a>Link without href</a> | |
| <a class="button">Link without href: Button</a> | |
| <a href="#">Link without href</a> | |
| <a class="button" href="#">Link without href: Button</a> | |
| {{--abbr--}} | |
| <abbr title="Abbreviation">abbr</abbr> | |
| {{--address--}} |
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/bash | |
| # | |
| # Folder structure | |
| # project/ - Project folder | |
| # project/src - All .cpp files (sub folders also included) | |
| # project/inc - All .h files | |
| # | |
| # make clean - to delete all output files | |
| # make build - to build only | |
| # make all - to compile and link |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <?xml-stylesheet type="text/xsl" href="odml.xsl"?> | |
| <?xml-stylesheet type="text/xsl" href="odmlTerms.xsl"?> | |
| <odML version="1"> | |
| <date>2014-08-14</date> | |
| <section> | |
| <type>form</type> | |
| <name>Experiment</name> | |
| <reference>Experiment</reference> | |
| <property> |
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
| Matrix: 2, 2 | |
| Total iterations: 2 | |
| cost: 1100 | |
| Time taken: 0 seconds | |
| Matrix: 4, 4 | |
| Total iterations: 18 | |
| cost: 520 | |
| Time taken: 0 seconds | |
| Matrix: 4, 4 | |
| Total iterations: 4 |
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
| Merge made by the 'recursive' strategy. | |
| assets/PersonOdml.xml | 263 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------- | |
| project.properties | 2 +- | |
| res/layout/form_row.xml | 12 +++--- | |
| res/menu/form_detail_menu.xml | 11 ++++++ | |
| res/menu/form_edit_menu.xml | 11 +----- | |
| res/menu/form_list_menu.xml | 7 ++++ | |
| res/menu/form_local_edit_menu.xml | 18 ++++++--- | |
| res/values/colors.xml | 1 + | |
| res/values/strings.xml | 1 + |