This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="vi"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Chung Chi — Budget Multiple Periods (screens 19–22)</title> | |
| <link href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <style> | |
| html, body { margin:0; padding:0; font-family:'Outfit', system-ui, sans-serif; background:#f0eee9; } | |
| .canvas { display:flex; gap:48px; padding:60px; align-items:flex-start; min-height:100vh; flex-wrap:wrap; } | |
| .artboard { display:flex; flex-direction:column; align-items:center; gap:12px; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CTI Logo Concepts</title> | |
| <style> | |
| *{box-sizing:border-box;margin:0;padding:0} | |
| body{font-family:-apple-system,'Helvetica Neue',Arial,sans-serif;background:#f1f5f9;padding:48px 24px;color:#0f172a} | |
| header{text-align:center;margin-bottom:56px} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from phBot import * | |
| import urllib.request | |
| from threading import Timer | |
| from datetime import datetime, timedelta | |
| import datetime | |
| import os | |
| import signal | |
| import struct | |
| import subprocess | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| walk,17965,6626,694 | |
| walk,17964,6605,705 | |
| walk,17955,6593,712 | |
| walk,17948,6579,745 | |
| walk,17946,6565,774 | |
| walk,17947,6550,783 | |
| walk,17943,6537,802 | |
| walk,17933,6524,816 | |
| walk,17923,6520,823 | |
| walk,17914,6519,825 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:window.open(document.getElementById('redirect-link').dataset.href.split('=').pop()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (() => { | |
| const x = document.createElement("div"); | |
| x.style.height = "1px"; | |
| x.style.backgroundColor = "red"; | |
| x.style.zIndex = 100000; | |
| x.style.position = "fixed"; | |
| x.style.top = "0px"; | |
| x.style.left = "0px"; | |
| document.body.appendChild(x); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "dependencies": { | |
| "babel-plugin-styled-components": "^1.10.7", | |
| "prop-types": "^15.7.2", | |
| "react": "^16.13.1", | |
| "react-dom": "^16.12.0", | |
| "react-helmet": "^5.2.1", | |
| "react-responsive": "^8.0.3", | |
| "react-spring": "^8.0.27", | |
| "react-typography": "^0.16.19", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "devDependencies": { | |
| "import-sort-cli": "^6.0.0", | |
| "import-sort-style-react": "^5.1.0", | |
| }, | |
| "scripts": { | |
| "sort-imports": "./node_modules/import-sort-cli/lib/index.js --write ./src/**/*.js" | |
| }, | |
| "importSort": { | |
| ".js": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { compose, createStore as reduxCreateStore } from 'redux'; | |
| const reducer = state => { | |
| return state; | |
| }; | |
| const initialState = {}; | |
| const windowGlobal = typeof window !== 'undefined' && window; | |
| const devtools = | |
| process.env.NODE_ENV === 'development' && windowGlobal.devToolsExtension |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "env": { | |
| "browser": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:prettier/recommended", | |
| "plugin:react/recommended", |
NewerOlder