This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This document now exists on the official ASP.NET core docs page.
| import React, { Component } from "react" | |
| //------------------------SPEECH RECOGNITION----------------------------- | |
| const SpeechRecognition = SpeechRecognition || webkitSpeechRecognition | |
| const recognition = new SpeechRecognition() | |
| recognition.continous = true | |
| recognition.interimResults = true | |
| recognition.lang = 'en-US' |
| # Local | |
| sudo /usr/sbin/nvram recovery-boot-mode=unused # Boot to local recovery partition. | |
| # Internet | |
| sudo /usr/sbin/nvram internet-recovery-mode=RecoveryModeNetwork # Internet Recovery (same as SHIFT+OPT+CMD+R) | |
| sudo /usr/sbin/nvram internet-recovery-mode=RecoveryModeDisk # Local Recovery Partition (Same as CMD+R) | |
| sudo /usr/sbin/nvram internet-recovery-mode=DiagsModeDisk # Local Hardware Diagnostics (Same as D) | |
| sudo /usr/sbin/nvram internet-recovery-mode=DiagsModeNetwork # Internet Hardware Diagnostics (Same as OPT+D) | |
| # Sourced from |
| # Reading PZEM-004t power sensor (new version v3.0) through Modbus-RTU protocol over TTL UART | |
| # Run as: | |
| # python3 pzem_004t.py | |
| # To install dependencies: | |
| # pip install modbus-tk | |
| # pip install pyserial | |
| import serial | |
| import modbus_tk.defines as cst |
Instructions tested with a Raspberry Pi 2 with an 8GB memory card. Probably also works fine on a Raspberry Pi 3.
Download the latest Raspbian Jessie Light image. Earlier versions of Raspbian won't work.
Write it to a memory card using Etcher, put the memory card in the RPi and boot it up.
| using System; | |
| using System.Net; | |
| using System.Web.Script.Serialization; // requires the reference 'System.Web.Extensions' | |
| using System.IO; | |
| using System.Text; | |
| class WaMessageSender | |
| { | |
| // TODO: Replace the following with your gateway instance ID, Forever Green client ID and secret: | |
| private static string INSTANCE_ID = "YOUR_INSTANCE_ID_HERE"; |
| public async Task<string> DoCurlAsync() | |
| { | |
| using (var httpClient = new HttpClient()) | |
| using (var httpResonse = await httpClient.GetAsync("https://www.bynder.com")) | |
| { | |
| return await httpResonse.Content.ReadAsStringAsync(); | |
| } | |
| } |
| using System; | |
| using System.Globalization; | |
| using System.Text.RegularExpressions; | |
| using Xamarin.Forms; | |
| namespace MyProject.Util | |
| { | |
| /// <summary> | |
| /// Converter for using in Entry fields for masked input of currency. | |
| /// <para>The binded property must be of type decimal, and must invoke the PropertyChangedEventArgs event whenever the value is changed, so that the desired mask behavior is kept.</para> |
| using System; | |
| using System.Data; | |
| using System.Data.Sql; | |
| using System.Data.SqlClient; | |
| using System.Configuration; | |
| using DotNetNuke.Services.Mail; | |
| using DotNetNuke.Entities.Portals; | |
| using DotNetNuke.Common.Utilities; | |
| using DotNetNuke.Entities.Portals; |