This test rule is now in the 'test-rules' support repository. Use that one!
https://developer.android.com/reference/android/support/test/rule/ActivityTestRule.html
| //r = require('rethinkdb') | |
| var MongoClient = require('mongodb').MongoClient, | |
| format = require('util').format; | |
| var querystring = require('querystring'); | |
| var https = require('https'); | |
| var Inserter = function (collection) { | |
| this.collection = collection; |
| export ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="robbyrussell" | |
| # Uncomment the following line to use case-sensitive completion. | |
| # CASE_SENSITIVE="true" |
This test rule is now in the 'test-rules' support repository. Use that one!
https://developer.android.com/reference/android/support/test/rule/ActivityTestRule.html
| /* | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2015 ARNAUD FRUGIER | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is |
| @RunWith(Parameterized::class) | |
| class KotlinTest(val paramOne: Int, val paramTwo: String) { | |
| companion object { | |
| @JvmStatic | |
| @Parameterized.Parameters | |
| fun data() : Collection<Array<Any>> { | |
| return listOf( | |
| arrayOf(1, "I"), // First test: (paramOne = 1, paramTwo = "I") | |
| arrayOf(1999, "MCMXCIX") // Second test: (paramOne = 1999, paramTwo = "MCMXCIX") |
It's important to note that running this reset will drop any existing data you have in the application
heroku restartheroku pg:reset DATABASE (no need to change the DATABASE)heroku run rake db:migrateheroku run rake db:seed (if you have seed)One liner
| 0-mail.com | |
| 007addict.com | |
| 020.co.uk | |
| 027168.com | |
| 0815.ru | |
| 0815.su | |
| 0clickemail.com | |
| 0sg.net | |
| 0wnd.net | |
| 0wnd.org |
| axios.interceptors.response.use(function (response) { | |
| return response; | |
| }, function (error) { | |
| const originalRequest = error.config; | |
| if (error.response.status === 401 && !originalRequest._retry) { | |
| originalRequest._retry = true; |