web-framework

List of popular web-frameworks (frontend-frameworks) Bootstrap (170k stars on Github) Tailwind CSS (90k stars on Github) Semantic UI (50k stars on Github) Bulma (46k stars on Github) Foundation (30k stars on Github) UIkit (20k stars on Github) Flexify (Github) Bootstrap info: bootstrap - web-framework bootstrap on github - css and html framework bootstrap expo bootstrap ... Read more

getting real

Getting Real (by 37 signals) online Getting Real by 37 signals ebook Rework by Jason Fried and David Heinemeier Hansson from 37signals Also download few pages of Rework book by 37 signals. Rework page. How To Write Vigorous Software Vigorous writing is concise. A sentence should contain no unnecessary words, a paragraph no unnecessary sentences, ... Read more

web-development

order by priority quality code readability is more important than speed of work of that code block modularity flexibility usability minimalism should be things, which are needed to 80% of users less options split big tasks into smaller ones do not focus on competitors, just do what you want to do important is not to ... Read more

social networks

90 days without cell phone email social media The Amish Project Amazing mind reader reveals his 'gift'

Nesting

Nesting rules: style components based on what they are, not where they are Don’t use the same class for both style and behavior. Example: .btn-delete and .js-btn-delete do not use IDs in nesting; use classes instead; more than one same ID makes page not valid and it is hard to select few similar elements with ... Read more

normalize.css styles

Differences between normalize.css and reset.css: normalize.css preserves useful defaults rather than "unstyling" everything; normalize.css corrects some common bugs that are out of scope for reset.css; normalize.css doesn't clutter your dev tools; normalize.css is more modular; normalize.css has better documentation; differences between normalize.css and reset.css from stackoverflow

php OOP

Object Oriented Programming in PHP by Jeffrey Way (Tutsplus) S.O.L.I.D is an acronym for the first five object-oriented design(OOD) principles: S – Single-responsiblity principle O – Open-closed principle L – Liskov substitution principle I – Interface segregation principle D – Dependency Inversion Principle Single-responsibility Principle A class should have one and only one job. Open-closed ... Read more

Google Chrome

Type in Chrome omnibar: chrome://version chrome://about chrome://flags chrome://memory-redirect chrome://plugins Comic about how was made the Google Chrome browser. Why there is no rss-feed icon in Chrome address bar: Given that most people are not familiar with and don't consume RSS feeds, we thought that RSS support would be a better fit as an extension, at ... Read more

children education

Awesome book by Dallas Clayton Dr. Suess - Green Eggs And Ham Number sense If you teach a kid to just memorize arithmetic facts with flashcards, without explaining why the answers are what they are, that kid may struggle when they encounter a fact they haven’t memorized. Being able to demonstrate, for example, 5+2=7 using ... Read more

css width 100% minus 100px

New way: css calc() width = 100% - 100px css: html: Old way: nesting hacks width = 100% - 100px (from left) - 100px (from right) css: