I hereby claim:
- I am grhbit on github.
- I am arhbit (https://keybase.io/arhbit) on keybase.
- I have a public key ASBzqddnNyDPAyh2tSeitgNiiqf8-idcmpNU40cBTveZNQo
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # This file echoes a bunch of 24-bit color codes | |
| # to the terminal to demonstrate its functionality. | |
| # The foreground escape sequence is ^[38;2;<r>;<g>;<b>m | |
| # The background escape sequence is ^[48;2;<r>;<g>;<b>m | |
| # <r> <g> <b> range from 0 to 255 inclusive. | |
| # The escape sequence ^[0m returns output to default | |
| setBackgroundColor() |
I hereby claim:
To claim this, I am signing this object:
| module.exports = { | |
| parser: '@typescript-eslint/parser', | |
| parserOptions: { | |
| project: './tsconfig.json', | |
| }, | |
| extends: [ | |
| 'airbnb', | |
| 'plugin:@typescript-eslint/recommended', | |
| 'plugin:prettier/recommended', | |
| 'prettier/@typescript-eslint', |
| (() => { | |
| let req = new XMLHttpRequest(), | |
| page = _sharedData.entry_data.ProfilePage, | |
| user = page[page.length-1].graphql.user, | |
| url = `/graphql/query/?query_hash=37479f2b8209594dde7facb0d904896a&variables={"id":"${user.id}","first":${user.edge_followed_by.count}}`; | |
| if (!confirm(`${user.full_name}?`)) | |
| return; | |
| req.onloadend = () => { |
| using System; | |
| using System.Collections.Generic; | |
| namespace luunate | |
| { | |
| public static class StringUtils | |
| { | |
| public static string Join(this IEnumerable<string> values, string separator = " ") { | |
| return string.Join (separator.IfNull(" "), values); | |
| } |
| #include <iostream> | |
| #include <sys/time.h> | |
| #include "sort.hpp" | |
| #include "test-gen.hpp" | |
| int main(int argc, char **argv) { | |
| srand(time(NULL)); | |
| const int iteration = 1; | |
| const int n = 500000; | |
| int **arr = new int* [iteration]; |