Skip to content

Commit

Permalink
Move images into subdirectories based on the posts
Browse files Browse the repository at this point in the history
  • Loading branch information
amree committed Sep 28, 2024
1 parent e054224 commit 87c30aa
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ it.
Start > All Programs > Qt SDK > Maintain Qt SDK
```

![image](/images/posts/2011-07-11-qt.png)
![image](/images/posts/2011-07-11/qt.png)

Download MySQL and install it. In my case, I choose to install it at:

Expand All @@ -29,7 +29,7 @@ C:\Program Files (x86)\MySQL\MySQL Server 5.5.
You don’t need to install everything if you want to compile the plugin. Make
sure you will at least choose to install Client C API Library.

![image](/images/posts/2011-07-11-mysql.png)
![image](/images/posts/2011-07-11/mysql.png)

Open:

Expand Down
8 changes: 5 additions & 3 deletions content/posts/order-update-with-two-step-payment.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ The simplest workflow would be:
- Customer checkout from our websites with a date far in the future
- We'll queue the card authorization 7 days before the cut off date
- Customer didn't make any changes
- When the time comes, we authorized the amount, queue another job for the card capture process
- When the time comes, we authorized the amount, queue another job for the card
capture process
- On the day of the cut off date, we'll capture the amount automatically
- No order update from the web will be allowed at this point. They need to contact our customer support for this
- No order update from the web will be allowed at this point. They need to
contact our customer support for this


The complexity keeps on compounding as you need to think about these scenarios:
Expand Down Expand Up @@ -68,7 +70,7 @@ I don't think I can meet the deadline without those helps lol.
I'd love to tell you more about the whole process, but it was pretty long. But
you can see the branch conditions that I've drawn here:

![diagram](/images/posts/2020-05-09-two-step-payment.jpg)
![diagram](/images/posts/2020-05-09/two-step-payment.jpg)

```txt
P = Pending Authorization
Expand Down
9 changes: 5 additions & 4 deletions content/posts/renaming-author-in-git.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ stores author's information history.

<!--more-->

![image](/images/posts/2011-01-05-diff.png)
![image](/images/posts/2011-01-05/diff.png)

So, in order to fix it, I ran this little script from Github in my master
branch.
Expand Down Expand Up @@ -45,10 +45,11 @@ export GIT_COMMITTER_EMAIL="$cm"
```

To push it into the server, I need to use `git push -f` instead of `git push`.
If you use the latter command, you'll end up with a merged history (every commit
will have another one identical to it).
If you use the latter command, you'll end up with a merged history (every
commit will have another one identical to it).

If you use Redmine, you may need to fetch change set. Just run this command in your Redmine's directory:
If you use Redmine, you may need to fetch change set. Just run this command in
your Redmine's directory:

```text
script/runner "Repository.fetch_changesets" -e production
Expand Down
2 changes: 1 addition & 1 deletion content/posts/see-full-referrer-url-in-google-analytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ more).

That's it. You can refer to the screenshot below if you're feeling lost:

![image](/images/posts/2012-01-21-ga.png)
![image](/images/posts/2012-01-21/ga.png)

Good luck!
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 87c30aa

Please sign in to comment.