Made to Order Software Corporation Logo

system

70Gb of transfer!

This month, we’ll reach over 70Gb of transfer on our server. This is a problem since most of it is due to bad spiders. Robots trying to get emails off our websites.

So, we had to install an Apache security module called ModSecurity to prevent such attacks. It is sad that we have to take such measures for bad coders prevention.

If you also have an Apache server and want to protect your system, look at this website: https://www.modsecurity.org/

Security Issues with the US government

Some people, I have noticed, have been skeptical about the amount of care taken by the US government and agencies in the last few years. Companies are also catching up. The security measures change every year, when not every semester, every month and for some, probably every day.

For sure, making sure that the most wanted information remains top-secret, you need top level security features on your network. I do not know how much data is of interest, but I found out today that there are hackers attacking the federal websites quite a bit…

“The Pentagon last month acknowledged ...

Order Made!® presentation at Luncheon

Order Made! will be presented at the Citrus Heights Luncheon on Tuesday, May 13, 2008.

Please, come join us if you’d like to see how it works. If you want to eat at the Luncheon, you need to reserve your seat. Call Ruth, Renee or RJ at (916) 722-4545. They will serve you with one of two meals:

GRUB error 16

Today I had a problem with one of our computers. It did not want to boot. The boot loader is called GRUB. Most Linux distributions now use GRUB which is much more advanced than LILO and some other boot loaders.

GRUB is great for several reasons:

Order Made!® has its own website

After a couple of months, we finally released the Order Made! website.Order Made! Demo Page

Order Made! is an online system for ordering food from restaurants. This isn’t new, others have done it before, however, Order Made! uses our Instant Cart technology. This means: it is very fast! So fast, that customers will return to the ordering page over and over again. All the better for the restaurant owners using Order Made!

And it is not just fast, it is also very easy to use. Customers can order an item by clicking on it. Voilà! For the few items that require you to select a specific ingredient ...

Made to Order Software announces PHP eFax

Made to Order Software created a new software package to support the eFax protocol using PHP.

eFax® is a strong and still growing company providing a very fast and reliable system to send faxes cheaply nearly anywhere worldwide. Their system works with the Internet and thus is accessible to your website.

PHP is a powerful language used to program Internet Websites. It has many features to handle dynamic pages as required by today's corporate world. PHP comes with very many free libraries and also many enhancements offered by companies.

Made to Order Software combined both: the eFax ...

ANNOUNCING: Online Ordering Seminar featuring Order Made!

 

Restaurant owners and managers: Please accept our invitation for you to join our seminar on January 22 (1/22) at 11:00 AM. Come and learn about online ordering systems and the importance of having a functional online presence. By functional online presence I mean to have a website that does some of the work for you, whether it be taking reservations or taking orders. And it gets even better - COME FIND OUT WHAT I MEAN!!

You have a website already? GREAT! Plug in the Order Made! online ordering system and start getting a return on your investment. Don’t have a website? Now ...

Order Made!® version 1.7 featuring Google Maps™

The software engineers at m2osw have been hard at work developing and testing the next major release of Order Made!®, version 1.7 that has an incredible new feature! Order Made! is a premier turn key website for patrons of restaurants to place their orders online.

Recently, Wayne Mok of the New Rice Bowl Restaurant in Carmichael, CA told us that the best thing about Order Made! is that it keeps he and his wife off the phone. They love to cook, and talking on the phone is often difficult and time consuming. But for delivery orders, Wayne told us they were still spending time on the phone ...

Server Switch!

For the last few days, Doug and I have been working on switching from our old server to our new server. The new one is with JohnCompanies.com that offers VPS (Virtual Private Servers). It was a nice surprise, the computer we have access to has 8 processors running at 3Ghz (”proven” by the Linux Bogomips computation: 5985.31) And so far, I’ve seen about 0.8% of one processor being used. The rest is 100% idle most of the time!

The assert() macro in C/C++

 

This is a subject that comes back all the time in C/C++ boards.

Should you use assertions?

The answer is clearly yes. But the C/C++ assert() function is usually defined using a macro. Macros have several problems. The most common ones are: they offer no type checking, they do not warn you about weird side effects, they have a different syntax than the C/C++ language itself.

One good thing: for a fast program, the debug code used to check parameters, results, etc. is gone.

One really bad thing: if the expression in the macro has a side effect, the release program is different from ...