How to create a custom object in ASP (done just now for a mate in need…). Content:
Spam FAQ
Why does spam exist?Of course, it’s all about money. That’s why spammers exist and they continue spamming more than ever before. Spam email attracts visitors to a web address, usually to buy some product that may even be fake.Usually, the beginning is like this. Our email accounts receive a few unwanted mails, usually 2 or […]
How to connect to MS Access Database Using ASP
This tutorial documents code for connecting to a MS Access Database using the DSN-Less approach. With DNS-Less approach all you have to do in your code is define the location where your database resides. Content: This tutorial will show you how to connect to a MS Access database using the DSN-less approach.Remember, your database can reside anywhere in your […]
Navigating the Future: Java’s Resilience Amid Licensing Changes and Security Concerns
The landscape of Java, one of the most steadfast and widely-used programming languages in the world, is undergoing a period of significant change. With recent licensing adjustments by Oracle and heightened security concerns, the Java community is at a crossroads, balancing the need for innovation with the demand for stability and security. Java’s Ubiquity in […]
Creating a collection class in C++
How to use a template to create a custom collection class and using the C++ std::vector STL library as well as the operator. I will expect you to understand how pointers, classes, templates and the operator works Introduction C++ comes with its own set of containers in the STL (Standard Template Libraries) libraries; (e.g. std::vector). It […]
Zoom div by percentage using CSS
This little example mark-up shows you how to zoom in a div by a specific percentage using only CSS.
Introducing the ‘for’ loop
A really small tutorial introducing the ‘for’ loop, good for C++ newbies and programming beginners. In this tutorial I expect you to have a little knowledge about programming, but to understand at least the C++ variables and other basic information. Like in any other programming language, loops are very useful for repeating tasks. For is […]
Disable The Firebug Plugin
Using JavaScript, you can disable the Firebug Firefox plugin to prevent others from debugging your code. This JavaScript code snippet is designed to ensure that the console object exists in the browser environment, even in browsers where it might not be natively supported or if certain tools like Firebug are not present. Here’s a breakdown: […]
Size of Structures
In this programming tutorial we will see that 2 structures with the same elements but with different arrange of elements make a different size of structure. Look at these structures:struct st1{ bool b1; int i1; char c1; bool b2; int i2;}; struct st2{ bool b1; bool b2; char c1; int i1; int i2;}; st1 works the same as st2 in C/C++, but the size of these structures isdifferent, because of the size of the data packing. Look […]
Outline All CSS Elements
These few lines lines of CSS will outline every element with a border, up to 8 levels. Add more lines if your CSS elements go into a higher depth.