Merge master

This commit is contained in:
Kevin
2019-06-20 01:12:30 +02:00
5 changed files with 559 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: feature
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

View File

@@ -0,0 +1,17 @@
---
name: Resource request
about: Suggest a new resource
title: ''
labels: new resource
assignees: lostdesign
---
**Name**
webgems.io
**Description**
1-2 sentenses
**URL**
https://example.com

View File

@@ -22,20 +22,20 @@ export default {
<style lang="scss" scoped>
.sidebar {
display:grid;
display: grid;
grid-template-columns: 1fr;
font-size: 14px;
a {
padding: .5rem 1rem .5rem 1rem;
padding: 0.5rem 1rem 0.5rem 1rem;
font-weight: 600;
}
}
@media (max-width: 400px) {
.sidebar {
display:grid;
grid-template-columns: repeat(auto-fit, minmax(6rem,1fr));
display: grid;
grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
}
}
</style>

163
pages/utility/index.vue Normal file
View File

@@ -0,0 +1,163 @@
<template lang="pug">
div
h1 Tools
.cards
template(v-for='resource in resources')
Card(:title='resource.title' :desc='resource.desc' :url='resource.url')
</template>
<script>
import Card from '../../components/Card'
export default {
data() {
return {
resources: [
{
title: 'JSON Generator',
desc: 'Random JSON generator for your project - because debugging without data, does not make sense!',
url: 'https://www.json-generator.com'
},
{
title: 'Matomo',
desc: 'A free open source web analytics tool which can be compared to GA but actually gives a shit about privacy.',
url: 'https://matomo.org/'
},
{
title: 'Fathom',
desc: 'Fathom Analytics provides simple, useful website stats without tracking or storing personal data of your users.',
url: 'https://usefathom.com'
},
{
title: '10 free tools',
desc: '10 free-but-professional tools for your dev projects',
url: 'https://dev.to/sauloco/10-free-but-professional-tools-for-your-dev-projects-2eeo'
},
{
title: 'headless cms',
desc: 'A List of Content Management Systems for JAMstack Sites',
url: 'https://headlesscms.org'
},
{
title: 'Git and Git flow cheatsheet',
desc: 'Git cheat sheet saves you from learning all the commands by heart.',
url: 'https://github.com/arslanbilal/git-cheat-sheet#readme'
},
{
title: 'StaticGen',
desc: 'A List of Static Site Generators for JAMstack Sites',
url: 'https://www.staticgen.com'
},
{
title: 'Snippet generator',
desc: 'Create your own snippets for VSCode, Sublime or Atom using this generator. No need to format the snippet yourself',
url: 'https://snippet-generator.app/'
},
{
title: 'gitignore.io',
desc: 'Create usefull .gitignore files for your projects.',
url: 'https://www.gitignore.io'
},
{
title: 'Github',
desc: 'GitHub is a development platform inspired by the way you work. From open source to business, you can host and review code, manage projects, and build software alongside 36 million developers.',
url: 'https://github.com'
},
{
title: 'NASA APIs',
desc: 'Welcome to the NASA API portal. The objective of this site is to make NASA data, including imagery, eminently accessible to application developers. The api.nasa.gov catalog is growing.',
url: 'https://api.nasa.gov'
},
{
title: 'PokéAPI',
desc: 'The RESTful Pokémon API',
url: 'https://pokeapi.co'
},
{
title: 'Reddit API .json',
desc: 'Take a any subreddit you like and append ".json" to consume it as an API (https://reddit.com/r/cats.json).',
url: 'https://www.reddit.com/.json'
},
{
title: 'quicktype',
desc: 'Generate types and serializers from JSON.',
url: 'https://quicktype.io'
},
{
title: 'NGINXconfig.io',
desc: 'Quickly generate a NGINX config for your server.',
url: 'https://nginxconfig.io/'
},
{
title: 'Online tools',
desc: 'Decode, encode and hash any string quickly.',
url: 'https://emn178.github.io/online-tools'
},
{
title: 'Favicon generator. For real.',
desc: 'A favicon generator for all browsers and platforms.',
url: 'https://realfavicongenerator.net'
},
{
title: 'JSFiddle',
desc: 'JSFiddle is for: Demos for docs, Bug reporting (test-case) for Github Issues, Live code collaboration, Code snippets hosting for free!',
url: 'https://jsfiddle.net'
},
{
title: 'CodePen',
desc: 'CodePen is an online community for testing and showcasing user-created HTML, CSS and JavaScript code snippets.',
url: 'https://codepen.io/'
},
{
title: 'Gifless',
desc: 'Create emoji and text gifs in seconds',
url: 'https://www.gifless.com/'
},
{
title: 'Learn Git',
desc: 'Become a git guru - a tutorial series by Atlassian.',
url: 'https://www.atlassian.com/git/tutorials'
},
{
title: 'Git form the inside out',
desc: 'This essay explains how Git works. It assumes you understand Git well enough to use it to version control your projects.',
url: 'https://codewords.recurse.com/issues/two/git-from-the-inside-out'
},
{
title: 'List of Public APIs',
desc: 'A collective list of free APIs for use in software and web development.',
url: 'https://github.com/public-apis/public-apis'
},
{
title: 'Carbon',
desc: 'Create and share beautiful images of your source code.',
url: 'https://carbon.now.sh'
},
{
title: 'Mailnator',
desc: 'The Mailinator Email System puts millions of inboxes right at your fingertips. It is an amazing Email Workflow Testing tool for your Software or Service.',
url: 'https://www.mailinator.com/'
},
{
title: 'Ngrok',
desc: 'Secure introspectable tunnels to localhost.',
url: 'https://ngrok.com/'
},
{
title: 'Let\'s Encrypt',
desc: 'Let\'s Encrypt is a free, automated, and open certificate authority brought to you by the non-profit Internet Security Research Group (ISRG).',
url: 'https://letsencrypt.org/'
},
]
}
},
components: {
Card
}
}
</script>
<style lang="scss" scoped>
</style>

View File

@@ -18,6 +18,11 @@
"desc": "Hangout and learn with new and experienced developers in this Discord community. All ages and experience levels welcome!",
"url": "https://discord.gg/developers"
},
{
"title": "Glitch",
"desc": "Glitch is the friendly community where everyone can discover and create the best stuff on the web.",
"url": "https://glitch.com/"
},
{
"title": "WebGL and Threejs",
"desc": "desc",
@@ -57,6 +62,11 @@
"title": "/r/css",
"desc": "For discussing Cascading Style Sheets, design principles, and technological innovations related to web development.",
"url": "https://reddit.com/r/css"
},
{
"title": "MedellinJS",
"desc": "We are a passionate community whose goal is to strengthen and articulate the technological ecosystem of the city of Medellín, Colombia.",
"url": "https://medellinjs.org/"
}
]
},
@@ -79,6 +89,11 @@
"desc": "A game to learn Flexbox",
"url": "https://flexboxfroggy.com"
},
{
"title": "Flexbox Zombies",
"desc": "A course to learn Flexbox",
"url": "https://mastery.games/p/flexbox-zombies"
},
{
"title": "CSS Gridgarden",
"desc": "A game to learn Grid",
@@ -111,7 +126,7 @@
},
{
"title": "Learn CSS layout",
"desc": "This site teaches the CSS fundamentals that are used in any website\"s layout (Unfortunately nothing abour display:grid yet).",
"desc": "This site teaches the CSS fundamentals that are used in any website's layout (Unfortunately nothing abour display:grid yet).",
"url": "http://learnlayout.com"
},
{
@@ -270,6 +285,11 @@
"title": "UI Gradients",
"desc": "Beautiful colour gradients for design and code.",
"url": "https://uigradients.com/#NoontoDusk"
},
{
"title": "evernote.design",
"desc": "Basically webgems but just for design.",
"url": "https://evernote.design"
}
]
},
@@ -337,7 +357,7 @@
{
"title": "MDN web docs",
"desc": "Tutorials, references, tools and resources.",
"url": "https://developer.mozilla.org/en-US/docs/Web"
"url": "https://developer.mozilla.org/docs/Web"
},
{
"title": "Rico's cheatsheets",
@@ -388,7 +408,7 @@
{
"title": "HTML ELEMENTS",
"desc": "All the HTML elemens you can use. There is more than just a div :)",
"url": "https://developer.mozilla.org/de/docs/Web/HTML/Element"
"url": "https://developer.mozilla.org/docs/Web/HTML/Element"
},
{
"title": "The web accessibility basics",
@@ -554,6 +574,308 @@
}
]
},
{
"title": "Python",
"slug": "/python",
"resources": [
{
"title": "Python 3.7.3 documentation",
"desc": "Documentation for all releaases of Python.",
"url": "https://docs.python.org/3/"
},
{
"title": "The Hitchhikers Guide to Python!",
"desc": "This is a living, breathing guide. This handcrafted guide exists to provide both novice and expert Python developers a best practice handbook to the installation, configuration, and usage of Python on a daily basis.",
"url": "https://docs.python-guide.org/"
},
{
"title": "Kaggle - Python",
"desc": "Learn the most important language for Data Science",
"url": "https://www.kaggle.com/learn/python"
},
{
"title": "Anaconda",
"desc": "The World's Most Popular Python/R Data Science Platform",
"url": "https://www.anaconda.com/distribution/"
},
{
"title": "Real Python Tutorials",
"desc": "At Real Python you can learn all things Python from the ground up. Everything from the absolute basics of Python, to web development and web scraping, to data visualization, and beyond.",
"url": "https://realpython.com/"
},
{
"title": "Geeks for geeks - Python",
"desc": "Short, clearly written posts with colorful code examples.",
"url": "https://www.geeksforgeeks.org/python-programming-language/"
},
{
"title": "Pluralsight - Python",
"desc": "Test your skills and watch a few video courses.",
"url": "https://app.pluralsight.com/paths/skills/Python"
},
{
"title": "Pypi",
"desc": "Find, install and publish Python packages with the Python Package Index",
"url": "https://pypi.org/"
},
{
"title": "Learn Python in y minutes",
"desc": "A mad dash through everything!",
"url": "https://learnxinyminutes.com/docs/python/"
},
{
"title": "Boost.Python",
"desc": "A C++ library which enables seamless interoperability between C++ and the Python programming language.",
"url": "https://www.boost.org/doc/libs/1_70_0/libs/python/doc/html/index.html"
},
{
"title": "MongoDB Python Drivers",
"desc": "The database for modern applications",
"url": "https://docs.mongodb.com/ecosystem/drivers/python/"
},
{
"title": "A Byte of Python",
"desc": "If you like real books ... A complete set of documentation that closely resembles the typesetting of a real book.",
"url": "https://python.swaroopch.com/"
},
{
"title": "Requests: HTTP for Humans™",
"desc": "Requests is the only Non-GMO HTTP library for Python, safe for human consumption.",
"url": "https://2.python-requests.org/en/master/"
},
{
"title": "TensorFlow",
"desc": "The core open source library to help you develop and train ML models. TensorFlow is an end-to-end open source platform for machine learning.",
"url": "https://www.tensorflow.org/"
},
{
"title": "Think Python",
"desc": "Think Python is an introduction to Python programming for beginners. The free O'Reilly book.",
"url": "https://greenteapress.com/wp/think-python/"
},
{
"title": "No Starch Press - Automate the Boring Stuff with Python",
"desc": "The best part of programming is the triumph of seeing the machine do something useful. Automate the Boring Stuff with Python frames all of programming as these small triumphs; it makes the boring fun.",
"url": "https://nostarch.com/automatestuff"
},
{
"title": "Python built-ins worth learning",
"desc": "A great list that breaks up topics into 'learn now' and 'wait til later' type categories. By Trey Hunner",
"url": "https://treyhunner.com/2019/05/python-builtins-worth-learning/"
},
{
"title": "Qt for Python",
"desc": "Create User Interfaces with Qt for Python",
"url": "https://www.qt.io/qt-for-python"
},
{
"title": "Python fun facts.",
"desc": "Python fun facts from JetBrains, maker of the IDE PyCharm",
"url": "https://www.jetbrains.com/lp/devecosystem-2019/python/"
},
{
"title": "MicroPython",
"desc": "Using python with microcontrollers.",
"url": "https://micropython.org/"
},
{
"title": "Programiz",
"desc": "Learn Python Programming",
"url": "https://www.programiz.com/python-programming"
},
{
"title": "Medium - Python",
"desc": "Tools to run Python on Android",
"url": "https://towardsdatascience.com/tools-to-run-python-on-android-9060663972b4"
},
{
"title": "QPython",
"desc": "QPython is a script engine which runs Python programs on android devices. It also can help developers develop android applications.",
"url": "https://www.qpython.com/"
},
{
"title": "Medium - Python on Netflix",
"desc": "We wanted to share a sampling of how Python is used at Netflix. ",
"url": "https://medium.com/netflix-techblog/python-at-netflix-bba45dae649e"
},
{
"title": "Python Data Science Handbook",
"desc": "This is a book about doing data science with Python, which immediately begs the question: what is data science? The free O'Reilly book.",
"url": "https://jakevdp.github.io/PythonDataScienceHandbook/"
},
{
"title": "Data Analysis in Python",
"desc": "This site is designed to offer an introduction to Python specifically tailored for social scientists and people doing applied data analysis.",
"url": "http://www.data-analysis-in-python.org/"
},
{
"title": "Microsoft - Python",
"desc": "11 Data Science Skills. 1.5 Million Jobs.",
"url": "https://academy.microsoft.com/en-us/professional-program/tracks/data-science/"
},
{
"title": "Towards Data Science - Machine Learning",
"desc": "An “Equation-to-Code” Machine Learning Project Walk-Through in Python",
"url": "https://towardsdatascience.com/an-equation-to-code-machine-learning-project-walk-through-in-python-part-1-linear-separable-fd0e19ed2d7"
},
{
"title": "Big Data Made Simple",
"desc": "Step by step approach to perform data analysis using Python.",
"url": "https://bigdata-madesimple.com/step-by-step-approach-to-perform-data-analysis-using-python/"
},
{
"title": "Medium - Python vs R",
"desc": "Python vs. RChoosing the Best Programming Language for Data Science",
"url": "https://towardsdatascience.com/python-vs-r-choosing-the-best-programming-languages-for-data-science-b1327f01f6bf"
},
{
"title": "Python Data Analysis Library",
"desc": "Pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language.",
"url": "https://pandas.pydata.org/"
},
{
"title": "SciPy",
"desc": "SciPy (pronounced “Sigh Pie”) is a Python-based ecosystem of open-source software for mathematics, science, and engineering.",
"url": "https://www.scipy.org/"
},
{
"title": "NumPy",
"desc": "NumPy is the fundamental package for scientific computing with Python.",
"url": "http://www.numpy.org/"
},
{
"title": "Statsmodels",
"desc": "Statsmodels is a Python module that provides classes and functions for the estimation of many different statistical models, as well as for conducting statistical tests, and statistical data exploration. ",
"url": "http://www.statsmodels.org/stable/index.html"
},
{
"title": "scikit-learn",
"desc": "Machine Learning in Python",
"url": "https://scikit-learn.org/stable/"
},
{
"title": "Jupyter",
"desc": "The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text.",
"url": "https://jupyter.org/"
},
{
"title": "Matplotlib",
"desc": "Matplotlib is a Python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms.",
"url": "https://matplotlib.org/"
},
{
"title": "NumFOCUS",
"desc": "From Netflix to NASA, researchers use NumFOCUS sponsored projects to solve the most challenging problems. Explore our open source tools by language, features, or industry.",
"url": "https://numfocus.org/sponsored-projects"
},
{
"title": "Python Pandemonium",
"desc": "A place to read and write about all things Python.",
"url": "https://medium.com/python-pandemonium/tagged/data-science"
},
{
"title": "Pandas for People In A Hurry",
"desc": "Pandas is the most popular Python library for data manipulation and data analysis. It is a must know for all data scientists!",
"url": "https://towardsdatascience.com/pandas-for-people-in-a-hurry-59d966630ae0"
},
{
"title": "PySpark",
"desc": "Python Programming Guide for the API",
"url": "https://spark.apache.org/docs/0.9.1/python-programming-guide.html"
},
{
"title": "Towards Data Science",
"desc": "Sharing concepts, ideas, and codes. IMO the best Data Science Blog.",
"url": "https://towardsdatascience.com/"
},
{
"title": "HDF5®",
"desc": "High-performance data management and storage suite",
"url": "https://www.hdfgroup.org/solutions/hdf5/"
},
{
"title": "Theano",
"desc": "Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently.",
"url": "http://deeplearning.net/software/theano/"
},
{
"title": "Becoming Human - Languages",
"desc": "Top Programming Languages a Data Scientist Must Master.",
"url": "https://becominghuman.ai/top-programming-languages-a-data-scientist-must-master-in-2019-7101a8bc8e16"
},
{
"title": "SQLAlchemy",
"desc": "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.",
"url": "https://www.sqlalchemy.org/"
}
]
},
{
"title": "Ruby",
"slug": "/ruby",
"resources": [
{
"title": "AppSignal Blog",
"desc": "Product updates and things we've learned while building AppSignal.",
"url": "https://blog.appsignal.com/"
},
{
"title": "Drifting Ruby",
"desc": "Product updates and things we've learned while building AppSignal.",
"url": "https://www.driftingruby.com/"
},
{
"title": "GoRails Blog",
"desc": "Learn about Ruby on Rails. The GoRails blog covers topics across all aspects of Ruby on Rails development.",
"url": "https://gorails.com/blog/"
},
{
"title": "Reinteractive Articles",
"desc": "Our expert team of designers and developers love what they do and enjoy sharing their knowledge with the world.",
"url": "https://reinteractive.com/blog/"
},
{
"title": "RailsCasts",
"desc": "Short Ruby on Rails screencasts containing tips, tricks and tutorials. Great for both novice and experienced web developers.",
"url": "http://railscasts.com/"
},
{
"title": "Railsware Blog",
"desc": "on product management, engineering, design, culture and many more...",
"url": "https://railsware.com/blog/"
},
{
"title": "RubyFlow",
"desc": "Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!",
"url": "http://www.rubyflow.com/"
},
{
"title": "Ruby Inside",
"desc": "The biggest Ruby and Rails blog since 2006 - tutorials, news, and lots more.",
"url": "http://www.rubyinside.com/"
},
{
"title": "Ruby Rogues Episodes",
"desc": "A podcast by panel about Ruby and related technologies.",
"url": "https://devchat.tv/ruby-rogues/"
},
{
"title": "Thoughtbot Weekly Iteration",
"desc": "The Weekly Iteration is our video series where we explore new frameworks and languages, dig in to advanced coding patterns, and share the techniques we use on projects to build robust and maintainable applications. We're currently on a break from recording new episodes, but be sure to check out the many videos we've released previously.",
"url": "https://thoughtbot.com/upcase/the-weekly-iteration/"
},
{
"title": "Thoughtbot Web Articles",
"desc": "Written by thoughtbot, experienced designers and developers who turn your idea into the right product.",
"url": "https://thoughtbot.com/blog/web/"
},
{
"title": "Ruby Weekly",
"desc": "A free, onceweekly e-mail round-up of Ruby news and articles.",
"url": "https://rubyweekly.com/"
}
]
},
{
"title": "Server",
"slug": "/server",
@@ -568,6 +890,21 @@
"desc": "Free static hosting by Github.",
"url": "https://pages.github.com"
},
{
"title": "Heroku",
"desc": "Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud.",
"url": "https://www.heroku.com/"
},
{
"title": "Ploi",
"desc": "Stop the Hassle. Start deploi'ing. Use Ploi.io for easy site deployments. We take all the difficult work out of your hands, so you can focus on doing what you love: developing your application.",
"url": "https://ploi.io"
},
{
"title": "Now",
"desc": "Global Serverless Deployments. Now makes serverless application deployment easy. Don't spend time configuring the cloud. Just push your code.",
"url": "https://zeit.co/now"
},
{
"title": "Namecheap",
"desc": "Domains for your projects",
@@ -703,6 +1040,21 @@
"title": "Carbon",
"desc": "Create and share beautiful images of your source code.",
"url": "https://carbon.now.sh"
},
{
"title": "Mailnator",
"desc": "The Mailinator Email System puts millions of inboxes right at your fingertips. It is an amazing Email Workflow Testing tool for your Software or Service.",
"url": "https://www.mailinator.com/"
},
{
"title": "Ngrok",
"desc": "Secure introspectable tunnels to localhost.",
"url": "https://ngrok.com/"
},
{
"title": "Let's Encrypt",
"desc": "Let's Encrypt is a free, automated, and open certificate authority brought to you by the non-profit Internet Security Research Group (ISRG).",
"url": "https://letsencrypt.org/"
}
]
}