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
<!-- This is a short demo how js could detect whether a user wants to leave the site. | |
Tested with Firefox and Chrome. (c) Christoph Martel <[email protected]> --> | |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<script type="text/javascript"> |
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 | |
// File: doctrine/orm/lib/Doctrine/ORM/Tools/EntityGenerator.php | |
// ... | |
class EntityGenerator | |
{ | |
// ... |
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
{"v":"4.11.1","fr":29.9700012207031,"ip":0,"op":899.000036617021,"w":192,"h":298,"nm":"b-logo","ddd":0,"assets":[{"id":"image_0","w":192,"h":298,"u":"images/","p":"img_0.png"}],"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"b-logo.eps","cl":"eps","refId":"image_0","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":77,"s":[100],"e":[0]},{"t":93.0000037879676}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[96,149,0],"ix":2},"a":{"a":0,"k":[96,149,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[25,25,100],"e":[30,30,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":17,"s":[30,30,100],"e":[25,25,100]},{"i":{"x": |
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
data class Skill(val description: String) | |
interface AwesomeGuy | |
interface AndroidGeek | |
interface TeamPlayer | |
object MateCrte { | |
val skills = mutableListOf<Skill>() | |
val members = mutableListOf<AwesomeGuy>() | |
val benefits = mutableListOf<String>() | |
fun beAwesome(andDoThis: () -> Unit) = andDoThis() |
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
data class Skill(val description: String) | |
interface AwesomeGuy | |
interface AndroidGeek | |
interface TeamPlayer | |
object MateCrate { | |
val skills = mutableListOf<Skill>() | |
val members = mutableListOf<AwesomeGuy>() | |
val benefits = mutableListOf<String>() | |
fun beAwesome(andDoThis: () -> Unit) = andDoThis() |