Skip to content

Instantly share code, notes, and snippets.

Install Google Fonts

Download desired fonts

https://fonts.google.com/?selection.family=Open+Sans

Install Google Fonts on Ubuntu

cd /usr/share/fonts
sudo mkdir googlefonts
cd googlefonts
sudo unzip -d . ~/Downloads/Open_Sans.zip

@abu-abbas
abu-abbas / jsonToFormdata.js
Last active January 20, 2020 02:30
Object to FormData converter for javascript
/**
* Object to FormData converter
*/
let objectToFormData = (obj, form, namespace) => {
let fd = form || new FormData()
for (let property in obj) {
if (!obj.hasOwnProperty(property)) {
continue
}
@abu-abbas
abu-abbas / fontawesome.json
Created October 12, 2019 17:51
Font Awesome Free in Json Format
[
{
"code": "faAddressBook",
"prefix": "far",
"name": "address-book",
"group": "regular"
},
{
"code": "faAddressCard",
"prefix": "far",