I hereby claim:
- I am hugo-dc on github.
- I am hugo_dc (https://keybase.io/hugo_dc) on keybase.
- I have a public key ASBn7MHl-WLMUwI_gwYYZb1CjwaWKjjbXlaB6kIFyM4zsAo
To claim this, I am signing this object:
[test](develop)$ ETHEREUM_TEST_PATH=/Users/hugo/workspace/EWASM/GasUsage/tests ./testeth -t GeneralStateTests/stEWASMTests -- --filltests --vm hera --singlenet "Byzantium" | |
Running 1 test case... | |
Test Case "stEWASMTests": | |
Executing... | |
$callDelegate 3e8 0 0 14 2 | |
Executing... | |
getAddress 20 | |
storageStore 0 20 | |
Out of gas :( | |
DEBUG printMemHex(0x36:0x20): 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 |
I hereby claim:
To claim this, I am signing this object:
This guide is intended to provide resources for those wanting to help test Metropolis EIPs. The CPP team is currently in the middle of a migration from EthDocs to a documentation site that is more dedicated to CPP-Ethereum so the documentation on creating tests for Ethereum using testeth is scattered. Everything you will need to get started should be compiled below.
def cons(x, y): | |
return lambda f: f(x, y) | |
def car(x): | |
# Fill out this function | |
pass | |
if car(cons(1, 5)) == 1: | |
print 'Solved!' | |
else: |
import Graphics.Win32.Window | |
import Graphics.Win32.GDI.Bitmap | |
import Graphics.Win32.GDI.HDC | |
import Graphics.Win32.GDI.Graphics2D | |
main = do desktop <- getDesktopWindow -- Grab the Hwnd of the desktop, GetDC 0, GetDC NULL etc all work too | |
hdc <- getWindowDC (Just desktop) -- Get the dc handle of the desktop | |
(x,y,r,b) <- getWindowRect desktop -- Find the size of the desktop so we can know which size the destination bitmap should be | |
-- (left, top, right, bottom) | |
newDC <- createCompatibleDC (Just hdc) -- Create a new DC to hold the copied image. It should be compatible with the source DC |
REPORT ZBROWSER . | |
call method cl_gui_frontend_services=>execute | |
exporting | |
document = 'http://hugo-dc.com' | |
exceptions | |
others = 1. |
git submodule add http://github.com/tpope/vim-fugitive.git bundle/fugitive | |
-------------------------------------------------------------------------- | |
git submodule init | |
git submodule update |
ls -la | awk ' {print $6,$7,$9; }' | sed "1,4d" |
import smtplib | |
SERVER = 'server.com' | |
FROM = '[email protected]' | |
TO = ['test.server.com'] | |
SUBJECT = 'New Subject' | |
TEXT = 'This is the text' |