open .
open .
In a weird folder in your terminal? That’s right open .
– I do this all the time đ
const el = document.createElement('div')
const txt = document.createElement('textarea')
txt.innerHTML = '× © <script>alert("bang!")<\/script>'
el.innerText = txt.innerText
document.body.appendChild(el)
const theHtml = document.createElement('div')
theHtml.innerText = txt.innerHTML
document.body.appendChild(theHtml)
Just a hack to escape html strings… guessing most would use a lib for this…
sudo killall coreaudiod
For years osx has had weird audio issues – from strange crackling to audio just randomly failing across the board. This still seems to solve it…
defaults write com.apple.dock no-bouncing -bool TRUE;
I have never liked those bouncing icons in osx…
main:{
header:{
{'Tasker'}
newCol:{'New Column'}
}
columns:{
scroll:{
NoteCols:{}
}
}
}
NoteCol:{
title:{['editable', 'focus']
close:{
{'×'}
}
}
newNote:{['editable', 'placeholder="New Note..."']}
hr:{}
noteContainer:{
Notes:{}
}
}
Note:{['focus']
close:{
{'×'}
}
checkbox:{}
content:{['edtiable']}
}
console.log('no errors :D');
The above is actually valid javascript, just a bunch of labels, blocks and a few arrays