cpp17

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 2,383 public repositories matching this topic...
Required skills: Python
Difficulty: Easy
openage currently stores information about a game edition or expansion inside an Enum
, e.g. media paths, support status, etc. We should store this information in an auxiliary file instead, similar to #1312. That would make updating and correcting game information easier as we no longer have to replace chunks of code.
The recommended appro
-
Updated
Oct 29, 2020 - C++
多实例(主要是v2ray多实例)需求,主要是两个场景,且难以用其它方式替代。请拨冗考虑,未来是否可以增加此特性。
场景1、代理链式转发
在 #742 中关于代理链式转发的讨论,使用proxySettings代理出站流量的方向是对的,但在实操中,结合机场的订阅,需要将机场的信息编辑到复杂路由的json配置中,当切换线路时非常的麻烦。
我现在的做法,是机场的代理提供一个本地socks5服务,比如端口为10801,v2ray中配置一个socks协议的outbound,作为vmess的proxySetting。整个链路大致是这样的:
浏览器 ->
# 代理
socks://127.0.0.1:1080 -> vmess outbound (proxySetting on socks)-> socks outbound ->
#
-
Updated
Jun 11, 2020 - C++
-
Updated
Nov 1, 2020 - C++
PR NVIDIA/cub#218 fixes this CUB's radix sort. We should:
- Check whether Thrust's other backends handle this case correctly.
- Provide a guarantee of this in the stable_sort documentation.
- Add regression tests to enforce this on all backends.
-
Updated
Nov 1, 2020 - C++
-
Updated
Oct 28, 2020 - C++
-
Updated
Oct 21, 2020 - C++
-
Updated
Nov 1, 2020 - C++
-
Updated
Oct 22, 2020 - C++
-
Updated
Oct 31, 2020 - C++
-
Updated
Jan 6, 2020 - C++
-
Updated
Oct 12, 2020 - C++
-
Updated
Nov 1, 2020 - C++
-
Updated
Oct 15, 2020 - C++
-
Updated
Oct 17, 2020 - C++
-
Updated
May 3, 2019
-
Updated
Nov 1, 2020
-
Updated
Aug 28, 2020 - C++
-
Updated
Oct 20, 2020 - C++
-
Updated
Oct 27, 2020 - C++
-
Updated
Sep 19, 2020 - C++
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