<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Floor Drees</title>
	<atom:link href="http://www.1stfloorgraphics.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1stfloorgraphics.nl</link>
	<description>Community manager ftw. Fan of in-app purchases. Into unicorns. Ruby rookie.</description>
	<lastBuildDate>Wed, 22 May 2013 11:15:18 +0000</lastBuildDate>
	<language>nl-NL</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Using GitHub for your news platform or group blog</title>
		<link>http://www.1stfloorgraphics.nl/2013/05/22/using-github-for-your-news-platform-or-group-blog/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/05/22/using-github-for-your-news-platform-or-group-blog/#comments</comments>
		<pubDate>Wed, 22 May 2013 11:15:18 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[Github]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7708</guid>
		<description><![CDATA[As a writer as someone who incidentally writes about stuff with other people, I often encounter the same problem. You either email tiny chances to your article to the one who's ultimately responsible for the website, which is bound to go wrong. Or you log into your CMS, make some changes to your piece and [...]]]></description>
				<content:encoded><![CDATA[<p><del datetime="2013-04-30T10:22:07+00:00">As a writer </del> as someone who incidentally writes about stuff with other people, I often encounter the same problem.<br />
You either email tiny chances to your article to the one who's ultimately responsible for the website, which is bound to go wrong. Or you log into your CMS, make some changes to your piece and save it, while one of the other editors does the exact same thing, just using another shiny laptop. Changes get lost. Stuff gets added twice and you end up frustrated because the preview doesn't reflect your work.</p>
<p>Now this is annoying as it is, but if you program a bit on the side (like I do) and you use GitHub, you know that there is a solution for that. Git is a distributed version control system. Every Git working directory is a full-fledged repository with complete history and full revision tracking capabilities, not dependent on network access or a central server. Git is free software and so is GitHub (as long as you don't use more than 5 private repo's).</p>
<p><img class="aligncenter size-full wp-image-7840" alt="laptop" src="http://www.1stfloorgraphics.nl/wp-content/uploads/e72d6212a69b11e2919b22000a9f1988_7.jpg" width="500" height="500" /></p>
<p>Originally founded by <a href="https://github.com/mojombo">Tom Preston-Werner</a>, <a href="https://github.com/defunkt">Chris Wanstrath</a>, and <a href="https://github.com/pjhyett">PJ Hyett</a> to simplify sharing code, GitHub has grown into the largest code host in the world. But it's not only for coders. You can use plain text, markdown or HTML. Or GitHub's <a href="https://gist.github.com/" target="_blank">Gist</a>.</p>
<p>Using GitHub for your website's content management needs a little setup but then you're good to go and will get rid of all the pains of collaborating on articles. I'll explain how to use SSH and the HTTPS way, using GitHub's native app (recommended if you have no idea what SSH is).* But first: download a texteditor with syntax highlighting (that will show you the tags in an HTML file for instance, in a different color than your text, making it easier to read through the document and detect missing closing tags. <a href="http://code.google.com/p/macvim/" target="_blank">Vim</a> is free and a great tool.</p>
<p><strong>First: The SSH way:</strong></p>
<p>Create a GitHub account.</p>
<p>Then, we need to check for existing ssh keys on your computer. Open up your Terminal and run:<br />
<code>cd ~/.ssh</code><br />
this checks if there is a directory named ".ssh" in your user directory</p>
<p>If it says 'No such file or directory', we'll have to generate a new SSH key:<br />
<code>ssh-keygen -t rsa -C "your_email@example.com"</code><br />
this creates a new ssh key using whatever email you provide</p>
<p>Hopefully, you'll see something like this in your terminal:<br />
<code>Generating public/private rsa key pair.<br />
Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]</code><br />
... enter your computers password</p>
<p>That should give you something like this:<br />
<code>Your identification has been saved in /Users/you/.ssh/id_rsa.<br />
Your public key has been saved in /Users/you/.ssh/id_rsa.pub.<br />
The key fingerprint is:<br />
01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your_email@example.com</code></p>
<p>Run the following code to copy the key to your clipboard:<br />
<code>pbcopy &lt; ~/.ssh/id_rsa.pub</code></p>
<p>THEN:</p>
<ol>
<ol>
<li>Go to GitHub again and go to your <a href="https://github.com/settings/profile" target="_blank">Account Settings</a></li>
<li>Click on '<a href="https://github.com/settings/ssh" target="_blank">SSH Keys</a>' in the left sidebar</li>
<li>Add your SSH key by pasting it into the 'Key' field</li>
<li>Click 'Add key'</li>
</ol>
</ol>
<p>Confirm the action by entering your GitHub password.</p>
<p>To make sure everything is working we will now SSH (yes, it's a verb) to GitHub. You'll need to enter your password again:<br />
<code>ssh -T git@github.com</code></p>
<p>You'll see something like this:<br />
<code>The authenticity of host 'github.com (207.97.227.239)' can't be established.<br />
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.<br />
Are you sure you want to continue connecting (yes/no)?</code><br />
DON'T PANIC. This is supposed to happen. Just type "yes" and you'll read:<br />
<code>Hi username! You've successfully authenticated, but GitHub does not provide shell access.</code></p>
<p>Done.</p>
<p><strong>The HTTPS way</strong></p>
<p>Create a GitHub account. Really.</p>
<p>Download and install <a href="https://central.github.com/mac/latest" target="_blank">GitHub's native app for Mac</a>.</p>
<p>Open your terminal (only for a bit). First you need to tell git your name, so that it can label the commits you make:<br />
<code>git config --global user.name "Your Name Here"</code></p>
<p>Git saves your email address into the commits you make. We use the email address to associate your commits with your GitHub account:<br />
<code>git config --global user.email "your_email@example.com"</code></p>
<p>The last option we need to tell git that you don't want to type your username and password over and over again, whenever you're doing something. For that, we need a helper. I'm guessing you don't have the osxkeychain helper installed, so let's get that over with:<br />
<code>git credential-osxkeychain</code><br />
<code>curl -s -O \ http://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain<br />
chmod u+x git-credential-osxkeychain<br />
</code></p>
<p>Now you need to install the helper into the same directory where Git itself is installed:<br />
<code>sudo mv git-credential-osxkeychain `dirname \`which git\``</code><br />
you'll need to confirm your password</p>
<p>To tell git to use osxkeychain, simply set the global git config:<br />
<code>git config --global credential.helper osxkeychain</code></p>
<p>The next time you clone an HTTPS URL that requires a password you will be prompted for your username and password, and to grant access to the OSX keychain. After you've done this, the username and password are stored in your keychain and you won't be required to type them again. Score.</p>
<p><strong>Starting a new repository / connecting your working folder to GitHub</strong></p>
<p>Every time you make a commit with Git, it is stored in a repository (or: repo). To put your project up on GitHub, you'll need to create a repository for it.</p>
<ol>
<li>Click <a href="https://github.com/new" target="_blank">New Repository</a></li>
<li>Fill out the information on this page</li>
<li>Create a README</li>
<li>When you're done, click 'Create Repository'</li>
</ol>
<p>While a README isn't a required part of a GitHub repository, it is a very good idea to have one. READMEs are designed to describe your project or add some documentation like how to use your project (like guidelines for document names).</p>
<p>Open your terminal:<br />
<code>mkdir ~/Hello-World</code><br />
creates (makes) a directory for your project called 'Hello-World' in your user directory</p>
<p>Then type:<br />
<code>cd ~/Hello-World</code><br />
to change the current working directory to your newly created directory</p>
<p><code>git init</code><br />
sets up the necessary Git files</p>
<p><code>touch README</code><br />
creates a file called "README" in your Hello-World directory</p>
<p>Open the new README file found in your Hello-World directory in a text editor (vim README) and add the text "Hello World!". Save and close the file. Now that you have your README set up, it's time to make your first commit. A commit is essentially a snapshot of all the files in your project at a particular point in time. In the terminal, type the following code:<br />
<code>git add README</code><br />
this 'stages' your README file, adding it to the list of files to be committed</p>
<p><code>git commit -m 'first commit'</code><br />
commits your files, adding the message "first commit". Later on you'll want to commit regularly, summarizing your changes using that commit message.</p>
<p>So far everything you've done has been in your local repository, meaning you still haven't done anything on GitHub yet. To connect your local repository to your GitHub account, you will need to set a remote for your repository and push your commits to it:<br />
<code>git remote add origin https://github.com/username/Hello-World.git</code><br />
creates a remote named "origin" pointing at your GitHub repository</p>
<p><code>git push origin master</code><br />
sends your commits in the "master" branch to GitHub</p>
<p><strong>Working together using GitHub</strong><br />
Now if you look at your repository on GitHub, you will see your README has been added to it. Awesome. Next you can add collaborators. They will need a GitHub account as well. Once they are all set up they'll simply clone the project folder and it's content:<br />
<code>git clone git@example.com:my_project.git</code></p>
<p>... and then change to that project typing:<br />
<code>cd my_project</code></p>
<p>Seeing that this will probably the only thing your collaborators will use GitHub for they'll need to know very few things about the terminal. Don't navigate away just yet, this is some important stuff. The commands they'll need are:</p>
<p>Do a <code>git pull</code> every now and then to pull the changes one of the other team members might have made in the mean time. At the very least pull a <code>git pull</code> just before you're committing your changes.</p>
<p><code>vim .</code> is a useful little command do open the whole folder in your texteditor. It's great to have that overview. When you're done making your changes, run <code>git status</code>. With <code>git add .</code> you'll then stage all files you'll want to push to GitHub. With <code>git add document.html picture.png</code>, you can be very precise about what you want to add.<br />
Run <code>git status</code> again to see if you have covered it all and then it's all <code>git commit -m "commit message"</code> to commit your changes. Run <code>git push</code>, refresh your repo in the browser and... TADAAA!</p>
<p><em>* Setup and tips and tricks mentioned in this post are all for Mac. Looking for a guide for your Windows of Linux computer? <a href="https://help.github.com/articles/set-up-git#platform-windows" target="_blank">Off you go</a>!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/05/22/using-github-for-your-news-platform-or-group-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why learning how to code is important and getting started is the easiest part</title>
		<link>http://www.1stfloorgraphics.nl/2013/05/22/why-learning-how-to-code-is-important-and-getting-started-is-the-easiest-part/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/05/22/why-learning-how-to-code-is-important-and-getting-started-is-the-easiest-part/#comments</comments>
		<pubDate>Wed, 22 May 2013 09:52:07 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7728</guid>
		<description><![CDATA[I have always loved languages. During high school I studied English, French and German, and even took on some extra-curricular Latin. Back then I was still convinced I was to become an actress and knowing my languages would greatly improve my chances of an International career. Later on I debated studying Italian (hence the Latin [...]]]></description>
				<content:encoded><![CDATA[<p>I have always loved languages. During high school I studied English, French and German, and even took on some extra-curricular Latin. Back then I was still convinced I was to become an actress and knowing my languages would greatly improve my chances of an International career. Later on I debated studying Italian (hence the Latin lessons). Little did I know that the languages I'd learn in my (mid) twenties would be the most important ones.</p>
<p>August last year I started going through the RailsGirls guides with a friend and co-worker. I wasn't stoked immediately but I felt that learning programming was something vital, something bigger than me. It wasn't until I refreshed my knowledge of HTML and CSS until I really started to get the hang of Ruby on Rails. With HTML and CSS every change you make is so incredibly visual, one can not help but play around with the code. That playful attitude - and lack of fear that you'll break something - that comes with being proficient in whatever language, is what makes you an engineer.</p>
<p>Now I never really learned coding before as I thought I was too late. You hear all these stories of guys that have been programming ever since they were potty trained - or something along those lines. Plus: I have never really been good at math. Turns out that not all programmers started that early. There's no such thing as starting too late. And the mathematics you'll have to deal with in web development are as basic as sums and subtractions.</p>
<p><img src="http://www.1stfloorgraphics.nl/wp-content/uploads/8408554226_7b9c0fc00b.jpg" alt="RailsGirls Rotterdam" width="500" height="333" class="alignright size-full wp-image-7837" /></p>
<p>Mashable calls programming <a href="programming http://mashable.com/2013/04/30/job-skill-future-coding/" target="_blank">the (job) skill of the future</a>. Not any language in particular of course. It's uncertain (or even unlikely) that HTML and CSS in their current form will be on the menu of the next decade. But what we do know is, for the foreseeable future, coding is one of the most important and desirable skills there is. Know a bit of this and that and you can at least read a lot of source code. Which is convenient because I didn't necessarily want to become a programmer. I wanted to understand what the developers at the startup I worked at were talking about. And using that knowledge I wanted to push community features and write better bug reports. Even now, I'm working as a tech reporter for a startup platform and as a communication awesomeness officer at this company (that offers a rather technical product). Notice that none of those (made up) job titles entail me actually coding. And I'm not, really. Sure, I'll optimize a WordPress blog here and there, and I'll mock-up landing pages using HTML5 and CSS, but I don't actually touch the source code. And that's absolutely fine. A job in web development and IT can be a lot of things. I love translating between the users and marketing/communication on the one hand, and the engineering team on the other. I'll leave that Python code base for what it is.</p>
<p>But enough about me. Looking back, I could/should have tackled this thing a bit better. Or more efficient. I don't blame my mentors for that, at all. A lot of stuff is simply too self-evident for them to adapt their vocabulary. I experienced me learning Rails as everything but easy. It seemed that with every step I was slapped in the face with a new gem, exception or a whole new programming language. <em>"You should really use Javascript for that."</em> ... and off I went to Codecademy to follow their Javascript track. Some days just looking at Avdi's Objects on Rails made my stomach cringe. But I survived and I learned a lot about how to learn programming along the way. So, enjoy:</p>
<p><strong>Improve your HTML and CSS skills with Codecademy</strong><br />
<a href="http://www.codecademy.com/tracks/web">Codecademy</a>'s Web Fundamentals track is a great way to refresh and improve your HTML and CSS skills. You'll work with a Terminal and Texteditor right in the browser, which is great. However, if you want to continue practicing (offline) you will need to install a Texteditor (<a href="http://www.vim.org/download.php" target="_blank">Vim</a> is a a free service) and a terminal. You could either use the terminal application on your Mac or download iTerm - which I'm somewhat of a fan of.</p>
<p>Anyway. Codecademy's Web Fundamentals track teaches you the building blocks of HTML and CSS in order to create and style your first web page from scratch. You'll learn how to use tables, divs, and spans to flesh out our pages and make them capable of a wide range of content and style. Plus: with all the CSS selectors you'll get to know, you'll be able to control precisely where and how your HTML elements appear on the page.</p>
<p><strong>Get started with Git and GitHub</strong><br />
Head over to Github.com and register yourself an account. On GitHub you can host your code so you actually always have a virtual backup. You might want to use your real email address (you know, the one you check every other hour) instead of a Hotmail address you use for spam only. GitHub will send you messages - especially when you are working on projects with other people - that you don't want to miss.<br />
GitHub is additionally somewhat of a social network for programmers.</p>
<p><img class="aligncenter size-full wp-image-7832" alt="github" src="http://www.1stfloorgraphics.nl/wp-content/uploads/baracktocat.jpg" width="500" height="500" /></p>
<p>One of the great features on GitHub is the ability to see what other people are working on. When you follow someone, you will get notifications on your dashboard about their GitHub activity. At some point you may want to stay up-to-date with a specific project. Just click on the "watch" button at the top of the project page and you're good to go. Care to contribute to someone else's project? After making changes, you can let the original author know about them by sending a <a href="https://help.github.com/articles/using-pull-requests">pull request</a>.</p>
<p>When you are collaborating on a project with someone, you sometimes come across problems that need to be fixed. To help you keep track of these problems, each GitHub repository has a section called Issues.</p>
<p>Have you found yourself wishing you could collaborate with multiple developers on one project? You can manage everyone with Organizations. With an organization you can build teams with special permissions, have a public 'organization profile', and keep track of activity within the organization.</p>
<p>At the heart of GitHub is an open source version control system (VCS) called Git (if you don't already know what Git is, <a href="http://git-scm.com/book/en/Getting-Started-Git-Basics">take a crash course.</a>). Git is responsible for everything GitHub related that happens locally on your computer. Version control systems let programmers take snapshots of their code at any point in time. Sometimes (/oftentimes) you will write code that causes unexpected problems. When this happens, it’s great to be able to easily revert to the last working version of your code. And: when working together on the same project, you'll need to be able to easily 'merge' your code with theirs. You don't want your uodate to overwrite their vital changes, do you?</p>
<p>So, let's get Git(Hub) running on your laptop. You'll probably want to download GitHub's native app for Mac and follow the <a href="https://help.github.com/articles/set-up-git" target="_blank">installation instructions</a>. To get the hang of this GitHub thing, follow the guides to <a href="https://help.github.com/articles/create-a-repo" target="_blank">create a new repository</a>, and to a href="https://help.github.com/articles/fork-a-repo" target="_blank"&gt;fork one (copy an open source project in order to work on your own version of it).</p>
<p>Codeschool has a <a href=" http://www.codeschool.com/courses/try-git" target="_blank">great free course</a> teaching you the basics of git version control and the terminal.</p>
<p><strong>Now get started with Rails and Ruby</strong><br />
To build apps and other things with Ruby on Rails, we need to setup some software and a developer environment for your computer. RailsGirls actually offers the instructions for your operating system:<br />
- <a href="http://guides.railsgirls.com/install/#setup_for_os_x">Setup for OS X</a><br />
- <a href="http://guides.railsgirls.com/install/#setup_for_windows">Setup for Windows</a><br />
- <a href="http://guides.railsgirls.com/install/#setup_for_linux">Setup for Linux</a></p>
<p><img class="alignright size-full wp-image-7834" alt="whys-poignant-guide" src="http://www.1stfloorgraphics.nl/wp-content/uploads/whys-poignant-guide.png" width="200" height="170" />Then: try Ruby with <a href="http://tryruby.org/levels/1/challenges/0" target="_blank">TryRuby</a>. This fun course by code school allows you to try out Ruby code in the prompt (terminal) on the right. TryRuby is based on <a href="http://mislav.uniqpath.com/poignant-guide/" target="_blank">Why's Poignant Guide to Ruby</a>. If you like the style of TryRuby, you might want to learn all about the language reading through his book. Giggles guaranteed, Why is a bit of a nut.</p>
<p>Then it makes sense to run through the <a href="http://guides.railsgirls.com/app/" target="_blank">RailsGirls guide</a> (again - this post was originally for RailsGirls alumni only). The commands and code described will start to make a lot more sense. You might want to start over, set up a new Rails project, follow the guide and then jump into the follow up guides:<br />
Guide 1: <a href="http://guides.railsgirls.com/commenting">Add commenting by Janika Liiv</a><br />
Guide 2: <a href="http://guides.railsgirls.com/heroku">Put your app online with Heroku by Terence Lee</a><br />
Guide 3: <a href="http://guides.railsgirls.com/thumbnails">Create thumbnail images for the uploads by Miha Filej</a><br />
Guide 4: <a href="http://guides.railsgirls.com/design">Add design using HTML &amp; CSS by Alex Liao</a><br />
Guide 5t: <a href="http://guides.railsgirls.com/devise/">Add Authentication (user accounts) with Devise by Piotr Steininger</a></p>
<p><img class="alignright size-medium wp-image-7835" alt="zombies" src="http://www.1stfloorgraphics.nl/wp-content/uploads/zombies-253x253.jpg" width="200" height="200" />Did that work out for you? Awesome. You know what's also fun? <a href="http://railsforzombies.org/" target="_blank">Rails for Zombies</a> (another course by the guys from Codeschool). Yes, you will be repeating a lot, but repetition is good. That's why you should turn to Codecademy next. Remember? You followed their Web Fundamentals course a little while ago. Now we'll turn to <a href="http://www.codecademy.com/tracks/ruby" target="_blank">their Ruby course</a>. You'll learn how to change your Ruby programs' behavior based on user input. You'll get familiar with loops, arrays, hashes, blocks, procs, and lambdas and you'll learn how to sort large amounts of information. Codecademy also introduces you to refactoring. That's the process of making our code even better.</p>
<p><strong>Yay for JavaScript</strong><br />
JavaScript is the language that determines how the elements on a page should behave (when you for instance click on a button). There’s an awesome JavaScript framework out there called jQuery, which basically everyone uses. It’s fun to learn. That is, compared to JavaScript. These mini-tutorials should get you started: <a href="http://docs.jquery.com/Tutorials">http://docs.jquery.com/Tutorials</a>.</p>
<p>When you’re feeling ready, Heroku makes it really easy to deploy your code (Hartl explains how to do this). Here’s the info on setting up Heroku with Rails 3: <a href="http://devcenter.heroku.com/articles/rails3">devcenter.heroku.com/articles/rails3</a>. If you want to set up a custom domain name, Heroku provides a tutorial on this too: <a href="http://devcenter.heroku.com/articles/custom-domains">devcenter.heroku.com/articles/custom-domains</a>.</p>
<p>Now you are 'out there', you might as well physically leave the house. Look for a <a href="http://rubyusergroups.org/" target="_blank">user group in your city</a> and meet your new programmer friends. I've experienced the Ruby and Rails community to be very friendly and welcomy.</p>
<p><strong>Keep learning</strong><br />
Subscribe for the <a href="http://rubyweekly.com/" target="_blank">Ruby Weekly newsletter</a>. Start reading Avdi's <a href="http://objectsonrails.com/" target="_blank">Objects on Rails</a>. Listen to his <a href="http://www.rubytapas.com/" target="_blank">RubyTapas</a> episodes. You might understand very little in the beginning but remember, it's about learning a new language here. It's a lot about learning the vocabulary. Just look up what you don't understand and the next time you'll hear it, you'll be all like 'I KNOW THAT STUFF'. </p>
<p><strong>ERROR!</strong><br />
With time, error messages will scare you less. Encountering an error? Write or talk out loud, what you think the matter might be. Don’t just sit there hoping for an epiphany.</p>
<p>You'll be fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/05/22/why-learning-how-to-code-is-important-and-getting-started-is-the-easiest-part/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I&#8217;m looking forward to Bubbleconf &#8217;13</title>
		<link>http://www.1stfloorgraphics.nl/2013/05/18/why-im-looking-forward-to-bubbleconf-13/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/05/18/why-im-looking-forward-to-bubbleconf-13/#comments</comments>
		<pubDate>Sat, 18 May 2013 14:27:45 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7790</guid>
		<description><![CDATA[Yes, I had heard about last years Bubbleconf. But it wasn't until a Skype call with long time Twitter friend Ninh (co-founder and CEO of Phusion) that I figured this might actually be a conference for me. Ninh shared how he thinks that so-called startup conferences that charge 1500 pp are a farce. And how [...]]]></description>
				<content:encoded><![CDATA[<p>Yes, I had heard about last years Bubbleconf. But it wasn't until a Skype call with long time Twitter friend Ninh (co-founder and CEO of <a href="http://www.phusion.nl/" target="_blank">Phusion</a>) that I figured this might actually be a conference for me.</p>
<p>Ninh shared how he thinks that so-called startup conferences that charge 1500 pp are a farce. And how he dislikes seeing cool startups leave the Netherlands, to try and make it in the States, or by means of an acquihire. <em>"It's a loss for the Dutch tech industry really. With Bubblyconf we want to support the startup culture."</em></p>
<p><img class="aligncenter size-full wp-image-7806" alt="Screen Shot 2013-05-18 at 4.26.44 PM" src="http://www.1stfloorgraphics.nl/wp-content/uploads/Screen-Shot-2013-05-18-at-4.26.44-PM.png" width="500" height="544" /></p>
<p>This year the organizing team of Bubbleconf has decided to run a kind of startup bootcamp alongside of the conference. Ninh, who's a lecturer on programming for the University of Amsterdam, called me to discuss a Rails Girls like program. But then a little more broad. And open for men. <em>"I'm not white-knighting here, I just want to take away obstacles for all beginners."</em> We talked about teaching developers basic marketing skills and marketeers basic programming skills. Bubbleconf wants to bring the people within the startup ecosystem closer together and making them understand a bit of what their conversation partners do on a daily basis might just be the key there.</p>
<p>This year BubbleConf will take place in the stunning Beurs van Berlage, located in the heart of the Amsterdam city centre. Follow updates on the event and it's program via <a href="https://twitter.com/bubbleconf" target="_blank">Twitter</a>. See you there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/05/18/why-im-looking-forward-to-bubbleconf-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hunTU 2013 revisited</title>
		<link>http://www.1stfloorgraphics.nl/2013/05/15/huntu-2013-revisited/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/05/15/huntu-2013-revisited/#comments</comments>
		<pubDate>Wed, 15 May 2013 11:41:08 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7748</guid>
		<description><![CDATA[Today I finally don't feel so hungover of excitement anymore and capable of writing a recap of the crazy (extended) weekend that was. May 9 till 12 was hunTU time and as a member of the organizing team that means very little sleep, thousands of Whats-app messages, at least 250 emails and - in my [...]]]></description>
				<content:encoded><![CDATA[<p>Today I finally don't feel so hungover of excitement anymore and capable of writing a recap of the crazy (extended) weekend that was. May 9 till 12 was hunTU time and as a member of the organizing team that means very little sleep, thousands of Whats-app messages, at least 250 emails and - in my case - social media stress at rush hour(s).</p>
<p>For those of you only tuning in now: the hunTU a kind of scavenger hunt, organized by a few cool guys from the Technical University in Vienna. The idea is simple. You form a team and from the moment you (and all the other participating clans) get the item list, you have 3,141 days to collect/make/do as many things as possibly possible. For every item you earn a certain amount of points. The team with the most points – you got it! – wins.</p>
<p><strong>The list</strong><br />
Some of my favorite items this year were:<br />
- <a href="http://nl.wikipedia.org/wiki/Schloss_Sch%C3%B6nbrunn" target="_blank">Schloss Schönbrunn</a> made out of cookies;<br />
- Chuck Norris facts written down on 30 empty toilet rolls;<br />
- the re-enacted children's picture;<br />
- the Gummy bear taste test;<br />
- photobomb level UFO<br />
- the Polaroid picture of a Polaroid picture of a Polaroid camera;<br />
- the raspberry pi pie and<br />
- the Lego tower (2 meters high)</p>
<p><img class="aligncenter size-full wp-image-7770" alt="items" src="http://www.1stfloorgraphics.nl/wp-content/uploads/items.png" width="500" height="333" /></p>
<p>The list contained a few surprises. The action tasks involved engaging in the 'Ententanz' with the whole team, as well as a 'Lokalsuche', where the hunTU organizers would give hints where in the city they were hiding. Finding them meant points. Finding them first, extra points. My favorite action task this year was the 'Sowjetische Marine', where the whole team needed to board an inflatable boat in the pond at Karlsplatz and wave the USSR flag.</p>
<p><strong>The organizers</strong><br />
Bernhard Bichler, Mihai Ghete, Jens Kager, Lena Reiser, Paul Staroch, Andreas Tiefenthaler, Emre Izgöl, Paul Leitner, Thomas Schranz, Alexander Tauner, Valentin Wadl, Lisa Wagenknecht and myself were the organizers behind this year's scavenger hunt. We rated 1.475 items, all together worth 24.925 points (the average item would gain you 15,66 points). We made a <a href="https://www.facebook.com/hunTU.at/photos_albums" target="_blank">bunch of pictures</a> and we <a href="https://twitter.com/huntu" target="_blank">tweeted</a> here and there.</p>
<p><img class="aligncenter size-full wp-image-7767" alt="huntu_team" src="http://www.1stfloorgraphics.nl/wp-content/uploads/huntu_team.png" width="501" height="334" /></p>
<p><strong>The teams</strong><br />
This year's teams were as crazy as ever. In order to get the mono-brow item a Big Bang team member simple shaved off one of his eyebrows. We saw men and women in morphsuits, self-made <a href="http://nl.wikipedia.org/wiki/Wingsuit" target="_blank">wingsuits</a> and mankini's. And a lot of semi-attractive catwomen (is that the plural of Catwoman?), Jokers and team members with pink-dyed hair.</p>
<p><img class="aligncenter size-full wp-image-7769" alt="teams" src="http://www.1stfloorgraphics.nl/wp-content/uploads/teams.png" width="500" height="500" /></p>
<p><strong>The items</strong><br />
Some of the items which would bring in the most points were:<br />
- a video of the ISS where Chris Hadfield would send his greetings to hunTU (155 points)<br />
- a Harlem Shake video (60 points)<br />
- a cooking video of max 60 minutes, preferably in a foreign language (60 points)<br />
- a tooth-pick marionette (61 points)</p>
<p>Evidently (and sadly) nobody brought in the first item. Nor the did anyone<br />
bring a vacuum cleaner with a radio attached. One team managed to get a quote from a guy running a vacuum cleaner museum though, saying the had never heard of such a thing and claimed that the sound the vacuum cleaner makes would interfere heavily with the tunes from the radio. Making the device far from desirable.  </p>
<p>Then there were the so-called achievements, which basically combined items and - when they were all brought in - added some bonus points. Example was the achievement 'Früher war alles besser' where one had to collect a 'Konsum' bag, old McDonald's coupons, a <a href="https://www.google.at/search?q=Tschisi&client=firefox-a&hs=2Nb&rls=org.mozilla:en-US:official&tbm=isch&tbo=u&source=univ&sa=X&ei=NnKTUaGZCcHAO7f0gbgD&ved=0CCsQsAQ&biw=1074&bih=764" target="_blank">Tschisi</a> ice cream, a Super 8 film and a Phone card from the Schilling era. </p>
<p>Some items brought minus points, such as 'Nasses Brot' (wet bread), a milk tooth and a Microsoft-T-Shirt. All together however, they'd make for quite a few extra points.</p>
<p><strong>The memes</strong><br />
hunTU wouldn't be hunTU if the walls (and windows) of the HQ weren't plastered with memes. Creating a hunTU meme was on the list. AND the participants made for some great meme-material as well, with the <a href="https://www.facebook.com/photo.php?fbid=10152071017165715&set=a.425828095714.222417.155213890714&type=1&theater" target="_blank">overly attached hunTU participant</a> and grumpy pug: </p>
<p style="text-align: center;"><img class="aligncenter" alt="gumpydog" src="http://www.1stfloorgraphics.nl/wp-content/uploads/gumpydog.png" width="500" height="500" /></p>
<p><strong>Next year</strong><br />
I'm planning to pull a reverse-Valentin next year. Valentin Wadl joined the organizing team, freshly recruited from one of last year(s) participating teams operating under code name T.A.R.D.I.S. I'd love to participate with a bunch of equally crazy people and nail that thing. It's a prestige thing, you know... </p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/05/15/huntu-2013-revisited/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>May 27th WordPress 10th anniversary party. In Vienna.</title>
		<link>http://www.1stfloorgraphics.nl/2013/05/15/may-27th-wordpress-10th-anniversary-party-in-vienna/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/05/15/may-27th-wordpress-10th-anniversary-party-in-vienna/#comments</comments>
		<pubDate>Wed, 15 May 2013 10:00:43 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7772</guid>
		<description><![CDATA[I've been 'involved' with the WordPress user group meetup for some time now and I'm excited to share that we've set up a little something for WordPress' 10th anniversary party! May 27th we'll celebrate WordPress at the Flanagans Irish Pub, Schwarzenbergstasse 1, in Vienna. Be there or be square! Don’t forget to RSVP here AND [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-7773" alt="full_18082" src="http://www.1stfloorgraphics.nl/wp-content/uploads/full_18082.png" width="503" height="67" /></p>
<p>I've been 'involved' with the WordPress user group meetup for some time now and I'm excited to share that we've set up a little something for WordPress' 10th anniversary party! May 27th we'll celebrate WordPress at the Flanagans Irish Pub, Schwarzenbergstasse 1, in Vienna. Be there or be square!</p>
<p><span>Don’t forget to RSVP <a href="http://www.meetup.com/Vienna-WordPress-Meetup/events/116339292/" target="_blank">here</a> AND <a href="http://www.meetup.com/WordPress/Vienna-AT/935722/" target="_blank">here</a>.</span> Entrance is free, of course, and the first 100 people to RSVP on both pages will get a free drink!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/05/15/may-27th-wordpress-10th-anniversary-party-in-vienna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vienna.rb meetup #3 &#8211; Runtastic, Rails Girls, Sequel and Codeship</title>
		<link>http://www.1stfloorgraphics.nl/2013/05/10/vienna-rb-meetup-3-runtastic-rails-girls-and-activerecord/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/05/10/vienna-rb-meetup-3-runtastic-rails-girls-and-activerecord/#comments</comments>
		<pubDate>Fri, 10 May 2013 20:24:08 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7744</guid>
		<description><![CDATA[Yesterday the third Ruby user group meetup took place at Sektor5 (thanks for hosting us!). As a proud member of the vienna.rb organizing team, my recap might come across as a little bias, but it will have to do: The official part of yesterdays get-together started with a small sponsor talk from Runtastic. David Österreicher [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday the <a href="http://www.meetup.com/vienna-rb/events/102695522/" target="_blank">third Ruby user group meetup</a> took place at Sektor5 (thanks for hosting us!). As a proud member of the vienna.rb organizing team, my recap might come across as a little bias, but it will have to do:</p>
<p>The official part of yesterdays get-together started with a small sponsor talk from Runtastic. <a href="https://twitter.com/doesterr" target="_blank">David Österreicher</a> (part of the Viennese chapter of Runtastic) told us how one of Austria's most successful startups uses Ruby for virtually everything. And casually mentioned that <a href="http://www.runtastic.com/" target="_blank">Runtastic is hiring</a>.  </p>
<p><img class="aligncenter size-full wp-image-7756" alt="viennarb1" src="http://www.1stfloorgraphics.nl/wp-content/uploads/viennarb12.png" width="500" height="500" /> </p>
<p>Next up was <a href="https://twitter.com/evilbndy" target="_blank">Andreas Kopecky</a>, on Sequel. 'Bndy' is working as a backend developer at RadarServices. <a href="http://sequel.rubyforge.org/" target="_blank">Sequel</a> is an ORM, maintained (to extremes) by Jeremy Evans with monthly releases. </p>
<p>Sequel... </p>
<ul>
<li>... loads all table data from database meta-information</li>
<li>... provides getter/setter for all columns in the table</li>
<li>... for all intends and purposes pretty much what ActiveRecord<br />
  does in it's most basic form</li>
</ul>
<p>Andreas recommends using Sequel when <em>"you want control over your database, you want to unleash the benefits of using relational databases, you want to use all available database types and you want a really powerful tool that is well maintained." </em>Better leave it be whenever you actually <strong>don't</strong> want to bother with what your database does. Or when you are not comfortable with getting into SQL.</p>
<p>For Andreas' slides with code snippets, head over to <a href="https://github.com/vienna-rb/slides/blob/master/13-05-09/sequel/presentation.mdown" target="_blank">our slides repo</a>.</p>
<p><img class="aligncenter size-full wp-image-7755" alt="viennarb2" src="http://www.1stfloorgraphics.nl/wp-content/uploads/viennarb22.png" width="500" height="500" /></p>
<p><a href="https://twitter.com/sarahhoworka" target="_blank">Sarah Howorka</a> is in the 2nd year of her studies. That means: working together with web design students. <em>"It's really a very valuable experience, as you work together on real world problems."</em> Sarah is into photography, what results in the <a href="http://serendipityapp.tumblr.com" target="_blank">serendipity app</a> she's building. The application replicates the double exposure effect of analogue photography, Instagram style. <em>"We additionally use this project to try and work with scrum, and TDD."</em></p>
<p>On the <a href="http://railsgirls.com/" target="_blank">Rails Girls</a> project (Sarah frequently coaches during these international, 1-day workshops): <em>"Explaining something in a way that makes you come across as really smart is easy, explaining something in a way someone else actually understands it is an entirely different story. What I want to teach beginners to programming is that coding is not boring, it's not lonely. Code is literacy. It's very much like learning a new language, you won't master it overnight but it comes in extremely handy."</em></p>
<p><img class="aligncenter size-full wp-image-7753" alt="viennarb4" src="http://www.1stfloorgraphics.nl/wp-content/uploads/viennarb4.png" width="501" height="501" /></p>
<p><a href="https://twitter.com/clemenshelm" target="_blank">Clemens Helm</a> was next up, with his talk on 'The Ruby Workflow'. Or actually: the <a href="https://www.codeship.io/" target="_blank">Codeship</a> workflow. The hobbyist screencaster is excited about the web and Rails and is currently the only one of the team that holds office in Vienna. The rest is in Boston <a href="http://www.inventures.eu/codeship-left-vienna-for-boston-for-now" target="_blank">for the TechStars program</a>. </p>
<p>Clemens on their workflow: <em>"It's really quite simple: develop, file a pull request and go live!"</em> The Codeshippers are big fans of using feature branches, behavior-driven development, continuous integration (with tests on every push to GitHub) and continuous deployment. With the last two being THE example of a company that 'eats their own dogfood'.</p>
<p><img class="aligncenter size-full wp-image-7754" alt="viennarb3" src="http://www.1stfloorgraphics.nl/wp-content/uploads/viennarb31.png" width="500" height="500" /></p>
<p><em>"There are a quite a few advantages to the way we work"</em>:</p>
<ul>
<li>+ Only hours from idea to shipping</li>
<li>+ Everybody can contribute</li>
<li>+ Code quality</li>
<li>+ Shared knowledge</li>
<li>+ Deployment just happens</li>
<li>– Pull request cycle (... is rather lengthy)</li>
</ul>
<p>With that, and a small discussion with the attendees on how Codeship could improve their pull request cycle, Clemens closed of the official part of the evening. Everyone went on mingling and drinking their drinks. Contacts and gems got exchanged and I even needed to list talk proposals for next month's meetup. About that: The next vienna.rb meetup takes place <a href="http://www.meetup.com/vienna-rb/events/111533282/" target="_blank">June 4 at Sektor5</a> (Siebenbrunnengasse 44, 1050). Follow us on <a href="http://www.twitter.com/viennarb" target="_blank">Twitter</a> or take a look at <a href="http://www.vienna-rb.at" target="_blank">our website</a> for more information about the upcoming event. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/05/10/vienna-rb-meetup-3-runtastic-rails-girls-and-activerecord/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How attending this Bratislava developer meetup was a humbling experience</title>
		<link>http://www.1stfloorgraphics.nl/2013/04/30/how-attending-this-bratislava-developer-meetup-was-a-humbling-experience/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/04/30/how-attending-this-bratislava-developer-meetup-was-a-humbling-experience/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 10:21:40 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7700</guid>
		<description><![CDATA[When my fellow organizers for vienna.rb and myself just started out organizing these developer meetups for Viennese Rubyists we quickly came in contact with the guys behind Rubyslava. Rubyslava organizes Ruby programmer meetups in Bratislava. What's more is that they have been doing it for years. And they merged with the Python user group and [...]]]></description>
				<content:encoded><![CDATA[<p>When my fellow organizers for vienna.rb and myself just started out organizing these developer meetups for Viennese Rubyists we quickly came in contact with the guys behind Rubyslava. Rubyslava organizes Ruby programmer meetups in Bratislava. What's more is that they have been doing it for years. And they merged with the Python user group and they are quite open to JavaScripters. We didn't think such an 'open to all languages' thing possible, but attending a Rubyslava meetup I was in for more surprises.</p>
<p>As most talks were in Czech or Slovak, one of the organizers had arranged an interpreter for me. Even though I had still to organize the first event for vienna.rb - I went to Bratislava for inspirational reasons - I was welcomed like a rockstar. After this meeting all these guys actually followed up on whatever we talked about during the networking-part of the meetup. And they returned 'the favor', showing up with a van for every vienna.rb meetup. It was a humbling experience.</p>
<p>Austrian's tend to see their country as the navel of the (startup) world. I'm not pointing fingers here. Coming from the Netherlands I think the Austrians are usually 2 years behind when it comes to technology. Meeting all this friendly and incredibly smart and hard working people from Slovakia really put me back in my place. Since then I try to visit every cross-border event and encourage people to get their asses on that train to Bratislava to attend a meetup in whatever field of interest. After all Bratislava and Vienna are the closest capital cities of Europe.</p>
<p>Learning how people from different nationalities approach a problem or figuring the different challenges you face when it comes to open data for instance is incredibly valuable. You'll go about your code/job/life differently after that. And for the better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/04/30/how-attending-this-bratislava-developer-meetup-was-a-humbling-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Vienna meetup #4 &#8211; the Spring edition</title>
		<link>http://www.1stfloorgraphics.nl/2013/04/30/wordpress-vienna-meetup-4-the-spring-edition/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/04/30/wordpress-vienna-meetup-4-the-spring-edition/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 08:14:29 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>
		<category><![CDATA[Facebook integration]]></category>
		<category><![CDATA[Luca Sartoni]]></category>
		<category><![CDATA[Paolo Belcastro]]></category>
		<category><![CDATA[Spaces03 Vienna]]></category>
		<category><![CDATA[WordPress Vienna meetup]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7698</guid>
		<description><![CDATA[Yesterday I attended the fourth WordPress Vienna meetup at Spaces03 (Kaiserstrasse 2-4) as a co-organizer. Here's what happened: Milan Steskal (CEO at mosaicmedia.eu) and Andrej joined us from Bratislava to both do a little talk. Milan started with his, on Facebook integration. "Promoting your blog, brand or business on Facebook is like sex, everyone thinks [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday I attended the <a href="http://www.meetup.com/Vienna-WordPress-Meetup/events/112814702/" target="_blank">fourth WordPress Vienna meetup</a> at Spaces03 (Kaiserstrasse 2-4) as a co-organizer. Here's what happened:</p>
<p><strong><a href="https://twitter.com/milansteskal" target="_blank">Milan Steskal</a></strong> (CEO at mosaicmedia.eu) and Andrej joined us from Bratislava to both do a little talk. Milan started with his, on Facebook integration. <em>"Promoting your blog, brand or business on Facebook is like sex, everyone thinks that they know how to do it (right)."</em> Milan challenged the attendees to describe what Facebook is and try to not use the words 'social' or 'network'. <em>"What's the Facebook platform for? For users it's apps like Foursquare and Instagram that help them tell their story. For bloggers it's an opportunity to grow their audience."</em></p>
<p>Milan explained how to integrate social elements like the like button or Facebook comments on your blog and then went on to explain the workings of Open Graph. "Open Graph lets you connect real world actions with objects in your apps. For example: let your readers tell their friends that they've read your article using <a href="http://wordpress.org/extend/plugins/fb-social-reader/" target="_blank">social reader</a>." For a technical guide to Open Graph Milan suggested the attendees check out <a href="http://facebook.com/docs/opengraph" target="_blank">facebook.com/docs/opengraph</a>. And he guides the developer in the room to the <a href="http://developers.facebook.com/tools/explorer" target="_blank">Graph API explorer</a>, a tool that helps you test your API calls and permissions.</p>
<p>Find <a href="http://www.slideshare.net/milansteskal/tricks-to-grow-your-blog-audience-with-facebook" target="_blank">Milan's slides online</a>.</p>
<p><strong><a href="https://twitter.com/andrejmikula" target="_blank">Andrej Mikula</a> </strong>then went on to share how blogging and WordPress determined his future. <em>"When I got started, using WordPress was like using Windows the 90'ies, there wasn't a decent alternative."</em> Andrej quoted Ogilvy - if you want to become a (copy)writer, write! - to explain why he started blogging in 2008. He quit his job as a marketing director last summer, thinking it to be not immoral to some make money from blogging. <em>"I was blogging about time management for years, but never thought I could do talks and workshops on it."</em></p>
<p>For a bit of advice:<br />
- <em>"Google is closing its RSS Reader, for most people it's too much of a pain to change products, make sure to collect email subscribers instead."</em><br />
- <em>"You don't have to be an expert, call yourself an enthusiast instead!"</em></p>
<p><img class="aligncenter size-full wp-image-7711" alt="wp" src="http://www.1stfloorgraphics.nl/wp-content/uploads/wp.png" width="500" height="333" /></p>
<p>After a short break <a href="https://twitter.com/p3ob7o" target="_blank">Paolo Belcastro</a> talked (quite) a bit about 'why, when and how to make a site multilingual'. <em>"Switching to another language for your dashboard and website it easy, just download the same exact WordPress package, just in a different language. But what if you want more than one language at once? Switzerland has 4 languages for 7 million people... you need a multilingual site there."</em> Paolo advised the attendees to really think through if they are serving a global or a local audience. <em>"Do people need the exact same content, just in another language?</em>" There is a difference between local and global presence. Local can be as big as a whole contintent, for instance when it come to baseball. <em>"Who outside of the US cares about baseball anyway?"</em></p>
<p><em>"Take Apple. Apple has a global presence and a global audience, but different prices and regulations for every country. They need flexibility. Tourism is a good example of local presence but global audience. Russians and Italians don't like they same way of addressing, they are looking for different things on their holiday. If that isn't enough, colors don't mean the same thing in every country. Orange has this political connotation in India." </em>How do you go about translations when your site is extremely rich in content? Is it doable to translate a news site in different languages? Making a site multilingual is not so hard, filling the website with multilingual content however, THAT is (time) costy.</p>
<p>Paolo went on to introduce qTranslate and WPML. Paolo: <em>"The 50 dollars you pay for WPML are worth it, as you can also adjust the CSS for every language. It doesn't necessarily work out of the box with other plugins though."</em> Multisite Language Switcher (MLS) is the newest kid in town. It allows you to create three sites, in different languages, using sub-domains.</p>
<p>But really Paolo suggested to build 3 separate websites, managed by local experts. If you're at that (professional) level.</p>
<p>At that point <a href="http://www.twitter.com/unserkaiser" target="_blank">Franz Josef Kaiser </a>hijacked the meeting a bit and introduced the <a href="http://wordpress.org/extend/plugins/wcm-user-language-switcher/" target="_blank">WCM User Language Switcher </a>plugin he co-created: <em>"It allows you to switch your whole dashboard, including the plugins, to virtually every language you'd like. Including Klingon." </em></p>
<div id="event-description-wrap" itemprop="description">
<p>In celebration of WordPress 10th Anniversary we'll host <a href="http://www.meetup.com/Vienna-WordPress-Meetup/events/116339292/" target="_blank">a little party May 27</a>, starting 19:00. That means: no presentations, just good ol' fun. Keep a close eye on the <a href="http://bit.ly/10jekn9" target="_blank">Twitter account</a>, <a href="http://bit.ly/17h4WUH" target="_blank">meetup page</a> and/or <a href="http://bit.ly/10jeknd" target="_blank">website</a> for the event details.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/04/30/wordpress-vienna-meetup-4-the-spring-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>17/5 Pitch your passion</title>
		<link>http://www.1stfloorgraphics.nl/2013/04/28/175-pitch-your-passion/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/04/28/175-pitch-your-passion/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 09:36:33 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7661</guid>
		<description><![CDATA[May 17 the 4th edition of Pitch Your Passion will take place at AAI - Wien (Türkenstraße 3). At a Pitch your Passion event people share what they are passionate about and inspire and get inspired by others. Care to pitch yourself? You can come by and present whatever drives you. The only restriction is [...]]]></description>
				<content:encoded><![CDATA[<p>May 17 the 4th edition of <a href="https://www.facebook.com/events/451331174946559/?fref=ts" target="_blank">Pitch Your Passion</a> will take place at AAI - Wien (Türkenstraße 3). At a Pitch your Passion event people share what they are passionate about and inspire and get inspired by others. Care to pitch yourself? You can come by and present whatever drives you. The only restriction is that it must be a personal passion, so no sales pitch for your latest startup venture.</p>
<p>Jakob Hager, the guy behind <a href="http://pitchyourpassion.org " target="_blank">Pitch your Passion</a>, on the event: <em>"Between pitches from people that try and change the world for the better on a small scale, we have some 'different' stuff as well. Last year a singer-songwriter sang a song to the audience."</em></p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/X4gs7pCudPU" frameborder="0" allowfullscreen></iframe></p>
<p>Whoever wants to present just gets up and starts. 3 minute presentations (in English!) are followed by 2 minutes of Q&amp;A by the audience. You can't use media other than what you bring along. That means: no slides unless you bring the beamer! In between clusters of pitches the PYP team throws in some games like vis-a-vis pitching and networking exercises.</p>
<p>Nothing to present? You can also just join in and listen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/04/28/175-pitch-your-passion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The wheels of the startup bus go round and round</title>
		<link>http://www.1stfloorgraphics.nl/2013/04/27/the-wheels-of-the-startup-bus-go-round-and-round/</link>
		<comments>http://www.1stfloorgraphics.nl/2013/04/27/the-wheels-of-the-startup-bus-go-round-and-round/#comments</comments>
		<pubDate>Sat, 27 Apr 2013 11:23:05 +0000</pubDate>
		<dc:creator>Floor</dc:creator>
				<category><![CDATA[zonder categorie]]></category>
		<category><![CDATA[Inventures]]></category>
		<category><![CDATA[Sektor5]]></category>
		<category><![CDATA[The Spot Bratislava]]></category>
		<category><![CDATA[TwinEntrepreneurs]]></category>

		<guid isPermaLink="false">http://www.1stfloorgraphics.nl/?p=7665</guid>
		<description><![CDATA[Yesterday, half past five-ish, fifteen Viennese startup people traveled from Sektor5 to co-working space The Spot in Bratislava for an evening of networking across borders. It took us some time to get to the right place in the capital city of Slovakia, but when we did we were all excited and ready to chat. With us [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday, half past five-ish, fifteen Viennese startup people traveled from Sektor5 to co-working space <a title="The Spot" href="http://bit.ly/XLGYNJ" target="_blank">The Spot</a> in Bratislava for an evening of <a href="http://bit.ly/13mMdEa">networking across borders</a>. It took us some time to get to the right place in the capital city of Slovakia, but when we did we were all excited and ready to chat. With us were two guys from <a href="https://www.conda.at/" target="_blank">Conda</a> and Ondrej from <a href="http://www.inventures.eu" target="_blank">Inventures.eu</a>. On driving out of data roaming land: <em>"I'm ok with this. I can do networking without network."</em></p>
<p>Matthew from The Spot and <a href="http://www.twitter.com/kathaka" target="_blank">Kathrin</a> from Sektor5 made sure everyone was aware of the house rules and the free food and drinks in a short introduction speech and the people from <a href="http://www.twinentrepreneurs.eu/" target="_blank">TwinEntrepreneurs</a>, an initiative for empowering startups in the area of Vienna and Bratislava, introduced their workshops.</p>
<p><img class="aligncenter size-full wp-image-7668" alt="startupbus" src="http://www.1stfloorgraphics.nl/wp-content/uploads/startupbus.png" width="600" height="600" /></p>
<p>Around two in the morning we made our way back home. There was some singing along in the back of the bus and jokes that <a href="https://twitter.com/angelol" target="_blank">Angelo</a> should take care of ordering food for the after party seeing as he is the frontman of Mjam.</p>
<p>Yesterday evening was the first event of a series of initiatives planned to bring together entrepreneurs from different countries to support networking and cooperation across borders. So stay tuned for the next session!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stfloorgraphics.nl/2013/04/27/the-wheels-of-the-startup-bus-go-round-and-round/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
