The best iPhone 6 feature is the round shape: finally we can draw it with css! :D
--
Please vote it for the AWWWARDS conference competition: http://conference.awwwards.com/code/fabrizio-bianchi
--
{ | |
// Sample configuration for app in /home/myuser/app dir | |
"uid": "app", | |
"max": 5, // restart the app successively maximum of 5 times | |
"spinSleepTime": 1000, // time to wait until a next restart is attempted (in ms) | |
"append": true, // append the logs, do not overwrite | |
"watch": true, // watch for changes and restart if they occur | |
"script": "server.js", // main startup script (almost like issuing node server.js) | |
"sourceDir": "/home/myuser/app", // the dir where your entire app code resides (dir structure is recursively traversed) | |
"args": ["--myAPIKey", "xBlzdn84fa"] // pass any arguments to your app |
The best iPhone 6 feature is the round shape: finally we can draw it with css! :D
--
Please vote it for the AWWWARDS conference competition: http://conference.awwwards.com/code/fabrizio-bianchi
--
// task | |
// snake case | |
var taskJson = { | |
// this shows up in flex on the task as the primary text | |
"name": "(435) 999-5175", | |
// this is needed cuz there's no good way to access it on a task basis within the workflow expressions | |
"channelType": "chat", | |
// differentiates between different task queues based on acceptable response times | |
"type": "short-lived", | |
// this means it's an important task |
// task | |
// snake case | |
var taskJson = { | |
// this shows up in flex on the task as the primary text | |
"name": "[email protected]", | |
// differentiates between different task queues based on acceptable response times | |
"type": "short-lived", | |
"rd": { | |
// contactCenter -- we might not need this tbh -- especially if we do different flex projects or even different workspaces or workflows per contact center | |
"contact_center_id":1, |
Feel free to add to this as you see fit and make suggestions, I think anyone can commit to this gist if I'm not mistaken, or at very least quote it and comment on it.
This is still a work-in-progress. I plan to provide brief pros/cons foreach item in the final variation, as well as organize things a little better into common sections.
Right now I'm thinking we will just vote on these issues using a plain old google form, that way I know we will be able to reference the results within our documentation, but even our voting mechanism is up for debate at this point.
{ | |
"Africa/Abidjan": "+00:00", | |
"Africa/Accra": "+00:00", | |
"Africa/Addis_Ababa": "+03:00", | |
"Africa/Algiers": "+01:00", | |
"Africa/Asmara": "+03:00", | |
"Africa/Asmera": "+03:00", | |
"Africa/Bamako": "+00:00", | |
"Africa/Bangui": "+01:00", | |
"Africa/Banjul": "+00:00", |
######################################################################### | |
# Wifiscanner.py - A simple python script which records and logs wifi probe requests. | |
# Author - D4rKP01s0n | |
# Requirements - Scapy and Datetime | |
# Inspiration - Tim Tomes (LaNMaSteR53)'s WUDS https://bitbucket.org/LaNMaSteR53/wuds/ | |
# Reminder - Change mon0 (around line 65) to your monitor-mode enabled wifi interface | |
######################################################################### | |
from datetime import datetime |
import * as React from "react"; | |
import { | |
Manager, Actions, MessagingCanvas, MessagingCanvasContext, DynamicComponent, ContextProvider, MessageList, StateHelper, TaskHelper, ITask, | |
Supervisor, | |
TaskChannelDefinition, | |
TaskContextProps, | |
Theme | |
} from '@twilio/flex-ui'; | |
import CoreApiService from '../Shared/CoreApiService'; | |
import { Channel } from 'twilio-chat/lib/channel'; |