<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title><![CDATA[Lailo]]></title>
        <description><![CDATA[Passionate about simplicity in code and design.]]></description>
        <link>https://www.lailo.ch</link>
        <generator>RSS for Node</generator>
        <lastBuildDate>Sun, 26 Apr 2020 16:28:11 GMT</lastBuildDate>
        <atom:link href="https://www.lailo.ch/rss.xml" rel="self" type="application/rss+xml"/>
        <copyright><![CDATA[2020 Lailo]]></copyright>
        <language><![CDATA[en]]></language>
        <managingEditor><![CDATA[Lailo]]></managingEditor>
        <webMaster><![CDATA[Lailo]]></webMaster>
        <category><![CDATA[swiftui]]></category>
        <category><![CDATA[coredata]]></category>
        <category><![CDATA[preview]]></category>
        <category><![CDATA[design]]></category>
        <category><![CDATA[tailwindcss]]></category>
        <category><![CDATA[game]]></category>
        <category><![CDATA[ios]]></category>
        <category><![CDATA[animations]]></category>
        <category><![CDATA[medium]]></category>
        <category><![CDATA[export]]></category>
        <category><![CDATA[markdown]]></category>
        <category><![CDATA[open-source]]></category>
        <category><![CDATA[web]]></category>
        <category><![CDATA[react]]></category>
        <category><![CDATA[nextjs]]></category>
        <category><![CDATA[error]]></category>
        <category><![CDATA[server]]></category>
        <category><![CDATA[pitch]]></category>
        <category><![CDATA[idea]]></category>
        <category><![CDATA[projects]]></category>
        <item>
            <title><![CDATA[SwiftUI Preview with CoreData]]></title>
            <description><![CDATA[<h2 id="preview-error">Preview Error</h2>
<p>When you&#39;re using CoreData in a SwiftUI <code>View</code>, you&#39;ll get erros when resuming the preview with the following code.</p>
<pre><code class="language-swift"><span class="hljs-class"><span class="hljs-keyword">struct</span> <span class="hljs-title">ContentView</span>: <span class="hljs-title">View</span> </span>{
  @<span class="hljs-type">Environment</span>(\.managedObjectContext) <span class="hljs-keyword">var</span> moc

  <span class="hljs-keyword">var</span> body: some <span class="hljs-type">View</span> {
    <span class="hljs-type">Text</span>(<span class="hljs-string">"hello World"</span>)
  }
}

<span class="hljs-class"><span class="hljs-keyword">struct</span> <span class="hljs-title">ContentView_Previews</span>: <span class="hljs-title">PreviewProvider</span> </span>{
  <span class="hljs-keyword">static</span> <span class="hljs-keyword">var</span> previews: some <span class="hljs-type">View</span> {
    <span class="hljs-type">ContentView</span>()
  }
}
</code></pre>
<p>The reason is that your preview <code>ContentView()</code> does not have a managed object context.</p>
<h2 id="solution">Solution</h2>
<p>One solution I found is to create a wrapper view which adds test data to the managed object context and passes it back to the view.</p>
<pre><code class="language-swift"><span class="hljs-class"><span class="hljs-keyword">struct</span> <span class="hljs-title">PreviewCoreDataWrapper</span>&lt;<span class="hljs-title">Content</span>: <span class="hljs-title">View</span>&gt;: <span class="hljs-title">View</span> </span>{
  <span class="hljs-keyword">let</span> content: (<span class="hljs-type">NSManagedObjectContext</span>) -&gt; <span class="hljs-type">Content</span>

  <span class="hljs-keyword">var</span> body: some <span class="hljs-type">View</span> {
    <span class="hljs-keyword">let</span> managedObjectContext = (<span class="hljs-type">UIApplication</span>.shared.delegate <span class="hljs-keyword">as</span>! <span class="hljs-type">AppDelegate</span>).persistentContainer.viewContext

    <span class="hljs-keyword">let</span> todo = <span class="hljs-type">Todo</span>(context: managedObjectContext)
    todo.title = <span class="hljs-string">"I Am Legend"</span>

    <span class="hljs-keyword">return</span> <span class="hljs-keyword">self</span>.content(managedObjectContext)
  }

  <span class="hljs-keyword">init</span>(@<span class="hljs-type">ViewBuilder</span> content: @escaping (<span class="hljs-type">NSManagedObjectContext</span>) -&gt; <span class="hljs-type">Content</span>) {
    <span class="hljs-keyword">self</span>.content = content
  }
}
</code></pre>
<p>Now, you can embed every view which needs access to the managed object context within the <code>PreviewCoreDataWrapper</code> view
and access the <code>managedObjectContext</code> to pass it into the enviroment.</p>
<pre><code class="language-swift"><span class="hljs-class"><span class="hljs-keyword">struct</span> <span class="hljs-title">MoviesView_Previews</span>: <span class="hljs-title">PreviewProvider</span> </span>{
  <span class="hljs-keyword">static</span> <span class="hljs-keyword">var</span> previews: some <span class="hljs-type">View</span> {
    <span class="hljs-type">PreviewCoreDataWrapper</span> { managedObjectContext <span class="hljs-keyword">in</span>
      <span class="hljs-type">MoviesView</span>().environment(\.managedObjectContext, managedObjectContext)
    }
  }
}</code></pre>
<p>Now you can resume your preview and it should render just fine without any errors.</p>
<hr>
<small>
  If you have feedback or questions, please feel free to get in touch via Twitter.
</small>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">swiftui-preview-with-coredata</guid>
            <category><![CDATA[swiftui]]></category>
            <category><![CDATA[coredata]]></category>
            <category><![CDATA[preview]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Sun, 26 Apr 2020 18:06:07 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[Dark Mode in TailwindCSS]]></title>
            <description><![CDATA[<p>There are two ways to quickly add dark mode to your Tailwind CSS projects.
The first one is the quickest and easiest way. The second one is your choice if you want to have a controlled theme switch.</p>
<h1 id="1-screen-config">1. Screen Config</h1>
<p>This is a little hack and you can&#39;t manually switch the theme as it detects the theme from the user&#39;s operating system.</p>
<h2 id="set-config">Set Config</h2>
<p>Extend your <code>tailwind.config.js</code> theme by adding a new screen type.</p>
<pre><code class="language-js"><span class="hljs-built_in">module</span>.exports = {
  <span class="hljs-attr">theme</span>: {
    <span class="hljs-attr">extend</span>: {
      <span class="hljs-attr">screens</span>: {
        <span class="hljs-attr">dark</span>: { <span class="hljs-attr">raw</span>: <span class="hljs-string">'(prefers-color-scheme: dark)'</span> },
      },
    },
  },
}</code></pre>
<h2 id="use-styles">Use Styles</h2>
<p>You can now use it like you would use different screen sizes.</p>
<pre><code class="language-html"><span class="hljs-tag">&lt;<span class="hljs-name">div</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"text-gray-800 dark:bg-gray-200"</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">div</span>&gt;</span></code></pre>
<p>It&#39;s also possible to add states like <em>hover</em> into the dark mode.</p>
<pre><code class="language-html"><span class="hljs-tag">&lt;<span class="hljs-name">div</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"border-b hover:border-gray-800 dark:hover:border-gray-800"</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">div</span>&gt;</span></code></pre>
<h1 id="2-plugin">2. Plugin</h1>
<p>Another, more clean way and with the possibility to switch the theme manually is the plugin <a href="https://github.com/ChanceArthur/tailwindcss-dark-mode">tailwindcss-dark-mode</a></p>
<p>Add the class <code>&lt;html class=&quot;dark-mode&quot;&gt;</code> to see the dark mode or remove it to see the regular theme.</p>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">dark-mode-in-tailwindcss</guid>
            <category><![CDATA[design]]></category>
            <category><![CDATA[tailwindcss]]></category>
            <category><![CDATA[design]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Sun, 12 Apr 2020 20:48:09 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[Rapilo]]></title>
            <description><![CDATA[<p>As you might already know, I love coding and designing.
I couldn&#39;t help myself but use the powerful SwiftUI framework and build an iOS game with playful animations.</p>
<h1 id="learning-resources">Learning Resources</h1>
<p>I started looking into SwiftUI the day it was released. I started with Apple&#39;s own tutorials.</p>
<p>A couple of days later, I discovered <a href="https://www.hackingwithswift.com">Hacking with Swift</a> on Twitter.
There, I learned a lot about SwiftUI and its API, but couldn&#39;t find as much as I wanted about animations and transitions.
Meanwhile you can find a complete list called <a href="https://www.hackingwithswift.com/quick-start/swiftui">SwiftUI By Example</a>.</p>
<p>To dive deeper into animations and transitions, I went back to my trusted design tutorial source <a href="https://designcode.io/">Design+Code</a>.</p>
<h1 id="design">Design</h1>
<p>I stared designing in Sketch to get a feeling of how the game would be. After some iterations, I had something I could start coding in Xcode.</p>
<img src="/contents/project/rapilo/sketch-screens.png?v1" class="block my-8 shadow-xl min-h-48 mx-auto rounded-lg" />

<h2 id="colors">Colors</h2>
<p>Besides the gray colors, I used the default iOS colors <code>Color.pink</code>, <code>Color.orange</code>, <code>Color.green</code> and <code>Color.blue</code>.</p>
<h2 id="icons">Icons</h2>
<p>I used the new iOS icons font introduced with iOS 13 called <em>SF Symbols</em>.
The leaderboard is the only icon I designed myself, which is exported as <em>PDF</em> to be used as a vector.</p>
<h1 id="developement">Developement</h1>
<p>After exporting the one icon and the gray colors to the <code>Assets.xcassets</code>, I was ready to start coding in Xcode.</p>
<p>I strongly believe that if a UI feels wrong, it&#39;s not going to be used. That&#39;s why I started with the UI and animations first.
It took me some time until I had something I felt was the right amount of animations and types of transitions.</p>
<img src="/contents/project/rapilo/playing.gif?v1" class="block my-8 shadow-xl w-64 min-h-48 mx-auto rounded-lg" />

<p>After the UI and animations, I added the state management using the <em>Combine</em> framework.
Adding the leaderboard by using Game Center, was the last bit i did before I started beta testing.</p>
<h1 id="beta-tester">Beta Tester</h1>
<p>If you want to be a beta tester, just sign up <a href="https://testflight.apple.com/join/WwxTW39J">right here</a>.
Don&#39;t forget to give me your feedback. It helps me to improve the game so you can have even more fun.</p>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">rapilo</guid>
            <category><![CDATA[swiftui]]></category>
            <category><![CDATA[game]]></category>
            <category><![CDATA[ios]]></category>
            <category><![CDATA[animations]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Mon, 06 Apr 2020 21:43:11 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[Export Your Medium Articles]]></title>
            <description><![CDATA[<h1 id="export-to-html">Export to HTML</h1>
<p>Go to <a href="https://medium.com/me/export">medium.com settings</a> and request your export.</p>
<p>After a while, you&#39;ll get an email with a download link.
Download the <code>medium-export.zip</code> file and unpack it.</p>
<h1 id="transform-to-md">Transform to MD</h1>
<p>Inside the <code>medium-export</code> folder you&#39;ll find another folder <code>posts</code> with <code>.html</code> files in it.
To transform your <code>.html</code> files to <code>.md</code>, you can execute the <code>medium-2-md</code> NPM package with NPX.</p>
<pre><code class="language-shell">npx medium-2-md convertLocal Downloads/medium-export/posts -f</code></pre>
<p>Your posts in <code>.md</code> format can be found in the <code>medium-export/posts/md_*</code> folder</p>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">export-your-medium-articles</guid>
            <category><![CDATA[medium]]></category>
            <category><![CDATA[export]]></category>
            <category><![CDATA[markdown]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Mon, 30 Mar 2020 19:49:12 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[This Blog Is Open Source]]></title>
            <description><![CDATA[<p>This blog is built with <a href="https://nextjs.org">Next.js</a> using <a href="https://tailwindcss.com">Tailwind CSS</a> for styling.
The source code is on <a href="https://github.com/lailo/lailo.ch">GitHub</a> and it&#39;s deployed on <a href="https://zeit.co">Zeit&#39;s Now</a>.</p>
<h1 id="get-started">Get Started</h1>
<p>To get started, you only need to pull or fork the repository, update some config variables and choose your favorite color.
You can find a step-by-step instruction in the <a href="https://github.com/lailo/lailo.ch/blob/master/README.md">README.md </a> of the project.</p>
<h1 id="add-article">Add Article</h1>
<p>Adding new posts is as simple as creating a new Markdown file inside the <code>/articles</code> folder and pushing it to GitHub&#39;s <code>master</code> branch.</p>
<h2 id="meta-data">Meta Data</h2>
<p>It&#39;s important that you keep the meta data at the top of the file.</p>
<pre><code class="language-yml"><span class="hljs-meta">---</span>
<span class="hljs-attr">title:</span> <span class="hljs-string">'This Blog Is Open Source'</span>
<span class="hljs-attr">description:</span> <span class="hljs-string">'Use this blog to ....'</span>
<span class="hljs-attr">tags:</span> <span class="hljs-string">['open-source',</span> <span class="hljs-string">'web'</span><span class="hljs-string">,</span> <span class="hljs-string">'react'</span><span class="hljs-string">,</span> <span class="hljs-string">'nextjs'</span><span class="hljs-string">,</span> <span class="hljs-string">'tailwind-css'</span><span class="hljs-string">]</span>
<span class="hljs-attr">publishedAt:</span> <span class="hljs-string">'2020-03-29T19:14:12.215Z'</span>
<span class="hljs-attr">updatedAt:</span> <span class="hljs-string">'2020-03-29T19:14:12.215Z'</span>
<span class="hljs-meta">---</span>
</code></pre>
<p>Keep in mind that the variable <code>publishedAt: &#39;2020-03-29T19:14:12.215Z&#39;</code> must have a value to publish your article.</p>
<p>If it&#39;s set to <code>published: &#39;&#39;</code>, your article will only be visible in development.</p>
<h1 id="hosting">Hosting</h1>
<p>I personally like the simplicity of <a href="https://zeit.co">Zeit&#39;s Now</a> and that&#39;s exactly what I use to host this blog.
Connect your GitHub repository to a Now project and as soon as you push to master, a new build is executed.
Within minutes you&#39;ll see your new article online.</p>
<p>If you want to share your new article with someone to review without having it released, just create a pull request on master and you&#39;ll get a preview URL from Now.</p>
<h1 id="feedback">Feedback</h1>
<p>If you have any questions or feedback, please feel free to contact my via <a href="https://twitter.com/lailo-ch">Twitter</a> of directly add an issue or create a PR on <a href="https://github.com/lailo/lailo.ch">GitHub</a>.</p>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">this-blog-is-open-source</guid>
            <category><![CDATA[open-source]]></category>
            <category><![CDATA[web]]></category>
            <category><![CDATA[react]]></category>
            <category><![CDATA[nextjs]]></category>
            <category><![CDATA[tailwindcss]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Sun, 29 Mar 2020 19:14:12 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[500 Error]]></title>
            <description><![CDATA[<p><small>Co-Written by <a href="https://susana.dev">Susana Garcia</a></small></p>
<p>We built <a href="https://www.500error.co">500error.co</a> because we had to solve one of our problems. The idea was first pitched on <a href="https://www.pitchcard.io">Pitchcard.io</a> and got a lot of traction. So we decided to built it, and we did it in less than two weeks.</p>
<h1 id="how-it-started">How It Started</h1>
<p>We (<a href="https://susana.dev">Susana Garcia</a> and I) like to build things. We don’t like to talk about how cool it would be to do this and that — we just do it. The outcome is that we have a lot of projects simultaneously.</p>
<p>As we all know, servers can crash and “oooh boy they do”. And you know what, they crash at the worst time. They crash while your release and you lose important leads. Or they crash while you sleep and we really like to sleep 💤. We decided to fix this problem.</p>
<h1 id="developing-in-bratislava">Developing in Bratislava</h1>
<p>We’re digital nomads and we moved to a new city every other month, but that’s another story. For this month, we’re in Bratislava.</p>
<p>We used our very first day in Bratislava to collect all feedback from Pitchcard.io, friends and other developers. We picked the most important features for a MVP.</p>
<p>We used the second day to choose the right tools to built this, and ended up using NodeJS with Express for the backend and React for the front end, as we had already positive experiences with these tools building <a href="https://www.pitchcard.io">Pitchcard.io</a>.</p>
<p>From day three up to day seven, we built the MVP and send some invite emails to the investors of <a href="https://www.pitchcard.io">Pitchcard.io</a>. They liked the simplicity and gave us really good feedback, what we could improve and what they were missing.</p>
<p>We used the second week to improve the UI for mobile, tablet and desktop. We also added a simple subscription with <a href="https://medium.com/u/3ecae35d6d66">Stripe</a> (we really like Stripe). And we added better documentation of how to integrate it into Heroku, GitHub Pages and more.</p>
<h1 id="customize-your-page">Customize Your Page</h1>
<p>Our beta users like the way they could customize their error pages. They like it because it’s simple and funny. Here is what some things you can customize:</p>
<ul>
<li>Add your own brand color</li>
<li>Choose one of the funny GIFs or just add your own Logo</li>
<li>Define your title and description so it sounds like you</li>
</ul>
<h1 id="the-result">The Result</h1>
<p>We’re happy that our beta users liked the first version and we’re proud of what we could built in less than two weeks.</p>
<p>Now we can sleep at night without worrying about a crash on all these projects. If a server crash happens, we can fix it the day after and notify the new subscribed users. It’s simple as that.</p>
<p>Do you want to be able to sleep at night without worrying about your server? <a href="https://www.500error.co">Visit <strong>500error.co</strong></a>, create your own error page, integrate it into your existing projects and have one less thing to worry about.</p>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">500-error</guid>
            <category><![CDATA[error]]></category>
            <category><![CDATA[server]]></category>
            <category><![CDATA[web]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Sun, 18 Dec 2016 20:47:11 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[List of Ideas and Unfinished Projects]]></title>
            <description><![CDATA[<p><small>Co-Written by <a href="https://susana.dev">Susana Garcia</a></small></p>
<p>This is a story of my huge list of ideas and a folder full of unfinished projects. I fought it with <a href="https://www.pitchcard.io"><strong>Pitchcard.io</strong></a><strong>.</strong></p>
<h1 id="list-of-ideas">List of Ideas</h1>
<p>Like most people with the need to build things, I also had a huge list of ideas. This list kept growing and growing. I was adding more than I actually removed or built.</p>
<p>The problem was, that I though I shouldn’t talk to anyone about my idea. With that mindset, the only way to get feedback, was actually to built it. So I spent weeks to build some of these ideas just to figure out later that they sucked. After some failed projects, I knew, I had to change the way I was starting projects.</p>
<blockquote>
<p>The best feedback is brutal honesty.</p>
</blockquote>
<p>I started to talk to friends about my ideas. Very soon I figured out, that it isn’t good either. The problem of this way to get feedback of your idea is, that friends/family try to be nice. That’s exactly what you don’t want as feedback for your idea. You want honest feedback.</p>
<h1 id="unfinished-projects">Unfinished Projects</h1>
<p>With the feedback of my friends and some google search sessions, I could priorities my ideas. So the next step was to actually built them.</p>
<p>As I’m a developer, I could start coding right away. After some long night and countless bugs, I actually had 90% of the idea done but It was not ready yet. I didn’t had the skills of a Designer, Social Media Expert and others. Very soon I lost my interest in that project and started another one where I could actually use my own skills.</p>
<blockquote>
<p>Projects folder: A graveyard of good ideas.</p>
</blockquote>
<p>This was a huge mistake, as I ended up having a folder with a lot not yet released projects. I spent so much time doing what I was good in, but it was not enough to release. <br>I didn’t had the required skills and got tired of the projects very quick. I felt I was stuck in something and didn’t have progress. That’s why my project folder became the graveyard of my ideas.</p>
<blockquote>
<p>Nobody will steal your Idea.</p>
</blockquote>
<p>After countless hours of work and not released projects, I had to learn that feedback at the very beginning of an idea, is the most important thing. I had to learn it the hard way, that nobody will steal my idea.</p>
<p>There are a lot of articles on medium about why nobody is going to steal your idea. My favorite is <a href="https://medium.com/@leegordon/nobody-will-steal-your-shitty-advertising-idea-fd6c79860ffb">Nobody will steal your shitty advertising idea</a> written by <a href="https://medium.com/u/e7353574c06e">Lee Gordon</a>.</p>
<h1 id="the-one-project">The One Project</h1>
<p>I wanted to be quick on evaluating my ideas. I did some research but couldn’t find any good solution. That’s why we (<a href="https://susana.dev">Susana</a> and I) decided to do one more project (I know, again another project) to make this flow very easy and quick.</p>
<p>The result is <a href="https://www.pitchcard.io"><strong>Pitchcard.io</strong></a><strong>.</strong> A platform to pitch and explore ideas. A platform to get quick and honest feedback. A platform to find collaborators and join a team with amazing skills.</p>
<h1 id="an-idea">An Idea</h1>
<p>People with amazing ideas can pitch to a variety of people (developer, designer, …) and can get honest feedback. You have just 200 chars for your description.</p>
<h1 id="skills-and-expertise">Skills and Expertise</h1>
<p>People with amazing skills can explore new ideas daily and give feedback. If they really like an idea, they can offer help to actually built it. You don’t have to built a “todo list” anymore to just try out new technologies. Built something useful.</p>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">list-of-ideas-and-unfinished-projects</guid>
            <category><![CDATA[pitch]]></category>
            <category><![CDATA[idea]]></category>
            <category><![CDATA[projects]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Sun, 17 Jul 2016 09:14:05 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[Pitchcard]]></title>
            <description><![CDATA[<p><small>Co-Written by <a href="https://susana.dev">Susana Garcia</a></small></p>
<p>Since the iPhone released and the following AppStore boom, a lot of people around us began to have amazing ideas: “Hey, I have a really cool idea for a new app!”. Every single one of them thought, they had the next billion dollar idea.</p>
<h1 id="get-to-the-point">Get to the Point</h1>
<p>They usually tried to explain it in a very complex way or sent us very long emails. As we both don’t like emails, long emails even less, we told most people to get to the point.</p>
<p>We believe that every good idea needs to be pitched in <em>2–3 sentences.</em> And this is only possible if you exactly know what the goal of your idea is.</p>
<h1 id="share-your-idea">Share Your Idea</h1>
<p>There are another few things that some people don’t know about good ideas.</p>
<p>Some people don’t talk much about their idea to protect it. They are afraid of someone stealing it. Fact is, <strong>the more you share your idea, the better it gets.</strong> Each time you explain your idea to people, they’ll ask you questions. First you won’t have an answer but it will force you to rethink your idea.</p>
<p>Another important thing is, what for you might be a pretty good idea, others wouldn’t even use it. And <em>what’s the point of creating something no one will ever use?</em> Evaluate your idea first, then decide to build it or to move on.</p>
<h1 id="quick-feedback">Quick Feedback</h1>
<p>That’s why we’ve built <a href="https://www.pitchcard.io/">Pitchcard.io</a> to get quick feedback. We’ve picked this name because of the elevator pitch.</p>
<blockquote>
<p>“[..] the idea that it should be possible to deliver the summary in the time span of an elevator ride, or approximately thirty seconds [..]”</p>
</blockquote>
<h2 id="how-it-works">How it works</h2>
<ol>
<li>Visit <a href="https://www.pitchcard.io/">www.pitchcard.io</a></li>
<li>Create your <em>Pitchcard</em></li>
<li>Share it</li>
</ol>
<p>We know that ideas can pop up anytime and anywhere (having lunch, doing sport or meeting up with friends). That’s why we made it very easy to create a <em>Pitchcard.</em></p>
<p>You can share your <em>Pitchcard</em> with close friends via WhatsApp and email, or with everyone via Facebook, Twitter or others.</p>
<p>Another important point of <em>Pitchcard</em> is, that we consequently set a <strong>200 chars limit on the description</strong> of the idea<strong>.</strong> As we already mentioned before, we want that people get to the point.</p>
<p>We hope you like our product and wish you good luck with your next billion dollar idea. 😜</p>
]]></description>
            <link>https://www.lailo.ch[object Object]</link>
            <guid isPermaLink="false">pitchcard</guid>
            <category><![CDATA[pitch]]></category>
            <category><![CDATA[idea]]></category>
            <category><![CDATA[web]]></category>
            <dc:creator><![CDATA[en]]></dc:creator>
            <pubDate>Sun, 08 May 2016 07:07:37 GMT</pubDate>
        </item>
    </channel>
</rss>