View http-get.js
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
Shelly.call( | |
"HTTP.GET", | |
{"url": "https://api.zippopotam.us/us/90210"}, | |
function (response) { | |
if (response && response.code && response.code === 200) { | |
print(JSON.stringify(response.body)); | |
Shelly.emitEvent("HTTP-result", response.body); | |
} | |
else { | |
print("Error: HTTP request failed."); |
View plugs-play-with-LED-lights.js
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
function shellyPlugSChangeLEDColor(red, green, blue, brightness) { | |
let config = { | |
"config": { | |
"leds": { | |
"colors": { | |
"switch:0": { | |
"on": { | |
"rgb": [red, green, blue], | |
"brightness": brightness | |
} |
View Output
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
Num (standard): 123.131000 | |
Num (no trailing zeros): 123.131 |
View ConsoleBasedMatrixEditor.cs
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
char[,] matrix = new char[,] | |
{ | |
{ 'x', '-', '-', 'x', 'x'}, | |
{ 'x', '-', '-', 'x', 'x'}, | |
{ 'x', '-', '-', 'x', 'x'}, | |
}; | |
int x = 0; | |
int y = 0; |
View Airfield.cs
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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace Drones | |
{ | |
public class Airfield | |
{ | |
public List<Drone> Drones { get; set; } | |
public string Name { get; set; } |
View HtmlGenerateAndOpen.cs
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 System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
File.WriteAllText("weather.html", "<html><h1>Weather</h1></html>"); | |
var p = new Process(); | |
p.StartInfo = new ProcessStartInfo("weather.html") | |
{ |
View TestsContactBookAndroidApp.cs
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 NUnit.Framework; | |
using OpenQA.Selenium; | |
using OpenQA.Selenium.Appium; | |
using OpenQA.Selenium.Appium.Android; | |
using OpenQA.Selenium.Remote; | |
using System; | |
namespace AppiumTests_ContactBook | |
{ | |
public class TestsContactBookAndroidApp |
View APITestsContactBook.cs
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 NUnit.Framework; | |
using RestSharp; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Text.Json; | |
public class APITestsContactBook | |
{ |
View ffmpeg-avi-to-gif.cmd
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
ffmpeg -i .\input.avi -vf scale=1280x720 -crf 0 -r 4 -an -y out.mp4 | |
ffmpeg -i .\out.mp4 -vf palettegen=256 -y palette.png | |
ffmpeg -y -i .\out.mp4 -i palette.png -filter_complex paletteuse -y animation.gif | |
del out.mp4 | |
del palette.png |
View FileXor.cs
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 System.IO; | |
void EncryptFile(string inputFile, string outputFile) | |
{ | |
using (var fin = new FileStream(inputFile, FileMode.Open)) | |
using (var fout = new FileStream(outputFile, FileMode.Create)) | |
{ | |
byte[] buffer = new byte[4096]; | |
while (true) | |
{ |
NewerOlder