Skip to content

Instantly share code, notes, and snippets.

View theodorosploumis's full-sized avatar
🏠
Working from home

Theodoros Ploumis theodorosploumis

🏠
Working from home
View GitHub Profile

Next.js

Next.js Trend

You've heard great things about this new web framework called Next.js, but you're still not sure why people are using it.

One way to understand why you should learn Next.js is to understand what problems it solves. This directly translates to why it's become so popular.

Why use a framework?

@theodorosploumis
theodorosploumis / How to execute Drupal related Tasks.md
Last active December 20, 2021 08:51
How to execute Drupal related Tasks, commands and setup automation.
@theodorosploumis
theodorosploumis / countries.php
Last active October 13, 2021 12:32
All countries PHP array by key
<?php
$countries = [
"US" => "United States",
"CA" => "Canada",
"GB" => "United Kingdom",
"AU" => "Australia",
"DE" => "Germany",
"AX" => "Åland Islands",
"AF" => "Afghanistan",
@theodorosploumis
theodorosploumis / greek-stopwords.md
Last active April 9, 2021 21:40 — forked from antska/greek-stopwords.md
Greek stopwords (useful for e-commerce Search indexing. Do not use it for searches inside book contents etc)

Α
ΑΔΙΑΚΟΠΑ
ΑΙ
ΑΚΟΜΑ
ΑΚΟΜΗ
ΑΚΡΙΒΩΣ
ΑΛΗΘΕΙΑ
ΑΛΗΘΙΝΑ
ΑΛΛΑ
ΑΛΛΑΧΟΥ

@theodorosploumis
theodorosploumis / Singularitygs + Breakpoint + Compass with Gulp
Created January 8, 2016 23:28
Singularitygs + Breakpoint + Compass with Gulp
This is how I managed to set up Singularitygs + Breakpoint + Compass with Gulp (for Drupal theming).
Install gulp globally
"sudo npm install -g gulp"
Copy the following package.json to the root folder of your project.
{
"name": "your_project",
"version": "1.0.0",
@theodorosploumis
theodorosploumis / english-stopwords.md
Created November 13, 2020 18:59 — forked from antska/english-stopwords.md
English stopwords

a
able
about
above
abst
accordance
according
accordingly
across
act

@DATABASE@__%Y-%m-%d_%H-%M-%S

Drupal 8.x Best Practices - Project report

1. Parameters to consider

  • Delivery under time pressure.
  • Multilingual content.
  • Accessibility Valid code (WCAG 2.0 level A).
  • Anonymous users cannot create accounts.
  • Content will be added manually.
  • There is an existing old website (redesigned project).