Tom Ravn πŸ‡ͺπŸ‡Ί's Avatar

Tom Ravn πŸ‡ͺπŸ‡Ί

@tomravn.com.bsky.social

Passionate about custom software & automating processes. 3D CAD & Webdev. Digitalizing & collecting data for various project. 🌐 http://noiseamplifier.com Ghost CMS | Wordpress | Django | Flask | NodeJS | 3D | Photogrammetry

324 Followers  |  357 Following  |  441 Posts  |  Joined: 11.05.2023  |  1.6963

Latest posts by tomravn.com on Bluesky

Totally, Nick. So far it works great πŸ˜„ I wonder how far this is going.

08.07.2025 17:46 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Or those clients with crazily over-engineered architectures requests, obviously generated by AI. They’ll confidently tell there are no issues, that it’s easy to implement. Meanwhile, they don’t know half the buzzwords they’ve used. Ask them why they’re combining X & Y. Well, because ChatGPT said so.

08.07.2025 15:47 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 2    πŸ“Œ 0

Anyone else in digital services getting flood of β€œAI-generated clients”? Briefs as long as novels full of buzzwords, β€œI’ll provide most of the code,” scope: β€œsomething like Facebook,” budget: under $500 ☠️ I don't have time to even read that sh*t

#development #ai #webdesign

08.07.2025 15:38 β€” πŸ‘ 2    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0
Video thumbnail

Elitist? Maybe. Fun? Absolutely. Sorry, Canva

01.12.2024 13:11 β€” πŸ‘ 7    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0

As a non-native English speaker, I often use it to correct my emails before sending them to clients. I also rely on it for programming assistance, typically for small tasks or when I’m feeling lazy and don’t want to write an entire boilerplate myself.

30.11.2024 19:57 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Who needs a printer? iPad + music sheets = lifesaver 🎻

29.11.2024 11:07 β€” πŸ‘ 5    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
# Create an SSH SOCKS proxy tunnel
ssh -NTD 9999 root@65.108.80.226

# -N : Do not execute remote commands (useful for forwarding ports only)
# -T : Disable pseudo-terminal allocation  
# -D 9999 : Create a SOCKS proxy on local port 9999
# root@ : Connect as root user
# 65.108.80.226 : Remote server IP address

# Firefox/Chrome: Settings β†’ Network Settings β†’ SOCKS proxy
# Set the socks5 proxy to ip 127.0.0.1 & port 9999
# Visit https://whatismyip.org/ and verify the server IP
# Enjoy

# Bonus, tunnel other SSH connections through it
ssh -o "ProxyCommand nc -x localhost:9999 -X 5 %h %p" root@hostname

# Create an SSH SOCKS proxy tunnel ssh -NTD 9999 root@65.108.80.226 # -N : Do not execute remote commands (useful for forwarding ports only) # -T : Disable pseudo-terminal allocation # -D 9999 : Create a SOCKS proxy on local port 9999 # root@ : Connect as root user # 65.108.80.226 : Remote server IP address # Firefox/Chrome: Settings β†’ Network Settings β†’ SOCKS proxy # Set the socks5 proxy to ip 127.0.0.1 & port 9999 # Visit https://whatismyip.org/ and verify the server IP # Enjoy # Bonus, tunnel other SSH connections through it ssh -o "ProxyCommand nc -x localhost:9999 -X 5 %h %p" root@hostname

Did you know you can use SSH SOCKS to create an encrypted tunnel that routes your internet traffic through a remote server, letting you browse securely and bypass network restrictions?

Now you know.

19.11.2024 17:15 β€” πŸ‘ 18    πŸ” 3    πŸ’¬ 2    πŸ“Œ 0
Preview
Framer Motion is now independent, introducing Motion - Motion Blog Framer Motion is now independent. Introducing Motion, a new animation library for React and all JavaScript environments. Here's what it means for you.

Read the full announcement: motion.dev/blog/framer-...

12.11.2024 14:51 β€” πŸ‘ 47    πŸ” 9    πŸ’¬ 1    πŸ“Œ 1
Preview
SSH | Cloudflare Zero Trust docs The Secure Shell Protocol (SSH) enables users to remotely access devices through the command line. With Cloudflare Zero Trust, you can make your SSH server available over the Internet without the risk...

If you have a Cloudflare free account, you can just disable SSH port and configure SSH through one of your subdomains. No one will be able to connect to your server but you, using the client daemon that CF will give to you when you set up the ssh.

developers.cloudflare.com/cloudflare-o...

11.11.2024 12:25 β€” πŸ‘ 9    πŸ” 2    πŸ’¬ 1    πŸ“Œ 0

Maybe better to make it easy as possible. Point them to some image compression tool and hope for best. :)

10.08.2023 16:41 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

I'm really curious about that google scripting, I know there is some possibility.
If they would be able to pay some month expenses there are even CDNs like Bunny.net or Cloudflare where you just upload image and it is converted into many resolutions. But it would be not good for UX.

10.08.2023 16:40 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Tallest people are living in Netherlands. I've worked for Netherland company and when our CEOs visited us it was like watching NBA team in tuxedo. :)

10.08.2023 16:33 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

PNG is good when you need to maintain quality or use alpha channel for transparency. You have all of these in WebP + good compression.

I think Google has some scripting there it could be possible to make some control script and reduce images automatically and not bother users.

10.08.2023 14:16 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

No, I don't know any, but I am sure there will be many :)
For mobile screen you can allow to reduce resolution quite significantly. So I think you can achieve to stay in 100-200KB per image. And consider WebP format instead of JPG. It has better compression algo.

10.08.2023 14:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

It'll be fine, I'd just be careful about the size of images. Users usually just take one directly from the camera, 20 MB in size, and upload it. Just like that. Then the whole app/web is slow and people wonder why :-D.

10.08.2023 14:01 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 2    πŸ“Œ 0

Yeah, it is possible. I saw many such solutions. Google sheets as DB. Why not. I am not sure about fetching images from google sheets. I've never tried it.

10.08.2023 13:45 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

How they will update data about Dogs? Do you need to connect on some existing system(DB), or you are going to make it for them too.

10.08.2023 13:37 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

That is amazing. Will you make it for both platforms Android/IOS?

10.08.2023 13:34 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

That sounds nice. What are you going to do for them?

10.08.2023 13:08 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Yeah I usually fall for web solution. I did a few electron apps in past just because I needed to use power of regular CPU to work with files. It would be pain to do on web with weak server behind. And of course I needed to work with files on system.

10.08.2023 13:07 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

I didn't know about parties. There are parties? :-D

09.08.2023 23:45 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

haha, yes I had many toys. It was awesome. As children, we often played on Teenage Mutant Ninja Turtles, and it was fun. Many people started doing karate or taekwondo because of that show, so it had a positive impact on people in my area.

09.08.2023 13:06 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Wow that would be cool. My favorite heroes from childhood. I've learnt about Martial arts and Pizza as kid. :-D

09.08.2023 12:37 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

🀣🀣🀣 No wonder here.

09.08.2023 12:35 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

I hope so, I would like to see it! 🀣🀣🀣

09.08.2023 12:27 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Yes there is everything you need. I did not find anything what would not work. But I don't use it extensively like other folks from security field.

09.08.2023 12:25 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

🀣🀣🀣 Well said. We don't have even Threads in EU because of data privacy concerns.

09.08.2023 12:24 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

I think so, just don't tell him :-D :-D

09.08.2023 12:11 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

No just Arm builds on Arm Apple CPU. You can virtualize X86 via UTM but it is painly slow. Really not worth it.

09.08.2023 12:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

@tomravn.com is following 13 prominent accounts