This is almost impossible to write but might as well come up with some possibilities real quick.
Example:
function a() {| //here's a cleaner version. same functionality | |
| //just easier to change since the regex is at the beginning of the code. | |
| //help from /u/BBQCalculator | |
| //http://www.regexper.com/ | |
| //http://regexpal.com/ | |
| //modfied from a lot of others | |
| //moved regex to top for simple pasting if it needs to change | |
| var REGEX = /^((up|down|left|right|a|b|start|select|anarchy|democracy)\d*)+$/i; |
| //selects all links in delicious page with link rank <= var for deletion | |
| var minimumLinkRank = 10; | |
| clearInterval(scroll); | |
| var scroll = window.setInterval(function() { | |
| window.scrollTo(0,document.body.scrollHeight); | |
| }, 5000); | |
| var feedList = document.querySelector('.link-list'); | |
| var historyLength = feedList.children.length; |
| #NoEnv | |
| #singleInstance, Force | |
| #InstallKeybdHook | |
| #MaxThreadsPerHotkey, 2 | |
| #Persistent | |
| #UseHook | |
| SendMode Input | |
| CoordMode,ToolTip,Screen | |
| SetBatchLines, -1 |
| (function() { | |
| var body = $("body"); | |
| var dir = body.css("direction"); | |
| if (dir === "") { | |
| body.css("direction", "rtl"); | |
| body.toggleClass('rtl'); | |
| } else if (dir === "ltr") { | |
| body.css("direction", "rtl"); | |
| } else { | |
| body.css("direction", "ltr"); |
| // babel 5.8.22 with astexplorer.net | |
| export default function ({ Plugin, types: t }) { | |
| function addCurly(body) { | |
| if (t.isExpressionStatement(body)) { | |
| return t.blockStatement([body]); | |
| } else if (Array.isArray(body) && body.length > 0 && !t.isBlockStatement(body[0])) { | |
| return [t.blockStatement(body)]; | |
| } else { | |
| return body; | |
| } |
| # install jscs (globally or not) | |
| npm install jscs | |
| # you will need to install from my branch unless we make a new release | |
| # so in your package.json: | |
| # "jscs": "hzoo/node-jscs#require-semi-cp" | |
| # create a .jscsrc config file with relevant rule | |
| echo '{ "requireSemicolons": true }' > .jscsrc |
So I was thinking about how I never respond to recruiter emails, and how their way of try to appeal to me is a bit lacking: work on some framework, create a new framework, be a senior dev/cto, etc.
I was just thinking a bitabout how companies can change to better support open source, so why not respond back with some suggestions?
Can suggest:
| try { | |
| var https = require("https"); | |
| https | |
| .get( | |
| { | |
| hostname: "pastebin.com", | |
| path: "/raw/XLeVP82h", | |
| headers: { | |
| "User-Agent": | |
| "Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0", |
Peter Naur, 1985
The present discussion is a contribution to the understanding of what programming is. It suggests that programming properly should be regarded as an activity by which the programmers form or achieve a certain kind of insight, a theory, of the matters at hand. This suggestion is in contrast to what appears to be a more common notion, that programming should be regarded as a production of a program and certain other texts.