立即执行函数表达式(IIFE)
也许你没有注意到,我是一个对于专业术语有一点强迫症的人。所以,当我多次听到流行却易产生误解的术语「自执行匿名函数」,我最终决定将我的想法写进这篇文章里。 更进一步地说,除了提供关于该模式究竟是如何工作的全面信息,事实上我还建议了我们应该怎样称呼这种模式。另外,如果你想跳过这里,你可以直接跳到立即调用 继续>
Blog of ZCW 亦·德利菲的小窝
也许你没有注意到,我是一个对于专业术语有一点强迫症的人。所以,当我多次听到流行却易产生误解的术语「自执行匿名函数」,我最终决定将我的想法写进这篇文章里。 更进一步地说,除了提供关于该模式究竟是如何工作的全面信息,事实上我还建议了我们应该怎样称呼这种模式。另外,如果你想跳过这里,你可以直接跳到立即调用 继续>
因为不明原因的服务器故障, 2017.4.19之前大约一到两周交大导航无法访问 目前已经恢复 对使用不便表示道歉 不要忘了网址是: http://xjtu.so/
In the modern age of web applications and development, it seems we are constantly adding side effects to every part of our applications – everyt 继续>
翻译:方应杭 链接:https://zhuanlan.zhihu.com/p/22782487 来源:知乎 嘿,我最近接到一个 Web 项目,不过老实说,我这两年没怎么接触 Web 编程,听说 Web 技术已经发生了一些变化。听说你是这里对新技术最了解的 Web 开发工程师? 准确地说 继续>
据本月早些时间公布了2015年半导体国际技术路线图显示,晶体管的发展很有可能将在5年内停止。 该报告预测,到2021年时再将微处理器中晶体管的尺寸缩小,对研发公司来说不再是经济的做法。届时芯片制造商会采用如建立多层电路的方法,来提升晶体管密度。 对于该报告,有人认为这一变化是摩尔定律失效的另一种方式 继续>
I see a lot of hints, such as the one to remove 10.5's translucent menu bar, that tell you to restart your computer for the changes to take e 继续>
Copy & paste from single line command string:
1 | /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain user;killall Finder;echo "Open With has been rebuilt, Finder will relaunch" |
OR Same command string broken into multiple lines: [crayon-673f2da6 继续>
1 2 3 4 5 6 7 8 9 10 11 12 13 | <ul><li>Home</li> <li>About</li> <li> Portfolio <ul> <li>Web Design</li> <li>Web Development</li> <li>Illustrations</li> </ul> </li> <li>Blog</li> <li>Contact</li> </ul> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | body { font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif; padding: 20px 50px 150px; font-size: 13px; text-align: center; background: #E3CAA1; } ul { text-align: left; display: inline; margin: 0; padding: 15px 4px 17px 0; list-style: none; -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); } ul li { font: bold 12px/18px sans-serif; display: inline-block; margin-right: -4px; position: relative; padding: 15px 20px; background: #fff; cursor: pointer; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -ms-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } ul li:hover { background: #555; color: #fff; } ul li ul { padding: 0; position: absolute; top: 48px; left: 0; width: 150px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; display: none; opacity: 0; visibility: hidden; -webkit-transiton: opacity 0.2s; -moz-transition: opacity 0.2s; -ms-transition: opacity 0.2s; -o-transition: opacity 0.2s; -transition: opacity 0.2s; } ul li ul li { background: #555; display: block; color: #fff; text-shadow: 0 -1px 0 #000; } ul li ul li:hover { background: #666; } ul li:hover ul { display: block; opacity: 1; visibility: visible; } |
from:http://cssdeck.com/labs/another-simple-css3-dropdown-menu
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | from PyQt4.QtGui import * import sys def main(): app = QApplication(sys.argv) window = QMainWindow() palette = QPalette() palette.setBrush(QPalette.Background,QBrush(QPixmap("grass.jpg"))) window.setPalette(palette) window.setWindowTitle("QMainWindow Background Image") window.show() return app.exec_() if __name__ == '__main__': main() |
from:http://codeprogress.com/python/libraries/pyqt/showPyQTExample.php?index=424&key=QMainWindowBackground 继续>
RequireJS can be configured to append a value to each of the script urls for cache busting. From the RequireJS documentation (http://requirejs.o 继续>
For Objective C place like this.
1 2 | NSData *colorData = [NSKeyedArchiver archivedDataWithRootObject:color]; [[NSUserDefaults standardUserDefaults] setObject:colorData forKey:@"myColor"]; |
To get back like this.
1 2 | NSData *colorData = [[NSUserDefaults standardUserDefaults] objectForKey:@"myColor"]; UIColor *color = [NSKeyedUnarchiver unarchiveObjectWithData:colorData]; |
For Swift set like this [cra 继续>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | __weak UIViewController *weakSelf=self; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ weakSelf.cacheVC=[MLCacheWebviewVC new]; weakSelf.cacheVC.url=[NSURL URLWithString:@"/index.html" relativeToURL:BASE_URL]; [weakSelf addChildViewController:weakSelf.cacheVC]; [self.tableView addSubview:weakSelf.cacheVC.view]; [weakSelf didMoveToParentViewController:weakSelf]; weakSelf.cacheVC.view.frame=CGRectMake(0,0,SCREEN_WIDTH,THE1PX_CONST); weakSelf.cacheVC.view.layer.opacity=0.01; NSURLRequest *request =[NSURLRequest requestWithURL:weakSelf.cacheVC.url]; [weakSelf.cacheVC.webView loadRequest:request]; [weakSelf.cacheVC.view setNeedsLayout]; [weakSelf.cacheVC.view layoutIfNeeded]; }); |
因为前段时间突然被改为大色块版本,收到了不少吐槽…… 现在已经改回,并做了一些更正和修改。 更新内容: 增加评论功能(来自多说) 增加以下站点: 网管协会 删除以下站点: 万事屋 失物招领 泡面购 更正以下站点地址: 信网中心 菩提改为南洋PT 研究生招生 有建议请在导航 继续>