Backstory: I decided to crowdsource static site generator recommendations, so the following are actual real world suggested-to-me results. I then took those and sorted them by language/server and, just for a decent relative metric, their Github Watcher count. If you want a heap of other projects (including other languages like Haskell and Python) Nanoc has the mother of all site generator lists. If you recommend another one, by all means add a comment.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UI- and App Frameworks Evangelist - Jake Behrens, [email protected], twitter: @Behrens | |
- What's new in Cocoa | |
- Accessibility in iOS | |
- Building User Interfaces for iOS 7 | |
- Getting Started with UIKit Dynamics | |
- What's new in Cocoa Touch | |
- What's New With Multitasking | |
- Best Practices for Cocoa Animation | |
- Improving Power Efficiency with App Nap | |
- Introducing Text Kit |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get clean | |
apt-get update | |
apt-get upgrade -y | |
apt-get dist-upgrade -y | |
passwd | |
apt-get install chkrootkit | |
leafpad /etc/hostname | |
leafpad /etc/hosts | |
updatedb | |
cat /etc/shadow | awk -F: '($2==""){print $1}' > ./no_password_users.txt |
- TouchBar is pretty pretty neat, and has the potential to be really useful (although so far in practice I've not really gotten much out of it that I didn't just wish I had the normal keys for, except maybe the emoji toolbar).
- there's some fun novel stuff like a NyanCat touch bar app that adds an extra point for nerdy cool factor
- The thing is really REALLY thin and light. Noticably so over my previous 2013 13" MBP Retina
- The screen is much brighter than my previous model, and has slightly better/more accurate native color
- The speakers are much louder than my previous model (about on par with my iPad Pro speakers, which are fantastic and quite loud)
- Processing power def feels a bit snappier. I wasn't too unhappy with my previous model, but so far this one feels a bit quicker, although it could be the placebo effect since I have no objective data to back that up. UPDATE 3/27 while the processing still feels snappier at times, it really seems like the computer significantly slows down a l
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
.. | |
........ | |
@ | |
* | |
*.* | |
*.*.* | |
🎠|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open direct messages window, paste this into console. | |
function deleteNextConversation() | |
{ | |
if (!(dm = document.getElementsByClassName("DMInbox-conversationItem")[0])) { | |
clearInterval(tmr) | |
return; | |
} | |
dm.firstChild.click(); | |
setTimeout('document.getElementsByClassName("js-actionDeleteConversation")[0].click()', 1000); |