https://pluralsight.com (pago) acho que é o melhor de todos e vale a pena (eu arrumei o meu emprego atual aprendendo angular no pluralsight)
# uninstall postgresql if necessary | |
$ sudo pacman -R postgresql postgresql-libs | |
# remove postgres files | |
$ sudo rm -rfv /var/lib/postgres | |
# proceed with the installation | |
$ sudo pacman -S postgresql postgresql-libs | |
# setup password for postgres | |
$ sudo passwd postgres |
Disclaimer: Please follow this guide being aware of the fact that I'm not an expert regarding the things outlined below, however I made my best attempt. A few people in IRC confirmed it worked for them and the results looked acceptable.
Attention: After following all the steps run gdk-pixbuf-query-loaders --update-cache
as root, this prevents various gdk-related bugs that have been reported in the last few hours. Symptoms are varied, and for Cinnamon the DE fails to start entirely while for XFCE the icon theme seemingly can't be changed anymore etc.
Check the gist's comments for any further tips and instructions, especially if you are running into problems!
Results after following the guide as of 11.01.2017 13:08:
https://github.com/googlei18n/noto-emoji/issues/36#issuecomment-343655365 | |
[ugjka@archee ~]$ cat /etc/fonts/conf.d/50-noto-color-emoji.conf | |
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="scan"> | |
<test name="family"> |
There are tons of resources on the internet, but I think these are the most relevant (free) ones.
This is a good video that will give you a high level perspective of what is web development and what you can do: https://youtu.be/gVXcqO9A1vo
This is an article talking about the same thing but with a different perspective: https://hackernoon.com/the-2019-web-developer-roadmap-ab89ac3c380e
This is a really good youtube channel for web development https://www.youtube.com/learncodeacademy/
(defun factorial (n) | |
(if (= n 0) 1 | |
(* n (factorial (- n 1))))) |
(print "Hello world") |
(in-package :com.gigamonkeys.simple-db) | |
(defvar *db* nil) | |
(defun make-cd (title artist rating ripped) | |
(list :title title :artist artist :rating rating :ripped ripped)) | |
(defun add-record (cd) (push cd *db*)) | |
(defun dump-db () |