Skip to main content

What's in a name (part 2): RUCKSACK it is!

That's right. We're going with Rucksack after all!

This is (mildly) embarrassing. The best of the bad explanations I can offer is, it takes a lot of time to get ready to kill one company and start another one, even very small companies. In the process of doing my company-name research, I failed to notice that 37Signals had, some months ago, released an iPhone app called "Daypack." Sigh.

I am pretty sure I could have stuck with Daypack Data and never heard from 37Signals' lawyers. We don't compete at all. But it's okay. While "Daypack" is great as a name for an iPhone app, I always thought it was a bit lightweight for what we do anyway. As I said five weeks ago ("What's in a name?"), the connotations of rucksack are much sturdier. That's a better fit with our mission. We don't just build databases you can carry your lunch in, we build databases that will carry everything you need to succeed in battle. So to speak.

And I rethought the word "data." We don't sell data and we don't do data processing. We're a technology solution firm, selling tools that allow you to manage and process your own data. So "Technology" is a better description of our field. Plus, we're in Texas. So "Texnology" seems like a clever secondary descriptor.


How do you pronounce it? I actually don't expect people to say it out loud very often, but I hereby declare that the correct, proper and officially sanctioned pronunciation is "TEK-nology" (not "TEX-").

That third letter is the Greek letter chi (khi), which gets transliterated in English as "ch" or "kh". It is in fact the character used in the word tekhnos "craft" which is the root in "technology".


This use of "tex" for "tech" is not at all original. If you're a typesetter you probably are familiar with TeX, the typesetting language, or LaTeX, the typesetting program. They are pronounced tek and latek respectively.

The fact that "tex" makes you think of the great Lone Star State is, well, just a bonus.


Comments

Popular posts from this blog

Setting up OAUTH with Google in FileMaker 16

Setting up OAuth with Google in FileMaker 16 Posted by William Porter Intended audience: Intermediate to Advanced FileMaker developers Date of publication: 2017-June-06 Updated: 2018-June-06 One of the many exciting features in FileMaker 16 (released May 2017) is OAuth or Open Authentication. Open Authentication allows users to connect to a FileMaker database after authenticating with an external (non-FileMaker) account. At the present time, FileMaker supports OAuth through Google, Amazon and Microsoft. If you're a developer there are two main questions to answer. First, should I do this? And second, how do I do it? I'll answer the first question later. It's important. But the other question-- How  do I setup OAuth?--is answered in the attached document. I wrote this tutorial with the help of my friend and colleague Taylor Sharpe of Taylor Made Services , also here in Dallas. We provide step-by-step instructions on how to get your users authenticating in...

Virtual List Basics

The concept The basic trick behind virtual lists is the wonderful GetValue() function. GetValue() takes two parameters: A list of return-delimited values A number specifying which value in the list to get For example say you have a field in a single record called “List of Values” and it contains the following:    Apple    Boy    Cat    Doorknob    Elephant    Fish When that record is selected, GetValue ( MYTABLE::List of Values ; 4 ) will return “Doorknob”. The brilliant idea is to replace the list of values stored in a field with a list in a global variable . The basic implementation, part one Create a table called VIRTUALLIST. In it, define these two fields: VALUE NUMBER: a number field Value_calc: calc field returning text value, = “GetValue ( $$VALUES; VALUENUMBER )”. Make sure that this value is an unstored calculation. Go to the layout for the VIRTUALLIST table and create s...

Airtable: I'll take that data to go

Will Porter's review of Airtable is online now at Macworld: http://www.macworld.com/article/3036505/software/airtable-review-a-drop-dead-easy-relational-database-management-system.html Rucksack TeXnology clients may be very interested in Airtable. It's a relational database management system that has many advantages. It's free to get started (and possibly free to stay with). On computers, it runs in any web browser in pretty much any operating system. On smart phones, at the moment it's available only for iOS devices, but an Android app is in the works and coming soon. How's Airtable compare to FileMaker? FileMaker is a  much  more powerful tool: not just a more powerful RDBMS, but a much more powerful application development system, that is, a more powerful user-interface builder. But surprisingly often, you don't need the user-interface tools that FileMaker provides. You just need to store data for later retrieval. In that case, Airtable may beat the...