Skip to content

Instantly share code, notes, and snippets.

View wswebcreation's full-sized avatar
🤣
SaaS (Selles as a Service)

Wim Selles wswebcreation

🤣
SaaS (Selles as a Service)
View GitHub Profile
@wswebcreation
wswebcreation / chat.history.json
Last active January 21, 2018 08:37
This JSON is part of the demo app of wswebcreation and is used in the Chat view. This is the chat history
[
{
"firstName": "Dick",
"lastName": "Tracy",
"conversation": [
{
"placeRight": true,
"message": "So it seems like this internet thing is here to stay, huh?"
},
{
@wswebcreation
wswebcreation / conversation.json
Last active January 21, 2018 08:37
This JSON is part of the demo app of wswebcreation and is used in the Chat view. This is the default conversation
[
{
"placeRight": true,
"message": "I'm fine, how are you?"
},
{
"placeRight": false,
"message": "Hey wassup?"
}
]
@wswebcreation
wswebcreation / start.ios.simulator.js
Created November 29, 2017 06:56
Brain fart to start an iOS simulator from the command line including starting a test
const { execFileSync, spawnSync } = require('child_process');
const inquirer = require('inquirer');
console.log(`
============================
iOS Simulator CLI Helper
============================
`);