Do not use more-link

more-link is bad for SEO. Nobody will search your site with the word "more". "rel=nofollow" will not solve it too more-link is bad for usability. More-link does not explain what will happen if user will click on it. There is already link on title and more-link is an extra not needed element on page. If ... Read more

Vimeo

Vimeo parameters: [iframe width="100%" height="480" src="http://player.vimeo.com/video/3261363?show_title=0&show_byline=0&show_portrait=0&color=77aa20&autoplay=1&loop=0&fullscreen=1"] Links: Vimeo api Vimeo thumbnails: From the Vimeo Simple API docs: Making a Video Request To get data about a specific video, use the following url: http://vimeo.com/api/v2/video/video_id.output video_id The ID of the video you want information for. output Specify the output type. We currently offer JSON, PHP, and XML ... Read more

html symbols (codes, characters, entities)

typography: × - × « - « » - » " - " ‘ - ‘ ’ - ’ ‚ - ‚ “ - “ ” - ” „ - „ ‹ - ‹ › - › ′ - ′ ″ - ″ – - – — - — ¶ - ¶ § - § ... Read more

WordPress sanitize and escape data

WordPress data validation Data Sanitization and Validation With WordPress For input: For output: sanitize_file_name( $filename ) – sanitizes (or validates) the file-name by removing characters that are illegal in filenames on certain operating systems or that would require escaping at the command line. Replaces spaces with dashes and consecutive dashes with a single dash and ... Read more

web-framework

List of popular web-frameworks (frontend-frameworks) Bootstrap (160k stars on Github) Tailwind CSS (60k 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