Git Product home page Git Product logo

yunho0130 / awesome-blockchain-kor Goto Github PK

View Code? Open in Web Editor NEW
295.0 38.0 67.0 33.42 MB

<블록체인의 정석 The Art of Blockchain>, <하이퍼레저 블록체인 개발 Hands-On Blockchain with Hyperledger> 소스코드 및 참고자료 저장소

Home Page: http://www.yes24.com/Product/Goods/69279313

JavaScript 31.77% Makefile 0.01% Python 41.88% Shell 0.30% Go 0.64% PHP 23.61% Batchfile 0.01% HTML 0.06% Dockerfile 0.01% Solidity 1.58% C# 0.07% PowerShell 0.04% Ruby 0.04%
blockchain solidity smart-contracts ico token hyperledger erc20 erc20-tokens

awesome-blockchain-kor's Issues

ICO project whitepaper (Korean Ver)

현재는 일부의 백서만 업로드 되어 있습니다. 추가적인 번역본이나 한글 원본 자료가 있으면 업데이트 바랍니다.

Please provide proper attribution for this work

https://stackoverflow.blog/2009/06/25/attribution-required/

https://stackoverflow.com/questions/9183178/can-php-curl-retrieve-response-headers-and-body-in-a-single-request/41135574#41135574

// this function is called by curl for each header received
curl_setopt ($this->curl, CURLOPT_HEADERFUNCTION,
function ($curl, $header) use (&$response_headers) {
$length = strlen ($header);
$header = explode (':', $header, 2);
if (count ($header) < 2) // ignore invalid headers
return $length;
$name = strtolower (trim ($header[0]));
if (!array_key_exists ($name, $response_headers))
$response_headers[$name] = [trim ($header[1])];
else
$response_headers[$name][] = trim ($header[1]);
return $length;
}
);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.