$DESCRIPTION
$SCREENSHOT (UI only)
$LINK_TO_DEMO (optional)
<?php | |
// requires PHP 5.4 | |
trait ClassAccessors { | |
public function __set($name, $value) { | |
$methodName = "set".ucfirst($name); | |
if (method_exists($this, $methodName)) { | |
$this->$methodName($value); | |
} else { |
<?php | |
function new_($items = null, $extra = "") { | |
while (class_exists($name = "Anon".rand(), FALSE)) {}; | |
$class = | |
'class '.$name." ".$extra.PHP_EOL. | |
'{'.PHP_EOL. | |
' private $_fns = array();'.PHP_EOL. | |
' public function __construct($items) {'.PHP_EOL. | |
' foreach ($items ?: array() as $name => $value) {'.PHP_EOL. |
First off, thanks for taking the time to contribute! 👍
You can launch a quick question on the #acpaas-ui slack channel.
For something that requires longer discussion it may be better to book an issue.
javascript:(function(){var id=location.href.match(/trello\.com\/c\/([a-zA-Z0-9]{8})\//)[1];$.get('/1/cards/'+id+'/actions?filter=updateCard:desc').done(function(res){prompt('ctrl-c to copy',res[0].data.old.desc)})})()
Open a card in trello
Open the bookmark
An alert is shown with the previous description (if any)
<html> | |
<head> | |
<meta http-equiv="refresh" content="0; url=http://estivus.serveo.net"> | |
</head> | |
<body> | |
Redirecting... | |
<a href="http://estivus.serveo.net">click here if this takes too long.</a> | |
</body> | |
</html> |
<!doctype html> | |
<html> | |
<head> | |
<title>Tic Tac Toe</title> | |
</head> | |
<body> | |
<!-- | |
vanilla version of https://react.dev/learn/tutorial-tic-tac-toe | |
--> | |
<script> |
https://www.youtube.com/watch?v=0F9t_WeJ5p4 (October 11, 2024)
The notes of what Ryan said are like this. They are paraphrased but I tried to accurately represent the view.
Quotes from articles are like this.
My comments on what was said are like this.