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
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 \ |
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
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/ |
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
// 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 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
[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" |
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/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 |
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
or
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
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 | |
[] |
bash quickstart.sh $VIRTHOST
TASK [setup/undercloud : Get undercloud vm ip address] *************************
task path: /home/ansible/.quickstart/tripleo-quickstart/roles/libvirt/setup/undercloud/tasks/main.yml:295
Monday 17 April 2017 18:04:07 +0000 (0:00:02.322) 0:11:31.488 **********
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
let arr = [[1,2,[3]],4]; | |
let flatten = (accu, e) => { | |
if(!Array.isArray(e)){ | |
return [...accu, e]; | |
}else{ | |
return [...accu, ...e.reduce(flatten, [])]; | |
} | |
} |
NewerOlder