Some short notes on the topics of the conference talks.
🖋 - I could write a blog post etc. about it if there is any interest
👨🏫 - I can even make a small talk if there is even more interest
⚡ - Lightning talks
<?php | |
/** | |
* SQL Manager | |
* | |
* Author: Julian Burr | |
* Version: 1.0 | |
* Date: 2014/02/10 | |
* | |
* Copyright (c) 2015 Julian Burr |
<?php | |
/** | |
* BDWordPressPlugin | |
* | |
* Author: Julian Burr | |
* Version: 1.0 | |
* Date: 2015/04/30 | |
* | |
* Copyright (c) 2015 Julian Burr |
<?php | |
/** | |
* GoogleMap | |
* | |
* Author: Julian Burr | |
* Version: 1.0 | |
* Date: 2015/04/30 | |
* | |
* Copyright (c) 2015 Julian Burr |
class AwesomeComponent extends Component { | |
... | |
} |
/** | |
* Author: Julian Burr <https://github.com/julianburr> | |
* License: https://creativecommons.org/publicdomain/zero/1.0/ | |
* | |
* This script basically just runs through all source files and | |
* prints out a list of files and lines where it found the TODO | |
* keyword | |
* | |
* If you want to look for other keywords, just changed the | |
* searchRegEx to your needs :) |
{ | |
"name": "Hello World", | |
"description": "Just an example for a Sketch plugin", | |
"author": "Julian Burr <[email protected]>", | |
"version": 1.0, | |
"identifier": "com.example.sketch.hello-world", | |
"bundleVersion": 1, | |
"commands": [ | |
{ | |
"name": "Hello World", |
const helloWorld = context => { | |
context.document.showMessage("👋🌍"); | |
} |
// Dot syntax | |
var openPanel = NSOpenPanel.openPanel(); | |
openPanel.setTitle('Hello World'); | |
openPanel.runModal(); | |
// Bracket syntax | |
var openPanel = [NSOpenPanel openPanel] | |
[openPanel setTitle:'Hello World'] | |
[openPanel runModal] |
<?xml version="1.0" encoding="utf-8"?> | |
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/"> | |
<channel> | |
<title>Test Plugin</title> | |
<link>http://sparkle-project.org/files/sparkletestcast.xml</link> | |
<description>Brilliant Hello World Plugin</description> | |
<language>en</language> | |
<item> | |
<title>Version 1.1</title> | |
<description> |