Shadenfreude. From the German words, Schaden and Freude, damage and joy. It means to take spiteful, malicious delight in the misfortune of others. We used to dismiss this as simply an ugly side of human nature, but it is much much more than that. Recently a Stanford professor actually captured Schadenfreude on a brain scan. It's a physiological medical phenomenon. When we see others fall it sometimes causes a chemical to be released in the dorsal striatum of the brain which actually causes us to feel pleasure. If you watch the news or read the papers, which of course you don't because the Judge said not to, but if you did, you would see the undeniable delicious joy of the media and the public over Kelly Nolan's plight. I have no doubt that you want Kelly Nolan to be punished. She married for money, she had an affair, she carried on naked in the pool with her boyfriend. She's cold, materialistic, unlikable, and it might bring you all pleasure to see her go to jail. But as for evidence to establish that she com
var array = [1,6,2,4,1,5,7,3,3,4,6,1,4]; | |
var dupeArray = [], x, i; | |
for (x in array) { | |
i = array[x]; | |
if (array.indexOf(i) !== array.lastIndexOf(i) && dupeArray.indexOf(i) == -1) { | |
dupeArray.push(i); | |
} | |
} |
#!/bin/bash | |
# Create the template | |
read -d '' template <<- EOF | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML6 - The Spec That Brings Us Freedom</title> | |
<meta name="description" content="HTML5 was a great leap forward for web developers, however there is a missing void that HTML5 has yet to fix and that void is truly semantic markup."> | |
<link rel="stylesheet" type="text/css" href="style.css" /> |
C:\Users\Nenad>reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v RPEnabled /t REG_DWORD /d "0" | |
Value RPEnabled exists, overwrite(Yes/No)? yes |
<div class="btn"> | |
Button Text | |
</div> | |
<div class="btn-wrap"> | |
<div class="btn"> | |
Button text | |
</div> | |
</div> |
-
You can’t follow your orgs projects without knowing the name of them all or some master list.
-
When someone from the org leaves, it doesn't matter because the repo is owned by the group. With your method, when the person leaves he's got to transfer ownership which also breaks all the remote links, etc. The tech industry has people coming and going a lot. Moving repo owners that often would be a pain.
-
I really don't want to remember which version of a project belongs to which org. "Is yammer's etherpad lite fork the one by /foo, /bar, or /baz?"
-
Adding 20, or even 100s of engineers to every new project is a pain. Right now when a new recruit joins he instantly has access to all of the org which has dozens or more repos. If he sees a typo or something easy he can fix or is having an issue with something he doesn't have to wait for a pull request to get approved, he can just edit it.
Or, to sum all of these up, why make more process?
// We'll wrap our app in the "app" namespace | |
app = { | |
model: {} | |
, view: {} | |
, controller: {} | |
}; | |
// Setup our data if this is the first time opening our app | |
app.data = { |
# Find a directory | |
# use like: fdir foo | |
function fdir { | |
find . -name $1 -type d | |
} |
(function(d){d.fn.fitVids=function(e){var c={customSelector:null},b=document.createElement("div"),f=document.getElementsByTagName("base")[0]||document.getElementsByTagName("script")[0];b.className="fit-vids-style";b.innerHTML="­<style> .fluid-width-video-wrapper { width: 100%; position: relative; padding: 0; } .fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style>"; | |
f.parentNode.insertBefore(b,f);e&&d.extend(c,e);return this.each(function(){var b=["iframe[src*='player.vimeo.com']","iframe[src*='www.youtube.com']","iframe[src*='www.kickstarter.com']","object","embed"];c.customSelector&&b.push(c.customSelector);d(this).find(b.join(",")).each(functi |
Docs: http://epiceditor.com
Source: http://github.com/OscarGodson/EpicEditor
import
is nowimportFile
and has more functionality.exportHTML
is nowexportFile
and has more functionality.get
is nowgetElement
with more selectors and slightly modified existing ones.