Started making games as an indie
Some thoughts and notes on starting making games as an indie dev and why.
My journey
Some thoughts and notes on starting making games as an indie dev and why.
Using cargo clippy –fix to apply suggestions automatically.
I am documenting my Elixir journey using GitBook on https://elixir.petrolidas.com
How to fix the implicit functions error Clang is throwing in the latest version of Xcode tools when installing ruby gems that need to build native extensions.
Two git aliases to list the commits you have created off of your base branch and the files you have touched.
Ruby 2.7 has just been released (Dec 25) as the tradition is. That’s the last minor version before 3.0 which is going to be released on Dec 25, 2020. In one year. Here are a few new features that caught my eye. Array intersection There are a couple of set methods you can use with … Continue reading Ruby 2.7
I always had trouble finding a way to copy lines of code in vim when I wanted to paste the lines in some other application on macOS. You see vim doesn’t use the OS clipboard when it copies something …
This is a story many have shared. It is typical. You can get it by asking how one got involved with computers. Most will say, they started playing games. Then something happened and they wanted to see how things worked under the hood. Then they got hooked. The story is the same. What changes is … Continue reading Introducing Sector Five II
In a previous post I mentioned that I started maintaining a set of helper Ruby classes for working with barcodes. I have changed the structure of the project to make it a gem and I have published it on GemCutter.
I was wondering why some people are using _path and why some use _url. For example, if you have a Post resource you can write the following in your view: <%= link_to ‘List of posts’, posts_path %> or the following in the controller: redirect_to posts_url Why should I use _url in the controller. I have … Continue reading Rails: url vs path