- Check for wireless adapter using
ifconfig
iwconfig- Get the wireless adapter's id and start airmon-ng
| Backroom.Endpoint.broadcast( | |
| "store:crosstown-doughnuts-soho", | |
| "driver_update:JGGf6", | |
| %{ | |
| name: "Jekri Orlina", | |
| vehicle: "car", | |
| phone: "+442012345678", | |
| pickup_details: "ETA in 15 minutes" | |
| } | |
| ) |
| describe('what it is', () => { | |
| it('should take time', () => { | |
| expect(things).to.(takeTime()) | |
| }) | |
| }) |
ifconfig
iwconfig| Crm.ArtistSearchVariableMixin = Em.Mixin.create | |
| perPage: null | |
| sortPage: null | |
| # selected questions | |
| selectedQuestions: {} | |
| selectedQuestionIds: [] | |
| selectedQuestionAnswers: [] | |
| selectedEthnicities: (-> |
| //array reducer | |
| function todos(state = initialState, action) { | |
| switch (action.type) { | |
| case ADD_TODO: | |
| return [ | |
| ...state, | |
| todo(null, action) | |
| ] | |
| case TOGGLE_TODO: | |
| return state.map(t => todo (t, action)); |
| exports.returnerSwitch = (req, res, next) => { | |
| switch (req.data) { | |
| case 'say hi': | |
| return res.send({'message': 'say hi'}); | |
| case 'say goodbye': | |
| return res.send({'message': 'say goodbye'}); | |
| default: | |
| return next('nothing to say'); | |
| } | |
| }; |
| exports.randomFunction = (req, res, next) => { | |
| if (req.condition) { | |
| return res.send(req.condition) | |
| } | |
| if (req.condition2) { | |
| return res.send(req.condition2) | |
| } | |
| res.send({}); |