Skip to content

Instantly share code, notes, and snippets.

@laranicolas
laranicolas / lk.js
Last active April 2, 2022 17:16
Linkedin scraper
window.scrollTo(0,document.body.scrollHeight);
setTimeout(function(){
const copyToClipboard = str => {
const el = document.createElement('textarea');
el.value = str;
el.setAttribute('readonly', '');
el.style.position = 'absolute';
el.style.left = '-9999px';
document.body.appendChild(el);
el.select();
@laranicolas
laranicolas / flatten.rb
Last active November 22, 2017 14:42
Ruby flatten implementation
def flatten(items)
return items if items.empty?
tail = items.pop
if tail.kind_of? Array
flatten(items) + flatten(tail)
else
flatten(items) + [tail]
end
end
@laranicolas
laranicolas / .bash_profile
Last active September 11, 2017 21:45
Fancy prompt osx
function parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ on \1/ '
}
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
export PS1='\[\033[36m\]\u \[\033[m\]at \[\033[1;32m\]\[\033[0;32m\]\w\[\033[0m\]\[\033[33m\]$(parse_git_branch)\[\033[0m\] \n⚡️ '
export CLICOLOR=1
@laranicolas
laranicolas / angularjs_directive_attribute_explanation.md
Created April 11, 2016 15:57 — forked from CMCDragonkai/angularjs_directive_attribute_explanation.md
JS: AngularJS Directive Attribute Binding Explanation

AngularJS Directive Attribute Binding Explanation

When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.

  1. Raw Attribute Strings

    <div my-directive="some string" another-param="another string"></div>
1) Error:
PUT /children/:id::given valid params#test_0001_updates the child:
Dragonfly::Shell::CommandFailed: Command failed ('convert' '/tmp/RackMultipart20150602-21722-1onli7.png' '-resize' '200x200^^' '-gravity' 'Center' '-crop' '200x200+0+0' '+repage' '/tmp/dragonfly20150602-21722-kgeiz6.png') with exit status 127 and stderr sh: 1: convert: not found
app/controllers/children_controller.rb:30:in `update'
test/integration/children_test.rb:167:in `block (3 levels) in <class:Childrentest>'
2) Error:
GET /me#test_0001_returns the current user information: