O roteador Askey RTF3507VW-N1 fornecido pela Vivo tem vários problemas:
- Existe um cache interno de DNS (usando o
dnsmasq?) bugado: ao fazer a mesma requisição DNS duas vezes seguidas, a primeira resposta vem correta, porém na seguinte temos:
O roteador Askey RTF3507VW-N1 fornecido pela Vivo tem vários problemas:
dnsmasq?) bugado:
ao fazer a mesma requisição DNS duas vezes seguidas, a primeira resposta
vem correta, porém na seguinte temos:
| # This is a skeleton for testing models including examples of validations, callbacks, | |
| # scopes, instance & class methods, associations, and more. | |
| # Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
| # | |
| # I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
| # so if you have any, please share! | |
| # | |
| # This skeleton also assumes you're using the following gems: | |
| # | |
| # rspec-rails: https://github.com/rspec/rspec-rails |
| // Set up the UIRefreshControl. | |
| self.refreshControl = [[UIRefreshControl alloc] init]; | |
| [self.refreshControl addTarget:self | |
| action:@selector(refreshInvoked:forState:) | |
| forControlEvents:UIControlEventValueChanged]; | |
| // Create a UITableViewController so we can use a UIRefreshControl. | |
| UITableViewController *tvc = [[UITableViewController alloc] initWithStyle:self.tableView.style]; | |
| tvc.tableView = self.tableView; | |
| tvc.refreshControl = self.refreshControl; |
| # xcode-build-bump.sh | |
| # @desc Auto-increment the build number every time the project is run. | |
| # @usage | |
| # 1. Select: your Target in Xcode | |
| # 2. Select: Build Phases Tab | |
| # 3. Select: Add Build Phase -> Add Run Script | |
| # 4. Paste code below in to new "Run Script" section | |
| # 5. Drag the "Run Script" below "Link Binaries With Libraries" | |
| # 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0) |