Skip to content

Commit 33b3eaf

Browse files
committed
working on screen page
1 parent 86b2297 commit 33b3eaf

File tree

6 files changed

+49
-4
lines changed

6 files changed

+49
-4
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
title: Screen
2+
category: page
3+
slug: screen
4+
sortorder: 0213
5+
toc: False
6+
sidebartitle: Screen
7+
meta: Screen is a terminal multiplexer implementation frequently used for development on Linux and macOS.
8+
9+
10+
# Screen
11+
[Screen](https://www.gnu.org/software/screen/)
12+
([source code](https://savannah.gnu.org/git/?group=screen)) is a
13+
[terminal multiplexer](/terminal-multiplexers.html) implementation
14+
often used during Python development on Linux
15+
[operating systems](/operating-systems.html). Screen makes it easier for
16+
programmers to use many shells within a single terminal window while
17+
developing their applications.
18+
19+
<a href="https://www.gnu.org/software/screen/" style="border:none"><img src="/img/visuals/screen.png" width="100%" alt="Screenshot of the Screen program." class="shot outl"></a>
20+
21+
<div class="well see-also">Screen is an implementation of the <a href="/terminal-multiplexers.html">terminal multiplexers</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>
22+
23+
### Screen resources
24+
* [Learn to use screen, a terminal multiplexer](https://dev.to/thiht/learn-to-use-screen-a-terminal-multiplexer-gl)

content/pages/09-data/02-databases.markdown

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ meta: Relational databases serve the critical role of persisting data in many Py
88

99

1010
# Databases
11-
A database is an abstraction on top of an operating system's file system to
12-
ease creating, reading, updating, and deleting persistent data.
11+
A database is an abstraction over an
12+
[operating system](/operating-systems.html)'s file system that makes
13+
it easier for developers to build applications that create, read, update
14+
and delete persistent data.
1315

1416
<img src="/img/logos/databases.jpg" width="100%" alt="PostgreSQL, SQLite and MySQL logos, copyright their respective owners." class="technical-diagram" style="border-radius:5px;border:1px solid #999" />
1517

static/img/visuals/screen.png

153 KB
Loading

theme/templates/article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta name="twitter:creator" content="@mattmakai" />
1010
<meta property="og:url" content="{{ SITEURL }}/blog/{{ article.slug }}.html" />
1111
<meta property="og:title" content="{{ article.title }}" />
12-
<meta property="og:description" content="{{ article.meta }} Nice post by @fullstackpython." />
12+
<meta property="og:description" content="{{ article.meta }} Great post on fullstackpython.com!" />
1313
<meta property="og:image" content="{{ SITEURL }}{{ article.headerimage }}" />
1414
{% endif %}{% endblock %}
1515

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<h3>Learn more about dev environments or move to editors?</h3>
2+
<div class="row">
3+
<div class="c4">
4+
<div class="well select-next">
5+
{% include "choices/buttons/web-frameworks.html" %}
6+
</div>
7+
</div>
8+
<div class="c4">
9+
<div class="well select-next">
10+
{% include "choices/buttons/vim.html" %}
11+
</div>
12+
</div>
13+
<div class="c4">
14+
<div class="well select-next">
15+
{% include "choices/buttons/emacs.html" %}
16+
</div>
17+
</div>
18+
</div>

theme/templates/css/page-article.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ blockquote{border-left:4px solid #aaa;padding-left:10px;font-family:"Helvetica N
1414
.btn{display:inline-block;padding:8px 12px;margin-bottom:0;font-size:15px;line-height:1.4;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;border:1px solid transparent;border-radius:4px;color:#fff;background-color:#22b24c;border-color:#22b24c}
1515
.btn:active,.btn.active{background-image:none;outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}
1616
img.rnd{border:1px solid #ccc;border-radius:5px}
17-
.shot{border-radius:5px}{% endraw %}
17+
.shot{border-radius:5px}
18+
.outl{border: 1px solid #ccc}{% endraw %}

0 commit comments

Comments
 (0)