Skip to content

Instantly share code, notes, and snippets.

@davatron5000
davatron5000 / gist:2254924
Created March 30, 2012 20:57
Static Site Generators

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.

Ruby

@eternalstorms
eternalstorms / Apple Evangelists.txt
Created June 12, 2013 09:07
Apple Evangelists (WWDC 2013)
UI- and App Frameworks Evangelist - Jake Behrens, behrens@apple.com, 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
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active July 7, 2024 19:32
A badass list of frontend development resources I collected over time.
@ragingwind
ragingwind / Backend Architectures Keywords and References.md
Last active July 4, 2024 13:00
Backend Architectures Keywords and References
@ericelliott
ericelliott / essential-javascript-links.md
Last active July 18, 2024 15:03
Essential JavaScript Links
@NitescuLucian
NitescuLucian / kali.sh
Created March 12, 2017 21:47
Kali Linux Hardening.
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
@jglovier
jglovier / macbook-pro-2016-thoughts.md
Last active March 27, 2017 16:07
Thoughts on using my 2016 Macbook Pro since November 2016.

Likes

  • 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
@jhaddix
jhaddix / all.txt
Last active July 15, 2024 23:21
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
@taviso
taviso / delete-twitter-dm.js
Created November 3, 2017 16:33
Automate deleting twitter direct messages.
// 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);