- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Fullscreen Image Viewer</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| } |
| // CODIGO PARA EL CONTADOR DE MIERDA | |
| var n = 0; | |
| var caja_de_texto = document.getElementById("number"); | |
| var today = new Date(); | |
| var today_abs = new Date(); | |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
Index:
| sysctl -w fs.file-max=12000500 | |
| sysctl -w fs.nr_open=20000500 | |
| ulimit -n 20000000 | |
| sysctl -w net.ipv4.tcp_mem='10000000 10000000 10000000' | |
| sysctl -w net.ipv4.tcp_rmem='1024 4096 16384' | |
| sysctl -w net.ipv4.tcp_wmem='1024 4096 16384' | |
| sysctl -w net.core.rmem_max=16384 | |
| sysctl -w net.core.wmem_max=16384 | |
| wget http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb | |
| sudo dpkg -i erlang-solutions_1.0_all.deb |
| ### DML ### | |
| # Keyspace Name | |
| keyspace: stresscql | |
| # The CQL for creating a keyspace (optional if it already exists) | |
| keyspace_definition: | | |
| CREATE KEYSPACE stresscql WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1}; | |
| # Table name |
| require "formula" | |
| class Vim < Formula | |
| homepage "http://www.vim.org/" | |
| url 'https://vim.googlecode.com/hg/', :revision => 'cd5eff09c1ae' | |
| version '7.4.622' | |
| # We only have special support for finding depends_on :python, but not yet for | |
| # :ruby, :perl etc., so we use the standard environment that leaves the | |
| # PATH as the user has set it right now. |
| " Port of my favorite theme Made of Code by Mark Dodwell | |
| " For Textmate Theme visit - http://madeofcode.com/posts/29-photo-my-new-textmate-theme-8220-made-of-code-8221-mdash-download-9-feb-2010-update-t | |
| " Vim color file | |
| set background=dark | |
| highlight clear | |
| if exists("syntax_on") | |
| syntax reset |