Skip to content

Instantly share code, notes, and snippets.

View DeveloperInfra's full-sized avatar

Mark A. Wilson DeveloperInfra

View GitHub Profile
@DeveloperInfra
DeveloperInfra / Using-jQuery-To-Build-Windows-Store-Apps-Demo.js
Created August 10, 2013 19:31
Using jQuery To Build Windows Store Apps Demo. Open Microsoft Visual Studio >> File >> New Project >> JavaScript >> Windows Store >> Blank App
/*
<body>
<p id="demo">Content goes here</p>
</body>
*/
// For an introduction to the Blank template, see the following documentation:
// http://go.microsoft.com/fwlink/?LinkId=232509
(function (window, $, undefined) {
"use strict";
@DeveloperInfra
DeveloperInfra / bash-init-setup-push-all-projects.sh
Created June 20, 2014 20:20
BASH script to push multiple existing projects
#! /bin/bash
### My use case may be unique. We have 152 projects that we are transferring from VSS and SVN to Git.
### We don’t care about the prior source control history. We are starting fresh with the most recent
### version of each project.
for i in * ; do ### For each item in the active directory
if [ -d "$i" ]; then ### If the item is a folder
echo
@DeveloperInfra
DeveloperInfra / bash-merge-push-all-projects.sh
Created July 25, 2014 19:52
BASH script to merge and push multiple projects
#! /bin/bash
### My use case may be unique. We have 146 projects that we transferred from VSS and SVN to Git.
### We made file and code changes in each project within a local branch. Now we want to merge
### the changes back into the develop branch. We also want to push the changes up to origin.
for i in * ; do ### For each item in the active directory
if [ -d "$i" ]; then ### If the item is a folder
echo
@DeveloperInfra
DeveloperInfra / meetup-graphql-query-variables.txt
Created May 26, 2023 03:58
Query group details and all the past events a meetup.com group has hosted. This GraphQL query can be run from the Meetup API GraphQL Playground. https://www.meetup.com/api/playground/#graphQl-playground
{
"eventId": "274377726"
}