π―
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
| #!/usr/bin/env bash | |
| # ============================================================================= | |
| # This is simple helper for Antigravity IDE manager for Linux | |
| # I created this script because manually installing, updating, and | |
| # uninstalling Antigravity IDE on Linux gets really tedious. Extracting | |
| # tarballs, fixing sandbox permissions, and updating desktop shortcuts every | |
| # time there's a new version is a hassle. | |
| # | |
| # This script automates the entire lifecycle. With a single command, it: | |
| # |
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
| $PSDefaultParameterValues['*:Encoding'] = 'utf8' | |
| $OutputEncoding = [System.Text.Encoding]::UTF8 | |
| [Console]::OutputEncoding = [System.Text.Encoding]::UTF8 | |
| function prompt { | |
| $hour = (Get-Date).Hour | |
| $emoji = "" | |
| $greeting = "" |
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
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| <script src='https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.production.min.js'></script> | |
| <script src='https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js'></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.js"></script> | |
| <script src='https://unpkg.com/react-router-dom@5.0.0/umd/react-router-dom.min.js'></script> |
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
| /* | |
| * OpenSimplex (Simplectic) Noise in Java. | |
| * (v1.0.1 With new gradient set and corresponding normalization factor, 9/19/14) | |
| */ | |
| public class OpenSimplexNoise { | |
| private static final double STRETCH_CONSTANT_3D = -1.0 / 6; | |
| private static final double SQUISH_CONSTANT_3D = 1.0 / 3; | |