jq is useful to slice, filter, map and transform structured json data.
brew install jq
Assume IIS is installed. My machine already had IIs 8.5. | |
Install Python | |
============== | |
1. Download web installer (Python 3.6.3). | |
2. Run as Administrator. | |
3. Select custom installation for all users. | |
4. Choose install directory such that there are no white spaces in the path. Not sure if it needs to be done. Just being cautious. | |
5. Check the box for "Add Python 3.6 to PATH". |
# Importing Scripts directly from Tweets! #280characters | |
# | |
# NOTE: This should not be used for any production environment. Or any environment for that matter. Use https://PowerShellGallery.com | |
# | |
# | |
#################################### | |
# Example # | |
#################################### | |
# | |
# |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
import itertools | |
from decimal import Decimal | |
class Runtime: | |
def __init__(self, proc, start, end): | |
self.proc = proc | |
self.start = start | |
self.end = end |
MIT License
Copyright (c) [year] [fullname]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: