This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by OpenJDK configure openjdk, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ /cygdrive/c/openjdkbuildatmp2/jdk15u/configure --enable-option-checking=fatal | |
## --------- ## | |
## Platform. ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.16; | |
//second revision: enhanced SafeMath, added dedicated burn address, refactored event emits | |
//4th revision: hard reviewed code, fixed 1 bug | |
//5th revision: added token unlocking period | |
//7th revision: modified DEFI settings | |
//8th revision: fixed multiple DeFi-related bugs, and two instances where I forgot to use SafeMath | |
//Also, added SafeSend, my very own transaction failure and reentrancy protection system | |
//9 and 10th revision: changed SafeSend behavior - added insufficient balance protection | |
//11th revision: changed SafeSend behavior - weakened insufficient balance protection | |
//12th revision: upgraded EUBIDEFI and added ERC-223 forward compatibility |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ********************************************************** | |
* Copyright (c) 2014-2018 Google, Inc. All rights reserved. | |
* Copyright (c) 2003-2008 VMware, Inc. All rights reserved. | |
* **********************************************************/ | |
/* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are met: | |
* | |
* * Redistributions of source code must retain the above copyright notice, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.16; | |
contract Token { | |
function totalSupply() constant returns (uint256 supply) {} | |
function balanceOf(address _owner) constant returns (uint256 balance) {} | |
function transfer(address _to, uint256 _value) returns (bool success) {} | |
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.16; | |
contract Token { | |
/// @return total amount of tokens | |
function totalSupply() constant returns (uint256 supply) {} | |
/// @param _owner The address from which the balance will be retrieved | |
/// @return The balance | |
function balanceOf(address _owner) constant returns (uint256 balance) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Reflection; | |
using System.IO; | |
using IKVM.Internal; | |
using java.lang; | |
using java.util.zip; | |
using java.io; | |
using jessielesbian.IKVM; | |
using Console = System.Console; | |
using File = java.io.File; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IKVM.NET | |
Do you have a Java library and want to use it in c#? | |
Do you need a Java to EXE converter? | |
Well, there are very few open source options for things of this sort and IKVM.NET one of those options. | |
IKVM.NET is the best known open source Java to EXE converter and Java/Microsoft.NET interop tool. | |
https://github.com/jessielesbian/ikvm |
NewerOlder