Skip to content

Instantly share code, notes, and snippets.

@rycwilson
rycwilson / # mongodb-community - 2022-09-20_12-46-28.txt
Created September 20, 2022 20:13
mongodb-community (mongodb/brew/mongodb-community) on macOS 12.5 - Homebrew build logs
Homebrew build logs for mongodb/brew/mongodb-community on macOS 12.5
Build date: 2022-09-20 12:46:28

testetestestset

testetestestset

testetestestset

testetestestset

testetestestset

@rycwilson
rycwilson / Terry_Wolfrey_4-29-15_Functions_and_DOM.js
Created April 30, 2015 21:36
Terry_Wolfrey_4-29-15_Functions_and_DOM
Week 1, Day 2.
https://github.com/sf-wdi-18/control_flowvar
fname = prompt("What's your first name?");
window.alert(fname);
function met () {
var metyet = prompt("Have we met before? YES or NO").toUpperCase();
@rycwilson
rycwilson / Terry_Wolfrey_4-29-15_Functions_and_DOM.js
Created April 30, 2015 21:36
Terry_Wolfrey_4-29-15_Functions_and_DOM
Week 1, Day 2.
https://github.com/sf-wdi-18/control_flowvar
fname = prompt("What's your first name?");
window.alert(fname);
function met () {
var metyet = prompt("Have we met before? YES or NO").toUpperCase();
@rycwilson
rycwilson / Mike_Tan_4-29-15_Functions_and_DOM.js
Created April 30, 2015 21:35
Mike_Tan_4-29-15_Functions_and_DOM
var swap = function (arr, indexOne, indexTwo) {
// swap values
var holder1=arr[indexOne];
var holder2=arr[indexTwo];
arr[indexTwo]=holder1;
arr[indexOne]=holder2;
return arr;
};
swap([1,2,3,4,5], 2,4)
@rycwilson
rycwilson / Neil_Spurgeon_4-29-15_Functions_and_DOM.js
Created April 30, 2015 21:31
Neil_Spurgeon_4-29-15_Functions_and_DOM
//Write a function to swap two values at two different indicies in an array.
var swap = function (arr, indexOne, indexTwo) {
// swap values
var indexHolder = arr[indexOne];
arr[indexOne] = arr[indexTwo];
arr[indexTwo] = arr[indexHolder];
return arr;
};