server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
or
| defmodule Citrusbyte do | |
| def flatten([head | tail]) do | |
| if(is_list(head)) do | |
| flatten(head) ++ flatten(tail) | |
| else | |
| [head] ++ flatten(tail) | |
| end | |
| end | |
| def flatten([]) do | |
| [] |
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
or
| #!/bin/zsh | |
| export CLICOLOR=1 | |
| export WORKON_HOME=$HOME/.virtualenvs | |
| export PROJECT_HOME=$HOME/Devel | |
| source /usr/local/bin/virtualenvwrapper.sh | |
| export GOROOT=/usr/local/go | |
| export PATH=$GOROOT/bin:$PATH | |
| export GOPATH=/Users/kavichu/workspace/go-workspace |
| [package] | |
| name = "cli-0" | |
| version = "0.1.0" | |
| authors = ["Luis Valdes <[email protected]>"] | |
| edition = "2018" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| structopt = "0.3.13" |
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| /** | |
| * @dev Contract module that helps prevent reentrant calls to a function. | |
| * | |
| * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier | |
| * available, which can be applied to functions to make sure there are no nested | |
| * (reentrant) calls to them. |
| This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
| ✅ did:3:bafyreia6bzlwxi6a3iny5wsi5sh5oajxqw5jqsdm455m6bxlzcdtltxetu ✅ | |
| Create your profile today to start building social connection and trust online at https://3Box.io/ |
| jmeter -n -t /app/benchmark.jmx \ | |
| -l /app/jmeter.log \ | |
| -Jhost=magento.aminovate.com \ | |
| -Jrequest_protocol=https \ | |
| -Jadmin_password=Urubu#2024#7e43d4daee7e \ | |
| -Jbase_path=/ \ | |
| -JfrontendPoolUsers=50 \ | |
| -JaddToCartByGuestPercentage=80 \ | |
| -JaddToCartByCustomerPercentage=20 \ | |
| -JadminPoolUsers=50 \ |