Skip to content

Instantly share code, notes, and snippets.

View drmaniac's full-sized avatar

Christian Pieczewski drmaniac

  • preHCM services
  • Germany
View GitHub Profile
@drmaniac
drmaniac / gist:23a4faf462caabd57f0175f281739ada
Created March 8, 2024 07:06
SpeechSDK arch working example
#include <iostream>
#include <stdlib.h>
#include <speechapi_cxx.h>
using namespace Microsoft::CognitiveServices::Speech;
using namespace Microsoft::CognitiveServices::Speech::Audio;
std::string GetEnvironmentVariable(const char* name);
int main()
@drmaniac
drmaniac / LombokInheritanceBug.java
Last active November 20, 2023 15:12
Lombok inheritance Bug
package de.prehcm.emf.test;
import lombok.Data;
public class LombokInheritanceBug {
public interface TheInterface {
String theField();
}