Skip to content

Commit

Permalink
fix: links & thumbs.sh (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
leohhhn authored Nov 7, 2023
1 parent 595d23b commit a29977c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions posts/2023-10-17_funding-program-q3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Flippando is a multi-level on-chain memory game currently written in Solidity an
Zack Scholl is Gno.land’s first resident tinkerer with tons of experience in web2 development and a passion for the Go language. Through the grants program, Zack aims to translate his extensive knowledge to Gno and web3 by developing PoCs using Gno. So far, Zack has worked on a microblogging app for Gno.land and a prototype for using generative audio with smart contracts. He’s also creating documentation and tutorials to help other developers follow his lead. You’ll be hearing more from Zack over the coming weeks. Follow his [hackerspace issue 2](https://github.com/gnolang/hackerspace/issues/2) journey for more details.

After a great start to the Funding and Grants Program in Q3, below is a breakdown of the percentage of funding allocated to each area of development so far:

![](src/funding.png)
[![Funding](https://gnolang.github.io/blog/2023-10-17_funding-program-q3/src/thumbs/funding.png)](https://gnolang.github.io/blog/2023-10-17_funding-program-q3/src/funding.png)

## Coming Up in Q4 and Q1 2024

Expand Down
4 changes: 2 additions & 2 deletions posts/thumbs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
for dir in */; do
if [ -d "${dir}src" ]; then
mkdir -p "${dir}src/thumbs"
cd "${dir}src" || continue # Change the working directory to $dir
cd "${dir}src" || continue

for img in *.png *.jpg; do
sips --resampleWidth 600 "$img" --out "thumbs/$img"
done

cd .. # Return to the parent directory
cd ../..
fi
done

0 comments on commit a29977c

Please sign in to comment.