git learning notes

1, Git basic introduction 1. Git structure 2. Local and remote Libraries 2.1 intra team collaboration The difference between pull and clone: Clone a version library as like as two peas from the remote server to the local version, which is copied from the entire version library, called clone. (clone is a copy of the library to your loc ...

Posted by Rushy on Fri, 22 Oct 2021 05:14:08 -0700

Docker installs Gogs and git services

Technical Party: Su Xuefeng Mirror installation gihub address: https://github.com/gogs/gogs gogs official website: Gogs: A painless self-hosted Git service How to install gogs for gihub official docker: https://github.com/gogs/gogs/tree/master/docker Pull gogs image: #from Docker Hub Extract images from. $ docker pull gogs/gogs # ...

Posted by nickihandy on Wed, 20 Oct 2021 19:26:49 -0700

Introduction to git use

Gitee Project Management Introduction to git Important Master of Basic Use of git Operational gitee mastery of remote warehouses Mastering with git in IDE(vscode webstrom idea) Introduction to git: Git is currently the most advanced distributed version control system in the world (none), open source, free of charge. Role: Can quickly m ...

Posted by NTM on Wed, 20 Oct 2021 09:53:07 -0700

ndnSIM learning - install ndnSIM stepping pit: a solution to git inaccessibility (connection timeout) when cloning ndnSIM

preface Today, I installed the network simulation software ndnSIM. I used Ubuntu 20.04. The installed version is ndnSIM 2.8. Tell me all the pits I've stepped on. Follow the official tutorial https://ndnsim.net/current/getting-started.html , the installation code of Ubuntu 20.04 should be sudo apt install build-essential libsqlite3-dev l ...

Posted by Bizzle on Fri, 01 Oct 2021 16:57:25 -0700

Jenkins+Docker+github+Vue Automated Deployment

1, Introduction 1,Jenkins Jenkins is an independent open source software project. It is a continuous integration tool developed based on Java. It is used to monitor continuous and repeated work. It aims to provide an open and easy-to-use software platform to make continuous integration of software possible. Formerly Hudson, it is an extensible ...

Posted by Cynthia on Tue, 21 Sep 2021 13:50:35 -0700

Rasterio's Github page

https://github.com/mapbox/rasterio Rasterio Rasterio reads and writes geospatial raster data. Rasterio reads and writes geospatial grid data. Geographic information systems use GeoTIFF and other formats to organize and store gridded, or raster, datasets. Rasterio reads and writes these formats and provides a Python API based on N-D arra ...

Posted by djddb on Sat, 11 Sep 2021 17:26:23 -0700

References in Java and JNI (strong, soft, weak, virtual)

1. Strong References (Objects) Features: Strong references provide direct access to the target object. Will not be recycled. Two, soft reference (SoftReference class) Features: When GC reclaims based on JVM memory, JVM reclaims when it finds it is out of memory Conditions for freeing up space: JVM found insufficient m ...

Posted by alireza on Sun, 19 Jul 2020 08:34:35 -0700

Beego Learning Notes 6: Paging Implementation

Implement Paging 1> Business logic for paging implementation 1->N data are displayed on each page. For the total number of data records M, the number of pages M%N==0?M/N:M/N+1; 2->Page Rendering Paging html Part 3>Switch pages, input parameters, background processing, and retrieve new eligible data 4>Paging method, js paging, and ...

Posted by irishred8575 on Sun, 19 Jul 2020 07:40:52 -0700

Implementation of any angle rotation of imageView in iOS

In practical development, we may encounter this situation: the picture needs to be rotated at an angle.For this purpose, we may use the transform ation of the UIView to rotate, but doing so only rotates the view that hosts the imageView at an angle, and the imageView does not rotate.All this is not good. If you need to rotate the imageView at a ...

Posted by postmanager on Sat, 04 Jul 2020 07:32:03 -0700

Pytoch deep learning practical course: today, do you classify garbage?

This article is about GitHub https://github.com/Jack-Cherish/PythonPark Has included, there are technical dry goods articles, collated learning materials, interview experience sharing of first-line large factories, etc., welcome to Star and improve. 1, Waste classification Do you remember the gar ...

Posted by Michael 01 on Mon, 29 Jun 2020 19:46:17 -0700