I hereby claim:
- I am jessicagreben on github.
- I am jessg (https://keybase.io/jessg) on keybase.
- I have a public key ASDLj2rOEsgiyRt-zCbR7R8VERuHWl1JK6l2t2wsWL5thAo
To claim this, I am signing this object:
| $ curl <ip-of-nginx-ingress-controller-pod>:10254/metrics | |
| # HELP cpu_seconds_total Cpu usage in seconds | |
| # TYPE cpu_seconds_total counter | |
| cpu_seconds_total 125.68 | |
| # HELP go_gc_duration_seconds A summary of the GC invocation durations. | |
| # TYPE go_gc_duration_seconds summary | |
| go_gc_duration_seconds{quantile="0"} 1.9937e-05 | |
| go_gc_duration_seconds{quantile="0.25"} 2.5599e-05 | |
| go_gc_duration_seconds{quantile="0.5"} 2.8249e-05 |
I hereby claim:
To claim this, I am signing this object:
| // Problem 1 - Palindrome | |
| // Write a function that takes a string as an input | |
| // and returns true if the string is the same string forwards | |
| // and backwards | |
| String.prototype.reverse = function() { | |
| return this.split("").reverse().join(""); | |
| } | |
| const isPalindrome = function(str) { |
| require 'trie' | |
| class LongestConcatWord | |
| def initialize(file) | |
| @trie = Trie.new | |
| @word_hash = Hash.new | |
| @original_word = nil | |
| @file = file | |
| @concat_words = [] | |
| @count = 0 |