life

Life Tips by Marilyn Monroe

匿名 (未验证) 提交于 2019-12-03 00:18:01
This life is what you make it . No matter what , you're going to mess up sometimes ; it's a universal truth . But the good part is you get to decide how you're going to mess it up . Girls will be your friends ―they'll act like it anyway . But just remember , some come , some go . The ones that stay with you through everything ―they're your true best friends . Don't let go of them . Also remember , sisters make the best friends in the world . As for lovers , well , they'll come and go too . And baby , I hate to say it , most of them ―actually pretty much all of them are going to break your

HEALTHY LIFE OPENCART 自适应主题模板 ABC-0052

隐身守侯 提交于 2019-11-28 15:18:35
HEALTHY LIFE OPENCART 自适应主题模板 ABC-0052 Features : • Compatible with the most common browsers: FireFox 1.5-3.5.6+, IE8+, Safari 3.2 +, Opera, Google Chrome. • Designed with luxurious colors • Suitable for shop selling: Healthy, medical, vitamin, drug store • Supports multiple languages, multiple currencies. • Made with HTML 5 and CSS 3 effects ( Universal Transition effects, only add the class name and it will work. ) • Well documented for installation and about images sizes. 模板特性 OpenCart版本 1.5.6, 1.5.6.1, 1.5.6.2, 1.5.6.3, 1.5.6.4, 2.0.0.0 包含文件 PHP Files, CSS Files, JS Files 来源: oschina 链接:

(Easy) Game of Life leetCode

☆樱花仙子☆ 提交于 2019-11-28 05:25:50
Description: According to the Wikipedia's article : "The Game of Life , also known simply as Life , is a cellular automaton devised by the British mathematician John Horton Conway in 1970." Given a board with m by n cells, each cell has an initial state live (1) or dead (0). Each cell interacts with its eight neighbors (horizontal, vertical, diagonal) using the following four rules (taken from the above Wikipedia article): Any live cell with fewer than two live neighbors dies, as if caused by under-population. Any live cell with two or three live neighbors lives on to the next generation. Any

life|October the 1st| five twenty|three–fifths|1970s|30s

对着背影说爱祢 提交于 2019-11-27 17:16:21
The music is full of (a, an, the, /) life . It can release your pressure to a large extent, so I enjoy this music very much. 题目解析 考查冠词用法。此句意思是:这首曲子充满活力,很大程度上能帮助减压,所以我非常喜欢它。life这个名词表示“活力、生机”,是不可数名词,所以此处不填任何冠词。 National Day falls on the (10月1日) when the Chinese people celebrate the day by means of various activities. 题目解析 考查数词用法。此句意思是:国庆节在十月一号,中国人民通过各种活动来庆祝节日。英式英语中,表示“月日”时用“the+序数词(日)+of+月份”、“ 序数词(日)+月份”或“月份+the+序数词(日)”表达。美式英语中,表示“月日”时用“月份+序数词(日)”表达。所以此处填入1st, October。 正确答案是: 1st of October|1st, October| October the 1st It is (5点20分). We have to be hurry up, otherwise we will be late for the

[ipsec][strongswan] strongswan源码分析-- (二)rekey/reauth机制分析

谁都会走 提交于 2019-11-27 16:52:02
strongwan sa分析(二) Author: Cao Tong Date: 2018-12-29 Version: 1.2 文档历史 版本 日期 说明 修改人 1.0 20181229 初版 caotong 1.1 20190102 修改重要的概念阐述,IKE SA rekey caotong 1.2 20190103 修改IPsec SA的名称约定 caotong 名词约定 client / initiator: IKE连接的首先发起方。 server / responder: IKE连接首先发起方的对方,即响应方。 IKE SA: 用于对ISAKMP数据包进行加密的SA。 CHILD SA / IPsec SA: 用于对传输数据(用户数据)进行加密的SA,如加密ESP协议数据。 SA: 包括,IKE SA和CHILD SA。 rekey/reauth 机制分析 1 概述 reauth是指重新进行身份认证过程。rekey包含两个过程。IKESA rekey指协商IKE SA。 CHILD SA rekey是指重新协商CHILD SA。IKEv1与IKEv2在概念上同样适用。但是需要特别说明的是,IKEv1中没有实现 IKESA rekey机制。 详见,官网wiki中的一篇文档 ExpiryRekey 讲到 IKEv1不支持ikesa的rekey

Learning Life

拈花ヽ惹草 提交于 2019-11-27 12:15:20
学习Java的日常 日期:2019-8-15 day6 学习目的:完善斗地主代码(加入排序功能) import java.util.*; public class DouDiZhu { public static void main(String[] args) { /*1.准备54张牌 2.洗牌,打乱 3.发牌给三个人 4..留三张底牌 5.排序 */ //1.准备54张牌 List<String> poker = new ArrayList<>(); String[] color = {"方块", "黑桃", "红桃", "梅花"}; String[] nums = {"2", "A", "K", "Q", "J", "10", "9", "8", "7", "6", "5", "4", "3"}; for (String num: nums) { for (String s: color) { poker.add(s+num); } } Integer number=new Integer(0); HashMap<Integer,String>map= new HashMap<>(); map.put(number++,"大王"); map.put(number++,"小王"); for (String pai:poker) { map.put(number++,pai);

Oracle修改用户使用时间

亡梦爱人 提交于 2019-11-27 04:47:47
SELECT * FROM dba_profiles s WHERE s.profile=‘DEFAULT’ AND resource_name=‘PASSWORD_LIFE_TIME’;///查询用户密码使用时间 ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;///修改用户名使用时间无限 alter user GDZC identified by GDZC account unlock; 不用换新密码,用户名和密码也不用加引号,这个命令会解锁账号,同时取消密码过期。 alter user GDZC account unlock;///解锁用户 来源: https://blog.csdn.net/qq_30189805/article/details/99288633

java 23种设计模式 深入理解

这一生的挚爱 提交于 2019-11-26 21:41:03
以下是学习过程中查询的资料,别人总结的资料,比较容易理解(站在各位巨人的肩膀上,望博主勿究) 创建型 抽象工厂模式 http://www.cnblogs.com/java-my-life/archive/2012/03/28/2418836.html 工厂方法 http://www.cnblogs.com/java-my-life/archive/2012/03/25/2416227.html 建造者模式 http://www.cnblogs.com/java-my-life/archive/2012/04/07/2433939.html 原型模式 http://www.cnblogs.com/java-my-life/archive/2012/04/11/2439387.html 单例模式 http://www.cnblogs.com/java-my-life/archive/2012/03/31/2425631.html 结构型 适配器模式 http://www.cnblogs.com/java-my-life/archive/2012/04/13/2442795.html 桥接模式 http://blog.csdn.net/jason0539/article/details/22568865 组合模式 http://blog.csdn.net/jason0539

A - Life Without Zeros

和自甴很熟 提交于 2019-11-26 14:22:39
A - Life Without Zeros Can you imagine our life if we removed all zeros from it? For sure we will have many problems. In this problem we will have a simple example if we removed all zeros from our life, it’s the addition operation. Let’s assume you are given this equation a + b = c, where a and b are positive integers, and c is the sum of a and b. Now let’s remove all zeros from this equation. Will the equation remain correct after removing all zeros? For example if the equation is 101 + 102 = 203, if we removed all zeros it will be 11 + 12 = 23 which is still a correct equation. But if the