Add
* {
text-shadow: transparent 0px 0px 0px,
rgba(0, 0, 0, 0.5) 0px 0px 0px !important;
}to
| BasedOnStyle: LLVM | |
| Standard: c++17 | |
| AllowShortIfStatementsOnASingleLine: false | |
| AllowShortLoopsOnASingleLine: false | |
| DerivePointerAlignment: true | |
| PointerAlignment: Left | |
| IndentWidth: 4 | |
| ContinuationIndentWidth: 8 |
Add
* {
text-shadow: transparent 0px 0px 0px,
rgba(0, 0, 0, 0.5) 0px 0px 0px !important;
}to
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics] | |
| "CaptionFont"=hex:f4,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,\ | |
| 00,00,00,cc,00,00,00,00,56,00,65,00,72,00,64,00,61,00,6e,00,61,00,00,00,00,\ | |
| 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ | |
| 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 | |
| "MenuFont"=hex:f4,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,\ | |
| 00,00,cc,00,00,00,00,56,00,65,00,72,00,64,00,61,00,6e,00,61,00,00,00,00,00,\ | |
| 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ |
| const fs = require('fs'); | |
| const os = require('os'); | |
| const childProcess = require('child_process'); | |
| const path = require('path'); | |
| const walk = function (dir, done) { | |
| let results = []; | |
| fs.readdir(dir, function (err, list) { | |
| if (err) return done(err); | |
| let i = 0; | |
| (function next() { |
| 1. Make sure "enabled" key is set to "yes" in /etc/pkg/FreeBSD.conf | |
| 2. Change "enabled: no" to "enabled: yes" in /usr/local/etc/pkg/repos/FreeBSD.conf | |
| 3. Change "enabled: no" to "enabled: yes" in /usr/local/etc/pkg/repos/pfSense.conf for FreeBSD repo | |
| 4. Now you're able to install packages from FreeBSD official repo |
| Arial, Helvetica, Sans-Serif | |
| Arial Black, Gadget, Sans-Serif | |
| Comic Sans MS, Textile, Cursive | |
| Courier New, Courier, Monospace | |
| Georgia, Times New Roman, Times, Serif | |
| Impact, Charcoal, Sans-Serif | |
| Lucida Console, Monaco, Monospace | |
| Lucida Sans Unicode, Lucida Grande, Sans-Serif | |
| Palatino Linotype, Book Antiqua, Palatino, Serif | |
| Tahoma, Geneva, Sans-Serif |
| webpack: { | |
| alias: { | |
| "react": "preact/compat", | |
| "react-dom/test-utils": "preact/test-utils", | |
| "react-dom": "preact/compat", | |
| }, | |
| } |
| // ${LowerMultiName}/${LowerMultiName}.controller | |
| import { | |
| Body, | |
| Post, | |
| Controller, | |
| Get, | |
| Param, | |
| Patch, | |
| Delete, |
| // ${NAME}/${NAME}.fixture.tsx | |
| import React from 'react'; | |
| import ${NAME} from './${NAME}'; | |
| export default (): JSX.Element => { | |
| return ( | |
| <div className="content"> | |
| <${NAME} /> | |
| </div> |