-
Updated
Dec 10, 2020 - Java
C++

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 30,565 public repositories matching this topic...
-
Updated
Dec 18, 2020
-
Updated
Dec 29, 2020 - JavaScript
-
Updated
Dec 29, 2020 - C++
-
Updated
Dec 29, 2020
-
Updated
Dec 28, 2020 - C++
-
Updated
Dec 16, 2020 - C++
-
Updated
Dec 29, 2020 - OCaml
-
Updated
Dec 29, 2020 - C++
-
Updated
Dec 29, 2020 - C++
-
Updated
Dec 27, 2020 - Java
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
-
Updated
Aug 25, 2020 - C++
Create N-bonacci.cpp
This Pull Request is for HacktoberFest 2020
Description of Change
Checklist
- Added description
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
Dec 29, 2020 - Java
If A
is a constant that divides 2**256
(so basically of the form 2**N
), then the two expressions should be the same. mod(mul(X, Y), A)
costs 10 and mulmod(X, Y, A)
costs 8
(excluding the shorter deploy code.)
Fix Volume Icon
-
Updated
Dec 19, 2020 - TeX
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
多实例(主要是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
Dec 16, 2020 - 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
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