Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • favicon
  • hebrew
  • master
3 results

Target

Select target project
  • nimrod/blog
1 result
Select Git revision
  • favicon
  • hebrew
  • master
3 results
Show changes
Commits on Source (2)
......@@ -92,3 +92,6 @@ repos:
rev: v2.3.0
hooks:
- id: codespell
args:
- "-L"
- "anull,Cruzer"
......@@ -36,7 +36,7 @@ bit).
parser = compile(
'''{ip} {logname} {user} [{date:th}] "{request}" {status:d} {bytes} "{referer}" "{user_agent}"'''
)
for line in fh.readlines():
for line in fh:
result = parser.parse(line)
if result is not None:
yield result
......
......@@ -17,7 +17,7 @@ Why?
- Avoid having a plethora of Python package managers installed. This is more
noticeable when some are wrappers or replacements of virtualenv and then you
need to insall them globally.
need to install them globally.
- With Setuptools you keep close to the state of `PEP 621
<https://peps.python.org/pep-0621/>`_ and your :code:`pyproject.toml` generic
......@@ -29,7 +29,7 @@ Why not?
- You need a very recent version of Setuptools. At the time of writing this
post I didn't find a distribution that had a new enough version of Setuptools
pacakged.
packaged.
- You need a supported version of Python. Currently this means Python 3.7 or
later.
......
......@@ -14,7 +14,7 @@ in place for such things.
A few months went by and I remembered that project and started to play around
with receiving such messages but sending them from a webpage. The outcome is
`shore.co.il/spam <https://www.shore.co.il/spam>`_. I'm annnouncing this on my
`shore.co.il/spam <https://www.shore.co.il/spam>`_. I'm announcing this on my
blog as I'm actually interested to see if I get any spam this way. The desktop
side of things is in this `rcfiles commit
<https://git.shore.co.il/nimrod/rcfiles/-/commit/1e912443df1d8066f074a4addb1b443ada9ee36e>`_
......
......@@ -145,7 +145,7 @@ think that if you read it all you would see that I think that there are better
and easier ways. You can compare Terragrunt to a badly managed Terraform project
and find that it helps you. But when you compare to it one that uses the suggested
convention, it makes things more difficult, doesn't deliver on the promise of
keeping your code DRY and promotes bad habbits.
keeping your code DRY and promotes bad habits.
I didn't plan on reviewing Terragrunt until I used it. Terragrunt makes life
less enjoyable. It has a convoluted workflow locally (with those bloody git
......