View attack.sol
pragma solidity ^0.4.17; | |
contract BasicMultiOwnerVault { | |
address[] public authorizedUsers; | |
address public owner; | |
address public withdrawObserver; | |
// 破解要用的新的contract地址 | |
address public additionalAuthorizedContract; | |
// 用来更新additionalAuthorizedContract的中间变量 | |
address public proposedAAA; |
View simple_test.sol
pragma solidity ^0.4.17; | |
contract BasicMultiOwnerVault { | |
address[] public authorizedUsers; | |
address public owner; | |
address public withdrawObserver; | |
// 破解要用的新的contract地址 | |
address public additionalAuthorizedContract; | |
// 用来更新additionalAuthorizedContract的中间变量 | |
address public proposedAAA; |
View Test.sol
pragma solidity ^0.4.17; | |
contract BasicMultiOwnerVault { | |
address[] public authorizedUsers; | |
address public owner; | |
address public withdrawObserver; | |
// 破解要用的新的contract地址 | |
address public additionalAuthorizedContract; | |
// 用来更新additionalAuthorizedContract的中间变量 | |
address public proposedAAA; |
View temp.js
{ | |
test: /\.(scss|css)$/, | |
use: ExtractTextPlugin.extract({ | |
fallback: 'style-loader', | |
use: [{ | |
loader: 'css-loader', | |
}, { | |
loader: 'postcss-loader', | |
options: { | |
plugins() { |
View test.js
// phantomjs --remote-debugger-port=9000 --remote-debugger-autorun=true test.js urlPath | |
/* | |
* screenshot will be created in the cwd. | |
*/ | |
var page = new WebPage(); | |
var system = require('system'); | |
var url = 'http://localhost:8080/#/tests/' + system.args[1]; | |
function takeScreenshot() { |
View Empty.file
empty |
View heroku_log_with_express.txt
2017-05-08T19:03:30.965505+00:00 app[api]: Initial release by user bjankord@gmail.com | |
2017-05-08T19:03:30.965505+00:00 app[api]: Release v1 created by user bjankord@gmail.com | |
2017-05-08T19:03:31.132869+00:00 app[api]: Enable Logplex by user bjankord@gmail.com | |
2017-05-08T19:03:31.132869+00:00 app[api]: Release v2 created by user bjankord@gmail.com | |
2017-05-08T19:03:33.472991+00:00 app[api]: Release v3 created by user bjankord@gmail.com | |
2017-05-08T19:03:33.472991+00:00 app[api]: Set NODE_ENV, NPM_CONFIG_PRODUCTION, NODE_MODULES_CACHE config vars by user bjankord@gmail.com | |
2017-05-08T19:03:34.000000+00:00 app[api]: Build started by user bjankord@gmail.com | |
2017-05-08T19:06:44.934039+00:00 app[api]: Deploy bcc0784 by user bjankord@gmail.com | |
2017-05-08T19:06:44.952435+00:00 app[api]: Scaled to web@1:Free by user bjankord@gmail.com | |
2017-05-08T19:06:44.934039+00:00 app[api]: Release v4 created by user bjankord@gmail.com |
View heroku_log.txt
This file has been truncated, but you can view the full file.
2017-05-07T23:15:16.865308+00:00 heroku[web.1]: Process running mem=630M(123.1%) | |
2017-05-07T23:15:16.865486+00:00 heroku[web.1]: Error R14 (Memory quota exceeded) | |
2017-05-07T23:15:37.697874+00:00 heroku[web.1]: Process running mem=630M(123.1%) | |
2017-05-07T23:15:37.698000+00:00 heroku[web.1]: Error R14 (Memory quota exceeded) | |
2017-05-07T23:15:58.830420+00:00 heroku[web.1]: Process running mem=630M(123.1%) | |
2017-05-07T23:15:58.830529+00:00 heroku[web.1]: Error R14 (Memory quota exceeded) | |
2017-05-07T23:16:19.926742+00:00 heroku[web.1]: Process running mem=630M(123.1%) | |
2017-05-07T23:16:19.926858+00:00 heroku[web.1]: Error R14 (Memory quota exceeded) | |
2017-05-07T23:16:40.808969+00:00 heroku[web.1]: Process running mem=630M(123.1%) |
View ImmutableI18n.jsx
import React from 'react'; | |
import { FormattedMessage } from 'react-intl'; | |
import { I18nProvider, i18nLoader } from '../../lib/I18n'; | |
const { Map } = require('immutable'); | |
class Base extends React.Component { | |
constructor(props) { | |
super(props); |
View Grid_2.jsx
import React, { PropTypes } from 'react'; | |
import GridRow from '../src/GridRow'; | |
import GridColumn from '../src/GridColumn'; | |
import '../src/grid.scss'; | |
const propTypes = { | |
children: PropTypes.node.isRequired, | |
}; |
NewerOlder