Download
AWS Solutions Architect Password: gratismas.org
GraphQL pt-BR
Lynda Courses
Ultimate design patterns 1
Ultimate design patterns 2
http://www.allitebooks.com/beginning-solid-principles-and-design-patterns-for-asp-net-developers/
http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html
- awesome-math (A curated list of awesome mathematics resources)
- free-for-dev
- awesome-for-beginners (A list of awesome beginners-friendly projects.)
- awesome (😎 Awesome lists about all kinds of interesting topics)
- nodebestpractices (The Node.js best practices list)
- javascript-questions
- wtfjs (A list of funny and tricky JavaScript examples)
- awesome-selfhosted (List of Free Software network services and web applications which can be hosted locally)
- awesome-sysadmin (A curated list of amazingly awesome open sour
- Doesn’t know the difference between Array and LinkedList
- Able to explain and use Arrays, LinkedLists, Dictionaries etc in practical programming tasks
- Knows space and time tradeoffs of the basic data structures, Arrays vs LinkedLists, Able to explain how hashtables can be implemented and can handle collisions, Priority queues and ways to implement them etc.
- Knowledge of advanced data structures like B-trees, binomial and fibonacci heaps, AVL/Red Black trees, Splay Trees, Skip Lists, tries etc
- Unable to find the average of numbers in an array
i3wm makes it easy to assign applications to workspaces and save and restore layouts - which is e.g. useful for auto-starting always needed software.
To make these assignments, you need specific window properties so that you can tell i3 to assign [class="Your-app"] → 1
(in this example, Your-app
will be assigned to workspace 1).
In many cases this just works. However, there are also many popular programs that do not initially set the correct window class or other properties on startup, which can be frustrating. This cheat sheet aims to show the problems and possible resolutions (or worse: workarounds) for more or less problematic applications.
On Ubuntu 20.04, snap apps install here:
/var/lib/snapd/desktop/applications
To fix UI scaling, I just add the following flag to each of the .desktop
files for Electron apps in that folder
--force-device-scale-factor=1.2
If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
- We define variables with
let
andconst
statements. For the purposes of the React documentation, you can consider them equivalent tovar
. - We use the
class
keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value ofthis
in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
#!/usr/bin/env bash | |
# selectfile | |
# Use rofi to select file or folder until file is selected, then print it. | |
# Arguments | |
# $1=directory to start, defaults to "." (specified in variable default_dir) | |
# Source directory with systems folders. | |
default_dir="." |
Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.
I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.
If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.
Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.
#!/bin/bash | |
# CUSTOM {{{ | |
shopt -s nocasematch | |
# }}} | |
set -o noclobber -o noglob -o nounset -o pipefail | |
IFS=$'\n' | |
# If the option `use_preview_script` is set to `true`, |
prettier-eslint |
eslint-plugin-prettier |
eslint-config-prettier |
|
---|---|---|---|
What it is | A JavaScript module exporting a single function. | An ESLint plugin. | An ESLint configuration. |
What it does | Runs the code (string) through prettier then eslint --fix . The output is also a string. |
Plugins usually contain implementations for additional rules that ESLint will check for. This plugin uses Prettier under the hood and will raise ESLint errors when your code differs from Prettier's expected output. | This config turns off formatting-related rules that might conflict with Prettier, allowing you to use Prettier with other ESLint configs like eslint-config-airbnb . |
How to use it | Either calling the function in your code or via [prettier-eslint-cli ](https://github.co |