- Network Latency: Speed of data travel between client and server.
- Server Load: Concurrent users and requests.
- Bandwidth: Data transfer rate.
- Code Efficiency: Optimization of application code.
- Database Performance: Query efficiency and load.
- Disk I/O: Speed of disk read/write operations.
- Memory Usage: RAM consumption.
- CPU Load: Processing power for requests.
- Concurrency Handling: Managing multiple operations.
- Caching: Reducing load times with caches.
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
{ | |
"absolute": ["px", "deg", "in", "cm", "mm", "pt", "pc", "ex"], | |
"relative": ["rem", "em", "%", "ch"], | |
"viewport": { | |
"inline": ["vi", "dvi", "svi", "lvi", "vw", "dvw", "svw", "lvw"], | |
"block": ["vb", "dvb", "svb", "lvb", "vh", "dvh", "svh", "lvh"], | |
"size": ["vmin", "dvmin", "svmin", "lvmin", "vmax", "dvmax", "svmax", "lvmax"] | |
}, | |
"container": ["cqi", "cqw", "cqb","cqh", "cqmin", "cqmax"] | |
} |
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
Get-ChildItem -Path "C:\Program Files" -Recurse -Filter "*Bit*" | Select-Object FullName |
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
// .eslintrc.js | |
module.exports = { | |
parser: '@typescript-eslint/parser', | |
parserOptions: { | |
ecmaVersion: 2020, | |
sourceType: 'module', | |
}, | |
extends: [ | |
'airbnb', // Airbnb base configuration | |
'airbnb/hooks', // Airbnb hooks configuration (for React Hooks) |
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
@font-face { | |
font-family: 'Alkes'; | |
src: url('./lib/styles/fonts/Alkes-Regular.woff') format('woff'), | |
url('./lib/styles/fonts/Alkes-Regular.woff') format('woff'); | |
} |
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
// CREDIT: https://github.com/karimfromjordan | |
// https://kit.svelte.dev/docs/routing#server-fallback-method-handler | |
export async function fallback({ url, request }) { | |
if (request.method === 'GET' && url.pathame === '/api/x') { | |
// ... | |
} | |
if (request.method === 'GET' && url.pathame === '/api/y') { | |
// ... | |
} | |
if (request.method === 'GET' && url.pathame === '/api/z') { |
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
name: Code Format | |
on: [push] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 |
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
{ | |
"compilerOptions": { | |
// Enable latest features | |
"lib": [ | |
"ESNext" | |
], | |
"target": "ESNext", | |
"module": "ESNext", | |
"moduleDetection": "force", |
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
{ | |
"endOfLine": "lf", | |
"printWidth": 80, | |
"singleQuote": true, | |
"tabWidth": 2, | |
"useTabs": false, | |
"plugins": [ | |
"prettier-plugin-tailwindcss", | |
"prettier-plugin-classnames", | |
"prettier-plugin-merge" |
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
; Mouse Cursor Position Switcher: This AutoIt script is designed to switch the | |
; mouse cursor position between two locations. It reads the previously stored | |
; coordinates from a text file, moves the mouse cursor to these coordinates, | |
; and then updates the file with the current coordinates. This allows the mouse | |
; cursor to effectively ‘switch’ between two positions. | |
#include <File.au3> | |
; Get the current coordinates | |
$currentCoords = MouseGetPos() |
NewerOlder