c - operation 5: tank battle (unfinished)

c - operation 5: tank battle (unfinished) General view & bullshit area Code (all) FormMain.cs Program.cs Bullet.cs Tank.cs Extant bug General view & bullshit area Why don't you finish it? Explain to yourself. It's not because you're lazy. It's not because you don't have time... Reason ...

Posted by dougp23 on Sun, 12 Jan 2020 06:18:04 -0800

As a Java programmer, do you really know the inside story of the springboot dynamic data source?

Java programmers who have been working for many years seem to use very few multiple data sources, especially in the current situation of microservices being so hot, it is normal for different businesses to access a database, and Java access to data sources is not as simple as PHP and other scripting languages, but in special business situatio ...

Posted by john-iom on Sun, 12 Jan 2020 05:28:16 -0800

Permission management under Linux

Permission management under Linux Permission management under Linux 1. How to view and read permission information [1]ls ls -l file Enter the specified directory ls -d dir View catalog itself ls -a dir All files contain hidden ls -S dir View and sort by size ls -s dir View file size T ...

Posted by rwcurry on Sat, 11 Jan 2020 23:27:14 -0800

Proficient in office365 Exchange online articles

Proficient in Office 365 Cloud Computing Management Exchange Online Chapter 1 Beginning with Office 365 1.1 Domain Name Management Registering Century Interconnected Office 365 will result in an initial Office 365 domain name: XXX.partner.onmschina.cn Administrator login office 365 portal: left "navigation bar" -- "installation& ...

Posted by jburbage on Sat, 11 Jan 2020 15:17:32 -0800

vue and mintui loadmore combine to realize pull-down refresh and pull-up load

Mintui is a mobile component library developed for vue by mintui team, which is convenient to realize some functions of mobile terminal. Here, only Loadmore function is used to realize the pull-up paging refresh and pull-down loading of data on the mobile terminal without any code. <template> <div class="main-body" ...

Posted by igor berger on Sat, 11 Jan 2020 07:21:36 -0800

Java servlet request forward and redirect

Forward request: The implementation method is: request.getRequestDispatcher("forwarding path"). forward(request,response); The forwarding path must be in the same web application Forwarded source code: request.getRequestDispatcher("/test.jsp").forward(request, response); //perhaps request.getR ...

Posted by Aliz on Sat, 11 Jan 2020 02:45:19 -0800

HTML form read only SELECT tag / input

According to the HTML specification, the select tag in HTML has no readonly attribute, only the disabled attribute. Therefore, if you want to prevent users from changing the drop-down menu, you must use disabled. The only problem is that disabled HTML form input is not included in POST / GET data. What is the best way to simulate the rea ...

Posted by Asinox on Sat, 11 Jan 2020 01:18:08 -0800

Annotation analysis notes such as JPA one-to-one mapping@OneToOne

I've uploaded a two-way, one-to-one instance to GitHub, the entrance project, and downloaded and run if you're interested, here are two running problems. Question 1: I left a question at the end of my last blog post.One-to-one Association query comment @OneToOne instance details Problem point: At the en ...

Posted by dsjoes on Fri, 10 Jan 2020 18:19:32 -0800

Angular2.x/Typescript module introduced parsing

First, modules are introduced in two ways:1. Relative import: import Entry from "./components/Entry"; import { DefaultHeaders } from "../constants/http"; import "/mod"; Relative import resolves relative to the file it was imported into and cannot be resolved to an external module declaration. You should use relative import for your own modules ...

Posted by Crowly on Thu, 09 Jan 2020 11:46:06 -0800

Jquery form validation plug-in validate

Write before: When doing some adding functions, the form verification before submission is essential. The jquery validate plug-in is OK, which is enough for basic requirements. Record the basic usage here. Let's write a simple demo <html> <head> <meta name="viewport" content="width=device-width" /> <title>Jque ...

Posted by jcd on Thu, 09 Jan 2020 08:01:17 -0800