Posts

Plotting residuals in openFOAM

Image
There are many resources that will show you how to plot residuals while solving, for example look here . The core of most (or all..) of them is to filter the numeric values into gnuplot using few unix utilities like so: set logscale y set title "Residuals" set ylabel "Residual" set xlabel "Iteration" plot "< cat log | grep 'Solving for Ux' | cut -d' ' -f9 | tr -d ','" title 'Ux' with lines,\ "< cat log | grep 'Solving for Uy' | cut -d' ' -f9 | tr -d ','" title 'Uy' with lines,\ "< cat log | grep 'Solving for Uz' | cut -d' ' -f9 | tr -d ','" title 'Uz' with lines,\ "< cat log | grep 'Solving for omega' | cut -d' ' -f9 | tr -d ','" title 'omega' with lines,\ "< cat log | grep 'Solving for k' | cut -d' ' -f9 | tr -d ','" titl...

New (2020) Blogger interface display language

So, google decided to change the interface... OK, we can handle it. Now, I live in Israel, where we write Hebrew from right-to-left (RTL). Google of-coarse knows this, and displays the Blogger interface in Hebrew. This is a nice touch, except when I try to write a post in English with some source code in it, where it's hard to make it look like I want it to. As a result, I want to change the interface language to LTR English. Searching google turns nothing, and no matter what I try the interface stays the same. But this is google, right?! It must recognize the basic query on the address line. So I tried entering this address: https://www.blogger.com/?lang=en and boooom! the interface is in English. Easy...

adding views to admin site

I'm using django 1.1 now, and custom views on the admin site that worked before are now broken. It turns out that you need to add the 'admin' namespace to the url tag in templates. For example: class SubscriptionAdmin(admin.ModelAdmin): # define custom views for the admin def export_csv_view(self, request): return export_csv(request, self.model) # hook custom views into admin site urls def get_urls(self): urls = super(SubscriptionAdmin, self).get_urls() csv_urls = patterns('', url(r'^export-csv/$', self.export_csv_view, name='export_csv'), ) return csv_urls + urls ... ... Using this view in a template, you could write href="{% url export_csv %}" but now it works like this: href="{% url admin:export_csv %}" --[may the namespace be with you]--

shared hosting, mod_wsgi, multiple sites

I just finished setting up multiple sites on a shared host ( webfaction ), all using mod_wsgi and the same apache instance. The apache config file: ServerRoot "/home/mehome/webapps/djangoprojects/apache2" LoadModule dir_module modules/mod_dir.so LoadModule env_module modules/mod_env.so LoadModule log_config_module modules/mod_log_config.so LoadModule mime_module modules/mod_mime.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule wsgi_module modules/mod_wsgi.so KeepAlive Off Listen 28512 LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined CustomLog logs/access_log combined Timeout 300 ServerLimit 1 StartServers 1 MaxRequestsPerChild 2000 NameVirtualhost *:28512 <virtualhost *:28512> ServerName site1.com ServerAlias www.site1.com WSGIDaemonProcess site1 threads=2 maximum-requests=2000 inactivity-timeout=120 display-name=wsgi:site1 WSGIProcessGroup site1 WSGISc...

2nd post

Second words of wisdom. Welcome to the net-talk. Thank-you. If all goes well: print(post.blurb) posts will follow...