Skip to content

Instantly share code, notes, and snippets.

View knorthfield's full-sized avatar

Kris Northfield knorthfield

View GitHub Profile
@knorthfield
knorthfield / click_connect.js
Last active June 15, 2018 06:49
Mass Connect LinkedIn
// Use in console on https://www.linkedin.com/mynetwork/
$('[data-control-name="connection_connections_connect"]').click();
$('[data-control-name="invite"]').click();
window.location.reload();
@knorthfield
knorthfield / key-nav.html
Created August 7, 2018 13:26
Proof of concept for keyboard nav of search results
<style>
a {
display: block;
}
:focus {
background-color: red;
outline: 0;
}
</style>
<input type="text" id="input" tabindex="0">
@knorthfield
knorthfield / laravel_parse_pasted_spreadsheet.php
Last active January 10, 2019 12:40
Laravel Parse Pasted Spreadsheet
<?php
collect(explode("\n", request()->spreadsheet))
->map(function($row){
return str_getcsv($row, "\t");
})
->each(function($cell) {
// $cell[0], $cell[1] etc
});