Drupal theme using Vite contrib module
Basic theme dev setup for Vite after installing a Drupal Starterkit theme
Tested in Valet and MAMP Pro local environments.
themes/custom/THEME/package.json
{Tested in Valet and MAMP Pro local environments.
themes/custom/THEME/package.json
{This document was created to supplement the Code Fellows ASP.NET Core Curriculum for macOS users.
| const data = require('../Downloads/Slack/diversity-inclusion/2019-03-07.json'); | |
| const usersExport = require('../Downloads/Slack/users.json'); | |
| // Load all users into memory. | |
| const users = {}; | |
| const contributors = {}; | |
| usersExport.forEach(user => { | |
| users[user.id] = user.profile.display_name_normalized ? user.profile.display_name_normalized : user.profile.real_name_normalized; | |
| }); |
This a patch for https://aur.archlinux.org/packages/lib32-gtkglext/ to fix the compile error arond the use of the variable name 'index'.
To apply, clone the repo and apply git git patch before building:
git clone https://aur.archlinux.org/lib32-gtkglext.git
cd lib32-gtkglext
curl -LO https://gist.github.com/jonjonw/39031796ca230e240311fbb73085bd80/raw/lib32-gtkglext.git.diff
git apply lib32-gtkglext.git.diff
makepkg -siDownload the package: http://www2.futureware.at/~nickoe/msys2-mirror/msys/x86_64/rsync-3.1.2-2-x86_64.pkg.tar.xz
Extract it and move rsync.exe to %HOMEDRIVE%%HOMEPATH%\AppData\Local\Programs\Git\usr\bin.
| /* -------------------------------------------------------------------------- */ | |
| // All Bootstrap 4 Sass Mixins [Cheat sheet] | |
| // Updated to Bootstrap v4.5.x | |
| // @author https://anschaef.de | |
| // @see https://github.com/twbs/bootstrap/tree/master/scss/mixins | |
| /* -------------------------------------------------------------------------- */ | |
| /* | |
| // ########################################################################## */ | |
| // New cheat sheet for Bootstrap 5: |
| package main | |
| import ( | |
| "fmt" | |
| "strings" | |
| "bytes" | |
| "io" | |
| "io/ioutil" | |
| "golang.org/x/text/transform" | |
| // "code.google.com/p/go.text/transform" // deprecated |