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
| Describe your experience building or scaling a product management function for a B2B software company. What structure, processes, or frameworks did you put in place, and what impact did they have? | |
| How have you translated complex customer and market needs into a clear product strategy and roadmap? Please share a specific example and the outcomes. | |
| What experience do you have working with asset intensive industries such as utilities, transportation, pipeline, or government? How did that domain knowledge influence product decisions? | |
| Describe how you have partnered with engineering to balance long term platform strategy with near term delivery. How do you manage prioritization and tradeoffs? | |
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
| Device Information | |
| Device Manufacturer: SINOWEALTH | |
| Product Name: Gaming KB | |
| Serial Number: N/A | |
| USB Version Supported: 2.00 | |
| USB Speed Capable: USB 2.0 High-speed | |
| USB Speed Connected: USB 1.1 Full-speed | |
| Maximum Current: 500 mA |
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="hero-image"> | |
| <!-- <img src="https://images2.imgbox.com/24/1c/FsJ4AwKi_o.jpg" alt=""> --> | |
| <div class="portfolio"> | |
| <h2 class="portfolio-title"><span class="portfolio-title--small">Hi there, I'm</span> Esther Itolima | |
| <hr> | |
| </h2> | |
| <p class="portfolio-intro">A frontend web developer with great passion for tech and fascinated <br> to solve real world problem with software.</p> | |
| </div> | |
| <nav id="navbar" class="not-fixed"> | |
| <ul> |
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
| import subprocess | |
| #from https://stackoverflow.com/questions/1825692/can-python-send-text-to-the-mac-clipboard | |
| def write_to_clipboard(output): | |
| process = subprocess.Popen( | |
| 'pbcopy', env={'LANG': 'en_US.UTF-8'}, stdin=subprocess.PIPE) | |
| process.communicate(output.encode('utf-8')) | |
| #get inputs | |
| gcomm = float(input("Enter gross commission only: ")) |
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/env python | |
| from sys import argv | |
| from os.path import exists | |
| import simplejson as json | |
| #script, in_file, out_file = argv | |
| # Step 1: get XML from http://webservices.commuterpage.com/counters.cfc?wsdl&method=GetAllCounters | |
| # Step 2: Convert XML to JSON with https://www.freeformatter.com/xml-to-json-converter.html |
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
| import os | |
| from osgeo import ogr | |
| feature_count_array = [] | |
| top = os.getcwd() | |
| for root, dirs, files in os.walk(top): | |
| for file in files: | |
| if file.endswith(".shp"): | |
| dataset = ogr.Open(file) | |
| print(dataset.name) | |
| layer = dataset.GetLayerByIndex() |
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
| { | |
| "baseLayer": { | |
| "tilejson": "2.2.0", | |
| "name": "base", | |
| "version": "1.0.0", | |
| "scheme": "xyz", | |
| "tiles": [ | |
| "https://a.tile.openstreetmap.org/{z}/{x}/{y}.png" | |
| ] | |
| }, |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Airship, CARTO.js and HighCharts Example</title> | |
| <link rel="stylesheet" href="https://libs.cartocdn.com/airship-style/v2.1.1/airship.css"> | |
| <script src="https://libs.cartocdn.com/airship-components/v2.1.1/airship.js"></script> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Load a public CARTO Builder URL dynamically</title> | |
| <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /> | |
| <script src="https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.js"></script> | |
| <link href="https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.css" rel="stylesheet" /> | |
| <style> | |
| body { margin:0; padding: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
| { | |
| "baseLayer": { | |
| "tilejson": "2.2.0", | |
| "name": "base", | |
| "version": "1.0.0", | |
| "scheme": "xyz", | |
| "tiles": [ | |
| "https://a.tile.openstreetmap.org/{z}/{x}/{y}.png" | |
| ] | |
| }, |
NewerOlder