Skip to content

Instantly share code, notes, and snippets.

View jimmywim's full-sized avatar

Jim Love jimmywim

View GitHub Profile
<html>
<head>
<script>
function startVideo() {
const video = document.querySelector('video');
const constraints = {
video: true
};
@jimmywim
jimmywim / test.md
Created September 10, 2021 12:23
Hello World Markdown

Hello World

This is content converted from Markdown!

Here's a JSON sample:

{
  "foo": "bar"
}
@jimmywim
jimmywim / test.html
Created September 10, 2021 12:24
Hello World Html
<html>
<head>
<style>
h1 {
font-family: Calibri;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
@jimmywim
jimmywim / SPFxPackage.cs
Created June 1, 2024 19:51
.net core code to read a SharePoint SPPKG file
using System;
using System.Collections.Generic;
using System.Linq;
using MSPackage = System.IO.Packaging;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace Jimmywim.SharePoint.Packaging
{