Skip to content

Instantly share code, notes, and snippets.

View element824's full-sized avatar

Koushik Nagarajan element824

View GitHub Profile
@element824
element824 / ohmyposhv3-v2.json
Created February 28, 2025 13:41 — forked from shanselman/ohmyposhv3-v2.json
ohmyposhv3-v2
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,
@element824
element824 / IgniteDownloader.ps1
Created November 9, 2019 23:45 — forked from ddneves/IgniteDownloader.ps1
Ignite Downloader
#########################################################################################
## Author: David das Neves
## Date: 09.11.2019
## Description: Filtering of Ignite session files with OutGridView
## Downloading with 10 downloads in parallel including resume functionality
#########################################################################################
# Start PowerShell as admin
#via code: Start-Process powershell -Verb runAs
@element824
element824 / customvis.py
Created October 31, 2019 04:30 — forked from staceymakes/customvis.py
Custom Vision API Prediction - PYthon
import requests
import json
url="YOUR_PREDICTION_ENDPOINT _ AVAIL customvision.ai"
headers={'content-type':'application/octet-stream','Prediction-Key':'YOUR_PREDICTION_KEY'}
r =requests.post(url,data=open("YOUR_LOCAL_IMAGE.jpg","rb"),headers=headers)
print(r.content)