It creates a browser action that throws an exception captured by Rollbar
- Go to extensions
- Enable developer mode
- Load this extensions from a folder
It creates a browser action that throws an exception captured by Rollbar
#!/bin/sh | |
curl "http://sandbox-api.authy.com/protected/json/phones/verification/check?api_key=d57d919d11e6b221c9bf6f7c882028f9&verification_code=0000&phone_number=111-111-1111&country_code=1" |
define(['backbone'], function (Backbone) { | |
"use strict"; | |
var middleware = [], | |
BackboneSync = Backbone.sync; | |
function passThroughMiddlewares(list, data, done) { | |
if (0 === list.length) { | |
done(null, data); | |
return; |
module.exports = function(config) { | |
config.set({ | |
basePath: '', | |
frameworks: ['jasmine', 'requirejs'], | |
files: [ | |
{pattern: 'src/app/**/*.js', included: false}, | |
{pattern: 'test/**/*.spec.js', included: false}, | |
'test/test-main.js' |
each val in ['amber', 'blue-grey', 'blue','cyan', 'deep-orange', 'deep-purple', 'green', 'grey', 'indigo', 'light-blue-dark', 'light-green', 'lime', 'orange', 'pink', 'purple', 'red', 'teal', 'yellow'] | |
md-toolbar('md-theme'=val) | |
h2.md-toolbar-tools | |
span=val |
FROM dockerfile/nginx |
#include <amxmodx> | |
#include <amxmisc> | |
#define PLUGIN "Vote for Boss" | |
#define VERSION "1.1.0" | |
#define AUTHOR "R3X" | |
#define BOSS_LIMIT_DURATION 2 * 60 * 60 | |
new giBossLimitTime = 0; |
@echo off | |
SET TARGET_PATH=C:\Program Files (x86)\Git\bin\ | |
call "%TARGET_PATH%%~n0" %* |