View gist:48dc0b0718ebb5fc06caf804f67a1664
This file contains 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
function main(){ | |
console.log('A'); | |
setTimeout( | |
function exec(){ console.log('B'); } | |
, 0); | |
runWhileLoopForNSeconds(3); | |
console.log('C'); | |
} | |
main(); | |
function runWhileLoopForNSeconds(sec){ |
View gist:4403af63f75daf901ef63eb6e5709ef4
This file contains 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
function main(){ | |
console.log('A'); | |
setTimeout( | |
function display(){ console.log('B'); } | |
,0); | |
console.log('C'); | |
} | |
main(); | |
// Output | |
// A |
View JS - JSX Farkı
This file contains 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
JSX: | |
<div className="div-class">Hello World!</div> |
View JS - JSX Farkı
This file contains 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
JS : | |
React.createElement("div", {className: "div-class"}, "Hello World!"); |
View Gridder
This file contains 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
<!-- Gridder navigation --> | |
<ul class="gridder"> | |
<li class="gridder-list" data-griddercontent="#content1"> | |
<img src="http://placehold.it/600x400" /> | |
</li> | |
<!-- You can also load html/ajax pages by replacing the #ID with a URL --> | |
<li class="gridder-list" data-griddercontent="/content.html"> | |
<img src="http://placehold.it/600x400" /> | |
</li> |
View PHPbot
This file contains 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 | |
$fruits = array("d"=>"lemon", "a"=>"orange", "b"=>"banana", "c"=>"apple"); | |
ksort($fruits); | |
foreach ($fruits as $key => $val) { | |
echo "$key = $val\n"; | |
} | |
?> |
View InlineTweet.js
This file contains 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
<span data-inline-tweet | |
data-inline-tweet-via="ireaderinokun" | |
data-inline-tweet-tags="webdesign,webdev,js,yolo" | |
data-inline-tweet-url="bitsofco.de"> | |
Lorem Khaled Ipsum is a major key to success | |
</span> |
View CSS Scroll Snap Points 'e Giriş
This file contains 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
div { | |
width: 300px; | |
overflow: auto; | |
scroll-snap-points-y: repeat(150px); | |
scroll-snap-type: mandatory; | |
} | |
Below |
View CSS Scroll Snap Points 'e Giriş
This file contains 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
div { | |
width: 300px; | |
height: 300px; | |
overflow: auto; | |
... | |
} | |
div > img { | |
width: 250px; | |
height: 150px; | |
... |
View CSS Scroll Snap Points 'e Giriş
This file contains 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
<div> | |
<img src='Pizza.png' alt='pizza'> | |
<img src='Noodle.png' alt='noodle'> | |
<img src='Burger.png' alt='burger'> | |
<img src='Juice.png' alt='juice'> | |
</div> |
NewerOlder