Skip to content

Instantly share code, notes, and snippets.

View jacob-san's full-sized avatar
🎯
Focusing

Jacob jacob-san

🎯
Focusing
View GitHub Profile

UI Components and Component Libraries for React

If you're developing an application based on React it can be helpful if you don't need to develop all the basic UI components yourself. Here you can find a list with various components, component libraries and complete design systems developed with and for React.

Component libraries and Design Systems

  • Office UI Fabric by Microsoft: The official front-end framework for Office and Office 365.
  • Atlas Kit: Atlassian's official UI library, built according to the Atlassian Design Guidelines (ADG)
  • Primer Components: React Components for GitHub Design System called "Primer"
  • PrimeReact: Official PrimeFaces components for React
@jacob-san
jacob-san / MySQL_macOS_Sierra.md
Created August 23, 2019 08:01 — forked from nrollr/MySQL_macOS_Sierra.md
Install MySQL on Sierra using Homebrew

Install MySQL on macOS Sierra

This procedure explains how to install MySQL using Homebrew on macOS Sierra 10.12

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Note: Homebrew will download and install Command Line Tools for Xcode 8.0 as part of the installation process.

Install MySQL

At this time of writing, Homebrew has MySQL version 5.7.15 as default formulae in its main repository :

@jacob-san
jacob-san / vscode-updater.sh
Created May 25, 2018 11:06 — forked from TheWebDevel/vscode-updater.sh
A shell script to update VS Code on Ubuntu
# Download the latest stable version of VS Code and store it in a temporary location
wget https://vscode-update.azurewebsites.net/latest/linux-deb-x64/stable -O /tmp/code_latest_amd64.deb
# Now, install the newly downloaded VS Code
sudo dpkg -i /tmp/code_latest_amd64.deb
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- google's material design colours from
http://www.google.com/design/spec/style/color.html#color-ui-color-palette -->
<!--reds-->
<color name="md_red_50">#FFEBEE</color>
<color name="md_red_100">#FFCDD2</color>
<color name="md_red_200">#EF9A9A</color>