Cerca

Heus ací els resultats de la cerca.

Ethical Hacker : sesión 4 @info:cursos:pue:ethical-hacker
27 Resultats, Darrera modificació:
021744.png?500}} - Now, click on the Spider tab from the lower section of the window to view the web s... content and functionality, which is not reachable from the main visible content, to exploit user privile... and click on first http://www.moviescope.com link from the left pane to view the details of the vulnerab... erver64 in the search bar and select Wampserver64 from the results. - Click the Show hidden icons ic
2.4 Decorators @info:cursos:pue:python-pcpp1:m1
22 Resultats, Darrera modificació:
e classes. We'll talk about this a bit later. So from now on, the term 'decorator' will be understood a... code python> def simple_hello(): print("Hello from simple function!") </code> <code python> def sim... output> We are about to call "simple_hello" Hello from simple function! </code> Now let's create anothe... object representing our ''simple_function()'' and from that moment on it indicates the object returned b
2.2 Inheritance and polymorphism — Inheritance as a pillar of OOP @info:cursos:pue:python-pcpp1:m1
20 Resultats, Darrera modificació:
inheritance is a way of building a new class, not from scratch, but by using an already defined repertoi... heritance in Python. You can derive any new class from more than one previously defined class. But mult... tion Order The spectrum of issues possibly coming from multiple inheritance is illustrated by a classica... erclass named A; there are two subclasses derived from A — B and C; and there is also the bottom-most su
1.1 SQLite @info:cursos:pue:python-pcpp1:m5
19 Resultats, Darrera modificació:
inserting data (part 3) We’re only one step away from inserting our first task in the database. All we'... d_task'' that will get the task name and priority from the user instead of using hardcoded values. Will ... The ''SELECT'' statement allows you to read data from one or more tables. Its syntax looks like this: <code sql>SELECT column FROM table_name;</code> or <code sql>SELECT column1, c
LPIC2 2021 Sesión 10 (2021-03-04) @info:cursos:pue:lpic2-2021
17 Resultats, Darrera modificació:
ion /administrador> Order Deny,Allow deny from all allow from 192.168.2.1 </Location> <Location /prohibido> Order Deny,Allow deny from all allow from 192.168.0.9 </Location> <Location /permitido> Order Deny,Allow deny fro
1.2 How to use sockets in Python @info:cursos:pue:python-pcpp1:m4
17 Resultats, Darrera modificació:
use sockets in Python == How to fetch a document from a server using Python We are going to write our f... e server** (the server wants to know what we want from it) - **receive the server's response** (it wil... ocket. How do we obtain a socket? Can we order it from an Internet store? Is it free? Yes, it's free. A... thing goes smoothly. Yes, we know. The awakening from this dream can be painful. The connection is rea
DevOps Sesión 2 (2022-02-14) Docker @info:cursos:pue:devops2022
14 Resultats, Darrera modificació:
ratorio docker registry.txt" * Dockerfile * FROM scratch * FROM debian-slim * HEALTHCHECK -interval=2m -timeout=3s -retries=3 CMD curl -f http:/... docker run . #Por ejemplo, si su Dockerfile es: FROM debian:wheezy ENTRYPOINT ["/bin/ping"] CMD ["loca... ING localhost (127.0.0.1): 48 data bytes 56 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.096 ms 56 byt
2.1 PEP 20 – The Zen of Python @info:cursos:pue:python-pcpp1:m2
14 Resultats, Darrera modificació:
tice. Example: Import ''apples'' and ''bananas'' from the //fruit.py// module. {{ :info:cursos:pue:pyt... ormally walk the distance if you wanted to travel from the UK to the USA. Taking a plane would be a more... ay a message whether or not x is within the range from 4 to 6. {{ :info:cursos:pue:python-pcpp1:m2:past... problems and output a fine result. Although, far from expected. If the snippet constitutes just a tiny
3.1 Advanced techniques of creating and serving exceptions @info:cursos:pue:python-pcpp1:m1
13 Resultats, Darrera modificació:
reason for this is that exceptions are inherited from BaseException, the most general exception class. ... spot an exception. In the case where you get data from an external source (console, file, etc.) you shou... raise RocketNotReadyError('Crew is incomplete') from e __main__.RocketNotReadyError: Crew is incomplet... raise RocketNotReadyError('Crew is incomplete') from e crew = ['John', 'Mary', 'Mike'] print('Final c
3.1 PEP 8 – Introduction @info:cursos:pue:python-pcpp1:m2
11 Resultats, Darrera modificació:
are being identified as obsolete and discouraged from being followed. == The Hobgoblin of Little Minds... s the hobgoblin of little minds.” This is a quote from Ralph Waldo Emerson’s essay “Self-Reliance” where... nevitable, use Python’s implied line continuation from the previous page. In the case of docstrings and... t’s correct to make a one-line import using the ''from … import …'' syntax: <code python ✔> from subproc
1.1 Python Professional Course Series: RESTful APIs @info:cursos:pue:python-pcpp1:m4
11 Resultats, Darrera modificació:
isn't actually a word - it's an acronym. It comes from three words of equal importance: * **RE**prese... ng you to transmit states' representations to and from the server**. Note: not the object, but its stat... a long road ahead of us. Let's start our journey from the very first step - from a story about how the network works and how it is possible to send and recei
1.5 What is XML and why do we prefer to use JSON? @info:cursos:pue:python-pcpp1:m4
11 Resultats, Darrera modificació:
e **production year**, which is an integer number from a quite predictable range; * the **price**, which is (in general) a floating-point number from a completely unpredictable range. Note: there is ... an absolute value. We can say that most customers from all over the world when told that the car was bui... ribute named **currency**. Its value can be taken from an international standard named ISO4217, which ca
1.2 Let TkInter speak! @info:cursos:pue:python-pcpp1:m3
10 Resultats, Darrera modificació:
speak! == Importing TkInter As you already know, from Python's point of view TkInter is a package named... ilities separately – just like this: <code python>from tkinter import Button</code> If you're an enthus... using the star as a component name: <code python>from tkinter import *</code> It's handy when you writ... it can bring some cumbersome troubles when names from the package's namespace cross with some of your p
1.6 Events and how to handle them @info:cursos:pue:python-pcpp1:m3
10 Resultats, Darrera modificació:
our experiments is named ''showinfo()'', it comes from the ''messagebox'' module, and it needs **two arg... showinfo()'' works: <code python> import tkinter from tkinter import messagebox def clicked(): me... prise to you. <code python> import tkinter as tk from tkinter import messagebox def click(): tk.m... nswered immediately: * **Q**: What is an event from the event controller’s point of view? * **A**:
2.3 A small lexicon of widgets - Part 3 @info:cursos:pue:python-pcpp1:m3
10 Resultats, Darrera modificació:
d invocation) <code python> import tkinter as tk from tkinter import messagebox def about_app(): ... as a hotkey) <code python> import tkinter as tk from tkinter import messagebox def about_app(): ... ve this goal. <code python> import tkinter as tk from tkinter import messagebox def about_app(): ... y simple way. <code python> import tkinter as tk from tkinter import messagebox def about_app():
1.7 Four magic letters: CRUD @info:cursos:pue:python-pcpp1:m4
9 Resultats, Darrera modificació:
3.1 The CSV module in Python @info:cursos:pue:python-pcpp1:m5
9 Resultats, Darrera modificació:
Lab Module 20 Cryptography @info:cursos:pue:ethical-hacker:sesion5
7 Resultats, Darrera modificació:
5.1 Metaprogramming @info:cursos:pue:python-pcpp1:m1
7 Resultats, Darrera modificació:
4.1 PEP 257 – Docstring Conventions @info:cursos:pue:python-pcpp1:m2
7 Resultats, Darrera modificació:
2.1 File processing - XML files @info:cursos:pue:python-pcpp1:m5
7 Resultats, Darrera modificació:
DevOps Sesión 8 (2022-03-07) k8s @info:cursos:pue:devops2022
6 Resultats, Darrera modificació:
2.7 Encapsulation @info:cursos:pue:python-pcpp1:m1
6 Resultats, Darrera modificació:
1.8 Interacting with widget methods @info:cursos:pue:python-pcpp1:m3
6 Resultats, Darrera modificació:
Sesión 6 : ansible @info:cursos:pue:devops
4 Resultats, Darrera modificació:
Sesión 7: Seguridad, Prometheus @info:cursos:pue:devops
4 Resultats, Darrera modificació:
2.1 Python core syntax @info:cursos:pue:python-pcpp1:m1
4 Resultats, Darrera modificació:
2.6 Abstract classes @info:cursos:pue:python-pcpp1:m1
4 Resultats, Darrera modificació:
1.4 Talking to JSON in Python @info:cursos:pue:python-pcpp1:m4
4 Resultats, Darrera modificació:
5.1 The configparser module @info:cursos:pue:python-pcpp1:m5
4 Resultats, Darrera modificació:
DevOps Sesión 3 (2022-02-16) Docker @info:cursos:pue:devops2022
3 Resultats, Darrera modificació:
2.3 Extended function argument syntax @info:cursos:pue:python-pcpp1:m1
3 Resultats, Darrera modificació:
2.5 Different faces of Python methods @info:cursos:pue:python-pcpp1:m1
3 Resultats, Darrera modificació:
2.1 A small lexicon of widgets - Part 1 @info:cursos:pue:python-pcpp1:m3
3 Resultats, Darrera modificació:
1.3 JSON – our new friend @info:cursos:pue:python-pcpp1:m4
3 Resultats, Darrera modificació:
Curso python (PCPP1) PUE 2023
2 Resultats, Darrera modificació:
Sesión 8 : kubernetes @info:cursos:pue:devops
2 Resultats, Darrera modificació:
Sesión 12 : k8s (traefik) @info:cursos:pue:devops
2 Resultats, Darrera modificació:
DevOps Sesión 13 (2022-03-23) Ansible @info:cursos:pue:devops2022
2 Resultats, Darrera modificació:
Lab Module 19 Cloud Computing @info:cursos:pue:ethical-hacker:sesion5
2 Resultats, Darrera modificació:
4.1 Shallow and deep copy operations @info:cursos:pue:python-pcpp1:m1
2 Resultats, Darrera modificació:
1.1 What is PEP? @info:cursos:pue:python-pcpp1:m2
2 Resultats, Darrera modificació:
1.4 Coloring your widgets @info:cursos:pue:python-pcpp1:m3
2 Resultats, Darrera modificació:
1.5 A simple GUI application @info:cursos:pue:python-pcpp1:m3
2 Resultats, Darrera modificació:
1.9 Looking at variables @info:cursos:pue:python-pcpp1:m3
2 Resultats, Darrera modificació:
2.5 Working with the Canvas @info:cursos:pue:python-pcpp1:m3
2 Resultats, Darrera modificació:
Sesión 2: Docker @info:cursos:pue:devops
1 Resultats, Darrera modificació:
sesión 14 OpenStack @info:cursos:pue:devops
1 Resultats, Darrera modificació:
Sesión 16 prometheus on kubernetes @info:cursos:pue:devops
1 Resultats, Darrera modificació:
LPIC2 2021 Sesión 8 (2021-02-25) @info:cursos:pue:lpic2-2021
1 Resultats, Darrera modificació:
Apuntes SinCara Extras systemd @info:cursos:pue:ethical-hacker:extras
1 Resultats, Darrera modificació:
1.7 Visiting widgets’ properties @info:cursos:pue:python-pcpp1:m3
1 Resultats, Darrera modificació:
4.1 Logging in Python @info:cursos:pue:python-pcpp1:m5
1 Resultats, Darrera modificació: