Posts tagged with #webdev

Cross-domain HTTP with Python

For security and other reasons, browsers put limitations on what sites you can access from JavaScript. The basic rule is: if the web page containing the script originates from mysite.com, then the script is only allowed to access mysite.com....

Migrating from WordPress to Astro with OpenAI

I finally got around to move this blog from Wordpress to more modern solution. This has been a long time in making. I ended up using Astro as the framework. With little bit of help from bolt.new, the framework for the blog was ready in no time....

Stretching band in Jasper

Making a band stretch according to the height of its contents is simple. First, you need to have some content that is stretching, for example, a text field with "stretch with overflow" property set to true....

Using git to deploy new versions

Simple instructions for setting up git so that you can push new versions to server from the comfort of your workstation. This is based on [article](http://toroid.org/ams/git-website-howto) by Abhijit Menon-Sen. If you need more details, take a look ...