This file contains 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
const path = require( "path" ); | |
const fs = require( "fs" ); | |
const license = new Buffer( `/** | |
* Copyright 2016 Google Inc. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* |
This file contains 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
const spawn = require( "child_process" ).spawn; | |
var server; | |
gulp.task( "gae", function() { | |
if ( server ) server.kill(); | |
server = spawn( "python", [ | |
'C:/Users/<your user>/AppData/Local/Google/Cloud SDK/google-cloud-sdk/bin/dev_appserver.py', | |
"--port", "8080", |
This file contains 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
using UnityEngine; | |
public struct Spherical { | |
public float Radius; | |
public float Phi; | |
public float Theta; | |
Spherical( float radius = 1f, float phi = 0f, float theta = 0f ) { | |
Radius = radius; |
This file contains 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
import { draw, options, stop, start, bootstrap } from "canvas-recorder/gl"; | |
import { ImageShader } from "image-shader"; | |
// @ts-ignore | |
import fragment from "./fragmant.glsl"; | |
const SIZE = 1024; | |
const canvas = document.createElement( "canvas" ); | |
canvas.width = SIZE; |
This file contains 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": "Challenge 1 Login", | |
"CreationDate": "2023-8-21", | |
"Commands": [ | |
{ | |
"Command": "open", | |
"Target": "https://developer.automationanywhere.com/challenges/AutomationAnywhereLabs-Login.html?_gl=1*11gchew*_ga*MTcxNzY5NDIwLjE2OTI2NDYwNjM.*_ga_DG1BTLENXK*MTY5MjY2MDE4Mi4yLjEuMTY5MjY2MDIyMC4yMi4wLjA.&_ga=2.245163589.1726161213.1692646063-171769420.1692646063&_fsi=biLWhpkR", | |
"Value": "", | |
"Description": "" | |
}, |
OlderNewer