Skip to content

Instantly share code, notes, and snippets.

View nmattam's full-sized avatar

Nibin Abraham Mattam nmattam

View GitHub Profile
==> c1_master: Bundle complete! 2 Gemfile dependencies, 3 gems now installed.
==> c1_master: Use `bundle show [gemname]` to see where a bundled gem is installed.
==> c1_master: Compiling Cookbooks...
==> c1_master:
==> c1_master: ================================================================================
==> c1_master: Recipe Compile Error
==> c1_master: ================================================================================
==> c1_master:
==> c1_master:
==> c1_master: Chef::Exceptions::RecipeNotFound
==> chef: Running provisioner: shell...
chef: Running: inline script
==> chef: [2019-04-10 13:51:32] INFO WEBrick 1.3.1
==> chef: [2019-04-10 13:51:32] INFO ruby 2.4.3 (2017-12-14) [x86_64-linux]
==> chef: [2019-04-10 13:51:32] INFO WEBrick::HTTPServer#start: pid=4702 port=5000
==> s_standalone: Box 'bento/centos-7.6' could not be found. Attempting to find and install...
s_standalone: Box Provider: virtualbox
s_standalone: Box Version: >= 0
The box 'bento/centos-7.6' could not be found or
could not be accessed in the remote catalog. If this is a private
==> f_default: * ruby_block[restart-splunk-for-ulimit] action run
==> f_default: [2019-04-10T18:22:04+00:00] INFO: ruby_block[restart-splunk-for-ulimit] called
==> f_default:
==> f_default: - execute the ruby block restart-splunk-for-ulimit
==> f_default:
==> f_default: [2019-04-10T18:22:04+00:00] INFO: ruby_block[restart-splunk-for-ulimit] sending touch action to file[splunk-marker] (immediate)
==> f_default: Recipe: cerner_splunk::_restart_marker
==> f_default: * file[splunk-marker] action touch
==> f_default: [2019-04-10T18:22:04+00:00] INFO: file[splunk-marker] updated atime and mtime to 2019-04-10 18:22:04 +0000
==> f_default:
Apr 10 18:39:39 esbk208a kernel: [ pid ] uid tgid total_vm rss nr_ptes swapents oom_score_adj name
Apr 10 18:39:39 esbk208a kernel: [ 1349] 0 1349 8782 0 23 84 0 systemd-journal
Apr 10 18:39:39 esbk208a kernel: [ 1366] 0 1366 48222 0 30 394 0 lvmetad
Apr 10 18:39:39 esbk208a kernel: [ 1380] 0 1380 11925 1 26 549 -1000 systemd-udevd
Apr 10 18:39:39 esbk208a kernel: [ 2447] 0 2447 15511 0 28 163 -1000 auditd
Apr 10 18:39:39 esbk208a kernel: [ 2474] 81 2474 16615 69 35 112 -900 dbus-daemon
Apr 10 18:39:39 esbk208a kernel: [ 2484] 999 2484 153249 0 62 1061 0 polkitd
Apr 10 18:39:39 esbk208a kernel: [ 2485] 0 2485 6594 0 19 78 0 systemd-logind
Apr 10 18:39:39 esbk208a kernel: [ 2488] 0 2488 24899 0 36 172 0 gssproxy
Apr 10 18:39
class Solution(object):
def convert(self, s, numRows):
"""
:type s: str
:type numRows: int
:rtype: str
"""
rows, cols = (numRows, 14)
a = [[0]*cols]*rows