Check I have no changes:
p4 opened
Sync to head:
# reindent.py -- Tim Peters, and H.Moreira | |
# pylint: disable=missing-function-docstring, trailing-whitespace, line-too-long, invalid-name, unused-argument | |
# Re-named to reindent.py and enhanced by Henrique Moreira, 01 Dec 2019. | |
# Released to the public domain, by Anshul Kanakia, 22 May 2019 as reindentv2.py | |
# Original code reindent.py released to the public domain, by Tim Peters, 03 October 2000. | |
# This version is modified to allow custom indent space values (not just 4 spaces). | |
"""reindent [-d][-r][-v] [ path ... ] |
To remove a submodule you need to:
git add .gitmodules
.git/config
git rm --cached path_to_submodule
(no trailing slash)rm -rf .git/modules/path_to_submodule
(no trailing slash)git commit -m "Removed submodule <name>"
rm -rf path_to_submodule
""" learningpie.py -- Henrique Moreira | |
Simple python tweaks and slips! | |
""" | |
# pylint: disable=missing-docstring | |
import os |
# (c)2020 Henrique Moreira -- fast Excel read-out | |
""" fastexcel.py script allows you to learn Excel openpyxl usage """ | |
# pylint: disable=unnecessary-comprehension, invalid-name | |
### Notes: | |
### unnecessary-comprehension, see: | |
### https://github.com/PyCQA/pylint/issues/3164 |
#!/bin/sh | |
# | |
# gitremote.sh -- show remote | |
usage () | |
{ | |
echo "$0 [options] path | |
Options are: |
# -*- coding: utf-8 -*- | |
# (c)2020 Henrique Moreira | |
""" read_pdf.py, a simple PDF reader | |
""" | |
import sys | |
import os.path | |
from sys import stdout, stderr | |
import PyPDF2 |
# channel number <tab> description | |
1 RTP1 | |
2 RTP2 | |
3 SIC | |
4 TVI | |
5 SIC Noticias | |
6 RTP 3 (H) | |
7 CNN Portugal | |
8 CMTV | |
9 SIC Mulher |
GIST repo: serrasqueiro/appf
Files:
I wanted to change the name of a repository, from https to ssh. Repo was from github, well known:
[email protected]:serrasqueiro/requests.git
Edit the corresponding url...