Skip to content

Xojo Programming Blog Posts

Compilers 101 – Overview and Lexer

At XDC 2016 there was a lot of interest in our Compiler session and LLVM. I’ve summarized a bit about LLVM in an earlier post, but to take things further, we put together this series of blog posts on compilers.

These will all be at a high-level. None of these posts are going to teach you how to write a compiler. The goal of these posts is for you to have a basic understanding of the components of a compiler and how they all work together to create a native app.

Comments closed

The Last Mile: Why Net Neutrality is a Must

During the Obama administration, internet service providers (ISPs) were reclassified as Telecommunication Service Providers.  This meant that they would be treated like phone companies, as common carriers with all the regulation that implies. Prior to this they were classified as Information Providers which clearly made no sense since ISPs provide the network, not the actual content. Most importantly, Net Neutrality prevents ISPs from providing paid fast lanes which would allow companies to pay ISPs to make traffic to their site faster than traffic to other sites.

Comments closed

Contrast Illusion Animation

I was reading Twitter recently and came across this Tweet:

So of course, I though that would be cool to try in Xojo. After a few minutes of playing around I quickly had it.

Comments closed

8 Ways to Market Your App for Free

Though marketing may not be your forte, there are things you can do that are very effective in promoting your app and building your customer base. You can try some of the paid options and get varying results, but there are many free things you can do that can have a huge impact. We’ve already blogged about using Twitter to market your app for free.

Here’s a list of 8 additional ways your marketing team of 1 can promote your app at no cost:

Comments closed

10 Print

The other day I saw this article on Dev.To: A Universe in One Line of Code with 10 PRINT

It talks about how you could make a maze-like structure on a Commodore 64 with just this one line of code:

10 PRINT CHR$(205.5+RND(1)); : GOTO 10

The author then goes on to show you how you might do something similar using Python and pygame.

I love all things retro and this seemed like fun, so I thought I would whip up the same thing in Xojo.

Comments closed

The Best Cross-Platform Secret Weapon You’ve Never Heard Of

In today’s world, the only way to be sure you are reaching all your potential customers is to target multiple platforms. But cross-platform development is crazy-hard, right? Perhaps, if you are using tools like Java, Qt, Delphi or Xamarin it certainly can be. But with Xojo, cross-platform apps are simple to create.

In fact, Xojo lets you easily cross-compile desktop apps for Windows, macOS, Linux and Raspberry Pi. Plus, you can use the same Xojo language to create web and iOS apps too (Android coming soon!).

Comments closed