All Articles

July Market Conditions

As we delve into the market conditions of July 2024, a complex tapestry of economic factors comes into focus. This mid-summer month has been marked by significant events and trends that have shaped the financial landscape. From fluctuations in stock markets to shifts in commodity prices, and from economic policy changes to global geopolitical developments, July has been a month of noteworthy market activity.

A Comparison of Cloud-based and On-premise Installations

A cloud-based software installation refers to the deployment and use of software applications that are hosted on remote servers and accessed via the internet. Instead of being installed locally on individual computers or servers, the software resides on cloud infrastructure managed by a third-party provider. Users can access and use the software through web browsers or dedicated client applications, enabling them to leverage the benefits of scalability, flexibility, and remote accessibility.

Uma análise de por que Ruby on Rails é o melhor framework de desenvolvimento web

Ruby on Rails, muitas vezes chamado simplesmente de Rails, é uma estrutura de aplicação web escrita em Ruby. Foi criado por David Heinemeier Hansson e lançado em 2004. Rails foi projetado para facilitar a programação de aplicações web, fazendo suposições sobre o que todo desenvolvedor precisa para começar. Ele permite que os desenvolvedores escrevam menos código e realizem mais do que muitas outras linguagens e estruturas.

Un análisis de por qué Ruby on Rails es el mejor framework de desarrollo web

Ruby on Rails, a menudo llamado simplemente Rails, es un marco de aplicación web escrito en Ruby. Fue creado por David Heinemeier Hansson y lanzado en 2004. Rails está diseñado para facilitar la programación de aplicaciones web al hacer suposiciones sobre lo que cada desarrollador necesita para comenzar. Permite a los desarrolladores escribir menos código y lograr más que muchos otros lenguajes y marcos.

An analysis of why Ruby on Rails is the best web-development framework

Ruby on Rails, often simply called Rails, is a web application framework written in Ruby. It was created by David Heinemeier Hansson and released in 2004. Rails is designed to make programming web applications easier by making assumptions about what every developer needs to get started. It allows developers to write less code while accomplishing more than many other languages and frameworks.

My Docker, docker-compose & jenkins setup for working on wordpress themes and plugins

First published on 2022-12-02

Hello all! In this article, I outline my local docker setup for developing wordpress plugins and themes. I use docker to run local mysql (multiple versions) and php (multiple versions) as well as manage the wordpress installed plugins. Furthermore, I use the same setup for deploying to production, so it is particularly useful.

The majority of configuration resides in Dockerfile and docker-compose.yml, however, I also have a few scripts and naming formalisms that facilitate development and rational thinking.

202406 Site Updates (June 2024)

  • Wordpress has been decoupled from the Drupal website. See also: a summary of how we made sure to preserve all urls and links during the migration. 
  • Bugfixes and minor stylistic changes
  • Added section StacksScrollerv0.0.0

20230713 UIUX Dailies: Iron Warbler

First published on 2023-07-13.

Working on a UI for a data visualization tool.



 

This screen will present some derivatives position in a new and innovative way, allowing humans' excellent natural pattern recognition to kick in, when analyzing trading data. Preparing to roll to a next position:

Hosts File Not Working on Mac? Try This Fix

I've recently had to re-do this. This has happened too often for me, and it's just very annoying in general. There are many problems (and offered solutions) around /etc/hosts file, for chrome only as well as for the os x generally. I've noticed that the /etc/hosts file works just fine for curl, but does not work for chrome. This led me to believe that the problem was a chrome setting, but upon fixing it, I am less certain that Chrome is the culprit. My solution is below. Basically, the host file needs to be ASCII-compliant. I've had that file soft-linked and modified by a number of actors.

How to manually execute a SQL query in Ruby on Rails

I run into this just now. The wrong way: 

results = ActiveRecord::Base.connection.execute("select * from users limit 10")

The right way: 

results = ActiveRecord::Base.connection.exec_query("select * from users limit 10") 

Somehow the formet executes the query without returning a result. If you want to actually see the results of SELECT'ing something, use the latter query. (Which also means that you probably want to use the former for INSERT'ing, though I have not verified.)