alias gb='git status | grep "On branch" | cut -b 11-'
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
<?php | |
class Signup | |
{ | |
protected static function getSellerInstance($IdSeller = 0) | |
{ | |
return '-' . $IdSeller . '-'; | |
} | |
protected static function getCountryDetails($CountryName) |
It's very simple to get started with Liquid. A Liquid template is rendered in two steps: Parse and Render. For an overview of the Liquid syntax, please read [[Liquid for Designers]].
@template = Liquid::Template.parse("hi {{name}}") # Parses and compiles the template
@template.render( 'name' => 'tobi' ) # Renders the output => "hi tobi"
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet"> | |
<script src="https://code.jquery.com/jquery-2.1.4.js"></script> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/q.js/0.9.2/q.js"></script> | |
<style id="jsbin-css"> |