پنل تحت وب مدیریت V2ray و ساخت کاربر و مدیریت سرور
mkdir x-ui && cd x-ui
docker run -itd --network=host \
-v $PWD/db/:/etc/x-ui/ \
-v $PWD/cert/:/root/cert/ \
| # Put contents of $BUILDROOT/output/images onto Debian SD in /home/debian | |
| # Run from /home/debian | |
| cat<<__EOF__ | sudo sfdisk -f /dev/mmcblk1 | |
| label: gpt | |
| label-id: 8180153F-48CF-4520-BB44-AF0F881C8679 | |
| device: /dev/sdc | |
| unit: sectors | |
| first-lba: 34 | |
| /dev/mmcblk1p1 : start= 34, size= 412, type=0FC63DAF-8483-4772-8E79-3D69D8477DE4, uuid=7AB96C94-9AAA-4736-A97F-4950BC078562, name="fsbl1" |
| #define _CRT_SECURE_NO_WARNINGS | |
| #include "Font.h" | |
| #include <tuple> | |
| using std::vector; | |
| using std::tuple; | |
| using std::get; | |
| void DrawPixel(i32 x, i32 y, u8 r, u8 g, u8 b); |
| import 'dart:async'; | |
| import 'dart:math' as math; | |
| import 'package:flutter/gestures.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/services.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { |
| package com; | |
| import android.app.Notification; | |
| import android.app.NotificationChannel; | |
| import android.app.NotificationManager; | |
| import android.app.PendingIntent; | |
| import android.app.Service; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.pm.ServiceInfo; |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_map/plugin_api.dart'; | |
| import 'package:latlong/latlong.dart'; | |
| const kMarker = "https://www.sccpre.cat/png/big/16/164026_map-marker-png.png"; | |
| class MapScreen extends StatefulWidget { | |
| MapScreen({Key key}) : super(key: key); | |
| _MapScreenState createState() => _MapScreenState(); |
| msys2 vs msys vs msysgit | |
| MinGW doesn't provide a linux-like environment, that is MSYS(2) and/or Cygwin | |
| Cygwin is an attempt to create a complete UNIX/POSIX environment on Windows. | |
| MinGW is a C/C++ compiler suite which allows you to create Windows executables - you only | |
| need the normal MSVC runtimes, which are part of any normal Microsoft Windows installation. | |
| MinGW provides headers and libraries so that GCC (a compiler suite, | |
| not just a "unix/linux compiler") can be built and used against the Windows C runtime. |
Yes. THE EIGEN Library.
It is the library lures engineers first by its name then its capability in matrix manipulation that we've only seen in good expensive almighty slow MATLAB, specifically in C++.
Yes, from my experience so far, Eigen Library is AWESOME. It gives the users a giant freedom AND efficiency in matrix operations in a way I wouldn't even be able to even think about to implement alone.
| from __future__ import print_function | |
| import numpy as np | |
| import cv2 | |
| import time | |
| np.set_printoptions(formatter={'float': '{: 0.3f}'.format}) | |
| def triangulate_nviews(P, ip): | |
| """ |