Skip to content

Instantly share code, notes, and snippets.

View kaiomagalhaes's full-sized avatar
🦑
Hunting giant octopuses

Kaio Magalhães kaiomagalhaes

🦑
Hunting giant octopuses
View GitHub Profile
//1000 ms is a maximum allowed value according to requirements
maximumResponseTime = 1000;
//100 is a number of sent requests according to requirements
iterations = 800;
//100 ms is a delay between requests according to requirements
//responseTimes is an array for collecting response time values
responseTimes = [];
i = 0;
while (i < iterations) {
# Updated by Siege %_VERSION%, %_DATE%
# Copyright 2000-2016 by %_AUTHOR%
#
# Siege configuration file -- edit as necessary
# For more information about configuring and running this program,
# visit: http://www.joedog.org/
#
# Variable declarations. You can set variables here for use in the
# directives below. Example:
@kaiomagalhaes
kaiomagalhaes / roadrunner.md
Last active March 11, 2021 20:44
Codelitt's Roadrunner commands

I am only the messenger, but here is my manual!

It looks like you already know about the help command, good job!

Features

Spotchecks

1. 👀 Jira Spotcheck

  • Where: any channel
  • Summary: Sends you a private message with a random list of cards in progress across all the jira boards
@import url('https://rsms.me/inter/inter.css');
$font-stack: 'Inter', sans-serif;
html {
font-family: $font-stack;
}
h1 {
font-size: 3.5rem;
$primary-color: #3BC6FB;
$secondary-color: #431F92;
$complementary-color: #101378;
$supportive-color: #FF475D;
$white-color: #FFFFFF;
$grey16-color: #E9ECEC;
$grey80-color: #384042;
$lightblue-color: #F0F8F9;
$mediumblue-color: #394ABC;
When submitting a pull request to, we ask that you squash your commits before we merge. Assuming that you are in a branch different from develop.
In your terminal, do the following:
Make sure your branch is up to date with the develop branch.
1. git pull origin develop --rebase
Start the rebase
2. git rebase -i develop.
You should see a list of commits, each commit starting with the word "pick".
3. Make sure the first commit says "pick" and change the rest from "pick" to "squash". -- This will squash each commit into the previous commit, which will continue until every commit is squashed into the first commit.

If applied, this commit will ... [Please complete the description]

Other minor changes:

  • minor change one
  • minor change two

Card Link:

<MY_CARD_LINK>

Design Expected Screenshot

$black : #000;
$darker-gray : #5C5C5C;
$light-gray : #EEE;
$text-default : #FFF;
$white : #FFF;
$blue : #101378;
$blue2 : #431f92;
$blue6 : #1D1D86;
$blue7 : #3BC6FB;
$blue8 : #394ABC;
// Default colors
@import './_constants.scss';
$black : #000;
$darker-gray : #5C5C5C;
$dark-gray : #B3B3B3;
$regular-gray : #CCC;
$light-gray : #EEE;
$text-default : #FFF;
$white : #FFF;

Make sure the following boxes are checked before submitting your PR, thanks!

[ ] Does this PR have a maximum of 15 files?

[ ] Is Codelitt's commit guideline applied to all commit messages?

[ ] Do you have a gif demonstrating the feature or the old/new behavior for bugfixes?

[ ] Does this PR have a description?