Models.net.cn

The Website of Steve, mainly sharing SRE, DEVOPS, DEVSECOPS, PHP, Java, Python, Go, cross-border e-commerce, security, reading and other technical articles

Models.net.cn

今天周末,天气有些冷。今天主要是在家看书,背单词。
今天本来准备找店在外面吃饭,只是,现在上海的大商城,还是比较冷淡,看到以前去的商场,好几家小卖部的关门,和有几家早早的关门。
从而显得商城的冷清,后面我去找了家兰州拉面,去吃个面,却让我有些不惑的点,就是那儿座的人却比较多?几乎都是满员的状态?
这是否就是现在的差异和实践的环境情况呢? 这个还是需要多些观察,让自己可以更好的知道真实的环境,是很重要的,千万不要别引导了。

Use Javascript disabled the right click and f12 Develop

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>My page</title>
<!-- Bootstrap core CSS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">

<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<style>
html, body
{
width:100%;
height:100%;
}
</style>
</head>
<body oncontextmenu="self.event.returnValue = false">
<!-- Page Content -->
<div class="container-fuid">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="mt-5">Bootstrap 5 start page</h1>
<p class="lead">Start by dragging components to page or double click to edit text</p>
</div>
</div>
</div>
</body>
<script>
//disabled the page when use right click to view source
document.οncοntextmenu=function(){return false;};
document.onselectstart=function(){return false;};
let h = window.innerHeight;
let w = window.innerWidth;

//disabled the right click
document.oncontextmenu = function () { return false; };

// disabled the user use f12 and shift+ctrl+i use develop tool
window.onkeydown = window.onkeyup = window.onkeypress = function () {
window.event.returnValue = false;
return false;
}

// disabled the javascript debug tool F12
document.onkeydown = function () {
if (window.event && window.event.keyCode == 123) {
event.keyCode = 0;
event.returnValue = false;
return false;
}
};

//check the page width and height,when the page height and width have change,will close the page
window.onresize = function () {
if (h != window.innerHeight || w != window.innerWidth) {
window.close();
window.location = "about:blank";
}
}
</script>
</html>

今天又到星期天了,只是今天上海这边是下雨,我们全家人都没有出去,待在了家中度过,并且儿子还感冒了,现在也不检查是否又流感什么的?
只是最近上海周边又不少的小孩,给感冒难受。
这个时候,就特别需要他的妈妈的照顾和安慰了。今天看到他哭了两次,并且今天还提交了前面漏掉的作业。也蛮好的。
今天我去图书馆了,计划是去图书馆,把论文写上一部分,只是看到这些内容,就开始不知道怎么去敲打出适合的文字。

就在图书馆找了一本看起来还不错的书籍,看了起来。今天又有一些收获。

0%