FeedCity logo

FeedCity

Daniel Pietzsch

Personal blog. Mostly photos.

  • Not verified Not verified.
  • No WebSub updates. No WebSub updates.
  • Valid.

Generator: Tumblr (3.0; @danielpietzsch)

Daniel Pietzsch

I stopped writing every day

For the last five months I’ve been writing some form of text every single day. And last week I stopped. I didn’t specifically plan for that – at least not at that point. But it just happened. I missed one day. And then didn’t write the next day, either, etc etc.

I had occasionally thought about giving up on this project, because it often felt like a chore. It was too much self-imposed pressure for me to write something every day. So, I think it was just a matter of time. But that I stopped already was accidental. I guess once I missed a day, the pressure fell and I simply thought “fuck it, who cares!?”.

I still want to write more regularly than I did before this project, though. I hope I’ll find the motivation to do so, even without a fixed schedule. Time will tell.

Daniel Pietzsch

I stopped writing every day

For the last five months I’ve been writing some form of text every single day. And last week I stopped. I didn’t specifically plan for that – at least not at that point. But it just happened. I missed one day. And then didn’t write the next day, either, etc etc.

I had occasionally thought about giving up on this project, because it often felt like a chore. It was too much self-imposed pressure for me to write something every day. So, I think it was just a matter of time. But that I stopped already was accidental. I guess once I missed a day, the pressure fell and I simply thought “fuck it, who cares!?”.

I still want to write more regularly than I did before this project, though. I hope I’ll find the motivation to do so, even without a fixed schedule. Time will tell.

Daniel Pietzsch

Merging two Git repos

Today I learned, you can indeed merge two Git repositories and keep the history intact. Not quite sure, if I will need this ever again, but it’s good to know I could. Here’s the code snippet of Andresch Serj’s answer on Stack Overflow:

If you want to merge project-a into project-b:

cd path/to/project-b
git remote add project-a path/to/project-a
git fetch project-a --tags
git merge --allow-unrelated-histories project-a/master # or whichever branch you want to merge
git remote remove project-a

Daniel Pietzsch

Merging two Git repos

Today I learned, you can indeed merge two Git repositories and keep the history intact. Not quite sure, if I will need this ever again, but it’s good to know I could. Here’s the code snippet of Andresch Serj’s answer on Stack Overflow:

If you want to merge project-a into project-b:

cd path/to/project-b
git remote add project-a path/to/project-a
git fetch project-a --tags
git merge --allow-unrelated-histories project-a/master # or whichever branch you want to merge
git remote remove project-a

Daniel Pietzsch

Inspired

IndieWebCamp keeps inspiring me. Having had so much interesting conversations with interesting people that care about similar things, motivates me to work on my own homepage, blog and other web projects. And so I’m currently still excited about IndieWeb stuff and am researc...

Daniel Pietzsch

Inspired

IndieWebCamp keeps inspiring me. Having had so much interesting conversations with interesting people that care about similar things, motivates me to work on my own homepage, blog and other web projects. And so I’m currently still excited about IndieWeb stuff and am researc...

Daniel Pietzsch

Wie ich wähle

Am Sonntag kann man hier in Deutschland seine Stimme zur Europawahl 2019 abgeben. Ich habe bereits diese Woche meinen Stimmzettel per Briefwahl abgeschickt. Wahlkämpfe an sich ignoriere ich meistens so gut es geht. Klar, man bekommt verstärkt (angebliche) Positionen und Lei...

Daniel Pietzsch

Wie ich wähle

Am Sonntag kann man hier in Deutschland seine Stimme zur Europawahl 2019 abgeben. Ich habe bereits diese Woche meinen Stimmzettel per Briefwahl abgeschickt. Wahlkämpfe an sich ignoriere ich meistens so gut es geht. Klar, man bekommt verstärkt (angebliche) Positionen und Lei...

Daniel Pietzsch

Tonight, I decided to host my Focal Length Equivalent tool on Github Pages using a custom subdomain:...

Tonight, I decided to host my Focal Length Equivalent tool on Github Pages using a custom subdomain: fl.danielpietzsch.com.

I’ll probably start using Github Pages more for these kind of static, simple, open-source sites. I really like the simplicity of the whole workflow and that you can easily get going with a custom domain and – crucially – a free, auto-renewing SSL certificate to serve it over HTTPS.

So, it’s still a PWA, which means it can be added to the home screen on a mobile device and will also be available offline.

Daniel Pietzsch

Tonight, I decided to host my Focal Length Equivalent tool on Github Pages using a custom subdomain:...

Tonight, I decided to host my Focal Length Equivalent tool on Github Pages using a custom subdomain: fl.danielpietzsch.com.

I’ll probably start using Github Pages more for these kind of static, simple, open-source sites. I really like the simplicity of the whole workflow and that you can easily get going with a custom domain and – crucially – a free, auto-renewing SSL certificate to serve it over HTTPS.

So, it’s still a PWA, which means it can be added to the home screen on a mobile device and will also be available offline.

Daniel Pietzsch

Serviceprogramm für Tastaturen des MacBook, MacBook Air und MacBook Pro – Apple Support

Serviceprogramm für Tastaturen des MacBook, MacBook Air und MacBook Pro – Apple Support:

As someone who’s worried the keyboard on a new Mac can stop working properly, it’s good to know Apple has a service program already in place for that particular problem.

Also, according to John Gruber, if a 2018 model breaks (mine is one of those), it’d supposedly even get an upgrade to the further improved keyboard of the just-announced new MacBook Pros:

Also, for existing models with the third-generation keyboard — last year’s new MacBook Pros and the new MacBook Air — if they require a keyboard replacement, they’ll get the new tweaked keyboard with the purportedly more durable mechanism.

Makes me feel a little more comfortable with this new machine.

Daniel Pietzsch

Serviceprogramm für Tastaturen des MacBook, MacBook Air und MacBook Pro – Apple Support

Serviceprogramm für Tastaturen des MacBook, MacBook Air und MacBook Pro – Apple Support:

As someone who’s worried the keyboard on a new Mac can stop working properly, it’s good to know Apple has a service program already in place for that particular problem.

Also, according to John Gruber, if a 2018 model breaks (mine is one of those), it’d supposedly even get an upgrade to the further improved keyboard of the just-announced new MacBook Pros:

Also, for existing models with the third-generation keyboard — last year’s new MacBook Pros and the new MacBook Air — if they require a keyboard replacement, they’ll get the new tweaked keyboard with the purportedly more durable mechanism.

Makes me feel a little more comfortable with this new machine.

Daniel Pietzsch

Nifty text highlight styling

Wanted to jot down this nice text highlighting CSS snippet I just discovered on basecamp.com:

With its varying opacity, it’s simulating a person’s variable pressure when marking text on an actual piece of paper. I like!

Here’s the CSS:

border-radius: 1em 0 1em 0;
background-image: linear-gradient(-100deg, rgba(250,247,133,0.3), rgba(250,247,133,0.7) 95%, rgba(250,247,133,0.1));

Instead of using <span class="highlight">, though, you should probably rather simply use the <mark> tag, which is more semantically correct.

Daniel Pietzsch

Nifty text highlight styling

Wanted to jot down this nice text highlighting CSS snippet I just discovered on basecamp.com:

With its varying opacity, it’s simulating a person’s variable pressure when marking text on an actual piece of paper. I like!

Here’s the CSS:

border-radius: 1em 0 1em 0;
background-image: linear-gradient(-100deg, rgba(250,247,133,0.3), rgba(250,247,133,0.7) 95%, rgba(250,247,133,0.1));

Instead of using <span class="highlight">, though, you should probably rather simply use the <mark> tag, which is more semantically correct.

Daniel Pietzsch

Early this morning, we drove back from our short camping trip. It was supposed to only take an hour...

Early this morning, we drove back from our short camping trip. It was supposed to only take an hour to get back. But it took us two, because we had a flat tyre. Never had this before. And luckily, nothing bad happened, despite it happening while on the Autobahn.

And fortunately, we were able to stop next to an on-ramp, where right next to you everyone is not as fast as the rest. Still, I wasn’t exactly relaxed changing that wheel.

Daniel Pietzsch

Early this morning, we drove back from our short camping trip. It was supposed to only take an hour...

Early this morning, we drove back from our short camping trip. It was supposed to only take an hour to get back. But it took us two, because we had a flat tyre. Never had this before. And luckily, nothing bad happened, despite it happening while on the Autobahn.

And fortunately, we were able to stop next to an on-ramp, where right next to you everyone is not as fast as the rest. Still, I wasn’t exactly relaxed changing that wheel.