This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| CURL_FORMAT="URL: %{url_effective} ReturnCode: %{http_code}, TTFB: %{time_starttransfer}, Total time: %{time_total}, Download Size: %{size_download}" | |
| FILE_URL=$1 | |
| TOTAL_URL=$(wc -l < $FILE_URL | xargs) | |
| COUNTER=1 | |
| echo "1..$TOTAL_URL" | |
| while read LINE | |
| do | |
| RES=$(curl -L -s -o /dev/null -w "$CURL_FORMAT" $LINE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require('express'); | |
| var app = express(); | |
| app.get('/*', function (req, res) { | |
| console.log(req.originalUrl) | |
| console.log(req.headers) | |
| res.send('Hello World!'); | |
| }); | |
| app.listen(8090, function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var head = document.getElementsByTagName('head')[0]; | |
| var script = document.createElement('script'); | |
| script.type = 'text/javascript'; | |
| script.src = 'https://cdn.rawgit.com/Marak/faker.js/master/examples/browser/js/faker.js'; | |
| script.onload = function() { | |
| console.log("------>", faker, $("input[name='email']")) | |
| window.randomData = function() { | |
| // console.log("random data"); | |
| faker.locale = 'es_MX'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # get Makefile directory name: http://stackoverflow.com/a/5982798/376773 | |
| .DEFAULT_GOAL := client-generated | |
| THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) | |
| THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd) | |
| ONLINE_GEN_URL=https://generator3.swagger.io/api/generate | |
| # client specific | |
| LANG:=javascript | |
| CODE_GEN_VERSION=V3 | |
| API_DOC_URL:=http://localhost:8000/openapi.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <scheme name="Darcula sarayi" version="142" parent_scheme="Darcula"> | |
| <option name="FONT_SCALE" value="1.0" /> | |
| <metaInfo> | |
| <property name="created">2020-06-24T10:10:21</property> | |
| <property name="ide">idea</property> | |
| <property name="ideVersion">2019.3.0.0</property> | |
| <property name="modified">2020-06-24T10:10:28</property> | |
| <property name="originalScheme">Darcula sarayi</property> | |
| </metaInfo> | |
| <option name="LINE_SPACING" value="1.0" /> |
OlderNewer