首页
关于
Search
1
在投射和录制时显示敏感信息写给TeamViewer,anydesk,向日葵
8,643 阅读
2
sublime 3155-3175 LICENSE
7,963 阅读
3
mysql存储过程&时间累加插入
7,781 阅读
4
永远不要相信浮点数结果精确到了最后一位,也永远不要比较两个浮点数是否相等。
4,496 阅读
5
mysql-workbench中duration fetch的含义
4,483 阅读
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
登录
Search
标签搜索
mysql
curl
grep
journalctl
rename
You can't specify target table
only_full_group_by
Sub-process
警示
dropbox
mtr
curl抓取重定向
floor
intval
ceil
round
pixmap
adwaita
date.utc
gmmktime
五好的Book
累计撰写
194
篇文章
累计收到
31
条评论
首页
栏目
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
页面
关于
搜索到
194
篇与
的结果
2017-07-05
unity8 已经有接盘侠了接住了
Unity 8 本来是Ubuntu的下一代桌面环境,但是可惜在前几个月被宣布放弃, 然而虽然官方放弃了,但已经有团队宣布继续unity8的开发,请搜索“Yunit to Unity 8”应该会得到一些结果细节官方网站:https://yunit.io 博客:https://yunit.io/blog 论坛:https ://forum.yunit.io Reddit:https://www.reddit.com/r/Yunit/ 邮件列表:https://yunit.io/cgi-bin/mailman/listinfo/dev IRC:#yunit @freenode 源代码:https://github.com/yunit-io/yunit核心开发人员:jsalatas和其他人(https://github.com/orgs/yunit-io/people)许可证:https://github.com/yunit-io/yunit/blob/master/COPYING常见问题:https://yunit.io/faq/但报告:https://github.com/yunit-io/yunit/issues 标志比赛:https ://www.flickr.com/groups/3484594@N25/电报:https://t.me/joinchat/AAAAAAsUbsakPJGOP9msRg有趣的事实截至5月7日,有一些事实:Yunit项目的原因是Mark Shuttleworth决定停止Unity 8(链接)。 Yunit将从Mir迁移到Wayland(链接)。Yunit仍然没有官方标志(截至2017年5月18日)。 Yunit项目未经Canonical或Ubuntu项目认可或隶属。
2017年07月05日
1,081 阅读
0 评论
0 点赞
2017-06-16
php对应js的date.utc的值
在js中用到的 var ts=Date.UTC(1986,2,22);PHP中 的mktime()函数无法正确与之匹配经过实践发现下面的方法可以:$ts = gmmktime(0, 0, 0, 3, 22, 1985) * 1000
2017年06月16日
1,106 阅读
0 评论
0 点赞
2017-06-05
Unable to locate theme engine in module_path: "adwaita"
解毒方法:sudo apt install gnome-themes-standard haha^_^
2017年06月05日
1,125 阅读
0 评论
0 点赞
2017-06-05
Unable to locate theme engine in module_path: "pixmap"
解毒方法:sudo apt-get install gtk2-engines-pixbuf haha
2017年06月05日
1,145 阅读
0 评论
0 点赞
2017-06-05
php取整函数的区别
先说 floor 和 intval这2个函数 在正数的时候, 结果是一样都是去掉小数点后面的值,只保留整数。例如:floor(3.1); #结果为 3; intval(1.9); #结果为 1; 但是当为负数时就有区别了,如下: floor(-0.1); #结果为 -1; intval(-0.9); #结果为 0; floor(-1.2);#结果为 -2; intval(-1.2);#结果为 -1; 这就是区别,至于为什么,翻看下手册就知道了然后就是 ceil 此函数,只要后面跟的小数点大于0,则进一位,例如:ceil(3.1);#结果为 4; ceil(-3.1);#结果为 -3; round 对浮点数进行四舍五入round(3.1) # 3; round(3.265,2) #2.27; round(1024,-2) #1000;
2017年06月05日
1,207 阅读
0 评论
0 点赞
1
...
34
35
36
...
39