Skip to content

Commit 3f444a4

Browse files
committed
add powershell starter page
1 parent 50e6110 commit 3f444a4

File tree

7 files changed

+54
-5
lines changed

7 files changed

+54
-5
lines changed

content/pages/02-development-environments/08-bash-shell.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ during Python software development as part of a programmer's
1717

1818
<a href="https://www.gnu.org/software/bash/" style="border:none"><img src="/img/logos/bash-wide.jpg" width="100%" alt="Bourne-again shell (Bash) logo." class="technical-diagram"></a>
1919

20+
<div class="well see-also">Bash is an implementation of the <a href="/shells.html">shells</a> concept. Learn more in the <a href="/development-environments.html">development environments</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
21+
2022

2123
### Bash resources
2224
* [Bash Guide for beginners](http://www.tldp.org/LDP/Bash-Beginners-Guide/html/Bash-Beginners-Guide.html)

content/pages/02-development-environments/09-zsh-shell.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ programmer's [development environment](/development-environments.html).
1616

1717
<a href="http://zsh.sourceforge.net/" style="border:none"><img src="/img/logos/zsh.jpg" width="100%" alt="Zsh logo." class="technical-diagram" style="border-radius:5px"></a>
1818

19+
<div class="well see-also">Zsh is an implementation of the <a href="/shells.html">shells</a> concept. Learn more in the <a href="/development-environments.html">development environments</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
20+
1921

2022
### Zsh beginner's resources
2123
* [Getting Started with Zshell](https://blog.gtmanfred.com/intro-zsh.html)
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
title: PowerShell
2+
category: page
3+
slug: powershell
4+
sortorder: 0210
5+
toc: False
6+
sidebartitle: PowerShell
7+
meta: PowerShell is an implementation of the shell concept and is often used during Python software development on Windows.
8+
9+
10+
# PowerShell
11+
[PowerShell](https://docs.microsoft.com/en-us/powershell/) is a commandline
12+
user interface for Windows that is often used as part
13+
of a Python programmer's
14+
[development environment](/development-environments.html).
15+
16+
<a href="https://docs.microsoft.com/en-us/powershell/" style="border:none"><img src="/img/logos/powershell.png" width="100%" alt="PowerShell logo."></a>
17+
18+
<div class="well see-also">PowerShell is an implementation of the <a href="/shells.html">shells</a> concept. Learn more in the <a href="/development-environments.html">development environments</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
19+
20+
21+
### PowerShell resources
22+
* [A Python Developer's Guide to Powershell](https://akr.am/blog/posts/a-python-developers-guide-to-powershell)
23+
24+
* [ChatOps with PowerShell](https://www.youtube.com/watch?v=XIMOFnfdOx0)
25+
26+
* [Getting Started with Windows PowerShell](https://docs.microsoft.com/en-us/powershell/scripting/getting-started/getting-started-with-windows-powershell)

content/pages/12-meta/01-change-log.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ on GitHub.
2121
that added a health check script. Fixed all URLs raised as issues with
2222
link rot, expired domains and redirects. Thanks
2323
[Samuel](https://github.com/huangsam)!
24-
* Add [Ansible](/ansible.html) and [Matplotlib](/matplotlib.html) stub
25-
pages with a few links, to be fleshed out later.
24+
* Add [Ansible](/ansible.html), [Matplotlib](/matplotlib.html) and
25+
[PowerShell](/powershell.html) stub pages with a few links, to be fleshed
26+
out later.
2627
* New [Redis](/redis.html) and [Ubuntu](/ubuntu.html) resources.
2728
* Happy New Year! This is the 6th year of Full Stack Python, coming after a
2829
wonderful [first five years](/blog/five-years-full-stack-python.html).

static/img/logos/powershell.png

121 KB
Loading
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<h3>What do you want to learn about Python development?</h3>
2+
<div class="row">
3+
<div class="c4">
4+
<div class="well select-next">
5+
{% include "choices/buttons/development-environments.html" %}
6+
</div>
7+
</div>
8+
<div class="c4">
9+
<div class="well select-next">
10+
{% include "choices/buttons/deployment.html" %}
11+
</div>
12+
</div>
13+
<div class="c4">
14+
<div class="well select-next">
15+
{% include "choices/buttons/databases.html" %}
16+
</div>
17+
</div>
18+
</div>

theme/templates/table-of-contents.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ <h4>2.1 <a href="/text-editors-ides.html">Text Editors and IDEs</a></h4>
3636
<div class="tc"><a href="/jupyter-notebook.html">Jupyter Notebook</a></div>
3737
<h4>2.2 <a href="/shells.html">Shells</a></h4>
3838
<div class="tc"><a href="/bourne-again-shell-bash.html">Bourne-again shell (Bash)</a></div>
39-
<div class="tc"><a href="zsh-shell.html">Zsh</a></div>
40-
<div class="tc sn">PowerShell</div>
39+
<div class="tc"><a href="/zsh-shell.html">Zsh</a></div>
40+
<div class="tc"><a href="/powershell.html">PowerShell</a></div>
4141
<h4>2.3 <span class="sn">Terminal multiplexers</a></h4>
4242
<div class="tc sn">tmux</div>
4343
<div class="tc sn">screen</div>
@@ -257,7 +257,7 @@ <h4>9.8 <span class="sn">Web Scraping</span></h4>
257257
<div class="tc sn">MechnicalSoup</div>
258258
<div class="tc sn">RoboBrowser</div>
259259
<h4>9.9 <span class="sn">Search</span></h4>
260-
<div class="tc sn">Elastic Search</div>
260+
<div class="tc sn">Elasticsearch</div>
261261
<div class="tc sn">Whoosh</div>
262262
<div class="tc sn">Solr</div>
263263

0 commit comments

Comments
 (0)