Skip to content

Instantly share code, notes, and snippets.

View jimbobbennett's full-sized avatar
🦙
Doing all the dev rels

Jim Bennett jimbobbennett

🦙
Doing all the dev rels
View GitHub Profile
@jimbobbennett
jimbobbennett / hackernews.yaml
Created December 29, 2023 00:59
Hackernews OpenAPI spec
openapi: "3.1.0"
info:
version: "0.0"
title: Hacker News API
description: Hacker News API using Firebase
contact:
name: HackerNews/API
url: https://github.com/HackerNews/API
email: api@ycombinator.com
@jimbobbennett
jimbobbennett / iot-central-connection.py
Last active July 1, 2022 23:53
Sample code to connect to Azure IoT Central using the Python SDK
import os
from dotenv import load_dotenv
from azure.iot.device.aio import IoTHubDeviceClient, ProvisioningDeviceClient
# Load the environment variables
load_dotenv()
# Get the connection details from the .env file for Azure IoT Central
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Process: lghub_agent [2727]
Path: /Applications/lghub.app/Contents/Frameworks/lghub_agent.app/Contents/MacOS/lghub_agent
Identifier: com.logi.ghub.agent
Version: 2022.3.242300
Code Type: X86-64 (Translated)
Parent Process: lghub [2672]
@jimbobbennett
jimbobbennett / HackathonStarterTemplates.md
Created January 18, 2020 11:45
Hackathon starter templates
@jimbobbennett
jimbobbennett / AzureForStudents.md
Last active January 10, 2020 21:17
Azure for students link

aka.ms/FreeStudentAzure

@jimbobbennett
jimbobbennett / BigIoTHack.md
Last active July 29, 2023 01:37
Useful links for the Basingstoke Big IoT Hack

Free Azure account

Sign up here - aka.ms/BigIoTFree

  • 12 months of free services
  • £150 credit
  • Other services always free

You need a credit card for verification only - we do not charge you unless you choose to upgrade to a Pay as You Go subscription. We just need to verify you are not a bot!

Cleaning: XamarinStudio.TechTalk.SpecFlow (Debug)
Build started 5/16/2016 7:32:50 PM.
__________________________________________________
Project "/Users/JimBennett/GitHub/SpecFlow/IdeIntegration/XamarinStudioIntegration/XamarinStudio.TechTalk.SpecFlow.csproj" (Clean target(s)):
Initial Properties:
__CF_USER_TEXT_ENCODING = 0x1F5:0x0:0x0
Apple_PubSub_Socket_Render = /private/tmp/com.apple.launchd.MtpcFNxwWQ/Render
@jimbobbennett
jimbobbennett / NearablesViewController.cs
Created October 8, 2015 06:52
Nearables example that doesn't work
public override void ViewDidLoad()
{
base.ViewDidLoad();
var beaconManager = new BeaconManager();
beaconManager.AuthorizationStatusChanged += (s, e) =>
{
var manager = new NearableManager();
@jimbobbennett
jimbobbennett / lock.ps1
Created July 2, 2015 14:46
Code to put an exclusive lock on a file
param([string]$fileName)
#Open the file in read only mode, without sharing (I.e., locked as requested)
$file = [System.io.File]::Open($fileName, 'Open', 'Read', 'None')
#Wait in the above (file locked) state until the user presses a key
Write-Host "Press any key to continue ..."
$null = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
#Close the file