Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.53 KB

File metadata and controls

55 lines (42 loc) · 1.53 KB
layout page

Project Ideas

Ideas for web applications, disconnected from any goal in particular.

Adapt for your needs. For example, you could just build a web API for many of these if you don't want to focus on the UI.

{% assign sorted_ideas = site.data.ideas | sort:'name' %} {% assign low_complexity = sorted_ideas | where:'complexity','low' %} {% assign medium_complexity = sorted_ideas | where:'complexity','medium' %} {% assign high_complexity = sorted_ideas | where:'complexity','high' %}

Low Complexity

{% for idea in low_complexity %} {% if idea.source %}

  • {{ idea.name }} (source) {% else %}
  • {{ idea.name }} {% endif %} {% endfor %}

Medium Complexity

{% for idea in medium_complexity %} {% if idea.source %}

  • {{ idea.name }} (source) {% else %}
  • {{ idea.name }} {% endif %} {% endfor %}

High Complexity

{% for idea in high_complexity %} {% if idea.source %}

  • {{ idea.name }} (source) {% else %}
  • {{ idea.name }} {% endif %} {% endfor %}

Other Sources

More places to find good project ideas.