

Had the same issue before, cable was the cause.
Had the same issue before, cable was the cause.
https://docker-curriculum.com/
Best resource I found so far. I tried docker’s tutorial but it was not good at all.
I should look into AWS as well. Currently using a refurbished Datto NAS, running debian with everything in docker. I also have a r710! But I don’t have room for it at the moment.
I would never handle email myself. I would instead use a provider, turn off all filters and set up a mail server locally that works via the provider.
That way I don’t have to convince my ISP to set up a PTR for me, handle DMARC or SPF. Or care if my IP is blacklisted.
I assume a lot of people interested in selfhosting also enjoy the hardware side of things, making it more prominent than VPS.
- When “git fetch $remote” notices that refs/remotes/$remote/HEAD is missing and discovers what branch the other side points with its HEAD, refs/remotes/$remote/HEAD is updated to point to it.
That is nice.
How about running the OS from a USB stick? Put all images you want on it and mount NAS drives at boot.
Also relevant: https://www.wired.com/2015/11/null/
Ah, gotcha! Thanks
Install Pi-Hole to block ads but use DNS server provided by the biggest ad company? o.O
I once had a bug in a C# program I wrote. It made a HTTP request and if the user agent was left to default (whatever that was), the server just gave back an empty string as a reply. I took way to long until I understood what was going on and I kept chasing async, thinking I had messed it up some how.
Having those features would really have made it easier. I have only ever written my python code in Sublime Text. While it is a sublime text editor, at is not ideal (compared to how it is to write Java in IntelliJ) for Python. (Maybe with addons but I never delved into that more than a few.)
It’s because there is no clear indication of where a block ends.
Here is some sample code. I find it difficult to tell how many indentations I have or where I need to write if I want to continue at a certain level.
import time
import aiohttp
"""
Retreives the data from RSS URL and return the status codes as well as the data. Return -1 if something went wrong.
"""
async def get_rss_feed(rss_url):
async with aiohttp.ClientSession() as session:
try:
retry_count = 0
while retry_count < 5:
async with session.get(rss_url) as resp:
if resp.status == 200:
return {'status': resp.status, 'data': await resp.text()}
else:
retry_count += 1
time.sleep(60)
if retry_count == 5:
raise ValueError('To many failed connection attempts', retry_count)
except aiohttp.InvalidURL as error:
return {'status': -1, 'data': f"Error: {rss_url} is not a valid URL.", 'error': error}
except aiohttp.ClientConnectorError as error:
return {'status': -1, 'data': f"Error: Could not connect to {rss_url}.", 'error': error}
except ValueError as error:
return {'status': -1, 'data': f"Error: Could not connect to {rss_url} after {retry_count} attempts.", 'error': error}
Too much nested code was likely part of the problem, but not being able to easily tell where a block of coded ended without seeing the top of the block made it difficult to work with.
I once wrote a bot in python tdownloaded a ical file, looked for chances and informed me if found. The space indentation made it hell to follow the code in my opinion.
That sounds like a great boss, someone how is involved with what should be done but not always how, as long as the team deliver what is requested.
If someone really wants this service but do not want to (or cannot) host it themself, https://ovpn.com offer this in their client. I used to have a pi-hole selfhosted but not anymore. Using their client on my phone as well solved the problem with blocking ads while not at home.
Still great for general use
I would assume it is OneDev, as the previous poster tried it as an alternative to Forgejo.