V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  whuhacker  ›  全部回复第 7 页 / 共 14 页
回复总数  279
1  2  3  4  5  6  7  8  9  10 ... 14  
说实话,香港的技术氛围比大陆差远了
台湾现在也在向大陆看齐,君不见: http://punnode.com/archives/11214
2014 年 3 月 6 日
回复了 jimbray 创建的主题 问与答 怎么离职比较好?
传腾讯把搜搜和QQ输入法业务卖给搜狗时,员工可以拿到 N+8 的补偿
我怎么觉得他们都爽翻了
陆金所不是很火么,可以贷款的
2014 年 3 月 4 日
回复了 whuhacker 创建的主题 MySQL innodb count(*) 超过 10 亿条记录,怎么破?
@raincious 数据是用于审计的,客户打电话投诉时我们要拿出 log 的有关证据。慢也不是不能用,只是被同事吐槽很久了……

@pubby 需要进行字段查询的,不只是最近 1000 条那么简单
2014 年 3 月 4 日
回复了 whuhacker 创建的主题 MySQL innodb count(*) 超过 10 亿条记录,怎么破?
@chenlong451 @raincious @est @shiny
不是 count 总数,是带查询条件的 count,所以在另外地方存个总数没啥用
2014 年 3 月 4 日
回复了 princeofwales 创建的主题 Chrome Chrome 不能同步书签
在设置里取消同步,然后退出 Chrome (菜单->退出,仅关闭窗口不行)
重启 Chrome
重新在设置中登录、启用同步
https://support.google.com/chrome/answer/1181420

安装 Bookmark Sentry 插件可以帮助解决书签重复问题
2014 年 3 月 3 日
回复了 lzy4223 创建的主题 分享发现 週六去了參觀香港的 IT 職業博覽會
香港没有互联网环境
去看本地人最常去的高登论坛,程序还是N年前的discuz,UI 烂成渣

政府、银行、大学等IT系统楼主所说甚是,信息化程度好过内地。
2014 年 3 月 3 日
回复了 jwk345 创建的主题 问与答 有没有什么好用的开源企业文档管理系统?
我司使用一个局域网共享文件夹,然后 ActiveDirectory 进行权限控制。。
2014 年 3 月 1 日
回复了 manoon 创建的主题 电影 突然想看一部粤语对白的电影。
《老港正传》《每当变幻时》
2014 年 2 月 26 日
回复了 turing 创建的主题 Node.js Theme 基于 Node.js 的主题管理工具
膜拜楼主,真是高产……
https://logentries.com/
云端日志分析,大公司都在用
2014 年 2 月 20 日
回复了 coolicer 创建的主题 JavaScript Angular 怎么在加载中加入 Loading 提示框?
/**
* Loading Indicator
*
* @author Maikel Daloo
* @date 12th March 2013
*
* Creates a new module and intercepts all ajax requests.
* Every time a request is sent, we display the loading message and increment
* the enable_counter variable. Then when requests complete (whether success or error)
* we increment the disable_counter variable and we only hide the loading message
* when the enable/disable counters are equal.
*
* @example
* All that is required to get this working is to inject this module into your main
* module. E.g.
* var app = angular.module('my-app', ['LoadingIndicator']);
* Then the script will look for the element specified in the LoadingIndicatorHandler object
* and show/hide it.
*/
var module = angular.module('LoadingIndicator', []);

module.config(['$httpProvider', function($httpProvider) {
var interceptor = ['$q', 'LoadingIndicatorHandler', function($q, LoadingIndicatorHandler) {
return function(promise) {
LoadingIndicatorHandler.enable();

return promise.then(
function( response ) {
LoadingIndicatorHandler.disable();

return response;
},
function( response ) {
LoadingIndicatorHandler.disable();

// Reject the reponse so that angular isn't waiting for a response.
return $q.reject( response );
}
);
};
}];

$httpProvider.responseInterceptors.push(interceptor);
}]);

/**
* LoadingIndicatorHandler object to show a loading animation while we load the next page or wait
* for a request to finish.
*/
module.factory('LoadingIndicatorHandler', function()
{
// The element we want to show/hide.
var $element = $('#loading-indicator');

return {
// Counters to keep track of how many requests are sent and to know
// when to hide the loading element.
enable_count: 0,
disable_count: 0,

/**
* Fade the blocker in to block the screen.
*
* @return {void}
*/
enable: function() {
this.enable_count++;

if ( $element.length ) $element.show();
},

/**
* Fade the blocker out to unblock the screen.
*
* @return {void}
*/
disable: function() {
this.disable_count++;

if ( this.enable_count == this.disable_count ) {
if ( $element.length ) $element.hide();
}
}
}
});
2014 年 2 月 16 日
回复了 turing 创建的主题 程序员 连续登录 V2EX 100 天
其实我想问 @livid 为什么我的铜币余额会出现小数。。。
2014 年 2 月 5 日
回复了 caizixian 创建的主题 程序员 谈一谈你最喜欢的杀软
一般使用不会中毒,MSE 挺好,从未打搅我,不影响系统性能
2014 年 2 月 2 日
回复了 Mac 创建的主题 问与答 无线路由能承受多大的接入数
hiwifi 官方说明里写了支持64个设备。据我所知市面上卖的家用无线路由器硬件配置远低于 hiwifi ……
2014 年 1 月 26 日
回复了 chenyg32 创建的主题 程序员 你们觉得哪个Php框架比较好
Yii 挺不错的
不过 Yii2 的变化有点大,看上去要完全重新学习的节奏
2014 年 1 月 23 日
回复了 lm902 创建的主题 VPS 刚刚准备在Google Cloud上租一个VPS,结果。。。
想起来在 Google Cloud 我还有 $2000 刀的免费额度没用……

如果花钱买,Google Compute Engine 确实太贵了,而且没有低配的 VM,最少都是 4G 内存貌似
2014 年 1 月 23 日
回复了 jose13 创建的主题 问与答 求推荐香港asp虚拟主机
www.webhost.com.hk

香港本地公司,专做 windows share hosting 的,你看人家自己官网都是 aspx 的
上周出过一次事故, xui.ptlogin2.qq.com 曾经挂了5分钟,QQ 全线产品不能登录
2014 年 1 月 18 日
回复了 felix021 创建的主题 问与答 求一款安卓远程短信查看软件
如果是 miui 系统,其实有小米云短信
https://i.xiaomi.com/#sms/full
1  2  3  4  5  6  7  8  9  10 ... 14  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3342 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 30ms · UTC 11:11 · PVG 19:11 · LAX 04:11 · JFK 07:11
♥ Do have faith in what you're doing.