GPTs are GPTs
GPTs are GPTsA recent paper written by OpenAI which evaluate the impact of Large Language Models (LLM). I read this paper carefully and would like to share some interesting findings. https://arxiv.org/pdf/2303.10130v1.pdf ReadPaper Notes: https://readpaper.com/pdf-annotate/note?pdfId=4735742443702468609¬eId=1704418301541740032SummaryGenerative Pre-trained Transformers (GPTs) as General-Purpose Technologies General-purpose technologies (GPTs) are technologies that can affect an entire econo...
GPTs are GPTs
GPTs are GPTsA recent paper written by OpenAI which evaluate the impact of Large Language Models (LLM). I read this paper carefully and would like to share some interesting findings. https://arxiv.org/pdf/2303.10130v1.pdf ReadPaper Notes: https://readpaper.com/pdf-annotate/note?pdfId=4735742443702468609¬eId=1704418301541740032SummaryGenerative Pre-trained Transformers (GPTs) as General-Purpose Technologies General-purpose technologies (GPTs) are technologies that can affect an entire econo...
Solidity: Transfer Ether Safely Today
Solidity: Transfer Ether Safely TodayFrom https://solidity-by-example.org/sending-ether/3 ways to send Ether:2 ways to receive Ether: A contract receiving Ether must have at least one of the functions belowreceive() external payablefallback() external payablereceive() is called if msg.data is empty, otherwise fallback() is called.// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract ReceiveEther { /* Which function is called, fallback() or receive()? send Ether | msg.data is empty...
Solidity: Transfer Ether Safely Today
Solidity: Transfer Ether Safely TodayFrom https://solidity-by-example.org/sending-ether/3 ways to send Ether:2 ways to receive Ether: A contract receiving Ether must have at least one of the functions belowreceive() external payablefallback() external payablereceive() is called if msg.data is empty, otherwise fallback() is called.// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract ReceiveEther { /* Which function is called, fallback() or receive()? send Ether | msg.data is empty...