Python Introductory Built-in Module - Serialization Module (json Module, pickle Module)

Python Introductory Built-in Module - Serialization Module (json Module, pickle Module) 1. Serialization There are three kinds of serialization modules in Python: json module: A data transformation format followed by different languages is a special string used by different languages. (For example, a list of Python [1, 2, 3] converts json into ...

Posted by brooky on Wed, 11 Sep 2019 09:41:42 +0200

Encrypt files with Python, unbreakable!

In life, sometimes we need to encrypt some important files. Python provides easy-to-use encryption libraries such as hashlib and base64. * * But for everyday learning, we can use XOR operation to implement a simple file encryption program, thus stren ...

Posted by whizzkid-000 on Tue, 10 Sep 2019 11:15:12 +0200

Netty 4.x Chinese tutorial series Hello World

Links to the original text: https://my.oschina.net/u/1781072/blog/542608 1. Download and add Netty framework to the project 1.Netty's packages can be accessed from Netty's official ...

Posted by erikwebb on Sun, 08 Sep 2019 16:57:55 +0200

[Chapter 8] Python File Operation

Introduction of methods The Python open() method is used to open a file and return the file object. This function is needed to process the file. If the file cannot be opened, OSError will be thrown. Note: When using the open() method, you must ensure that the file object is closed, that is, the close() method is called. Grammatical Format ...

Posted by downfall on Sat, 07 Sep 2019 06:39:42 +0200

ASP.NET Core on K8S Deep Learning Secret & Configmap

​ Secret 1.1 About Secret Some sensitive information such as database username and password is needed in the application startup process. If it is not safe to store directly in the container image, K8S provides the scheme of Secret. Secret stores data in ciphertext, avoiding storing sensitive information directly in configuration files. Secret ...

Posted by sneskid on Fri, 06 Sep 2019 10:37:16 +0200

Activiti guide (deployment process definition)

Deployment process definition We are now ready to add additional BPM logic to the Activiti engine. To do this, as the name of our OnboardingRequest Java class shows, we will use a simple induction process. In this example, we will enter the data, and then, if the number of years of experience exceeds 3, we will publish the task of personalizing ...

Posted by gidiag on Thu, 05 Sep 2019 08:22:18 +0200

python first day foundation foundation foundation

You're trying to pretend that you're deceiving only yourself.Variables and types In programming, variables are a carrier of data. Several Data Types · Integers (int): Any size of integers can be processed in python. · Floating point typ ...

Posted by stonecold on Tue, 03 Sep 2019 14:43:17 +0200

Django uses csv, HttpResponse, Streaming HttpResponse to export

First: Preface In django, how to download csv files of website data to users? We have learned httpResponse before and used it together. Case 1 - Small File Export 1. Case descriptionWe provide the information in the database directly to the client to download. Add database model and insert data; New view, using HttpResponse, csv module to ret ...

Posted by dennisflash on Sun, 01 Sep 2019 17:09:19 +0200

Summary of uploading and receiving egg files

There are two methods for egg to get uploaded files. One is to read files directly, and the other is to stream files. file reading mode Let's first look at how file is read, which needs to be configured in config // config.defult.js config.multipart = { mode: 'file' }; Control Layer Code const fs = require('fs') const path = require('pat ...

Posted by korngold on Fri, 30 Aug 2019 10:03:19 +0200

MotionLayout: Dynamic toolbar

Regular readers of Styling Android may have guessed what I like about animation.MotionLayout provides an amazing range of animations and can be used to create some very interesting ones.We've seen it before on Styling Android how to implement a Collapsing Toolbar But instead of just mimicking existing behavior that can be implemented using othe ...

Posted by CapEsiouS on Wed, 28 Aug 2019 18:06:55 +0200