2019-08-31

15 篇热帖

1. 用机械键盘的人那么少吗?整个公司里就我一个人用。。。

买之前我已经考虑过了机械键盘的噪音问题,所以买了银轴,噪音和薄膜键盘差不多,所以各位不要在噪音上上纠结了。

我这个公司说是公司,其实是总公司的一个部门,只有十几个人,但是他们好像都不用机械键盘,公司配的键鼠套装用的美滋滋,好像对他们来说键盘就是一个打字工具,能打字就行

你公司的同事也都是这样吗?

2. 又开始了,博客来一波友链

先上我的博客:4ark.me

瞅顺眼就上:)

3. 一段音频用 2 倍播放,同时录音.那么录完音以后的音频用 0.5 倍速播放的效果和原始录音正常速度播放同等效果么?
4. 突然感觉经济压力大了不少

因为拆迁,公司楼下十块钱的理发店关门了,经常去吃的蛋炒饭也从六块涨到了七块钱。

明明开销实际上并没有多多少,但是为什么就突然感觉经济压力变大了?

5. 梯来!

google:

intitle:"index of" /gui-config.json

intext:"gui-config.json"

intitle:"index of" shadowsocks.log

github:

extension:json filename:gui-config server password

6. 来读读华为方舟的源码,感觉本科生的作业
/* The purpose of converting to void is to clean up the alarm */
#define SECUREC_SMALL_STR_COPY do { \
if (SECUREC_ADDR_ALIGNED_8(strDest) && SECUREC_ADDR_ALIGNED_8(strSrc)) { \
/* use struct assignment */ \
switch (srcStrLen) { \
case 1: \
*(SecStrBuf1 *)(void *)strDest = *(const SecStrBuf1 *)(const void *)strSrc; \
break; \
case 2: \
*(SecStrBuf2 *)(void *)strDest = *(const SecStrBuf2 *)(const void *)strSrc; \
break; \
case 3: \
*(SecStrBuf3 *)(void *)strDest = *(const SecStrBuf3 *)(const void *)strSrc; \
break; \
case 4: \
*(SecStrBuf4 *)(void *)strDest = *(const SecStrBuf4 *)(const void *)strSrc; \
break; \
case 5: \
*(SecStrBuf5 *)(void *)strDest = *(const SecStrBuf5 *)(const void *)strSrc; \
break; \
case 6: \
*(SecStrBuf6 *)(void *)strDest = *(const SecStrBuf6 *)(const void *)strSrc; \
break; \
case 7: \
*(SecStrBuf7 *)(void *)strDest = *(const SecStrBuf7 *)(const void *)strSrc; \
break; \
case 8: \
*(SecStrBuf8 *)(void *)strDest = *(const SecStrBuf8 *)(const void *)strSrc; \
break; \
case 9: \
*(SecStrBuf9 *)(void *)strDest = *(const SecStrBuf9 *)(const void *)strSrc; \
break; \
case 10: \
*(SecStrBuf10 *)(void *)strDest = *(const SecStrBuf10 *)(const void *)strSrc; \
break; \
case 11: \
*(SecStrBuf11 *)(void *)strDest = *(const SecStrBuf11 *)(const void *)strSrc; \
break; \
case 12: \
*(SecStrBuf12 *)(void *)strDest = *(const SecStrBuf12 *)(const void *)strSrc; \
break; \
case 13: \
*(SecStrBuf13 *)(void *)strDest = *(const SecStrBuf13 *)(const void *)strSrc; \
break; \
case 14: \
*(SecStrBuf14 *)(void *)strDest = *(const SecStrBuf14 *)(const void *)strSrc; \
break; \
case 15: \
*(SecStrBuf15 *)(void *)strDest = *(const SecStrBuf15 *)(const void *)strSrc; \
break; \
case 16: \
*(SecStrBuf16 *)(void *)strDest = *(const SecStrBuf16 *)(const void *)strSrc; \
break; \
case 17: \
*(SecStrBuf17 *)(void *)strDest = *(const SecStrBuf17 *)(const void *)strSrc; \
break; \
case 18: \
*(SecStrBuf18 *)(void *)strDest = *(const SecStrBuf18 *)(const void *)strSrc; \
break; \
case 19: \
*(SecStrBuf19 *)(void *)strDest = *(const SecStrBuf19 *)(const void *)strSrc; \
break; \
case 20: \
*(SecStrBuf20 *)(void *)strDest = *(const SecStrBuf20 *)(const void *)strSrc; \
break; \
case 21: \
*(SecStrBuf21 *)(void *)strDest = *(const SecStrBuf21 *)(const void *)strSrc; \
break; \
case 22: \
*(SecStrBuf22 *)(void *)strDest = *(const SecStrBuf22 *)(const void *)strSrc; \
break; \
case 23: \
*(SecStrBuf23 *)(void *)strDest = *(const SecStrBuf23 *)(const void *)strSrc; \
break; \
case 24: \
*(SecStrBuf24 *)(void *)strDest = *(const SecStrBuf24 *)(const void *)strSrc; \
break; \
case 25: \
*(SecStrBuf25 *)(void *)strDest = *(const SecStrBuf25 *)(const void *)strSrc; \
break; \
case 26: \
*(SecStrBuf26 *)(void *)strDest = *(const SecStrBuf26 *)(const void *)strSrc; \
break; \
case 27: \
*(SecStrBuf27 *)(void *)strDest = *(const SecStrBuf27 *)(const void *)strSrc; \
break; \
case 28: \
*(SecStrBuf28 *)(void *)strDest = *(const SecStrBuf28 *)(const void *)strSrc; \
break; \
case 29: \
*(SecStrBuf29 *)(void *)strDest = *(const SecStrBuf29 *)(const void *)strSrc; \
break; \
case 30: \
*(SecStrBuf30 *)(void *)strDest = *(const SecStrBuf30 *)(const void *)strSrc; \
break; \
case 31: \
*(SecStrBuf31 *)(void *)strDest = *(const SecStrBuf31 *)(const void *)strSrc; \
break; \
case 32: \
*(SecStrBuf32 *)(void *)strDest = *(const SecStrBuf32 *)(const void *)strSrc; \
break; \
default: \
break; \
} /* END switch */ \
} else { \
char *tmpStrDest = (char *)strDest; \
const char *tmpStrSrc = (const char *)strSrc; \
switch (srcStrLen) { \
case 32: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 31: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 30: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 29: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 28: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 27: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 26: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 25: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 24: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 23: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 22: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 21: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 20: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 19: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 18: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 17: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 16: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 15: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 14: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 13: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 12: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 11: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 10: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 9: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 8: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 7: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 6: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 5: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 4: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 3: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 2: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
case 1: \
*(tmpStrDest++) = *(tmpStrSrc++); \
/* fall-through */ /* FALLTHRU */ \
default: \
break; \
} \
} \
} SECUREC_WHILE_ZERO
#endif
8. 各位最近觉得联通信号有问题吗
不说网上讨论的降速问题,最近我联通经常掉信号。就是出现中国联通欢迎您那个黑色的页面,上网速度没觉得降多少毕竟本来都不快。手机是 7P,出现掉信号也就最近几个月的事。不知道各位 V 友有没有遇到这个问题?
9. PCIE 转 M.2nvme 接口 主板不识别
老华硕 B85 主板
想用上闲置的 pm981,所以买了个转接卡( b85 没有 m.2 接口) pcie 转 m.2 插在我 pciex16 的口上
结果主板读不出来。pe 和 win10 安装界面都能读。
是 b85 太老不支持 nvme 吗?
有木有补救办法
10. 遇到一个程序员,突然能理解“有些人能活下去,就已经拼尽全力了”
有感于 https://v2ex.com/t/596510 以下内容纯属虚构

今天周六,被领导叫起来去单位紧急邮寄一份文件,因为周末没有班车就搭公交去了,路上遇到一位程序员,让我突然能理解“有些人能活下去,就已经拼尽全力了”。

我:哥们,你也是被领导叫起来加班的?
邻座:加班?我每个周六都正常上班啊
我:周六还要上班啊,你这黑眼圈这么重不会是昨天玩的太嗨了吧?
邻座:昨天加班到 2 点,睡了 5 个小时就起来了
我:工作这么拼命,你看起来也不像刚上班的样子,有些工作可以让下属分担下不用什么都亲历亲为
邻座:上班 5 年了,公司扁平化管理没有什么下属不下属的都是同事
我:这么巧,我也上班 5 年了,哥们孩子在哪上幼儿园
邻座:孩子?我还没有女朋友呢
我:是眼光太高了吧,下班多和异性朋友接触接触就能遇到合适的了
邻座:基本上没有异性朋友,再说了我下班的时候她们都睡着了

我的心情十分沉重,实在不能想象竟然有人每周六都要上班,30 岁了还没有女朋友没有家庭,真是太可怜了。终于明白了那句话:“有些人能活下去,就已经拼尽全力了”


想说的是:每个人所处的环境不同,你觉得别人很可怜很不容易实际上不一定就是这么回事。
11. 双非一本,准备考研的时候收到了 offer,该如何抉择?
如题
复习的时候看见有内推,就顺手投了简历。
没有想到竟然过了笔试和面试,拿到了某互联网大厂(非 BAT )的意向书。
现在非常纠结是否还要继续考研,希征求大家的意见

另外问一下,如果既答应了 offer 又成功考研,那么会有什么后果?会不会被公司拉入黑名单?
12. 200-300 能搞到一个跑满 500M 的软路由吗
现在用的极 3,挂了 SSR 撑死跑 20M。。。。还只有一个千兆口
想换 K2P 的,但是看了下价格都已经炒到 200+了
干脆玩玩软路由搭配极 3 做 AP,想知道 200-300 这个价位有没有可以推荐的,要求不高,能跑满 500M 的就行
求大佬推荐下
13. 30 块钱 50 个月腾讯视频、知乎严选会员、QQ 音乐豪华绿钻、60 快手币、酷狗豪华 VIP,限大王卡用户

好久没搞活动了,看到一个靠谱的 应该可以上。官方活动,外面更贵。你去赚差价还是干啥都可以

base64:aGFvaGhoODI4

14. 闲鱼是不是有点矫枉过正了
想卖个二手书预先观望一下价格,提示无法搜索违规信息,关键字是"Python 编程". 莫不是以为我要买蟒蛇来做蛇煲鸡??
15. 1 加 7 的手机网速真是慢。 gs

后悔

网速永远在几百 kb