Here

Linux常用命令总结

孤人 提交于 2021-02-20 04:53:53
一、cd命令(changeDirectory) 1. 命令语法:cd [目录名] -- 说明:切换当前目录至dirName 2. 进入主要目录:cd / 3. 进入"家"目录:cd ~ 4. 进入上一次工作路径:cd - 5. 把上个命令的参数作为cd参数使用:cd !$ 二、pwd命令 -- 查看当前工作目录路径 1. 查看当前路径:pwd 2. 查看软链接的实际路径:pwd -P 三、ls命令(list) 1. ls 命令不仅可以查看linux文件夹包含的文件,而且可以查看文件权限(包括目录、文件夹、文件权限)查看目录信息等等 2. 常用参数搭配: ① ls -a 列出目录所有文件,包含以.开始的隐藏文件 ② ls -A 列出除.及..的其它文件 ③ ls -r 反序排列 ④ ls -t 以文件修改时间排序 ⑤ ls -S 以文件大小排序 ⑥ ls -h 以易读大小显示 ⑦ ls -l 除了文件名之外,还将文件的权限、所有者、文件大小等信息详细列出来 3. 例: ① 按易读方式按时间反序排序,并显示文件详细信息: ls -lhrt ② 按大小反序显示文件详细信息: ls -lrS ③ 列出当前目录中所有以“t”开头的目录的详细内容: ls -l t* ④ 列出文件绝对路径(不包含隐藏文件): ls | sed "s:^:`pwd`/:" ⑤ 列出文件绝对路径(包含隐藏文件):

如何在react中处理onKeyPress事件

孤人 提交于 2021-02-18 15:55:10
参考: https://stackoverflow.com/questions/27827234/how-to-handle-the-onkeypress-event-in-reactjs 以前过时的做法:使用keyCode var Test = React.createClass({ add: function(event){ if(event.keyCode == 13){ alert('Adding....'); } }, render: function(){ return( <div> <input type="text" id="one" onKeyPress={this.add} /> </div> ); } }); React.render(<Test />, document.body); 现在建议的做法:使用语义化的key handleKeyPress = (event) => { if(event.key === 'Enter'){ console.log('enter press here! ') } } render: function(){ return( <div> <input type="text" id="one" onKeyPress={this.handleKeyPress} /> </div> ); } 来源: oschina 链接:

Dynkin Diagrams and How they work

戏子无情 提交于 2021-02-18 01:16:49
Download Here is the document DynkinDiag(20200401).pdf Dynkin diagram, root system is a big mystery of my undergraduate life. Here I present three examples tha place they work. Warning Since my main interest is not algebraic geometry, maybe there is something wrong or unacceptable, please inform me if you have good reference. This proof and concepts are collected from Shafarevich. Contents 1. Definitions 1.1 Integral Quadratic Forms 1.2 Abstract Root systems 1.3 Dynkin Diagrams Exercises: Relative Concepts 1.4 Basis determine root system 1.5 More about Weyl groups 1.6 Classification of Dynkin

Java笔试题

痴心易碎 提交于 2021-02-17 22:52:31
精选30道Java笔试题解答 都是一些非常非常基础的题,是我最近参加各大IT公司笔试后靠记忆记下来的,经过整理献给与我一样参加各大IT校园招聘的同学们,纯考Java基础功底,老手们就不用进来了,免得笑话我们这些未出校门的孩纸们,但是IT公司就喜欢考这些基础的东西,所以为了能进大公司就~~~当复习期末考吧。花了不少时间整理,在整理过程中也学到了很多东西,请大家认真对待每一题~~~ 下面都是我自己的答案非官方,仅供参考,如果有疑问或错误请一定要提出来,大家一起进步啦~~~ 1. 下面哪些是Thread类的方法() A start() B run() C exit() D getPriority() 答案:ABD 解析:看Java API docs吧:http://docs.oracle.com/javase/7/docs/api/,exit()是System类的方法,如System.exit(0)。 2. 下面关于java.lang.Exception类的说法正确的是() A 继承自Throwable B Serialable CD 不记得,反正不正确 答案:A 解析:Java异常的基类为java.lang.Throwable,java.lang.Error和java.lang.Exception继承 Throwable

ZUK Z2 AospExtended-v6.7 Android 9.0可用的谷歌相机Mod.md

妖精的绣舞 提交于 2021-02-17 04:22:24
[TOC] 参考资料 Google Camera Port: Arnova8G2 apks Google Camera Mods & Other Cameras - Sup… | Lenovo ZUK Z2 (Plus) Downloads Recommended Version for 8.x - oreo GoogleCamera-Pixel2Mod-Arnova8G2-V6.apk or, MGCB_7.0H_C2API_v.4.0_AllinOne_Full_Manual.apk Recommended Version for 7.1.2 - Nougat Note: Use only in those Nougat roms with APi2 support with this config Click Here GCam_5.1.018_by_SerJo87_1.6RC2_test3.apk 系统版本: AospExtended-v6.7-z2_plus-20190821-1940-OFFICIAL.zip Android版本=9.0 cstark27 ×PXv4.1.1_GoogleCamera_7.2.014.apk 信息: Camera PX(com.google.android.GoogleCameraPX4)v7.2.014.278150624

Chapter 7 Resources in Plug-In(1)

耗尽温柔 提交于 2021-02-17 03:47:22
Activity and resource are like twin brothers. And so if the activity need to be solve in Plug-In completely, you will have to face how to use the resource in it. In this chapter, we start with loading mechanism of the resource, and further discusses the Plug-In of resources through the addAssetPath method of AssetManager. Finally, we implement a skinning technique based on this solution. 7.1 How to load resources in Android 7.1.1 Kinds of resources The resource files in Android fall into two categories. One is under ‘res’ folder which can be compiled. During the compile process, ‘R.java’ file

python 内置函数总结(大部分)

不羁的心 提交于 2021-02-16 12:05:07
python 内置函数大讲堂 python全栈开发,内置函数 1. 内置函数 python的内置函数截止到python版本3.6.2,现在python一共为我们提供了68个内置函数。它们就是python提供给你直接可以拿来使用的所有函数。那今天我们就一起来认识一下python的内置函数。 上面就是内置函数的表,68个函数都在这儿了。这个表的顺序是按照首字母的排列顺序来的,你会发现都混乱的堆在一起。比如,oct和bin和hex都是做进制换算的,但是却被写在了三个地方。。。这样非常不利于大家归纳和学习。那我把这些函数分成了6大类。你看下面这张图: 上图中,标红的四大块有56个方法。今天先学习这些。 1-1. 作用域相关的函数 enter description here 基于字典的形式获取局部变量和全局变量 globals()——获取全局变量的字典 locals()——获取执行本方法所在命名空间内的局部变量的字典 Output: {' name ': ' main ', ' doc ': None, ' package ': None, ' loader ': <_frozen_importlib_external.SourceFileLoader object at 0x00F6EE30>, ' spec ': None, ' annotations ': {}, '

Tracing Memory access of an oracle process : Intel PinTools

感情迁移 提交于 2021-02-16 08:46:39
https://mahmoudhatem.wordpress.com/2016/11/07/tracing-memory-access-of-an-oracle-process-intel-pintools/ November 7, 2016 Mahmoud Hatem troubleshoting This blog post is motivated by a conversation with Frits Hoogland on his great blog post The curious case of the missing semctl call about how he managed to find a useful memory address (suspecting a fixed SGA variable) used by a process in his investigation.So here i will show how we can easily generates a trace of all/range of memory addresses referenced by a program with an acceptable overhead. For that we are going to use a Binary

Searching the Web UVA

筅森魡賤 提交于 2021-02-15 17:12:08
  The word “search engine” may not be strange to you. Generally speaking, a search engine searches the web pages available in the Internet, extracts and organizes the information and responds to users’ queries with the most relevant pages. World famous search engines, like GOOGLE, have become very important tools for us to use when we visit the web. Such conversations are now common in our daily life: “What does the word like ∗ ∗ ∗ ∗ ∗∗ mean?” “Um. . . I am not sure, just google it.”   In this problem, you are required to construct a small search engine. Sounds impossible, does it? Don’t worry

Django组件——cookie与session

风格不统一 提交于 2021-02-15 12:14:01
一、会话跟踪技术 1、什么是会话跟踪技术   可以把会话理解为客户端与服务器之间的一次会晤,在一次会晤中可能会包含多次请求和响应。   在JavaWeb中,客户向某一服务器发出第一个请求开始,会话就开始了,直到客户关闭了浏览器会话结束。   在一个会话的多个请求中共享数据,这就是会话跟踪技术。例如在一个会话中的请求如下: 请求银行主页; 请求登录(请求参数是用户名和密码); 请求转账(请求参数与转账相关的数据); 请求信誉卡还款(请求参数与还款相关的数据)。   在这会话中 当前用户信息必须在这个会话中共享 的,因为登录的是张三,那么在转账和还款时一定是相对张三的转账和还款!这就说明我们必须在一个会话过程中有共享数据的能力。 2、会话路径技术使用Cookie或session完成    HTTP协议是无状态协议 ,也就是说每个请求都是独立的!无法记录前一次请求的状态。但HTTP协议中可以使用Cookie来完成会话跟踪!在Web开发中, 使用session来完成会话跟踪 , session底层依赖Cookie技术 。 二、Cookie 1、Cookie概述 (1)什么是Cookie?   Cookie翻译成中文是小甜点,小饼干的意思。在HTTP中它表示服务器送给客户端浏览器的小甜点。其实Cookie是key-value结构,类似于一个python中的字典。