Skip to content

Instantly share code, notes, and snippets.

View FernandaOchoa's full-sized avatar
🍊

FernandaOchoa FernandaOchoa

🍊
View GitHub Profile
@FernandaOchoa
FernandaOchoa / Program.cs
Last active May 29, 2020 20:49
Conversión de Audio a Texto con Azure Cognitive Services Speech
using System;
using System.Threading.Tasks;
using Microsoft.CognitiveServices.Speech;
using Microsoft.CognitiveServices.Speech.Audio;
namespace HelloWorld {
class Program {
// Accesamos a los servicios con una función Async
static async Task Main() {
await RecognizeSpeechAsync();
@FernandaOchoa
FernandaOchoa / Documentation.md
Created August 15, 2022 15:33
Sample of software project documentation.
@FernandaOchoa
FernandaOchoa / environment.dev.ts
Created April 20, 2023 02:48
Environment Template to run Angular Project in localhost
export const environment = {
production: false,
staging: false,
clientBaseUrl: 'http://localhost:4200',
clientI18n: false,
apiDomain: ``,
apiURL: ``,
gqlEndpoint: 'graphql',