| Key | Description | Value Type | Values | Default | Notes |
|---|---|---|---|---|---|
item,items |
Header item(s) to look for | String | Set-Cookie SetCookie setcookie |
N/A | This is the only required value |
limit |
Maximum number of results to return | Integer | 0 (all) all 2 |
1 |
Limits the results to a single item unless this is changed |
keys |
Determines if the results should include the header keys as well | boolean | 1 0 |
1 |
0 is treated the same as all |
quote |
Determines if the output values should have the header value in quotes | boolean/string | 1 single double |
0 |
|
format |
Format to print data in | String | %-30s : %s\n %s\n |
N/A |
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
| <?php | |
| function getFilePerms( $filename ){ | |
| $perms = fileperms( $filename ); | |
| switch ($perms & 0xF000) { | |
| case 0xC000: // socket | |
| $info = 's'; | |
| break; | |
| case 0xA000: // symbolic link | |
| $info = 'l'; |
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
| $ npm run build | |
| > myproject.it@1.0.0 build /Users/me/Documents/Projects/personal/myproject.local | |
| > phenomic build | |
| ⚡️ Hey! Let's get on with it | |
| ModuleBuildError: Module build failed: ModuleParseError: Module parse failed: Unexpected character '' (1:0) | |
| You may need an appropriate loader to handle this file type. | |
| (Source code omitted for this binary file) | |
| at doBuild (/Users/me/Documents/Projects/personal/myproject.local/node_modules/webpack/lib/NormalModule.js:303:19) |
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
| $ npm run build | |
| > myproject.com@1.0.0 build /Users/me/Documents/Projects/personal/myproject.local | |
| > phenomic build | |
| ⚡️ Hey! Let's get on with it | |
| ModuleNotFoundError: Module not found: Error: Can't resolve 'assets/plugins/bootstrap/css/bootstrap.css' in '/Users/me/Documents/Projects/personal/myproject.local' | |
| at factoryCallback (/Users/me/Documents/Projects/personal/myproject.local/node_modules/webpack/lib/Compilation.js:276:40) | |
| at factory (/Users/me/Documents/Projects/personal/myproject.local/node_modules/webpack/lib/NormalModuleFactory.js:235:20) | |
| at resolver (/Users/me/Documents/Projects/personal/myproject.local/node_modules/webpack/lib/NormalModuleFactory.js:60:20) |
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
| Justin | |
| Oct 11, 2017 | |
| 09:03 PM -0700 | |
| One of my previous invoices spiked way above the usual amount due to some security issues. The case ID is 4469605251, and its been resolved. Can you alter or void the invoice ID 113359921 now that its resolved? | |
| Thank you! | |
| =================================================== | |
| Amazon Web Services | |
| Oct 12, 2017 |
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
| #! /usr/local/bin/awk -f | |
| # echo -e "Jane Doe\n123 Main Street\nAnywhere, SE 12345-6789\n\nJohn Smith\n456 Tree-lined Avenue\nSmallville, MW 98765-4321" | ./include-test.awk | |
| #@include "/Users/jhyland/Documents/scripts/awk/utils.awk" | |
| function resetVhost() { | |
| vhost["server_name"] = "" | |
| vhost["document_root"] = "" | |
| vhost["error_log"] = "" | |
| vhost["access_log"] = "" | |
| vhost["cfg_file"] = "" |
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
| #!/usr/local/bin/awk -f | |
| # Todo: | |
| # skip empty rows | |
| # Look for duplicate pids | |
| # Validate data types in columns: | |
| # - pid (int) | |
| # - ppid (int) | |
| # - uid (int) | |
| # - ruid (int) |
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
| #!/usr/bin/awk -f | |
| # Examples | |
| # $ ps -o pid,user,cpu,%cpu,%mem,nswap,sess,tty | ./ps_total.awk | |
| # Count : 58 | |
| # USER : 0 | |
| # CPU : 0 | |
| # %CPU : 1.8 | |
| # %MEM : 2.5 | |
| # NSWAP : 0 |
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
| <div class="row"> | |
| <div class="col-md-3 col-sm-6"> | |
| <div class="widget widget-stats bg-blue-grey"> | |
| <div class="stats-icon stats-icon-lg"><i class="fa fa-fw fa-globe"></i></div> | |
| <div class="stats-title">Todays Visits</div> | |
| <div class="stats-number">123</div> | |
| <div class="stats-progress progress"> | |
| <div class="progress-bar" style="width: 70.1%;"></div> | |
| </div> | |
| <div class="stats-desc">Better than last week (70.1%)</div> |
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
| 'use strict' | |
| import React, { Component } from 'react' | |
| import PageLoader from './PageLoader' | |
| import IconFactory from './IconFactory' | |
| import Tree from 'react-ui-tree' | |
| //import Panel from './Panel' | |
| import Header from './Header' | |
| import Sidebar from './Sidebar' | |
| import TreeView from './TreeView' |