- [✓]https://picnicss.com/: more complete, it seems the most simple
- https://purecss.io/: It is lightweight(4 kb) and covers a number of common ui components.
- http://basscss.com/
- http://basegui.de/ : is great because it is robust and customizable with a very small filesize.
- [✓]http://bulma.io/: very easy, but very minimal
- [✓]https://milligram.github.io/: more complete
- [✓]http://getskeleton.com/
- [✓]https://semantic-ui.com/](https://semantic-ui.com/): Example: http://semantic-org.github.io/example-github/
{ | |
"sudo": "required", | |
"dist": "trusty", | |
"language": "python", | |
"python": "2.7", | |
"env": "ANSIBLE_VERSION=latest", | |
"before_install": [ | |
"sudo apt-get update -qq" | |
], | |
"install": [ |
--- | |
sudo: required | |
dist: trusty | |
language: python | |
python: "2.7" | |
# Doc: https://docs.travis-ci.com/user/customizing-the-build#Build-Matrix | |
env: | |
- ANSIBLE_VERSION=latest |
## credit: http://fabian-affolter.ch/blog/the-lineinfile-module-of-ansible/ | |
--- | |
- hosts: alpine_install | |
user: root | |
tasks: | |
# - name: create a complete empty file | |
# command: /usr/bin/touch /test/test.conf | |
- name: create a new file with lineinfile |
Job search sites
-
Stack Overflow - http://stackoverflow.com/jobs
-
Angel List - https://angel.co/jobs
-
Linked In - https://www.linkedin.com/jobs/
-
Hasjob - https://hasjob.co/
-
Github Jobs - https://jobs.github.com/
-
Hacker News Who is Hiring - http://hnhiring.me/
-
Hacker Earth - https://www.hackerearth.com/jobs/hiring/
Bigdata is like combination of bunch of subjects. Mainly require programming, analysis, nlp, MLP, mathematics. | |
To see links, Go : http://www.quora.com/What-are-some-good-sources-to-learn-big-data | |
Here are bunch of courses I came accross: | |
Introduction to CS Course | |
Notes: Introduction to Computer Science Course that provides instructions on coding. | |
Online Resources: | |
Udacity - intro to CS course, | |
Coursera - Computer Science 101 |
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
I've been using a lot of Ansible lately and while almost everything has been great, finding a clean way to implement ansible-vault wasn't immediately apparent.
What I decided on was the following: put your secret information into a vars
file, reference that vars
file from your task
, and encrypt the whole vars
file using ansible-vault encrypt
.
Let's use an example: You're writing an Ansible role and want to encrypt the spoiler for the movie Aliens.
Note: I'm currently taking a break from this course to focus on my studies so I can finally graduate