-
Updated
Apr 7, 2021 - Java
C++

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 33,362 public repositories matching this topic...
-
Updated
Mar 30, 2021
-
Updated
Apr 10, 2021 - JavaScript
-
Updated
Apr 10, 2021 - C++
-
Updated
Apr 10, 2021
-
Updated
Feb 12, 2021 - C++
-
Updated
Apr 2, 2021 - C++
-
Updated
Apr 5, 2021 - C++
-
Updated
Apr 10, 2021 - CMake
-
Updated
Apr 9, 2021 - HTML
-
Updated
Apr 9, 2021 - Java
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
-
Updated
Jan 27, 2021 - C++
Required skills: Cython
Difficulty: Medium
Animation frames from AoE2 graphics files are packed into a texture atlas by the openage converter. We use bin packing to find the optimal arrangement (= smallest atlas dimensions) of the frames in the atlas. Bin packing becomes computationally intensive if a lot of frames are packed (look
标准符合 XTLS/Xray-core#91 的分享链接,导入时alpn似乎不生效。包括分享链接也是,没有alpn的部分
After ethereum/solidity#10737 we should be able to replace nearly all non-range-based for loops by range-based loops using appropriate ranges.
-
Updated
Apr 10, 2021 - Java
We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:
constexpr money32 operator"" _GBP(long double money)
{
return money * 10;
}
static_assert(MONEY(2, 40) == 2.40_GBP);
Go through the codebase and replace all MONEY macro uses with the equivalent version. You m
As #2229 points out, we are currently missing the WebAsm target compiler for clang in C.
The great thing is that it's mostly identical to its C++ counterpart, so doing it should be a breeze!
The current C++ Clang WebAsm compilers can be found in etc/config/c++.amazon.properties
https://github.com/compiler-explorer/compiler-explorer/blob/8b3064afdc74a45121d88e02843f4b640f582f81/etc/config/
-
Updated
Mar 30, 2021 - TeX
-
Updated
Apr 8, 2021 - Shell
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
This Pull Request is for HacktoberFest 2020
Description of Change
Checklist