Skip to content
Showing 1-10 of 10 items.
@renovate
Admin 09/11/2021 21:30
Solidity journey path 1: Basic Syntax, Types, Variables, Operators

Đây là bài viết đầu tiên trong series Solidity Jouney Path của mình, bài viết này mình sẽ giới thiệu những vấn đề cơ bản nhất về Solidity. Basic Syntax Một file solidity có thể chứa những code định nghĩa về hợp đồng (contract), import và pragma, ví dụ một đoạn code solidity đơn giản: pragma solidity >=0.4.0 <0.8.0; contract SimpleContract { string name; function set(string newName) public { name = newName; ...

Solidity
@renovate
Admin 08/10/2021 14:10
ASP.NET Core 6 - React 17 on Visual Studio 2022 with AI IntelliSense

Development environment: Visual Studio 2022 Preview, .NET 6 , React 17. Create project Press F5 to run debug, result Write first custom middleware, with the presence of AI for Intelli Sense, AI suggesion works as I expected. Write CustomLogger.cs namespace ReactNET6 { public class CustomLogger { private readonly RequestDelegate _next; public CustomLogger(RequestDelegate next) { _next = next ?? throw new ArgumentNullException("next"); ...

React ASP.NET Core