Add the below files to your $PATH
.
Usage:
Light mode:
light
Dark mode:
Add the below files to your $PATH
.
Usage:
Light mode:
light
Dark mode:
class Component { | |
@Memoize() | |
imageUrl(clock: Clock|undefined): string { | |
if (clock === undefined || clock.latitude === undefined || clock.longitude === undefined) { | |
return ''; | |
} | |
const clockCoords = clock?.latitude + ',' + clock?.longitude; | |
const circlePath = GeoUtils.encodeCircularPath( |
# Actions define a job that runs on a GitHub runner (separate from the repo) | |
# Defines the conditions under which the job will run | |
on: | |
push: | |
branches: [ master ] # or main, if you use that | |
# Defines the jobs, of which we have two: "build" and "deploy" | |
jobs: | |
build: |
<div class="container"> | |
<button type="button" id="result-button">Refresh Content</button> | |
<div id="result-test"> | |
<?= rand(0, 100) ?> | |
</div> | |
</div> |
public void minMin() { | |
// Sort the cloudlet list so that they are in ascending order (lowest first) | |
cloudletList.sort((Comparator<Cloudlet>) (first, second) -> { | |
return (int) (first.getCloudletLength() - second.getCloudletLength()); | |
}); | |
double[] vmLoad = new double[vmList.size()]; | |
for (Cloudlet cloudlet : cloudletList) { | |
// For each cloudlet (task) |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Change Youtube Speed | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://*.youtube.com/* | |
// @grant none | |
// ==/UserScript== |