Skip to content

Instantly share code, notes, and snippets.

View justinyoo's full-sized avatar

Justin Yoo justinyoo

View GitHub Profile
var json = "{ \"message\": \"Hello World!\"}";
dynamic deserialised = JsonConvert.DeserializeObject<object>(json);
Console.WriteLine(deserialised.message);
@justinyoo
justinyoo / README.md
Created April 18, 2023 01:58
애저 OpenAI 서비스 배워보기
{
"Values": {
"FUNCTIONS_WORKER_RUNTIME": "dotnet"
}
}
func start
@justinyoo
justinyoo / 01-kill-process.sh
Last active February 15, 2022 07:02
Things to Know When Writing Azure Functions in Java
process_id=$(sudo lsof -nP -i4TCP:7071 | grep LISTEN | awk '{print $2}')
sudo kill -9 $process_id
@justinyoo
justinyoo / kill-process.sh
Created January 26, 2022 15:21
This script kills the Azure Functions process for IntelliJ IDEA on Mac
#!/bin/bash
# Even after IntelliJ IDEA stops running the function app,
# the process is still alive. It only happens on IntelliJ IDEA on Mac.
# This script finds the Azure Functions process and kill it.
#
# You don't need this script if you use terminal or Visual Studio Code.
# You don't need this script if you run IntelliJ IDEA on Windows.
#
# Usage: ./kill-process.sh -p 7071
@justinyoo
justinyoo / 01-install-oh-my-zsh.sh
Last active December 19, 2021 10:39
Oh My Azure Cloud Shell
sh -c "$(curl -fsSL \
https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
@justinyoo
justinyoo / 01-fncapp-31-package-reference.xml
Last active December 7, 2021 10:32
Migrating Azure Functions OpenAPI Extension to V4
<Project Sdk="Microsoft.NET.Sdk">
...
<ItemGroup>
<!-- .NET Core 2.1 or 3.1: In-process Worker -->
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.OpenApi" Version="1.0.0" />
</ItemGroup>
...
</Project>
@justinyoo
justinyoo / 01-original-workflow.yaml
Last active November 30, 2021 06:28
Refactoring GitHub Actions Workflow for Azure Static WebApps
### original workflow: azure-static-web-apps-xxxx-xxxx-xxxx.yml ###
name: Azure Static Web Apps CI/CD
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
@justinyoo
justinyoo / 01-remove-sdk.sh
Last active February 23, 2024 17:03
Removing .NET SDKs from MacOS Manually
sdkVersion="6.0.100"
sudo rm -rf /usr/local/share/dotnet/sdk/$sdkVersion
sudo rm -rf /usr/local/share/dotnet/sdk-manifests/$sdkVersion