Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
| FROM ubuntu:20.04 | |
| LABEL maintainer="Taylor Otwell" | |
| ARG WWWGROUP | |
| WORKDIR /var/www/html | |
| ENV DEBIAN_FRONTEND noninteractive | |
| ENV TZ=UTC |
| import { useEffect, useRef, useState, useCallback } from "wouter/react-deps"; | |
| export default () => { | |
| const [path, update] = useState(currentPathname()); | |
| const prevPath = useRef(path); | |
| useEffect(() => { | |
| // this function checks if the location has been changed since the | |
| // last render and updates the state only when needed. | |
| // unfortunately, we can't rely on `path` value here, since it can be stale, |
| #!/bin/bash | |
| for i in {1..9} | |
| do | |
| wget "https://echa.europa.eu/diss-cl-inventory-portlet/images/pictograms/ghs0$i.png" | |
| done |
| let mix = require('laravel-mix'); | |
| const antdRegex = /antd.+\.less$/; | |
| const theme = { | |
| 'primary-color': '#0097FF', | |
| }; | |
| // Exclude quill icons | |
| Mix.listen('configReady', function(config) { | |
| const rules = config.module.rules; |
| <?php | |
| function unescapedFiles($path){ | |
| $files = array_diff(scandir($path), array('.', '..')); | |
| foreach ($files as $file) { | |
| $file = str_finish($path, '/') . $file; | |
| $content = json_decode(file_get_contents($file), true); | |
| $content = json_encode($content, JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); | |
| file_put_contents($file, $content); | |
| } |
| <?php | |
| $mapping = [ | |
| 'Jan' => 'Jan.', | |
| 'Feb' => 'Feb.', | |
| 'Mar' => 'Mar.', | |
| 'Apr' => 'Apr.', | |
| 'May' => 'May', | |
| 'Jun' => 'June', | |
| 'Jul' => 'July', |
| , | |
| /| __ | |
| / | ,-~ / | |
| Y :| // / | |
| | yy /( .^ | |
| >-"~"-v" | |
| / Y | |
| j<blink>o o</blink> | | |
| ( ~T~ j | |
| >._-' _./ |
| (setq fonts | |
| (cond ((eq system-type 'darwin) '("Monaco" "STHeiti")) | |
| ((eq system-type 'gnu/linux) '("Menlo" "WenQuanYi Zen Hei")) | |
| ((eq system-type 'windows-nt) '("Consolas" "Microsoft Yahei")))) | |
| (set-face-attribute 'default nil :font | |
| (format "%s:pixelsize=%d" (car fonts) 14)) | |
| (dolist (charset '(kana han symbol cjk-misc bopomofo)) | |
| (set-fontset-font (frame-parameter nil 'font) charset | |
| (font-spec :family (car (cdr fonts))))) | |
| ;; Fix chinese font width and rescale |
| // dashboard component | |
| var dashboard = Vue.extend({ | |
| template: '<p>Hello from dashboard</p>' | |
| }) | |
| // user management component | |
| var user = Vue.extend({ | |
| template: '<p>Hello from user management page</p>' | |
| }) |