Month: February 2021

HTML

Tips 8 tags you should be using

Tagged with: ,

Linux

Create a sudo user – on Ubuntu and other Debian-based Linux distributions

Tagged with: , ,

Laravel

Demos – justLaravel – not yet checked out Mini Projects – Laracasts Playing With PHP Tutorials– 21 Laravel Tutorials for Learning Laravel in 2021 – Laravel News Laravel 8 Tutorials for Absolute Beginners Part 1-Installations and set up

Javascript Snippets

Fat Arrow functions function newWord(str) { return str.substring(1);} Can be written as: newWord = str => str.substring(1); ********************************************************* function cardHide(card) { const fullNumber = ‘2034399002125581’; const last4Digits = fullNumber.slice(-4); const maskedNumber = last4Digits.padStart(fullNumber.length, ‘*’);} Can be written as: const cardHide

Tagged with: ,

Code Challenges

edabit – Mostly paid, but some free challenges posted weekly on Mondays. Various languages available. CSSBattle –

Tagged with: ,

Version control

Java Code Geeks – Top Git commands with examples Java Code Geeks – archived listing of many git articles.

Tagged with: , ,

Web tools

CSS Box-shadow generator Minifier

Drupal

Druapl docs – the official site start point. Using Composer to Install Drupal and Manage Dependencies – is composer good for Drupal? Updating Drupal core – manually Updating Drupal core – via composer Updating Drupal core – using Drush –

Tagged with: , , , ,

CSS

Moz://a MDN Web Docs – CSS resources and tutorials Bootstrap 5 cheatsheet – An interactive list of Bootstrap 5 classes, variables, and mixins. Web only Grid & Flexbox A Guide to CSS Grid – teleik.com A Complete Guide to Grid

Tagged with: ,

REST, SOAP and other animals

What is REST – REpresentational State Transfer, but there’s more … SOAP vs REST vs JSON – a 2020 comparison

Top