Open the Terminal app and type:
sudo dot_clean -mn /Volumes/SD/<console>where /Volumes/SD is the path to your SD card and `` is the name of the console (eg: snes)
Open the Terminal app and type:
sudo dot_clean -mn /Volumes/SD/<console>where /Volumes/SD is the path to your SD card and `` is the name of the console (eg: snes)
| :root { | |
| --ion-color-primary: #0053d4; | |
| --ion-color-primary-rgb: 0, 83, 212; | |
| --ion-color-primary-contrast: #ffffff; | |
| --ion-color-primary-contrast-rgb: 255, 255, 255; | |
| --ion-color-primary-shade: #003b9c; | |
| --ion-color-primary-tint: #0062ff; | |
| --ion-color-secondary: #00cc99; |
| $rem-baseline: 16px !default; | |
| $rem-fallback: false !default; | |
| $rem-px-only: false !default; | |
| @use 'sass:math'; | |
| @function rem-separator($list, $separator: false) { | |
| @if $separator== 'comma' or $separator== 'space' { | |
| @return append($list, null, $separator); | |
| } |
| @import "./info"; | |
| .dd-m-post { | |
| // margin-top: rem(27px); | |
| margin-bottom: rem(27px); | |
| @media (min-width: $tablet) { | |
| // margin-top: rem(55px); | |
| margin-bottom: rem(55px); | |
| } |
| 'use strict'; | |
| // Dependencies | |
| const { gulp, series, parallel, src, dest, watch } = require('gulp'); | |
| const concat = require('gulp-concat'); | |
| const babel = require('gulp-babel'); | |
| const uglify = require('gulp-uglify'); | |
| const sass = require('gulp-sass'); | |
| const sourcemaps = require('gulp-sourcemaps'); |
| {"lastUpload":"2019-10-21T14:25:29.950Z","extensionVersion":"v3.4.3"} |
| // BEM.min.js v1.0.2 | |
| function BEM(element,patchBEM){if(element==undefined){element=$('[bem]')};if(patchBEM==undefined){patchBEM=getPatchBEM(element)};element.each(function(){if(typeof $(this).attr('bem')!='undefined'){patchBEM=getPatchBEM($(this));$(this).removeAttr('bem')};let thisChildrens=$(this).children();thisChildrens.each(function(){let thisClass=$(this).attr('class');if(typeof thisClass!='undefined'){if(!!thisClass.match(/^__/)){let thisBEMName='';for(i=0;i<thisClass.length;i++){thisLetter=thisClass[i];if(!thisLetter.match(/\s/)){thisBEMName+=thisLetter}else{break}};$(this).attr('class',thisClass.replace(thisBEMName,patchBEM+thisBEMName));let newPatchBEM=patchBEM+thisBEMName;BEM($(this),newPatchBEM);return!0}};BEM($(this),patchBEM)})})};function getPatchBEM(element){let thisClass=element.attr('class');let thisBEMName='';for(i=0;i<thisClass.length;i++){thisLetter=thisClass[i];if(!!!thisLetter.match(/\s/)){thisBEMName+=thisLetter}else{break}};patchBEM=thisBEMName;return patchBEM} |