Skip to content

Instantly share code, notes, and snippets.

@vennki
vennki / applicationinsights.py
Created January 10, 2024 07:06 — forked from tonybaloney/applicationinsights.py
Get data from Azure Application Insights for Pandas
"""
Query the Azure App Insights data from Python and convert to dictionaries/pandas data frames
Example:
> AZURE_APPLICATION_INSIGHTS_ID = "your-application-id"
> AZURE_APPLICATION_INSIGHTS_KEY = "your-api-key-from-the-app-insights-portal"
> client = AppInsightsClient(AZURE_APPLICATION_INSIGHTS_ID, AZURE_APPLICATION_INSIGHTS_KEY)
> df = client.query_as_df(f'pageViews | where name == "sdfdsf" and operation_Name == "/page/1" | summarize count() by client_CountryOrRegion')
"""
@vennki
vennki / http-benchmark.md
Created September 12, 2023 07:15 — forked from denji/http-benchmark.md
HTTP(S) Benchmark Tools / Toolkit for testing/debugging HTTP(S) and restAPI (RESTful)

How Daniel creates Chaos with k6

This is my collection of approaches/ideas/things for doing Chaos Engineering with k6.

Template

When I'm doing Chaos Engineering with k6, I rely a lot on the power of scenarios.

More information about scenarios: https://k6.io/docs/using-k6/scenarios/

This is a small template that I usually use for my experiments:

@vennki
vennki / list_of_articles.md
Created June 18, 2022 05:53 — forked from girliemac/conferences.md
TECHNICAL BLOGS, TUTORIALS, and DOCUMENTATIONS

Technical Blog, Tutorials, and Docs

This is a list of my articles, mostly written for employers, and some have been done in my own time.

Magazine Columns (as an Author)

Books (as a Technical Editor)

@vennki
vennki / gist:dd6aef42aede4847cc172f36ce36fd80
Created April 15, 2021 16:55 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@vennki
vennki / az900sg.md
Created November 25, 2020 19:34 — forked from timothywarner/az900sg.md
AZ-900 Microsoft Azure Fundamentals Study Blueprint
@vennki
vennki / intercept.js
Created July 2, 2020 01:10 — forked from jsoverson/intercept.js
Intercept responses with chrome and puppeteer
const puppeteer = require('puppeteer');
const prettier = require('prettier');
const atob = require('atob');
const btoa = require('btoa');
const scriptUrlPatterns = [
'*'
]
const requestCache = new Map();
@vennki
vennki / git_newrepo
Created June 29, 2020 05:44 — forked from c0ldlimit/git_newrepo
Git: Push a new or existing repo to Github
# Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/c0ldlimit/vimcolors.git
git push -u origin master
# Push an existing repository from the command line

Some of the Redis best practices content has moved

This content from this markdown file has moved a new, happier home where it can serve more people. Please check it out : https://docs.microsoft.com/azure/azure-cache-for-redis/cache-best-practices.

NOTE: Client specific guidance listed below is still valid and should still be considered. I will update this document once all content has been moved.