Bootstrap – color scheme
Generate your own Bootstrap color scheme from an image and customize to your taste http://www.lavishbootstrap.com/
Default navbar http://getbootstrap.com/components/#navbar
Generate your own Bootstrap color scheme from an image and customize to your taste http://www.lavishbootstrap.com/
Default navbar http://getbootstrap.com/components/#navbar
Lerobbant művelődési ház előcsarnoka. A mozgalmi táblák és egyéb ünnepi díszletek tövében csirkék kapirgálnak. A Johnny Be Good hangjai szűrődnek ki a nagyteremből. Bent a Colorado nyomja a bluest. A fűtetlen helyiségben az együttesen kívül egy-két ember lézeng. Ez így nem mehet tovább! Ki kell találni valamit! És nemsokára a főnöknek eszébe jut a nagy ötlet. Egyik kezével egy lekváros buktát szorongatva, a másikkal a fenekét vakargatva a banda elé áll: gyerekek, átmegyünk a Tobacco Roadról a Retek utcába, lemegyünk bunkóba, lemegyünk furkóba. A szocialista vadkeleten új banda születik.
Classic, Hybrid, Client stack
A web solution stack is a group of technologies that when combined, create the backbone for a modern web application.
Thankfully due to these new JavaScript technologies web developers have the opportunity to now easily build applications that move a good portion of the business logic to the client.
http://thewebhacker.com/understanding-the-modern-web-solution-stack/
It seems like a great platform to learn PHP and other languages.
ping pong robot
Open A: E-A-C♯-E-A-C♯ or E-A-C♯-E-A-E
Open B: B-F♯-B-F♯-B-D♯ or F♯-B-D♯-F♯-B-D♯
Open D: D-A-D-F♯-A-D
Open G: D-G-D-G-B-D or G-B-D-G-B-D
Open F: C-F-C-F-A-C or F-A-C-F-C-F
Open C: C-G-C-G-C-E
http://en.wikipedia.org/wiki/List_of_guitar_tunings#Open_A
Scale and Chord Generator: http://12bar.de/php/scale_generator.php
The Sick Bag Song chronicles
Nick Cave’s 2014 tour of North
America with The Bad Seeds.
The account of this 22-city journey
began life scribbled on airline sick bags
and grew into a restless full-length epic,
seeking out the roots of inspiration,
love and meaning.
Nirvana Live at Reading https://www.youtube.com/watch?v=aJGl0FQK9Ew
How to find nearby Hospitals by geo location within 2KM? : https://www.linkedin.com/groups/How-find-nearby-Hospitals-geo-4419933.S.5983135401756418050?view=&item=5983135401756418050
Haversine Formula:
Fast nearest-location finder for SQL (MySQL, PostgreSQL, SQL Server): http://www.plumislandmedia.net/mysql/haversine-mysql-nearest-loc/
How I did things before on the server with PHP and the Laravel framework:
Route::get(‘user/{id}’, function($id) { $user = User::find($id); return Response::json($user->toArray()); });
And how I do the same thing now with node.js, Express and mongoose
app.route(‘/user/:id’).get(function(req, res) { User.findById(req.params.id).exec(function(err, user) { res.jsonp(user); }); });
Looking at this you might wonder what all the fuzz is about and why people get so emotional when talking about different programming languages.
source: https://medium.com/unexpected-token/10-weeks-of-node-js-after-10-years-of-php-a352042c0c11