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 | |
$html = array( | |
'form_start' => "<form id=%s action=%s name=%s method=%s class=%s>", | |
'other' => "suck %s", | |
'form_end' => "</form>" | |
); | |
$parameters = array( | |
'form_start' => array( 'p1', 'p2', 'p3', 'p4', 'p5' ), |
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
<!-- include all your js + client_with_jquery.js --> | |
<h1>Post title</h1> | |
<div>Content</div> | |
<div id='comments'> | |
<div class='comment' data-ts='1356537160'>content</div> | |
<div class='comment' data-ts='1356537142'>content</div> | |
</div> |
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
<html> | |
<head> | |
<title>TTT</title> | |
<style type="text/css"> | |
html, body { | |
font-size: 14px; | |
} | |
.higlight { | |
font-weight: bold; | |
} |
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
h1 { | |
padding: 0; | |
margin: 0; | |
} | |
.article { | |
padding: 10px; | |
border: 1px solid hsl(0, 30%, 55%); | |
margin-bottom: 10px; | |
} |
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
<html> | |
<head> | |
<title>Blog</title> | |
<link rel="stylesheet" href="asset/css/page.css"> | |
</head> | |
<body> | |
<div id="content"> | |
<div class='article'> | |
<div class='header'> | |
<h1><a href="a1.html">Cikk cime</a></h1> |
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
<html> | |
<body> | |
<div class='article'> | |
<div class='header'> | |
<h1>Cikk cime</h1> | |
<div>2012-11-12 23:11:23</div> | |
</div> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis purus augue, dictum at convallis fermentum, sollicitudin euismod metus. Nullam quis nulla lorem. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ornare nibh pretium odio egestas vitae semper arcu dapibus. Aliquam quam lectus, dapibus at accumsan sed, consequat sed tellus. Sed sagittis risus sed nibh facilisis convallis fringilla urna dignissim. Sed nec arcu mauris, at congue ante. In imperdiet metus arcu. In sed erat nibh. Duis scelerisque, erat in iaculis suscipit, purus nibh tempus sapien, quis auctor lorem lacus non sapien. Donec vel sapien ipsum. Ut pharetra est in augue vehicula ut eleifend sem tincidunt. Cras molestie, turpis et consequat aliquet, ante orci aliquam arcu, at sollicitudin est magna in justo. Nam sed orci ipsum. Curabit |
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 lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>HTML</title> | |
</head> | |
<body> | |
<h1>Cim</h1> | |
<?php | |
$soseFogomHasznani = 3.14; |
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 | |
echo "start\n"; | |
$tomb = array(1,2,3,7,89,2,0,3,5,6,1,2); | |
for($i = 0; $i < 10; $i++) { | |
$szam = $tomb[$i]; | |
if ($szam > 10) { | |
continue; | |
} | |
if ($szam < 1) { | |
break; |
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
http = require("http"); | |
http.createServer(function(request,response){ | |
response.writeHeader(200, {"Content-Type": "text/plain"}); | |
response.write("Soon :)"); | |
response.end(); | |
}).listen(process.env.PORT || 3000); | |
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
# | |
# Author: Balazs Nadasdi <[email protected]> (http://blog.code-infection.com/) | |
# | |
# Outputs a string with a given attribution as a block about a Product Promotion | |
# | |
# {% product_promo_box %} | |
# Title: Name of the product | |
# Author: Author (books), Manufacturer, etc | |
# Image: Image URL about the product | |
# Price: Price of the product |