For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.
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
| { | |
| "100": "Continue", | |
| "101": "Switching Protocols", | |
| "102": "Processing", | |
| "200": "OK", | |
| "201": "Created", | |
| "202": "Accepted", | |
| "203": "Non-Authoritative Information", | |
| "204": "No Content", | |
| "205": "Reset Content", |
Git sees every file in your working copy as one of three things:
- tracked - a file which has been previously staged or committed;
- untracked - a file which has not been staged or committed; or
- ignored - a file which Git has been explicitly told to ignore.
Ignored files are usually build artifacts and machine generated files that can be derived from your repository source or should otherwise not be committed. Some common examples are:
- dependency caches, such as the contents of /node_modules or /packages
- compiled code, such as .o, .pyc, and .class files
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
| Drizzle Studio is a cloud hosted web ui `local.drizzle.studio`. | |
| It connects to the local hosted api that is started when using `drizzle-kit studio` in your terminal. | |
| By default, the ui tries to connect to localhost:4983. | |
| If using github codespaces, the server will be at a link like `your-codespace-name-4983.app.github.dev`. | |
| If you try to use the `--host` param for the cli it won't work. (https://github.com/drizzle-team/drizzle-kit-mirror/issues/381) | |
| Instead, use the `?host` query param when accessing `local.drizzle.studio`. |
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
| { | |
| "compileOnSave": false, | |
| "compilerOptions": { | |
| "target": "ES2020", | |
| "module": "esnext", | |
| "moduleResolution": "Node", | |
| "lib": ["ES2020"], | |
| "strict": true, | |
| "skipLibCheck": true, | |
| "incremental": true, |
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> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>App</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <script charset="utf-8" src="js/app.js"></script> | |
| <link rel="stylesheet" href="css/app.css" /> | |
| </head> | |
| <body> |
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
| { | |
| "apps": [ | |
| { | |
| /* General */ | |
| "name": "my-api", /* (string) application name (default to script filename without extension) */ | |
| "script": "index.js", /* (string) script path relative to pm2 start */ | |
| "cwd": "/var/www/", /* (string) the directory from which your app will be launched */ | |
| "args": "-a 13 -b 12", /* (string) string containing all arguments passed via CLI to script */ | |
| "interpreter": "/usr/bin/python", /* (string) interpreter absolute path (default to node) */ | |
| "interpreter_args": "--harmony", /* (string) option to pass to the interpreter */ |
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
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBFl4R6UBEADPWy0v3viZjEfkNJkI9umeazvVg+a8ICicPp1Beq/esr8u0HWj | |
| /CD4ebFSA2uAcJemNlQBDQ81j47xSHb6S7YmCJvN5B9iUFHN+wC1rdVjH4RdS/Gt | |
| rtcKP3bJ8vqC+r3Sgqm8xMJPjGA+naKb4x2mVUB3hUt1p/R0qmLvpYMu7d3KiavP | |
| UGRTJldbYoJIGTxxEgU+Y2Pc5g3yEkWVecqcAW6bKEMk4RjrvwBpXVW0F4KYzk1v | |
| b2IJMpluDs81GEAzMMNVeqSWTsIon5GDYkAMZJijxEJd81OXYMTPd5rOfBYwaRZ+ | |
| uU8neOnaLZsr6DVQzLR2IpDXuUfUqf7R9GpB4uPBkKycFIMam8pzBz77aGzR94WS | |
| JGOLTvgkPTlzzPWqsbJyoblnBOu3agUFteUGWU9BL3fOIkr914OGJLDEJxzdYRl/ | |
| aO4b+tev5VKa9J8+PzxrvGrXCfKnzkS6fx/hMiJmuF31S8EOf95lK8UCSn3mrXX8 |
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
| .class .intro Selects all elements with class="intro" | |
| .class1.class2 .name1.name2 Selects all elements with both name1 and name2 set within its class attribute | |
| .class1 .class2 .name1 .name2 Selects all elements with name2 that is a descendant of an element with name1 | |
| #id #firstname Selects the element with id="firstname" | |
| * * Selects all elements | |
| element p Selects all <p> elements | |
| element.class p.intro Selects all <p> elements with class="intro" | |
| element,element div, p Selects all <div> elements and all <p> elements | |
| element element div p Selects all <p> elements inside <div> elements | |
| element>element div > p Selects all <p> elements where the parent is a <div> element |
NewerOlder