Skip to content

Instantly share code, notes, and snippets.

View madcodemonkey's full-sized avatar
🐒

David Yates madcodemonkey

🐒
View GitHub Profile
from locust import HttpUser, task, between
class QuickstartUser(HttpUser):
wait_time = between(5, 9)
host="https://api.openbrewerydb.org"
@task
def index_page(self):
result = self.client.get("/breweries")
print(result.text)
@madcodemonkey
madcodemonkey / Program.cs
Last active February 14, 2024 22:36
Generate SSRS report using WCF in .NET Core Application
using ServiceReference1;
using System;
using System.Collections.Generic;
using System.IO;
using System.ServiceModel;
using System.Threading.Tasks;
namespace SSRSSimple
{
class Program