blog.bithound.io
Add lint checking to your workflow
http://blog.bithound.io/add-lint-checking-to-your-workflow
Add lint checking to your workflow. At bitHound, we have a variety of critics in place to help ensure you are building your best software possible. From detecting outdated and insecure dependencies to finding those common lint errors it doesn't take long for that list to start piling up. For example, if you are using JSHint, there are a variety of plugins you can use to bring the awesomeness of JSHint right into your text editor. A few of our favourites include jshint.vim. For Vim and JSHint Gutter.
tech.lauritz.me
Linting JavaScript in 2015
http://tech.lauritz.me/linting-javascript-in-2015
Linting JavaScript in 2015. Jul 19, 2015 9 mins. When writing in whatever programming language, you will want to write something that looks consistent. It doesnt really matter how you write your code but its important that you keep it consistent. That may be easy when youre the only developer. It can be hard for a bigger team though to write in the same style. Some may prefer four instead of two spaces or even tabs over spaces (sigh)! Short lint history for JavaScript. It all started with JSLint. Is only...
suzuki.tdiary.net
JSCS が 2.0 になって JSX というか ES6 の構文に対応していた! - 雑文発散(2015-08-07)
http://suzuki.tdiary.net/20150807.html
JSCS が 2.0 になって JSX というか ES6 の構文に対応していた. の間にスペースが入っていない みたいな指摘をするのもされるのもイマイチなので、ウチのプロジェクトでは PHP CS Fixer(PHP Coding Standards Fixer). や JSCS (JavaScript Code Style). そのうちの JSCS が 2.0 になって ES6/JSX に対応した. いまだに return の中に HTML タグっぽいもの がそのまま入っている JSX の構文を見ると違和感を持ってしまうのだけど、PHP の namespace の区切り文字が だという違和感にも慣れたオレならきっと大丈夫だと思っている今日このごろではある。 Https:/ www.facebook.com/. Http:/ m.facebook.com/. Https:/ www.google.co.jp/. Http:/ api.twitter.com/1/statu. This Diary is Running on tDiary.Net 3rd. Version 4.1.3.
brianhann.com
Write Your Own UI-Grid Plugin
http://brianhann.com/ui-grid-plugin-generator
April 21, 2015. April 21, 2015. Write Your Own UI-Grid Plugin. Of third-party modules out there for Angular, and even more plugins and extensions for those modules. But even with such a great ecosystem, you won’t always find the functionality that you need. And what if you want to share your finished product with others? As much work if you want nice, clean documentation and usable demos. I wanted to lower the barrier of entry for you and get you on your way to writing any. You don’t have to. The last on...
base2.io
blog.base2.io
http://base2.io/blog
We are Base Two. A technology company in Columbus, OH. May 25, 2016 – Caitlin Steinert. A Google I/O Experience. I have gone to my fair share of tech conferences so far in my career, but now I can say that I’ve been to Nerd Woodstock. Last week was the 10th annual Google I/O. Which took place at the Shoreline Amphitheatre, near Google’s main campus in Mountain View, California. The Keynote began with an amazing live Earth Harp. Performance of a song from the motion picture. Read more →. Read more →.
blog.portknox.net
ownCloud | PortKnox
https://blog.portknox.net/tag/owncloud
OwnCloud Mail v0.4 released – Ready for ownCloud 9 & PHP7. Yesterday we released the version 0.4 of ownCloud Mail. It has already been uploaded to the ownCloud app store. And can also be downloaded from Github. Here is the 0.4 changelog:. Add console command for account creation #1202 @ChristophWurst. Drop owncloud 7 support #1267 @ChristophWurst. Address collector – Addresses of sent mails will be used for auto-completion #1276 @ChristophWurst. PHP 7 support #1300 @ChristophWurst. The new features are:.
ioliu.cn
JavaScript 最佳实践: 提升你代码质量的一些提示&技巧 · 云淡风轻
http://ioliu.cn/2016/javascript-best-practices-tips-and-tricks-to-level-up-your-code
译] JavaScript 最佳实践: 提升你代码质量的一些提示&技巧. 原文地址: https:/ www.codementor.io/javascript/tutorial/javascript-best-practices. 译文地址: http:/ ioliu.cn/2016/javascript-best-practices-tips-and-tricks-to-level-up-your-code/. 避免全局污染(Avoid polluting the global scope). Declare an anonymous function. And call it immediately. Docbody.innerHTML = "Hello! 125;, 1000. 它和 Node.js 采用的是同样的方式,使用的. Exports, require, module, filename, dirname. Window {.}. Foo = {}. Point a key value to the object itself. Foobar = foo;. A = = "number".
teeohhem.com
Blog – Thomas R Alexander
http://teeohhem.com/blog
Developer and professional problem solver. June 14, 2016. Never silence generic exceptions in code…ever. This will be short and sweet. I recently came across some code that caught a generic exception but immediately discarded it. The exception actually held valuable intel into a problem in a production environment. Try: doSomethingThatRaises() except: pass. June 18, 2015. Using JSCS to Achieve a Consistent Code Style Within Your Team. JSCS can be installed via npm. Npm install jscs -g. 8211; requires tha...