This one is a simple and handy trick when you want to copy your directories without node_modules folder.
Enter this command in your terminal.
robocopy SOURCE DEST /mir /xd node_modules| @ atualizar permissao para rodar .sh via github actions | |
| git update-index --chmod=+x your_script.sh |
| import { buildData } from "./build-data"; | |
| <let/data = []/> | |
| <let/selected = null/> | |
| <div class="jumbotron"> | |
| <div class="row"> | |
| <div class="col-md-6"> | |
| <h1>Marko 6 (keyed)</h1> |
| <?php | |
| $key = 'your-secret-key-here'; | |
| $header = [ | |
| 'typ' => 'JWT', | |
| 'alg' => 'HS256' | |
| ]; | |
| $header = json_encode($header); | |
| $header = base64_encode($header); |
| https://purge.jsdelivr.net/npm/@mailbiz/onsite-linxcommerce-vendor@next |
| Checkout | |
| git checkout --orphan latest_branch | |
| Add all the files | |
| git add -A | |
| Commit the changes |
| if (req.http.host ~ "^mobile\.example\.com") { | |
| set req.http.host = "example.com"; | |
| set req.url = regsub(req.url, "^/", "/mobile/"); | |
| set req.url = regsub(req.url, "$", "?theme=mobile"); | |
| } |
| var tzoffset = (new Date()).getTimezoneOffset() * 60000; //offset in milliseconds | |
| var localISOTime = (new Date(Date.now() - tzoffset)).toISOString().slice(0, -1); | |
| // => '2015-01-26T06:40:36.181' |
| // Switch to admin database and get list of databases. | |
| db = db.getSiblingDB("admin"); | |
| dbs = db.runCommand({ "listDatabases": 1 }).databases; | |
| // Iterate through each database. | |
| dbs.forEach(function(database) { | |
| db = db.getSiblingDB(database.name); | |
| // Get the Group collection | |
| collection = db.getCollection("Group"); |