ioc.exchange is one of the many independent Mastodon servers you can use to participate in the fediverse.
INDICATORS OF COMPROMISE (IOC) InfoSec Community within the Fediverse. Newbies, experts, gurus - Everyone is Welcome! Instance is supposed to be fast and secure.

Administered by:

Server stats:

1.4K
active users

☮ ♥🧑‍💻

A Quick Way To Evaluate Software Frameworks

One of the most impressive bits of I’ve used is . When I started to learn Python, it was version 1.5, a long time ago. I was immediately impressed with the tutorial. It was the first port of call. Here it is now:

<docs.python.org/3/tutorial/ind>

Read the tutorial basics and you could start exploring the language library

<docs.python.org/3/library/inde>

knowing you could master enough to move to more advanced concepts. Want to do something more complicated? Say build a web server?

First you might try the pages trying :

<docs.python.org/3/howto/index.>

After reading about the limitations you might try the (Python Enhancement Proposal) What is a PEP? Try reading this page:

<peps.python.org/pep-0001/)

Finally you might decide is what you want and read the specification at
<peps.python.org/pep-0333/>. I travelled this path in 2007/8 to build a version of my blog engine. ☺️

<seldomlogical.com/redux.html>

So I go the latest build on , install it and try a simple blog engine to see how it works

<deno.com/blog/build-a-blog-wit>.

The example code fails, the source code fails. I see the basic documentation for it (yet to try, but skimming through, it appears okay.) The tutorial only a couple of years old has rusted, the source is unmaintained. The issue is with JS / / where plain old and will do. 😔

A quick example how the basics have to documented, correct in bite sized pieces. The maintained and blog periodically revised.

Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax an...
Python documentationThe Python TutorialPython is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax an...