In Swift Language Tutorial for Beginner 2 - Data Type, we learned about Swift’s data type, and this time we’ll take a look at the control statements in Swift.
Swift Language Tutorial for Beginner 2 - Data Type
In Swift Language Tutorial for Beginner 1 - Variable and Constant, we learned about Swift’s built-in data types, and this time we’ll take a look at the basic data types in Swift.
Swift Language Tutorial for Beginner 1 - Variable and Constant
This series is a quick tutorial for those who have programming experience in other languages, and it is best to have the basics of Java or C/C++ before browsing this series. Based on this, this series will mainly compare the similarities and differences between Swift and other languages to improve the efficiency of learning. Nor does this series attempt to cover all the details of the Swift language in its entirety, leaving it to the reader to study the Swift official language manual。 As an first article, this article begins with an introduction to the methods of defining variables and constants in Swift
Enable the GC log of the jvm runtime (continuous update)
When experiencing performance issues with the Java runtime, looking at gc logs is often the first thing we can do. However, the settings of different versions of Java will be slightly different.
Git Find the remote repository address
When you forget that the library you are currently working on is cloned to whick remote repository, you can use the command:
1 | git remote -v |
to view/find the address of the remote repository.
You need to run the above command in your local working directory
Resolves an issue where Git accesses a remote self-signed repository - SSL certificate problem
Many companies use Git to build private repositories within their companies, and in order to improve the security of data transmission, they use Https to provide services, and for various reasons, they use self-signed methods on the server side. This will result in an error when accessed from the client: “SSL certificate problem: self singed certificate”, resulting in the operation not being completed.
Set Kubernetes to pull image from Docker Registry
This article demonstrates publishing an image using the Docker Registry in a development or test environment and configuring K8s to use that image repository.
Deploy Spring Boot App into Docker Container
This article demonstrates how to deploy a Spring Boot app into Docker Container.
Deploy a Spring Boot Application into minikube with Command
This article simply demonstrates how to deploy a springboot application to minikube with kubectl command.
Use APScheduler in Flask to implement scheduled tasks
Scheduling scheduled tasks is a common feature in background applications. The APScheduler framework is a framework commonly used in Python to manage and schedule scheduled tasks. The framework is powerful and supports multiple scheduling methods. This article demonstrates how to integrate APSchedule in a Flask web application.