پنل تحت وب مدیریت V2ray و ساخت کاربر و مدیریت سرور
mkdir x-ui && cd x-ui
docker run -itd --network=host \
-v $PWD/db/:/etc/x-ui/ \
-v $PWD/cert/:/root/cert/ \
Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.
Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.
The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.
// Package main is a sample macOS-app-bundling program to demonstrate how to | |
// automate the process described in this tutorial: | |
// | |
// https://medium.com/@mattholt/packaging-a-go-application-for-macos-f7084b00f6b5 | |
// | |
// Bundling the .app is the first thing it does, and creating the DMG is the | |
// second. Making the DMG is optional, and is only done if you provide | |
// the template DMG file, which you have to create beforehand. | |
// | |
// Example use: |
Diff tool: C:\Program Files (x86)\WinMerge\WinMergeU.exe | |
Arguments: "$LOCAL" "$REMOTE" -dl "Local" -dr "Remote" | |
Merge tool: C:\Program Files (x86)\WinMerge\WinMergeU.exe | |
Arguments: "$MERGED" |
var predicate = PredicateBuilder.True<Person>(); | |
if (filderOptions.FirstName != null) | |
predicate = predicate.AndAlso(p=>p.FirstName == "Alex"); | |
if (filderOptions.SomeNullable.HasValue) | |
predicate = predicate.AndAlso(p=>p.SomeProp == filterOptions.SomeNullable.Value); | |
var where = queryable.Where(predicate); | |
// will create an expresion which looks like this: p => true && p.FirstName == "Alex" && p.SomeProp == filterOptions.SomeNullable.Value) |