上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 155 下一页
摘要:  sublimeText3绝对是写前端程序的利器。占内存小。启动快。代码提示功能齐全,界面酷炫并且再也不怕断电。了 网上搜罗一些快捷键总结一下。先来张图: (事实上sublimeText3也能够写java,c等程序, 他的代码提示支持16种语言。仅仅是想要编译的话配置比較麻烦,有兴趣的能够查一下 阅读全文
posted @ 2017-07-31 14:03 yfceshi 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 字符串类型 固定长度:char nchar n 表示Unicode编码 可变长度: varchar2 nvarchar2 数字类型:number(P,S)P:整数位数,S小数位数 integer 整数 BINARY_FLOAT 单浮点 BINARY_DOUBLE 双浮点 FLOAT(N)浮点数 N表 阅读全文
posted @ 2017-07-31 12:48 yfceshi 阅读(986) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <sys/utsname.h> //uname int main(int argc, char **argv[]) { struct utsname u; if (uname(&u) != -1) { printf("获取当前内核的名称和信息例 阅读全文
posted @ 2017-07-31 12:08 yfceshi 阅读(478) 评论(0) 推荐(0) 编辑
摘要: scaffold是一个高速开发rails应用的代码框架。能够使用一条命令实现CRUD操作。 1: 创建一个应用 rails new scaffoldapp cd scaffoldapp rails s 在浏览器中打开http://localhost:3000/ 2: 创建一个名为blog的Scaff 阅读全文
posted @ 2017-07-31 10:56 yfceshi 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 直接上代码: #include <iostream> #include <vector> using namespace std; int main() { vector<string> vctStr; vctStr.push_back("Hello"); vctStr.push_back("Wor 阅读全文
posted @ 2017-07-31 09:57 yfceshi 阅读(181) 评论(0) 推荐(0) 编辑
摘要: web报表工具FineReport经常使用函数的使用方法总结(日期和时间函数) 说明:凡函数中以日期作为參数因子的,当中日期的形式都必须是yy/mm/dd。并且必须用英文环境下双引號(" ")引用。 DATE DATE(year,month,day):返回一个表示某一特定日期的系列数。 Year:代 阅读全文
posted @ 2017-07-31 08:51 yfceshi 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 我在写多语言支持时用到的东西 絮叨絮叨:好久不来写了,居然支持markdown 了。 我也是在项目里的wiki 里干刚接触了一些, 来这里也试试。然后悲催的发现,mac 电脑在markdown下直接上传图片有bug @2015-08-19 20:28:13。一会试一下链接版的吧。 我们的37度手环一 阅读全文
posted @ 2017-07-30 21:09 yfceshi 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 近期一直在学习自己定义控件,昨天看到群里有人问怎样怎样实现圆盘样式的显示,学有所用,于是乎就有了这篇博客 先上图,一目了然 这里的显示颜色以及颜色块的大小你都能够自己设置 这里设置了三种颜色,相应三种颜色的三个角度 上代码: <?xml version="1.0" encoding="utf-8"? 阅读全文
posted @ 2017-07-30 20:38 yfceshi 阅读(751) 评论(0) 推荐(0) 编辑
摘要: A 水题 #include<cstdio> #include<cstring> #include<algorithm> using namespace std; #define mod 31536000 #define eps 1e-10 typedef __int64 ll; struct nod 阅读全文
posted @ 2017-07-30 19:47 yfceshi 阅读(122) 评论(0) 推荐(0) 编辑
摘要: (1)异常信息例如以下: 严重: Servlet.service() for servlet action threw exception java.lang.RuntimeException: <u>No CurrentSessionContext configured!</u> at com.l 阅读全文
posted @ 2017-07-30 18:18 yfceshi 阅读(1840) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 155 下一页