上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 环境:Oracle 11g R2 + PL SQL Developer + SQL Plus 问题:Oracle主服务和监听器服务已经启动,使用SQL Plus能够正常连接,使用PL SQL Developer连接报次错误:ORA-12514: TNS: ... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 以JSON编码格式提交表单数据是HTML5对WEB发展进化的又一大贡献,以前我们的HTML表单数据是通过key-value方式传输的服务器端,这种形式的传输对数据组织缺乏管理,形式十分原始。而新出现的JSON格式提交表单数据方法,将表单里的所有数据转化的具有... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(327) 评论(0) 推荐(0) 编辑
摘要: select date_add('2016-6-17', interval -(dayofweek('2016-6-17')-2)-7 day);-- 上周周一 select date_add('2016-6-15', interval -(dayofwe... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(18) 评论(0) 推荐(0) 编辑
摘要: # export HISTTIMEFORMAT='%F %T '#时间格式 # history 100 | more#最近100条命令,包括重复命令 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(697) 评论(0) 推荐(0) 编辑
摘要: 将文件拷贝至服务器(jdk-6u45-linux-x64.bin是Linux32位) 现授权执行权限 # chmod +x jdk-6u45-linux-x64.bin # ./jdk-6u45-linux-x64.bin 配置环境变量 加入以下到/... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(137) 评论(0) 推荐(0) 编辑
摘要: var obj=document.getElementById("select"); var index=obj.selectedIndex; var text=obj.options[index].getAttribute("lrc"); ale... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1、建表 DROP TABLE dbo.users GO CREATE TABLE dbo.users ( id int NOT NULL , name varchar(32) NULL ) GO ALTER TABLE dbo.users ADD PRIM... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(113) 评论(0) 推荐(0) 编辑
摘要: @@FETCH_STATUS=0什么意思 发布日期:2010-04-29 最近更新:2010-04-29 来源:BHCODE 作者: 0 FETCH 语句成功。 -1 FETCH 语句失败或此行不在结果集中。 -2 被提取的行不存在。... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 如果 否则 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(25) 评论(0) 推荐(0) 编辑
摘要: Linux wget是一个下载文件的工具,它用在命令行下。对于Linux用户是必不可少的工具,尤其对于网络管理员,经常要下载一些软件或从远程服务器恢复备份到本地服务器。如果我们使用虚拟主机,处理这样的事务我们只能先从远程服务器下载到我们电脑磁盘,然后再用ftp... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(1038) 评论(0) 推荐(0) 编辑
摘要: ls 当前目录下的所有文件 cd / 返回到更目录 cd .. 切换到上一级目录 cd ../.. 切换到上二级目录 locate traceroute 在系统的任何地方查找文件名包含traceroute的文件 clear 清屏 mkdir test 新建文... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(22) 评论(0) 推荐(0) 编辑
摘要: DROP PROCEDURE IF EXISTS mywhile; CREATE PROCEDURE mywhile () BEGIN DECLARE i INT default 0; outer_label: BEGIN #设置一个标记并设置开始 whil... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 前言:朋友们开始以下教程前,请先看第五大点的注意事项,以避免不必要的重复操作。 一、准备工作(以下为本实例使用工具) 1、MyEclipse10.7.1 2、JDK 1.6.0_22 二、创建服务端 1、创建【Web Service P... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 文件名codetemplates.xml 点击:windows-》preference—》java-》code style-》code template,弹出下图所示的界面。 ... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(81) 评论(0) 推荐(0) 编辑
摘要: WebApplicationContext webApplication = ContextLoader.getCurrentWebApplicationContext(); this.messageRemindInfoDAO = webApplicatio... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 一、多线程 1、操作系统有两个容易混淆的概念,进程和线程。 进程:一个计算机程序的运行实例,包含了需要执行的指令;有自己的独立地址空间,包含程序内容和数据;不同进程的地址空间是互相隔离的;进程拥有各种资源和状态信息,包括打开的文件、子进程和信号处理。 ... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 1.创建线程 在Java中创建线程有两种方法:使用Thread类和使用Runnable接口。在使用Runnable接口时需要建立一个Thread实例。因此,无论是通过Thread类还是Runnable接口建立线程,都必须建立Thread类或它的子类的实例。... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 闲暇之余,写了一个Eclipse下的Java反编译插件:Eclipse Class Decompiler,整合了目前最好的2个Java反编译工具Jad和JD-Core,并且和Eclipse Class Viewer无缝集成,能够很方便的使用本插件查看类库源码,... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(113) 评论(0) 推荐(0) 编辑
摘要: jad.exe http://download.csdn.net/download/wxq8102/483003 net.sf.jadclipse_3.3.0.jar http://download.csdn.net/download/csha... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(42) 评论(0) 推荐(0) 编辑
摘要: Svn服务器与客户端安装 1. 下载安装VisualSvn-Server服务端。(过程略) 2. 下载安装TortoiseSVN客户端。(过程略) 3. 下载安装vs插件AnkhSvn。(过程略) 在服务器中建立仓库 ... 阅读全文
posted @ 2022-09-23 18:03 silentmuh 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页
Live2D
欢迎阅读『silentmuh』
  1. 1 Walk Thru Fire Vicetone
  2. 2 爱你 王心凌
  3. 3 Inspire Capo Productions - Serenity
  4. 4 Welcome Home Radical Face
  5. 5 粉红色的回忆 李玲玉
Walk Thru Fire - Vicetone
00:00 / 00:00
An audio error has occurred, player will skip forward in 2 seconds.

作词 : Van Der Voort, Joren Johannes

作曲 : Victor Pool/Justin Gammella/Ruben Christopher den Boer/Meron Mengist/Joren van der Voort

Talk to me

Spill the secrets you've been keeping

Life cuts deep

Let me help pick up the pieces

You're not alone, I'm by your side

Don't you know, don't you know

I'll walk through fire with you

I'll walk through fire

No matter what, I'll make it right

Don't you know, don't you know

I'll walk through fire with you

I'll walk through fire

I'm not an angel, I'm not a saint

I've been a closed book full of mistakes

But when you're broken, when you're in pain

Oooh, ooh

I'll walk through fire with you

I'll walk through fire

I'll walk through fire with you

I'll walk through fire

You know I

Don't pretend to be a savior

But let me in, yeah

I promise nobody can break us

You're not alone, I'm by your side

Don't you know, don't you know

I'll walk through fire with you

I'll walk through fire

No matter what, I'll make it right

Don't you know, don't you know

I'll walk through fire with you

I'll walk through fire

I'm not an angel, I'm not a saint

I've been a closed book full of mistakes

But when you're broken, when you're in pain

Oooh, ooh

I'll walk through fire with you

I'll walk through fire with you

I'll walk through fire

I'll walk through fire with you

I'll walk through fire with you

You're not alone, I'm by your side

Don't you know, don't you know

I'll walk through fire with you

I'll walk through fire

I'm not an angel, I'm not a saint

I've been a closed book full of mistakes

But when you're broken, when you're in pain

Oooh, ooh

I'll walk through fire with you

I'll walk through fire with you

I'll walk through fire

I'll walk through fire with you

I'll walk through fire with you

点击右上角即可分享
微信分享提示