想练健身一直有这个想法,因为身体和健康。但是实际去健身房办完卡之后完全和想像的不一样,套路太多。。。
先给个忠告:现在健身这个行业水很深,套路很多。说的不好听就是骗到一个算一个,意志力不强的他们会把你榨干。。。
PS:你买课了他们弟弟、姐姐叫的亲,教练一不干了,直接把你微信删了,你和他们只是金钱关系!!!
想练健身一直有这个想法,因为身体和健康。但是实际去健身房办完卡之后完全和想像的不一样,套路太多。。。
先给个忠告:现在健身这个行业水很深,套路很多。说的不好听就是骗到一个算一个,意志力不强的他们会把你榨干。。。
PS:你买课了他们弟弟、姐姐叫的亲,教练一不干了,直接把你微信删了,你和他们只是金钱关系!!!
oracle计算hash值
1、dbms_utility.get_hash_value(
name VARCHAR2,
base NUMBER,
hash_size NUMBER
)
函数说明
name:输入值
base:返回hash value的起始值(hash bucket最小值)
hash_size:返回hash表的期望大小(hash bucket最大值)
这个函数用于计算并返回落在给定范围内的hash值
2、ora_hash(
expr VARCHAR2,
max_bucket NUMBER,
seed_value NUMBER
)
函数说明
expr:输入值
max_bucket:函数返回的最大值(范围是0到4294967295)
seed_value:随机数(默认为0),可以对同一个输入值返回不同的结果
这个函数用于计算带随机数的hash值
3、例子
1)ora_hash和dbms_utility.get_hash_value返回值不同
select ora_hash(‘CHL20190710T25180748988’, 99999) as “hash1”, dbms_utility.get_hash_value(‘CHL20190710T25180748988’, 0, 99999) as “hash2” from dual;
hash1 hash2
78481 15674
2)seed_value不同,ora_hash返回值也不同
select ora_hash(‘CHL20190710T25180748988’, 99999, 0) from dual;
结果:78481
select ora_hash(‘CHL20190710T25180748988’, 99999, 1) from dual;
结果:57583
select ora_hash(‘CHL20190710T25180748988’, 99999, 2) from dual;
结果:97214
参考资料:
https://docs.oracle.com/cd/E11882_01/server.112/e41084/functions124.htm#SQLRF06313
https://docs.oracle.com/cd/E11882_01/appdev.112/e40758/d_util.htm#ARPLS73195
https://blog.csdn.net/zutsoft/article/details/44203027
去年看到一张图
【比特币完美复制经典泡沫价格曲线】没有经历过郁金香,南海,科网股等超级泡沫的人,在今天终于有幸能见到一生或许才遇一次的超级泡沫,好好感受一下吧(一切都要感谢过去10年孜孜不倦不断放水的央行,才让我们有幸在这个时代再次见证)

1、增大页面宽
登录后台——外观——编辑,修改style.css,搜索page-content
看到写死的最大宽度是474px,“max-width: 474px;” ,修改为700px。但是由于只改了page-content的宽度会造成标题、评论、推荐文章的错位,所以还要搜索474px,全部改成700px
2、修改标题栏颜色
搜索site-header,找到“ background-color: #000; ”,改成适合的颜色,比如灰色#808080
3、主题居中显示
TwentyFourteen主题默认是左对齐,同样修改style.css,找到“* 1.0 Reset”,将“ margin: 0 ”改为“margin: auto”
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
border: 0;
font-family: inherit;
font-size: 100%;
font-style: inherit;
font-weight: inherit;
/*margin: 0;*/
margin: auto;
outline: 0;
padding: 0;
vertical-align: baseline;
}
1、上传软件包
/home/jdk-8u172-linux-x64.tar.gz
/home/apache-activemq-5.15.8-bin.tar.gz
2、解压
tar -zxvf jdk-8u172-linux-x64.tar.gz -C /opt
tar -zxvf apache-activemq-5.15.8-bin.tar.gz -C /opt
3、设置JDK
vim /etc/profile
加入:
JAVA_HOME=/opt/jdk1.8.0_172
JRE_HOME=/opt/jdk1.8.0_172/jre
PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin
export JAVA_HOME JRE_HOME PATH CLASSPATH
使设置生效:
source /etc/profile
java -version
4、启动activemq
cd /opt/apache-activemq-5.15.8/bin
./activemq start
5、添加端口
firewall-cmd –zone=public –add-port=8161/tcp –permanent
firewall-cmd –zone=public –add-port=61616/tcp –permanent
加载配置
firewall-cmd –reload
查看端口
firewall-cmd –list-ports
6、访问管理页面
http://服务器IP地址:8161/admin/
Login: admin
Passwort: admin
CPI – 物价上涨价格
PPI – 工业原材料出厂价格
GDP – 国内生产总值
M2 – 货币供应量
2017年底的M2是25年前的100倍,房价按6万除以100,再乘以2(开发商利润),就是1200块钱
M1
高端制造,高端服务
http://www.ximalaya.com/16154992/sound/70016850/
pmap命令用于查看进程的内存映像信息,查看进程加载了哪些模块。
Usage:
pmap [options] PID [PID ...]
Options:
-x, --extended show details
-X show even more details
WARNING: format changes according to /proc/PID/smaps
-XX show everything the kernel provides
-c, --read-rc read the default rc
-C, --read-rc-from= read the rc from file
-n, --create-rc create new default rc
-N, --create-rc-to= create new rc to file
NOTE: pid arguments are not allowed with -n, -N
-d, --device show the device format
-q, --quiet do not display header and footer
-p, --show-path show path in the mapping
-A, --range=[,] limit results to the given range
-h, --help display this help and exit
-V, --version output version information and exit
字段说明:
Address : start address ofmap 映像起始地址
Kbytes : size of map in kilobytes 映像大小
RSS : resident set size inkilobytes 驻留集大小
Dirty : dirty pages (both sharedand private) in kilobytes 脏页大小
Mode : permissions on map 映像权限: r=read,w=write, x=execute, s=shared, p=private (copy on write)
Mapping : file backing the map ,or ‘[ anon ]’ for allocated memory, or ‘[ stack ]’ for the program stack. 映像支持文件,[anon]为已分配内存[stack]为程序堆栈
CentOS7已经用新命令代替6时代的老命令。
1、如继续使用老命令,安装net-tools
#查看net-tools信息
yum info net-tools
#安装net-tools
yum install net-tools
2、使用ss代替netstat
以前用netstat -ant
现在使用ss -ant、ss -nltp
3、使用ip addr show代替ifconfig
4、使用ip route show代替route

小孩子会使用一些“讨好的技巧”(Ingratiation Tactics),这些技巧包括以下四种类型(Jones & Wortman, 1973):
对别人好是为了得到回报,简单说就是嘴甜,会来事儿
通过显示自己是值得被爱的而获得好处,比如会卖萌
通过肯定别人的优点来获得好处,比如会夸人
突出自己和对方相似的地方,比如会套近乎
oracle 10g没有continue功能,在11g才加入。如果要在10g实现continue,可以用goto代替。
--/
begin
for i in 1 .. 20
loop
if i < 10 then
GOTO print_now;
end if;
dbms_output.put_line(i);
<<print_now>>
NULL;
end loop;
dbms_output.put_line('111');
end;
/