Loading animation based on movie "Her" - OS1.
- Mouse or Finger press on the page to finish loading action.
A Pen by Michael R. on CodePen.
| bulbasaur | |
| ivysaur | |
| venusaur | |
| charmander | |
| charmeleon | |
| charizard | |
| squirtle | |
| wartortle | |
| blastoise | |
| caterpie |
| [wsl2] | |
| # An absolute Windows path to a custom Linux kernel. | |
| # kernel=The Microsoft built kernel provided inbox (default) | |
| # How much memory to assign to the WSL 2 VM, this can be set as whole numbers using GB or MB. Default is 50% of total memory on Windows or 8GB, whichever is less; formerly 80% of total memory on Windows. | |
| memory=5700MB | |
| # How many logical processors to assign to the WSL 2 VM. | |
| # processors=The same number of logical processors on Windows (default) |
| { | |
| // Controls whether bracket pair colorization is enabled or not. Use 'workbench.colorCustomizations' to override the bracket highlight colors. | |
| "editor.bracketPairColorization.enabled": true, | |
| // Controls whether the editor should render indent guides. | |
| "editor.guides.indentation": true, | |
| // Controls whether bracket pair guides are enabled or not. | |
| // - true: Enables bracket pair guides. | |
| // - active: Enables bracket pair guides only for the active bracket pair. | |
| // - false: Disables bracket pair guides. | |
| "editor.guides.bracketPairs": "active", |
| { | |
| // If true, any subfolders containing a .git file will be ignored when searching. | |
| "todo-tree.filtering.ignoreGitSubmodules": true, | |
| // Add VSCode's `files.exclude` and/or `search.exclude` list to the ignored paths. | |
| // - none: Don't used any built in excludes | |
| // - file excludes: Use the Files:Exclude setting | |
| // - search excludes: Use the Search:Exclude setting | |
| // - file and search excludes: Use the Files:Exclude and the Search:Exclude setting | |
| "todo-tree.filtering.useBuiltInExcludes": "file and search excludes", | |
| // Set to true to enable automatic updates when files in the workspace are created, changed or deleted. |
| If (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) | |
| { | |
| $arguments = "& '" + $myinvocation.mycommand.definition + "'" | |
| Start-Process powershell -Verb runAs -ArgumentList $arguments | |
| Break | |
| } | |
| $remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '" | |
| $found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'; |
Loading animation based on movie "Her" - OS1.
A Pen by Michael R. on CodePen.
| // @ts-nocheck | |
| import axios from 'axios' | |
| import React, { useReducer, useState } from 'react' | |
| const formReducer = (state, event) => { | |
| if (event.reset) { | |
| return { | |
| name: '', | |
| email: '', | |
| tel: '', |
| // sample use case: scroll to a React component by using a reference. | |
| import React, { forwardRef, useRef } from 'react' | |
| // @ts-ignore | |
| const Article = forwardRef(function Article({ onClick }, ref) { | |
| return ( | |
| <article ref={ref}> | |
| <h1>A React article for Latin readers</h1> | |
| // Rest of the article's content... | |
| <button onClick={onClick}>Back to the top</button> |