valnet.lurker.dev
- DB: valnet
- User: valnetworker
- Pass: v@1n3t
| #!/bin/bash | |
| ### prerequisites | |
| sudo yum groupinstall "Development Tools" -y | |
| # git --version | |
| # gcc --version | |
| # bash --version | |
| # python --version # (system) | |
| sudo yum install @development zlib-devel bzip2 bzip2-devel readline-devel sqlite \ | |
| sqlite-devel openssl-devel xz xz-devel libffi-devel findutils -y | |
| sudo yum update -y |
When a new customer would like to join our network with their existing number, we must do a Portin Request. The Portin Request is not the same thing as an activation. An activation is still required after doing a Portin Request. All that a Portin Request does is clear a number for use on the AT&T network.
To follow along with these instructions, please log in to your staff account at test.phone.community/admin
These steps are NOT for port-in. Port-ins must be done separately.
In order to activate a device on our network for the first time, you will need the following things:
| // ==UserScript== | |
| // @name Second Page Automation | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description This script fills out the form based on what you enter below. It also checks for typos. | |
| // @author nicknack | |
| // @match *.blsspainvisa.com/*appointment.php | |
| // @grant none | |
| // ==/UserScript== |
| public static async Task<List<TTwo>> JoinEntities<TOne, TTwo>(string foreignKey, Query query, int maxResults = 250) | |
| where TOne : IEntityModel, new() where TTwo: IEntityModel, new() | |
| { | |
| ... | |
| } |
| pragma solidity 0.4.21; | |
| contract Token { | |
| event Transfer(address indexed _from, address indexed _to, uint256 _value); | |
| event Approval(address indexed _owner, address indexed _spender, uint256 _value); | |
| function totalSupply() public constant returns (uint256 supply); | |
| function balanceOf(address _owner) public constant returns (uint256 balance); |
Programmatic strategy games could be a very interesting medium for tinkering with smart contracts. We can use solidity to implement the building blocks of a basic strategy game. In my implementation, these cities are fueled by state-subsidized labor and a drug called Soma.
Something profound. Aldous Huxley
f(utopia) where f(utopia) = SOMETHING.sellSoma(), levyTaxes(), importSoma(), and subsidizeWork().f(utopia) in some way.f(happiness) = soma/cash + cash - soma| Web3 = require('web3'); | |
| web3 = new Web3(new Web3.providers.HttpProvider()); | |
| var addr = process.argv[2]; | |
| console.log("addr: " + addr + "\n"); | |
| console.log("Addr is valid? " + web3.isAddress(addr)); | |
| var message_location = process.argv[3]; | |
| console.log("message_location: " + message_location + "\n"); | |
| web3.eth.defaultAccount = web3.eth.accounts[0] |