No background images or css triangles technique for responsive slanted divs.
A Pen by Larry Naman on CodePen.
No background images or css triangles technique for responsive slanted divs.
A Pen by Larry Naman on CodePen.
angular.module('myApp', ['ionic', 'myApp.services', 'myApp.controllers']) | |
.run(function(DB) { | |
DB.init(); | |
}); |
<?php | |
/** | |
* @author Filip Procházka <[email protected]> | |
*/ | |
abstract class BasePresenter extends Nette\Application\UI\Presenter | |
{ | |
/** | |
* @var \Img\ImagePipe |
Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications
like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.
open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html
<?xml version="1.0" encoding="UTF-8"?> | |
<books-of-the-bible> | |
<entry handle="01"> | |
<name handle="genesis">Genesis</name> | |
<testament handle="old-testament" abbreviation="OT">Old Testament</testament> | |
<chapters>50</chapters> | |
</entry> | |
<entry handle="02"> | |
<name handle="exodus">Exodus</name> | |
<testament handle="old-testament" abbreviation="OT">Old Testament</testament> |
<?php | |
namespace Kdyby\Forms; | |
use Nette; | |
use Nette\Forms\Controls\RadioList; | |
use Nette\Utils\Html; | |
use Nette\Utils\Arrays; | |