-
Updated
Dec 10, 2020 - Java
{{ message }}
C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Curated list of project-based tutorials
LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。)
An open-source x64/x32 debugger for windows.
A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny things. Inspired by awesome-... stuff.
OpenPose: Real-time multi-person keypoint detection library for body, face, hands, and foot estimation
A static analyzer for Java, C, C++, and Objective-C
C++ Library Manager for Windows, Linux, and MacOS
Tink is a multi-language, cross-platform, open source library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse.
Required skills: Python
Difficulty: Medium
In AoE2's .dat format most associations and assignments of properties are done by IDs (e.g. unit has ability with ID X). The openage converter uses these IDs to lookup the associated openage API property and then map the values from AoE2's .dat structure to the corresponding API object's member values. In short, every property from AoE2
A brief computer graphics / rendering course
This Pull Request is for HacktoberFest 2020
In my mind one of the key things (besides visualization) Sourcetrail provides is a useful graph structure for source code that can be used for various types of analysis, without having to go through the pain of writing a clang analyzer yourself. However, since sourcetrail doesn't have plugins (#1076), writing your own analysis tools is a bit of work, and may not let you use other kinds of graph an
ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files.
The ScanDirectory method of FileScanner allocates pointers with new and returns raw pointers. It should use unique_ptr instead.
Note: Wait for #13444 resolution before working on this.
We already have a specialized checked exponentiation when the base is a literal and exponent can only be known at compile time.
Implement the case where exponent is a literal and base is only known at compile time. Vyper already has this: vyperlang/vyper#2072
Bartosz Milewski's 'Category Theory for Programmers' unofficial PDF and LaTeX source
Is your feature request related to a problem? Please describe.
No.
Describe the solution you'd like
I'd like the source code to be automatically clang-formatted according to my settings anytime the code is compiled. That is, don't require me to use the contextual menu or keyboard shortcut to format the code. Just auto-format it; just like the code is auto-compiled too.
Well, ther
浏览器 ->
# 代理
socks://127.0.0.1:1080 -> vmess outbound (proxySetting on socks)-> socks outbound ->
#
AI Code Completions
Vcpkg is a C++ dependency management system that makes installation and consumption as a dependency very easy. We should support this for VW to allow consuming the lib as easy as possible.
Instructions for creating a new package can be found here: https://github.com/microsoft/vcpkg/blob/master/docs/examples/packaging-github-repos.md
The doc is great! Hoewever some areas are still missing.
C++11 intoduced raw string literals: https://en.cppreference.com/w/cpp/language/string_literal
It is useful in many different areas, like strings with quotes, multiline strings and for example windows paths without escaping backslashes:
The same cppreference link als