
Dev_Tools
文章平均质量分 89
debugger, git, common IDEs etc.
EverNoob
simply bumping around
展开
-
Introduction to Perl
=>原创 2023-04-18 21:26:46 · 510 阅读 · 0 评论 -
Python: Function Annotation and “inspect“ module
https://peps.python.org/pep-3107/This PEP introduces a syntax for adding arbitrary metadata annotations to Python functions [1].Because Python’s 2.x series lacks a standard way of annotating a function’s parameters and return values, a variety of tools and转载 2022-09-14 18:48:53 · 215 阅读 · 0 评论 -
Python Multi-level Import with ‘.‘
【代码】Python Multi-level Import。转载 2022-09-14 13:54:36 · 153 阅读 · 0 评论 -
Linux: find file by content
【代码】Linux: find file by content。转载 2022-09-08 10:43:41 · 269 阅读 · 0 评论 -
VPC: Virtual Private Cloud
OverviewFrom Wikipedia, the free encyclopediaVirtual private cloud (VPC)is an on-demand configurable pool ofshared resourcesallocated within apubliccloudenvironment, providing a certain level of isolation between the different organizations (de...转载 2022-04-12 09:47:40 · 247 阅读 · 0 评论 -
TensorFlow .pb: Save and Display Models
What is the use of a *.pb file in TensorFlow and how does it work? - Stack OverflowBasicspbstands for protobuf. In TensorFlow, the protbuf file contains the graph definition as well as the weights of the model. Thus, apbfile is all you need to be a...原创 2022-03-25 10:55:49 · 2205 阅读 · 0 评论 -
Python Environment Variable Access
How to Set and Get Environment Variables in PythonTo set and get environment variables in Python you can just use theosmodule:import os# Set environment variablesos.environ['API_USER'] = 'username'os.environ['API_PASSWORD'] = 'secret'# Get env..转载 2022-02-14 19:12:58 · 178 阅读 · 0 评论 -
Windows cmd Common Commands
System Variablesset: show all environment variables:Windows: List Environment Variables - CMD & PowerShell - ShellHackssetx: set system variablessetx | Microsoft Docspath: no args --> pwd or set user/system path variables (path原创 2022-02-14 14:10:24 · 210 阅读 · 0 评论 -
CMake Tutorial with OpenCV Example
Official Documentation Source:CMake Tutorial — CMake 3.23.0-rc1 DocumentationIntro. and Installationsource:CMakeCMake is an open-source, cross-platform family of tools designed to build, test and package software. CMake is used to control the sof.原创 2022-02-10 20:28:42 · 1485 阅读 · 0 评论 -
Git Checkout Local and Remote
fromGit Checkout | Atlassian Git TutorialGit CheckoutThis page is an examination of thegit checkoutcommand. It will cover usage examples and edge cases. In Git terms, a "checkout" is the act of switching between different versions of a target entity...转载 2021-12-29 11:04:51 · 692 阅读 · 0 评论 -
NCHW vs. NHWC
the format names describe the storage scheme exactly, NCHW is consecutive in image (HW) then channel, while NHWC is consecutive is point-expansion (C) then image.example:“TensorFlow performance and advance topics”explanation:gpu - How much faster .原创 2021-11-29 11:06:51 · 404 阅读 · 0 评论 -
TOML and Python
TOMLofficial site:TOML: Tom's Obvious Minimal Languageofficial site for language packages:Home · toml-lang/toml Wiki · GitHubIntro.:https://en.wikipedia.org/wiki/TOMLTOMLis afile formatforconfiguration files. It is intended to be easy to r...原创 2021-11-25 18:30:04 · 814 阅读 · 0 评论 -
Git: Basic Workflow and Commands
Entry-Level Tutorialfrom: Learn the Basics of Git in Under 10 Minutesmore comprehensive:Basic Git Commands With Examples "git add . or git add -A" [Git Cheat Sheet]Start A Depofrom: Git - Getting a Git Repositorykey:(build from local file) i.原创 2021-11-25 16:25:48 · 272 阅读 · 0 评论 -
GDB (MinGW) 常用项合集(合并转)
1. fromhttps://blog.youkuaiyun.com/praker/article/details/35340155MinGW与gdb调试MinGW(Minamalist GNU For Windows)是个精简的C/C++编译器,它实际上是将经典的开源C语言编译器GCC移植到了Windows下,并且包含了Win32API,因此可以将源代码编译生成Windows下的可执行程序。一句话来概括,MinGW是GCC的Windows版本MinGW是开源软件,可以免费使用MinG...转载 2021-03-12 12:21:08 · 402 阅读 · 0 评论