protocol, here open ssl on
Ssl_certificate /etc/nginx/ssl/www.lancel0t.cn.crt;
Ssl_certificate_key /etc/nginx/ssl/www.lancel0t.cn.key;
Ssl_session_cache shared: SSL: 1m;
Ssl_session_timeout 5m;
Ssl_protocols SSLv2 SSLv3 TLSv1.2;
Ssl_ciphers HIGH:!aNULL:!MD5;
Ssl_prefer_server_ciphers on;
#Load configuration files for the default server block.
Include /etc/nginx/default.d/*.conf;
Finally, we restart Nginx, enter our website address: https://www.lancel0t.cn/, see can be norm
the algorithm is.Algorithm is, a kind of idea, according to this idea to write out of code.And this code can complete the problem we want to solve, the popular saying is to run, can get the results we want.This code can be very elegant, like the above mentioned Bresenham Ah, quick sort, bubble sort,can also be very simple, very beggar, we usually write code, although what if else switch, but this is also a problem-solving ideas, and this idea is the algorithm of the program!I suddenly realized
(recently over 6 months of payroll bank running water);
Proof of work;
Letter of attorney for personal credit.
The information you ultimately want to provide is based on your application, and you can contact customer 10100000-8 to learn more.
Q3. Why has my application been dismissed?
It may be the following:
-The material you submitted does not meet the requirements of the Bank;
-Insufficient bank comprehensive score, temporarily unable to ap
."
4, if you are browsing IE Web pages, that is, in the WIN8 system IE, expand the Computer Configuration-Administrative Templates-Windows Components-Internet Explorer-security features, and then in the right pane, find the "Do not show the ' Show Password ' button."
5, after the above settings, you open a password input interface to see, you can see that the eye-like password display button.
The above is about WIN8 system how to turn off the password display button to
Need to apply for personal certification, we need to log on to their own micro-blog account, perhaps some people can not find the Micro-blog certification of the entrance, the following small series to tell you that this micro-blog certification entrance on the bottom of the microblog, click "Application for Certification."
Click "Apply for Certification", if meet all the application requirements, users can click "Apply immediately."
C
Date: 2018.7.30MondayBlog period: 004The fourth issue of the blog I would like to think about Java and its similarities and differences with C + +! Say the difference first! Java is supposed to be more object-oriented, and its Java package class can refer to all class p in the entire file by declaring the Java package file with import, whereas C + + and C (hereafter referred to as cc++) use the #includeThey are one by one corresponding relationships! After all, it takes a long time for you to
-zh_cn.tar.gzConfiguration databaseLog on to the MySQL server with the root userMysql-uroot-pCreate MySQL Database "wordpress" for WordPressCREATE DATABASE WordPress;Create a new user for the created MySQL database "[email protected]CREATE USER [email protected];and set the password "Wordpresspassword" for this userSET PASSWORD for [email Protected]=password ("Wordpresspassword");Full access to the database "WordPress" is opened for the created user.GRANT all privileges the wordpress.* to [e-mai
yourself must do well. It is not the computer that decides everything, but the man.On the issue of efficiency, C has been criticized, in fact, you can completely C + build your own language to solve. I designed a simple language myself last year to quickly translate descriptive code into object-oriented C.Who says C can't object-oriented? Said C can not object-oriented people, in fact, they do not understand the object-oriented. Seems to have learned C + +, understand, in fact, just to facilita
Today is writing a Dfs topic, thought to give a two-dimensional array to initialize the appropriate function and learned the memset, this function is very magical memset function is byte-by-bit and it is a string function, see the online code does not read the following#define MAX 100000constint5int LEN[MAXN][MAXN]; memset (Len,max, sizeof(len));// failure, and cannot let Len array all the values are 100000, but -1600085856memset (len,-1, sizeof(len))// success, and Len all values are -1;mems
previewItmyline: User name, blog: project nameTip: 404 error. Wait 10 minutes.PS: Wait a long 10 minutes, refresh the page the main page of our blob is displayed.( If you always show 404, check if you have verified the mailbox, if not, go to your account to verify )But the content and style of this homepage are not what we want, how to break. We can upload our own projects.The following is an example of a simple bootstrap site template ...Iii. Clone (clone) code, modifyClone the code under any
the advent of the C language. ANSI C has developed much more than the original standard C.Kr revised their classic "The C Programming Language" in 1988 and re-wrote the book in accordance with the ANSI C standard.In 1987, ANSI C announced the new standard--87 ANSI C. The current popular C-compiler system is based on it.In 1980, Bjarne Stroustrup to learn from Simula's ideas for work, adding the concept of class to C, called C with Classes. He also gained the efficiency of C and the convenience
) When multiple users access servelt at the same time, an object is not enough, it is necessary to use multithreading.The solution to these two problems is that Servelt will be called the first time when the object is created, so it is very clever to solve the above problems.XML Overview:Today's databases are two-dimensional tables that hold data, and XML is stored in a tree-shaped structure, and XML is shared, so that XML can be used as a lightweight database. A medium that implements two diffe
processed by 1.php for high security--Text input boxUser name: Maxlength= "6" limit input character lengthReadonly= "ReadOnly" To set the input box to read-only (cannot be edited)disabled= "Disabled" input box is activeName= the name of the "username" input BoxValue= "XXXX" to pass the input box contents to the processing file--Password entry boxPassword: All the properties of the text input box are valid for the Password entry box--Radio boxYou can achieve a single-selection effect only if you
How to add snowflake code and special effects to your website/page? Some websites with their own theme templates add snowflakes falling effect pretty good. Especially with the winter season related themes, a lot of blog space has been added to the effect of snowflakes. In the online search for several snowflake effect, made a simple change, here to share the next. Add the code to your page and you're ready to go.1, beautiful romantic snowflakes falling jquery special effects code. Demo page: htt
After the holiday due to the PHE in the teaching activities, so to now come home soon, learning Java time is relatively short, but for Java, personal feeling and last semester study C very much like, especially for the assignment of this point, my understanding should be more profound, Java is also composed of some framework , but the process of loading Java is more complicated than I thought, after some tossing or loading.Now the progress is still re
==N2) + "\ T" + "N1Exercise 4: (3) write a program that uses two nested for loops and the remainder operator (%) to detect and print a prime number (an integer that can be divisible only by itself and 1 and not by other numbers). public static void Main (string[] args) {test (33);} public static Boolean test (int num) {for (int i=2;iExercise 5: (4) Repeat Exercise 10 in chapter 3rd, instead of using the integer.tobinarystring () method, use the ternary and bitwise operators to display the
Exercise 3: (1) Create a class with a default constructor (that is, a parameterless constructor) to print a message in the constructor. Create an object for this class. P116public class Test{public Test () {System.out.println ("Hello Word");} public static void Main (string[] args) {new Test ();} /** * Run result Hello Word */}Exercise 4: (1) Add an overloaded constructor to the class in the previous exercise so that it accepts a character parameter and prints your own information and accepted p
;//boolean b2=s1Fourth. Exercise 1: (1) write a program that prints values from 1 to 100public static void Main (string[] args) {test (100);} public static void Test (int num) {int i=0;while (iExercise 2: (2) write a program that generates 25 random numbers of type int, and for each random number, use the If-else statement to classify it as greater than, less than, or equal to a randomly generated value immediately following it.public static void Main (string[] args) {test ();} public static voi
m_des = 0 m_iindex = 0 def __init__ (self, numsrc, Numdes, IIndex): Threading. Thread.__init__ (self) self.m_src = numsrc Self.m_des = Numdes Self.m_iindex = IIndex def run ( Self): While self.m_src Results I am Thread 0--num--0I am thread 1--num--3I am thread 2--num--6I am thread 0--num--0I am thread 1--num--3I AM Thread 2--num--6I am thread 0--num--0I am thread 1--num--3I am thread 2--num--6I am thread 0--num--0I am Thread 1--num--3I am thread 2--num--6I am thread 0--num--0I am thread 1--
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.