This Site

If you happen to come across this site, please ignore it. I am basically using it to learn WordPress, and at the same time create a collection of links that I have found useful in this task. Thank you.

Theme building

Page editing

HTML

Tips

Tagged with: ,

Linux

Tagged with: , ,

Laravel

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 = card => card.slice(-4).padStart(card.length, '*');

Tagged with: ,

Code Challenges

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

Version control

Tagged with: , ,

Web tools

CSS

Drupal

Theming

Themes

  • Creative Bloq – “The 23 best Drupal themes” – some useful links.
  • Skeleton – Skeleton is a Responsive, Mobile-Friendly Theme Drupal 7 (keep a watch out for updated version!) https://morethanthemes.com/
  • The X – Drupal 8 and 9 Base ThemeThe X is a clean, lightweight and fully responsive Drupal 8 and 9 base theme.

Modules

Acquia – 10 Must-Have Modules to Start Your Drupal 8 Site

Tagged with: , , , ,

CSS

Grid & Flexbox

Layouts etc.

CSS Grid Starter Layouts – CSS-Tricks

Tagged with: ,

REST, SOAP and other animals

Top