This previously was made with KDE Neon
Based on https://andrewcrouthamel.wordpress.com/2018/11/28/my-kde-centric-linux-laptop-setup-part-1/
sudo apt-add-repository ppa:fish-shell/release-3| from PyPDF2 import PdfFileReader, PdfFileWriter | |
| def split(path, split_name, start_page, end_page): | |
| # Create a FileReader instance | |
| pdf = PdfFileReader(path) | |
| # Create a FileWriter instance | |
| pdf_writer = PdfFileWriter() |
| class Empleado: | |
| # Class variables | |
| aumento = 1.10 | |
| numEmpleados = 0 | |
| def __init__(self, first, last, pay): | |
| """ El método `__init__` se ejecuta cada vez que se crea un nuevo `Empleado` """ | |
| self.first = first | |
| self.last = last |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <!-- BOOTSTRAP CSS --> | |
| <link rel="stylesheet" type="text/css" media="screen" href="../static/bootstrap.min.css" /> |
This previously was made with KDE Neon
Based on https://andrewcrouthamel.wordpress.com/2018/11/28/my-kde-centric-linux-laptop-setup-part-1/
sudo apt-add-repository ppa:fish-shell/release-3| <html> | |
| <head> | |
| <style> | |
| /*basic reset */ | |
| *{ | |
| margin: 0; | |
| padding: 0; | |
| } |
| $Devices = Import-Csv "Z:\Downloads\devices.txt" | |
| # ComputerName,IP should be the first line (header) in CSV file. | |
| foreach ($Device in $Devices) | |
| { | |
| if (Test-Connection -ComputerName $Device.IP -Count 1 -ErrorAction SilentlyContinue) | |
| { | |
| Write-Host "$($Device.ComputerName),up" | |
| } | |
| else | |
| { |