Carbon Coding Language: Google’s Experimental Successor to C++

On July 19th 2022, Google introduced Carbon Language. What exactly is Carbon, and what does it aim to achieve? Note that the Carbon coding language is experimental.

To understand Carbon, we first need to take a look at the language it’s attempting to augment. That is, C++. It remains the dominant programming language for performance critical software, and has been a stable foundation for massive codebases. However, improving C++ is extremely difficult. This is due to a few reasons:

  • Decades of technical debt
  • Prioritizing backwards compatibility over new features
  • C++, ideally, is about standardization rather than design

Carbon, as Google puts it, is okay with “exploring significant backwards incompatible changes”. This has pros for those wanting to work with a language developing with the mindset of “move fast and break things”.

Carbon promises a few things in their readme:

Carbon is fundamentally a successor language approach, rather than an attempt to incrementally evolve C++. It is designed around interoperability with C++ as well as large-scale adoption and migration for existing C++ codebases and developers. A successor language for C++ requires:

  • Performance matching C++, an essential property for our developers.
  • Seamless, bidirectional interoperability with C++, such that a library anywhere in an existing C++ stack can adopt Carbon without porting the rest.
  • A gentle learning curve with reasonable familiarity for C++ developers.
  • Comparable expressivity and support for existing software’s design and architecture.
  • Scalable migration, with some level of source-to-source translation for idiomatic C++ code.

Google wants Carbon to fill an analogous role for C++ in the future, much like TypeScript or Kotlin does for their respective languages.

JavaScript → TypeScript
Java → Kotlin
C++ → Carbon?

Talk is cheap, show me the code

Okay, so what does Carbon look like then?

First, let’s see how to calculate the area of a circle in C++.

// C++ Code
#include <math.h>
#include <iostream>
#include <span>
#include <vector>

struct Circle {
  float r;
};

void PrintTotalArea(std::span<Circle> circles){
  float area = 0;
  for (const Circle& c : circles) {
    area += M_PI * c.r * c.r;
  }
}

auto main(int argc, char** argv) -> {
  std::vector<Circle> circles = {{1.0}, {2.0}};
  // Converts 'vector' to 'span' implicitly
  PrintTotalArea(circles);
  return 0;
}
C++ coding example

Compared to Carbon:

// Carbon Code
package Geometry api;
import Math;

class Circle {
  var r: f32;
};

fn PrintTotalArea(circles: Slice(Circle)) {
  var area: f32 = 0;
  for (c: Circle in circles) {
    area += Math.Pi * c.r * c.r;
  }
}

fn Main() -> i32 {
  // Array like vector
  var circles: Array(Circle) = ({.r = 1.0}, {.r = 2.0});
  
  // Array to slice implicitly 
  PrintTotalArea(circles);
  return 0;
}
Carbon coding example

My initial thoughts are that the syntax looks mixed between C#, JavaScript, and C++. Prepending “var” before each variable seems redundant. Why not a type name followed by a declaration? One might argue that it leads to easy variable identification without memorization of variable types but that makes little sense as you put the type anyway. The way variables are initialized with “:” instead of =, reminds me of Javascript. Not sure if that’s a good thing, it looks less like C++ than I expected. Oddly, they chose “import” for the system packages it seems which is also shared with Python. I do like the shortening of function to fn. You could argue shorthand is the point because it’s cleaner and smaller, but again why is it defined as a function and then an ‘i32’? Seems redundant. unless they decided fn FunctionName() -> i32 is shorter than int FunctionName(). It could be their goal is simply to separate the syntax from other known languages enough to recognize at a glance. Maybe I’m missing something.

One neat feature they’ve shown is the interoperability between Carbon and C++. You can call C++ from Carbon and vice versa. You can rewrite or replace as little or as much of your libraries as you want without fear of breaking anything. Well, at least without breaking anything more than normal when dealing with C++.

// C++ code used in both Carbon and C++;
struct Circle ( float r; ); 
// Carbon exposing a function for C++:
package Geometry api; 
import Cpp library "circle.h";
import Math; 
fn PrintTotalArea(circles: Slice(Cpp.Circ/e)) {
    var area: f32 = 0;
    for (c: Cpp.Circle in circles) { 
        area += Math.Pi * c.r * c.r;
    } 
    Print("Total area: {0}", area); 
}
// C++ calling Carbon:
#include <vector>
auto main(int argc, char** argv) -> int { 
    std::vector<Circle> circles = {{1.0), (2.8)}}; 
    Geometry::PrintTotalArea(circles);
    return 0; 
}
C++ code used in both Carbon and C++

And better memory safety is also promised

Safety, and especially memory safety, remains a key challenge for C++ and something a successor language needs to address. Our initial priority and focus is on immediately addressing important, low-hanging fruit in the safety space:

  • Tracking uninitialized states better, increased enforcement of initialization, and systematically providing hardening against initialization bugs when desired.
  • Designing fundamental APIs and idioms to support dynamic bounds checks in debug and hardened builds.
  • Having a default debug build mode that is both cheaper and more comprehensive than existing C++ build modes even when combined with Address Sanitizer.

Time will tell if the language develops into a developer favorite or fades into obscurity like Dlang. What, you haven’t heard of D?


It helps me if you share this post

Published 2022-08-03 00:19:33

Applying custom Windows styles to Firefox, Chrome, and other Chromium browser’s window buttons in Windows 10 & 11

Typically, browser vendors force default button styles onto the program. This can be troublesome when you use something like SecureUxTheme to change your Windows styles, and you care about the cohesiveness. There is a hacky solution, even if the Firefox forums told me there wasn’t. ?

DEFAULT: Custom themed Notepad next to standard browsers

For Google Chrome, Edge, Brave, and some other Chromium-based browsers

For Chromium based browsers you can simply change the shortcut target to allow launching with your custom changes.

  1. Open start menu.
  2. Search and find your browser shortcut
  3. Right-click, and open file location
  4. Right click > open Properties of the browser shortcut (The shortcut for Chrome in the Start Menu may be found in C:\ProgramData\Microsoft\Windows\Start Menu\Programs)
  5. Add this line --disable-windows10-custom-titlebar to the end of the Target field after a space. (For Chrome, “C:\Program Files\Google\Chrome\Application\chrome.exe” becomes “C:\Program Files\Google\Chrome\Application\chrome.exe” –disable-windows10-custom-titlebar )
  6. In order for your changes to show up you may need to use Task Manager (ctrl + shift + esc) and kill all background processes of that browser
  7. Repeat for each browser shortcut you use.

Changing the Registry Launch settings

This is all well and good but what if you click on a link and the browser opens automatically? Now we aren’t using the custom launch option anymore. We can edit the registry to fix this.

This is the “I’m not responsible if you break your computer” warning: BE SURE TO ALWAYS MAKE A BACKUP OF THE REGISTRY BEFORE PERFORMING ANY CHANGES.

  1. Launch the Registry Editor (Win + R, regedit)
  2. Navigate to Computer\HKEY_CLASSES_ROOT\ChromeHTML\shell\open\command
  3. Change the (Default) value from "C:\Program Files\Google\Chrome\Application\chrome.exe" --single-argument %1 to "C:\Program Files\Google\Chrome\Application\chrome.exe" --disable-windows10-custom-titlebar --single-argument %1
    • We are essentially just adding that custom launch argument onto the default launch arguments Windows calls when it opens the program
  4. Starting the browser now use your themed settings. Older versions Chromium may have a different startup option. Try --disable-features=Windows10CustomTitlebar if it doesn’t work for you

Firefox

Firefox needs CSS and changing an internal flag in order to work.

  1. Open your Firefox profile. You can find it in %appdata%\Mozilla\Firefox\Profiles, try looking at the one most recently modified.
  2. If the folder doesn’t exist already, create a folder called ‘chrome‘. Yes, this is the tutorial for Firefox.
  3. Inside the ‘chrome‘ folder in your profile, create or edit the file ‘userChrome.css‘.
  4. Put these contents (or embedded down below) into the css file, either on its own or adding to what is already there. You can modify anything you want, such as the ‘titlebar-button:hover’ alpha value to your liking.
  5. Open a new Firefox window
  6. Enter about:config into the URL bar, and bypass the warning
  7. Change the toolkit. legacyUserProfileCustomizations. stylesheets option to true by double clicking.
  8. Restart Firefox
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
.titlebar-button {
background-color: transparent !important;
transition: background-color 0.5s ease;
height: 0px;
}
.titlebar-button>.toolbarbutton-icon {
list-style-image: none;
}
.titlebar-button:hover {
background-color: rgba(121, 121, 121, 0.1) !important;
}
#titlebar-close:hover {
background-color: rgba(121, 121, 121, 0.1) !important;
}
#titlebar-close:hover>.toolbarbutton-icon {
list-style-image: url("chrome://browser/skin/caption-buttons.svg#close-white") !important;
}
#main-window {
-moz-appearance: -moz-win-glass !important;
background: transparent !important;
}
#navigator-toolbox {
background: transparent !important
}
view raw userChrome.css hosted with ❤ by GitHub

And finally, get my better dark theme for Firefox. 🙂


Now your browser buttons look sleek and uniform, just like the rest of your system.


It helps me if you share this post

Published 2022-07-31 09:03:00

Realtime Priority: Ask and you will receive

At some point when looking through Task Manager you may notice the ‘priority’ setting in Task Manager and decide that you want your favorite game (example: Minecraft) to run faster. You right click the process in Task Manager and set the priority to ‘realtime’, the highest setting.
realtime priority preview

However, upon clicking that option, a scary looking dialogue option pops up informing you that this is probably a bad move.
realtime priority warning

Changing the priority in this instance causes our laptop mouse to lag across the screen and explorer.exe to stop responding. Fun! Why is this the case? What’s going on here?

Realtime priority is the absolute highest priority you can set a program. This tells Windows you want to dedicate as much CPU time as possible to that process, so basic process like mouse input and Windows UI start competing for CPU cycles.

Realtime is the highest process class

This doesn’t lead to locking the system entirely because most programs don’t actually use 100% of the CPU regardless of their priority. Most threads do wait for things sometimes, and that could include waiting for a read/write to complete, or some other thread to indicate that they don’t have to wait any more. Additionally, “real-time priority” as a term actually consists of a range of priorities, as indicated by the table above. It’s possible for one “real-time” process to have higher priorities than those of another “real-time” process.

Most of the time, there’s no real reason to change process priority, although a few times it has been personally helpful in situations where two programs are working on a CPU intensive task, and they are slowing each other down. It’s possible to set the program’s process priority to “Above normal” pretty safely, allowing the CPU to dedicate more time to it.


It helps me if you share this post

Published 2022-07-24 05:03:48

Undertale Mobile Native Android Build with Controller & Keyboard Support + Save Editor

What the heck?” I hear yourself asking.

“Is there even an android version of the game out?” No. 🙂

Undertale has been one of the most influential and one of my favorite games of all time. Since the game’s release in 2015 I’ve been entranced by its secrets and storyline. I played it blind when it first came out and have been hooked ever since.

I’ve been a part of a few different Undertale data mining communities over the years and although I admit there probably aren’t any secrets left, I’m still interested in any new theories or fan works/mods.

I came across a method to patch gamemaker files including Undertale to mobile, and then discovered there’s already been some work in the community into this area. I took the existing mobile Undertale modifications online and added full controller and keyboard support (note this build is Android only).

A SAVE EDITOR has also been added into the game. If you visit the SETTINGS menu from either the beginning of the game or the Continue menu, you can overwrite your save file with presets. Save file preset names are below, but THEY CONTAIN SPOILERS (if you haven’t somehow heard/played UNDERTALE already)

This along with the added Bluetooth controller support should make it bearable to play Undertale on mobile devices!

This build is for educational purposes and Undertale research only. Also, some stuff is broken right now. If you can’t get past “Begin game” or the game freezes, try going to the settings beforehand and loading a preset save file.

Download .APK v0.0.8 for ANDROID


It helps me if you share this post

Published 2022-06-17 07:39:00

Why does Windows show I have a startup entry named ‘Program’?

Task Manager may display a startup entry with a blank program icon and the name ‘Program’. What is this?

While this can look malicious or suspicious, typically it’s the result of a mistake. When a program registers itself as a startup program, it may not enclose one or more values in double quotes correctly. Thus, if a program path is supposed to be ‘C:\Program Files\Starcheat\starcheat.exe‘, the developer may have mistakenly not enclosed the path correctly. Windows will read a space as the end of the value, therefore it becomes C:\Program.

View Offending File Path

If you want to view the path causing this, simply right click on the header of the task manager startup entries and show the ‘Command line’ option. ‘Startup type’ is useful to show as well.

From here, you will now be able to see the broken path and navigate there yourself.

As you can see, in this instance the value is not enclosed correctly, leading to this error.

You can then potentially remove the startup entry entirely or laugh at the developer’s incompetence.


It helps me if you share this post

Published 2022-05-18 04:00:47

Crypto’s Remaining Path to Spending Relevance

It’s 2022, and cryptocurrencies have hit something of an impasse. While assets like Bitcoin and Ethereum are firmly established in the public consciousness, many questions still remain about crypto security and long-term viability. Even now, in the age of wild NFT hype and rampant digitalization (of seemingly everything), there’s as much discussion about the safety of the various exchanges and wallets you’d use for digital dealings as there is about the actual marketplaces.

Amidst this uncertainty, cryptocurrencies are still being used primarily as investment assets, and haven’t made much of an impact on how we physically (or virtually) spend our money. Volatility in particular remains a big issue; vendors are reluctant to accept currencies with such wild value swings as some cryptos –– and by the same token, those with crypto assets may be loathe to spend them and risk potentially missing out on value gains.

All of this begs the question though: What opportunities remain for crypto to make the jump from being something to have into something to use? A few options with legitimate potential come to mind

Travel Money

El Salvador caused a storm in September of 2021 when the country itself started to accept Bitcoin as legal tender. With 1.4 million Salvadorans living and working in the U.S. and foreign remittance accounting for some $6 billion (or about 23% of El Salvador’s GDP), crypto’s speed and potentially lower cost compared to traditional money transfer methods make it an attractive proposition. Accused of pandering to rich currency speculators, President Nayib Bukele went to pains to show how crypto would benefit the average family with the launch of payment app Chivo, which Salvadorans can use to pay directly with Bitcoin at both local vendors and global chains such as McDonald’s and Starbucks in San Salvador.

This is, of course only one country’s journey with crypto. But we know that Panama, Paraguay, Brazil, and Argentina at minimum are among the nations monitoring how El Salvador’s integration of crypto into daily life progresses. It appears possible that in the near future there may be countries and regions for which cryptocurrency will become a favored if not necessary option among travelers (not to mention entire local populations).

Online Shopping

When Elon Musk announced in January that Tesla would accept Dogecoin for certain company-branded merchandise, the headlines were focused on the acceptance of what was once seen as a “joke” crypto. However, even when we look beyond Musk’s high profile, many retailers have been quietly accepting many cryptos for some years now.

Unsurprisingly, tech vendors were among the first to get on board, with Newegg having welcomed Bitcoin transactions since 2014, and added Dogecoin, Shiba Inu, and Litecoin to its payment methods in 2021. Meanwhile, Chinese vendor FastTech ships worldwide and accepts 22 different cryptocurrencies as of this writing. And Home Depot has gone one step further; the biggest hardware chain in the U.S. has accepted Bitcoin for both website and in-store purchases since 2019.

Gaming

Given that the internet is where cryptos are stored and traded, gaming seems like a natural outlet for spending. Accordingly, Microsoft accepts Bitcoin payments for both hardware and software, through users’ Microsoft accounts. The game streaming platform Twitch allows users to tip their favorite accounts using multiple cryptocurrencies. And in the emerging Decentraland metaverse, poker salons where players wager the in-house crypto MANA have become some of the most popular locations in the platform’s digital world.

Online Poker

Traditional poker sites have also been quick to capitalize on cryptocurrency being held by growing numbers of people. Indeed, with more than 100 million individuals now holding some form of crypto asset, the market has diversified well beyond “tech bros” and fund managers and now more closely mirrors the general public –– much of which plays poker online.

As this mainstream transition has occurred, it has also become clear that crypto in poker has numerous potential benefits. First and foremost, the security the blockchain offers means a safer (and more anonymous) way of depositing funds. Additionally, payouts can be actioned almost instantaneously. And as a sort of added bonus –– depending on how you look at it –– the volatility of cryptos adds potential perks to gambling, in that winnings can appreciate in value, and lost cryptocurrency might eventually become less valuable (though of course both of these perceived perks can also work the other way around). Because of these factors, we have already seen some adoption of crypto by poker sites, and it’s likely the trend will continue.

Dining and Entertainment

On the dining front, it sometimes goes overlooked that some major restaurants now accept crypto payments. Food at the countrywide Mastro’s steakhouse chain can be paid for with Bitcoin or Bitcoin Cash, for instance. The delivery app Menufy also accepts Bitcoin, as can the Takeaway app in Europe.

As for entertainment, there seem to be more examples with each passing month. Crypto advocate Mark Cuban has ensured fans can use Bitcoin and Dogecoin to buy tickets and merchandise connected to his NBA franchise (the Dallas Mavericks). AMC Theaters now accept various cryptos as payment methods for movie tickets as well. And these are just a few highlights in the entertainment sector.



It’s true that cryptocurrencies haven’t become as much a part of our daily lives as some acolytes have predicted over the years. Chances are they won’t until federal government regulations lay out formal structures for a safer ecosystem that more traditional companies can get on board with. At this point though, there are still plenty of ways to use crypto in day-to-day spending, and the use cases are only growing.


It helps me if you share this post

Published 2022-04-12 07:00:00