As we were preparing Playwright 1.1.0, I learned quite a lot about Web Proxies. Below is the summary of my findings.
There are two groups of proxies that drive internet:
As we were preparing Playwright 1.1.0, I learned quite a lot about Web Proxies. Below is the summary of my findings.
There are two groups of proxies that drive internet:
/*! | |
* Copyright 2015 Google Inc. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
(function (history, trackingId, options) { | |
const getParameterByName = (paramName) => { | |
var searchString = window.location.search.substring(1), | |
i, val, params = searchString.split("&"); | |
for (i=0;i<params.length;i++) { | |
val = params[i].split("="); | |
if (val[0] == paramName) { | |
return val[1] || undefined; | |
} | |
} |
Rich Hickey • 3 years ago
Sorry, I have to disagree with the entire premise here.
A wide variety of experiences might lead to well-roundedness, but not to greatness, nor even goodness. By constantly switching from one thing to another you are always reaching above your comfort zone, yes, but doing so by resetting your skill and knowledge level to zero.
Mastery comes from a combination of at least several of the following:
# | |
# Sed script to add "use strict"; to the top of files that don't | |
# already have it there. | |
# | |
# use like this: find . -name \*.js | xargs -n 1 sed -f use-strict.sed -i '' | |
# | |
1 { s/use strict/&/ | |
t | |
i\ | |
'use strict'; |