quanto mais voce souber sobre isso mais chances de ser contratado
https://twitter.com/sseraphini/status/1385561029778845698
https://gist.github.com/sibelius/ce9499969cf2a0ccea25291471038bf0
quanto mais voce souber sobre isso mais chances de ser contratado
https://twitter.com/sseraphini/status/1385561029778845698
https://gist.github.com/sibelius/ce9499969cf2a0ccea25291471038bf0
| { | |
| "window.zoomLevel": 5, | |
| "editor.formatOnSave": true, | |
| "code-runner.executorMap": { | |
| "python": "clear ; .\\venv\\Scripts\\python.exe" | |
| }, | |
| "code-runner.runInTerminal": true, | |
| "code-runner.clearPreviousOutput": true, | |
| // Python | |
| "[python]": { |
| // ==UserScript== | |
| // @name Aternos Anti Anti-adblock | |
| // @namespace r0630hh1edcuum5397kimyc0ucwy2h3psn4c6r1u4j | |
| // @version 0.1.33 | |
| // @description Fuck anti-adblock from the free hosting minecraft servers Aternos.org. Parry this you filthy casual! | |
| // @author Angry Developer against excessive ADs | |
| // @source https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a | |
| // @supportURL https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a | |
| // @updateURL https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a/raw/aternosAntiAntiadblock.user.js | |
| // @downloadURL https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a/raw/aternosAntiAntiadblock.user.js |
| // ==UserScript== | |
| // | |
| // Install with Tampermonkey or Greasemonkey | |
| // | |
| // @name Aternos Anti AdBlock Blocker | |
| // @version 1.0.5 | |
| // @description Blocks the anti ad block message and removes all red ad banners | |
| // @author ErdbeerbaerLP | |
| // @match https://aternos.org/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js |
| # prerequisites: `httpie`, `jq`, GNU's `parallel`. e.g. brew install <package> | |
| # there is max 100 page length n pages where n is 100 length page. Execute one one by one (there is no way you'll get more than 100 times parallelization) | |
| # in `.values[].links.clone[1].href` `1` is for SSH, where `0` would be for HTTPS. | |
| http https://<user>:<pass>@api.bitbucket.org/2.0/repositories/<account_name> pagelen==100 page==<page_num> | jq -r '.values[].links.clone[1].href' | parallel git clone | |
| # Voila it takes approx 1-2 minutes to clone a 100 repos. |
| *.md diff=markdown |
It's great for beginners. Then it turns into a mess.
| CustomMetric: | |
| Type: AWS::Logs::MetricFilter | |
| Properties: | |
| LogGroupName: !Sub /aws/lambda/${AWS::StackName} | |
| FilterPattern: '[str="REPORT", ..., str="Max", str="Memory", str="Used:", MaxMemoryUsed, str="MB"]' | |
| MetricTransformations: | |
| - MetricNamespace: Organization/Project/Service | |
| MetricName: MaxMemoryUsed | |
| MetricValue: $MaxMemoryUsed |
Partly pulled from the comments here: pycurl/pycurl#526
May also be a fix for this error:
ImportError: pycurl: libcurl link-time ssl backend (none/other) is different from compile-time ssl backend (openssl)
If you try to install PycURL and receive this error:
| brew install curl --with-openssl | |
| echo 'export PATH="/usr/local/opt/curl/bin:$PATH"' >> ~/.bash_profile | |
| # To not close the bash and open again | |
| export PATH="/usr/local/opt/curl/bin:$PATH" |