Skip to content

Instantly share code, notes, and snippets.

View JachinShen's full-sized avatar

JachinShen JachinShen

  • Shanghai JiaoTong University
View GitHub Profile
@JachinShen
JachinShen / ppt-before-after-side-by-side.svg
Created July 1, 2026 05:56
ISSUE-001 before vs after PPT HTML side-by-side comparison
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JachinShen
JachinShen / report-main-eval-key-comparison.svg
Created July 1, 2026 04:40
ISSUE-001 key comparison crop from final evaluation report
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JachinShen
JachinShen / ppt-after-full.svg
Created July 1, 2026 04:15
ISSUE-001 PR full screenshots: PPT before/after and evaluation reports
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JachinShen
JachinShen / after-candidate-v4-c01.svg
Created July 1, 2026 04:05
ISSUE-001 PR review screenshots as embeddable SVG wrappers
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JachinShen
JachinShen / DAO.sol
Created April 6, 2019 12:50
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.1+commit.c8a2cb62.js&optimize=false&gist=
pragma solidity ^0.5.7;
contract simpleDAO {
event PaymentCalled(address payee, uint amount);
event TokensBought(address buyer, uint amount);
event TokensTransfered(address from, address to, uint amount);
event InsufficientFunds(uint bal, uint amount);
mapping (address => uint) public balances;
@JachinShen
JachinShen / DAO.sol
Created March 25, 2019 08:01
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.1+commit.c8a2cb62.js&optimize=false&gist=
pragma solidity ^0.5.1;
contract simpleDAO {
event PaymentCalled(address payee, uint amount);
event TokensBought(address buyer, uint amount);
event TokensTransfered(address from, address to, uint amount);
event InsufficientFunds(uint bal, uint amount);
mapping (address => uint) public balances;
@JachinShen
JachinShen / DAO.sol
Created March 25, 2019 08:00
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.1+commit.c8a2cb62.js&optimize=false&gist=
pragma solidity ^0.5.1;
contract simpleDAO {
event PaymentCalled(address payee, uint amount);
event TokensBought(address buyer, uint amount);
event TokensTransfered(address from, address to, uint amount);
event InsufficientFunds(uint bal, uint amount);
mapping (address => uint) public balances;