Damus

Recent Notes

Karakoram 2 profile picture
@nprofile1q...

The Coinos wallet is consistently encountering errors while still deducting funds from the account.

I’d sincerely appreciate it if this issue could be addressed and the deducted amount restored.

Love the app. Thanks!
Diyana · 99w
Clarify your words and meaning please?
Karakoram 2 profile picture
Tried a bunch of different web clients and finally settled with primal.net

Decent client with light/dark modes.

Iris ruined it by choosing only dark mode.

#Bitcoin
1
Karakoram 2 profile picture
Iris need to do a better job at recognizing photos and other media from the URLs.

Not all images end with .jpg or .jpeg.

Most of the frameworks include a size parameter that if it ain't supplied, results in nothing.

For example: "www.foo.com/a.jpg?size=medium"
^ The above format is valid but doesn't load on iris.
note1nvuuw...
Karakoram 2 profile picture
What tech stack does the server run? Easiest would be to outsource it to cloud but for manual deployments, it requires config/code updates.

On a personal blogging site, I used nginx with the config similar as below:

```
# Server-level configurations
http {
limit_conn_zone $binary_remote_addr zone=conn_limit_per_ip:10m;

server {
listen 80;
server_name example.com;
limit_conn conn_limit_per_ip 10;

# Application-level configurations
location / {
limit_req zone=req_limit_per_ip burst=10 nodelay;
proxy_pass http://backend_server;
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=cache_zone:10m inactive=60m;
gzip on;
}
}
}
```
jack · 145w
Nobody in the company wanted us to do bitcoin either. Sometimes you have to sacrifice credibility for some time in order to do something you believe in.