background preloader

Office

Facebook Twitter

Ajax Applications, Web Reporting, Web Development Tool & Code Generator for PHP, C#, VB.NET. Accelerate Web Development with professional Web Application Generator (create dynamic Websites like this one with minimal coding) CodeCharge Studio is the leading and most productive solution for visually creating database-driven Web applications with minimal amount of coding. The support for virtually all databases, web servers and web technologies makes CodeCharge Studio one of a kind.

It is a complete solution available for Web development. Whether you are a legacy developer, MS Access programmer or experienced Web engineer, you can use CodeCharge Studio to rapidly develop anything from simple database-driven Web applications to complex e-business solutions. The included Application Builder instantly converts your database (MS Access, MS SQL, MySQL, Oracle, etc.) into a working Web application with login-protected user access to database search, list, view and update functions.

CodeCharge Studio delivers the speed of code generation integrated with a full featured, powerful IDE. Company & Customers | Community Techknowledge. Professional Statistical Services - Home. Sample Relational Database Data Models | Database Solutions for Microsoft... Using VLOOKUP in Excel. VLOOKUP is one of Excel’s most useful functions, and it’s also one of the least understood. In this article, we demystify VLOOKUP by way of a real-life example. We’ll create a usable Invoice Template for a fictitious company. So what is VLOOKUP?

Well, of course it’s an Excel function. This article will assume that the reader already has a passing understanding of Excel functions, and can use basic functions such as SUM, AVERAGE, and TODAY. In its most common usage, VLOOKUP is a database function, meaning that it works with database tables – or more simply, lists of things in an Excel worksheet. What sort of things? Here’s an example of a list, or database. Usually lists like this have some sort of unique identifier for each item in the list. The hardest part of using VLOOKUP is understanding exactly what it’s for. VLOOKUP retrieves information from a database/list based on a supplied instance of the unique identifier. First we start Excel… …and we create ourselves a blank invoice: Data warehouse. Data Warehouse Overview In computing, a data warehouse (DW, DWH), or an enterprise data warehouse (EDW), is a database used for reporting and data analysis.

Integrating data from one or more disparate sources creates a central repository of data, a data warehouse (DW). Data warehouses store current and historical data and are used for creating trending reports for senior management reporting such as annual and quarterly comparisons. The data stored in the warehouse is uploaded from the operational systems (such as marketing, sales, etc., shown in the figure to the right). A data warehouse constructed from integrated data source systems does not require ETL, staging databases, or operational data store databases. A data mart is a small data warehouse focused on a specific area of interest. This definition of the data warehouse focuses on data storage. Benefits of a data warehouse[edit] A data warehouse maintains a copy of information from the source transaction systems.

History[edit] Digg: 4000% Performance Increase by... Backdoor webserver using MySQL SQL Injection | &GreenSQL. By David Maman, GreenSQL CTO MySQL Database is a great product used by thousand of websites. Various web applications use MySQL as their default database. Some of these applications are written with security in mind, and some are not. In this article, I would like to show you how SQL injection can be exploited to gain almost full control over your web server.

Most people know that SQL injection allows attackers to retrieve database records, pass login screens, and change database content, through the creation of new administrative users. MySQL does not have a built-in command to execute shell commands, as Microsoft SQL Server does. Nonetheless, I will show you how SQL injection can allow anyone to run arbitrary commands using standard features provided by MySQL. First of all, I will give you a brief description of SQL injection. What is SQL Injection? SQL injection is an attack that allows the attacker to add logical expressions and additional commands to an existing SQL query. Webshell 1. Get Started Developing For Android With Eclipse, Reloaded - Smashing Magazine. In the first part1 of this tutorial series, we built a simple brew timer application using Android and Eclipse. In this second part, we’ll continue developing the application by adding extra functionality. In doing this, you’ll be introduced to some important and powerful features of the Android SDK, including Persistent data storage, Activities and Intent as well as Shared user preferences.

To follow this tutorial, you’ll need the code from the previous article. If you want to get started right away, grab the code from GitHub2 and check out the tutorial_part_1 tag using this: $ git clone $ cd BrewClock $ git checkout tutorial_part_1 Once you’ve checked out the code on GitHub, you’ll need to import the project into Eclipse: After importing the project into Eclipse, you might receive a warning message: Android required .class compatibility set to 5.0.

Getting Started With Data Storage Link Abstracting the Database Link Retrieving Data Link Data Binding Link. Generatedata.com. Common Queries Tree. Common MySQL Queries Basic aggregation Last updated 05 Jan 2013 Aggregate across columns Last updated 09 Sep 2009 Aggregates across multiple joins Given a parent table and two child tables, a query which sums values in both child tables, grouping on a parent table column, returns sums that are exactly twice as large as they should be. In this example from the MySQL General Discussion list: DROP TABLE IF EXISTS packageItem,packageCredit,packageItemTax; CREATE TABLE packageItem ( packageItemID INT, packageItemName CHAR(20), packageItemPrice DECIMAL(10,2) ); INSERT INTO packageItem VALUES(1,'Delta Hotel',100.00); CREATE TABLE packageCredit ( packageCreditID INT, packageCreditItemID INT, Last updated 22 Feb 2013 Aggregates excluding leaders You have a table of grouped ranks ...

Last updated 21 May 2009 Aggregates of specified size Find the values of a table column c1 for which there are a specified number of listed values in another column c2. All X for which all Y are Z Last updated 19 Jan 2014 1. Build a CMS in an Afternoon with PHP and MySQL. You're now ready to build the Article PHP class. This is the only class in our CMS, and it handles the nitty-gritty of storing articles in the database, as well as retrieving articles from the database. Once we've built this class, it will be really easy for our other CMS scripts to create, update, retrieve and delete articles. Inside your cms folder, create a classes folder. Inside that classes folder, create a new file called Article.php, and put the following code into it: This file is quite long, but it's fairly simple stuff when you break it down. Everything after these lines of code — up until the closing brace at the end of the file — contains the code that makes up the Article class.

After starting our class definition, we declare the properties of the class: $id, $publicationDate, and so on. Next we create the class methods . The first method, __construct(), is the constructor . $this-> means: "The property of this object that has the name "". 5. getList() $numRows $order 6. insert() 1. Kyle's Cousin & An Absolute Beginner's Introduction to... Proper indexes on your tables are a crucial part of any Database design that requires advanced data retrieval. For basic databases with only a few dozen records per table, indexes may not be absolutely necessary and even slow things down (if your RDBMS does not automatically ignores the index), but it’s still good practice to design your database with proper indexes from the start if you expect it to grow big. The minute your number of table records increases and you need to do more advanced select queries (eg. joining of multiple tables), efficiency and speed becomes important.

That’s where indexes come into play. In this post I’m going to give you an introduction tutorial/guide about database indexes, for everyone who has no idea what they’re used for. Basic SQL knowledge is required in order to comprehend everything. Using an index for simple SELECT statements… Let’s kick things off with a simple example. And add 10 records to it: This is how your table will look like: Conclusion. Coding Horror: A Visual Explanation of SQL Joins. I love the concept, though, so let's see if we can make it work. Assume we have the following two tables. Table A is on the left, and Table B is on the right. We'll populate them with four records each. id name id name -- ---- -- ---- 1 Pirate 1 Rutabaga 2 Monkey 2 Pirate 3 Ninja 3 Darth Vader 4 Spaghetti 4 Ninja Let's join these tables by the name field in a few different ways and see if we can get a conceptual match to those nifty Venn diagrams.

There's also a cartesian product or cross join, which as far as I can tell, can't be expressed as a Venn diagram: SELECT * FROM TableA CROSS JOIN TableB This joins "everything to everything", resulting in 4 x 4 = 16 rows, far more than we had in the original sets. PostgreSQL: The worlds most advanced open source database. Oracle | Hardware and Software, Engineered to Work Together. SQL Server 2008 R2 | Database Management System. Capabilities Breakthrough, in-memory performance With SQL Server 2014, new in-memory capabilities for transaction processing and enhancements for data warehousing complement our existing technologies for data warehousing and analytics. Scale and transform your business with, on average, a 10x performance gain for transaction processing while still using existing hardware, and a greater-than 100x performance gain for data warehousing.

Learn more Proven, predictable performance SQL Server consistently leads in TPC-E, TPC-H and real-world application performance benchmarks. Learn more High availability and disaster recovery Gain greater uptime, faster failover, improved manageability, and better use of hardware resources through AlwaysOn, a unified solution for high availability. Learn more Enterprise scalability across compute, networking, and storage With Windows Server, physical processing now scales up to 640 logical processors, and virtual machines scale up to 64 logical processors.

MySQL Help, MySQL Tutorials, MySQL Programming, MySQL Code. Learning To Love Forms (Web Directions South '07) Feature Tour. Top 50 Ruby on Rails Websites - Social Shopping, Design & Technology – StoreCrowd. Chartpart.com chart generator. Home. Hello, this is the Open Flash Chart project. Get graphs like this for free: How does it work? User browses to your web site.The browser downloads the web page which contains the Open Flash Chart.Open Flash Chart downloads the data file and displays the chart. When you add Open Flash Chart to your web page, you tell it where to find the data file. We also do pie charts. Why is that great? When the user downloads the web page, Open Flash Chart requests the chart data from the server. Add a bit of pizzazz to your bar charts! Is it complicated to set up? You will need to include the Open Flash Chart in your HTML, and you also need to provide the data file on the server.

For a simple chart you would just drop the data.txt file on your website and point the Open Flash Chart to this URL. But what we really want is dynamic data that is pulled from a database or calculated or something. To make this a bit easier there are PHP, Perl, Python and Java classes to write the data file for you. Get started! Yes. Graphing/Charting Data on Web Pages: JavaScript Solutions. Effective data visualization allows users to easily understand and consume otherwise complex, boring information. Plotting your data can serve as a replacement to tabular data, and is also a great way to add practical graphics to your web page or application. There are a variety of ways you can plot data on-the-fly – but in this article we’ll focus on 10 excellent JavaScript solutions to graphing/charting data that allow you to process data client-side. You’ll also find a link to one of the demonstration pages of the script so that you can see it in action.

Flot Flot is a data-plotting library developed by IOLA built on top of jQuery. It’s easy to use, yet feature-packed and elegant. Demonstration: Different graph types Flotr Javascript Plotting Library Flotr, written by Bas Wenneker of Solutoire.com, is a plotting solution inspired by Flot that uses the Prototype JS library and excanvas.js. Demonstration: Basic Legend Example fgCharting Plugin for jQuery Demonstration: Chart types page. MySQL Help, MySQL Tutorials, MySQL Programming, Learn MySQL Tricks :: Dev Shed. Sqlzoo.net from sqlzoo.net. SQLCourse - Interactive Online SQL Training for Beginners. SQL Commands - SQL Commands Reference. ConnectionStrings.com - Forgot that connection string? Get it here!

Floatbox Demo. Web Design Trends in 2011. There is a thin line between design and development, and as we move into a new decade, this line is becoming extremely blurry. Is it enough to draw beautiful mock ups in Photoshop? Maybe 5 years ago. These days, the average internet user requires more. All beauty, with no substance, gets boring after a while. If your only goal is to impress a community of fellow designers with your flashy designs, you’ll find yourself quickly beneath the tide. 2011 is not about beauty, it’s about function.

The trends for this new year and emerging decade are responsive design, constant connection and virtual reality. How will you stay relevant as a designer in 2011? Take a gander at the top 11 trends for 2011. 1. What a gratifying sigh of relief! Now that’s shown, please understand that Flash and HTML5 are not equal opponents. Perhaps even more exciting is the fact that CSS3 is available to us in a real way this year. 2. Simplicity. Shades of green create this Twitter visualization tool. 3. 4. 5. 6. 7. FreewarePlanet :: Home page.

28 HTML5 Features, Tips, and Techniques you Must Know | Nettuts+ Web Design Process. The Shapes of CSS. Lorempixum - placeholder images for every case. Main Page. FreeMind is a premier free mind-mapping software written in Java. The recent development has hopefully turned it into high productivity tool. We are proud that the operation and navigation of FreeMind is faster than that of MindManager because of one-click "fold / unfold" and "follow link" operations.

So you want to write a completely new metaphysics? Why don't you use FreeMind? You have a tool at hand that remarkably resembles the tray slips of Robert Pirsig, described in his sequel to Zen and the Art of Motorcycle Maintenance called Lila. Did FreeMind make you angry? Download See Download. Get yourself what more than 4 000 users download each day. stats Project news See more at News. New release FreeMind 1.0.1 available for download. New Release FreeMind 1.0.0 available (19 OCt 2013). Information for Mac Maverick (10.9) and Mountain Lion (10.8) Users (20 Aug 2012). Running To run FreeMind, do one of the following. Getting a taste of FreeMind Screenshots See more in Screenshots. Uses of FreeMind. ZeroDibs : best of free & opensource software. Open Source Cloud Computing Software | Cloud.com. 15 sites web developers and designers should know - CatsWhoCode.com.

Creating a good website isn't an easy task, but there's a few tools that can definitely make your developer or designer life easier. In this article, I have compiled 15 extremely useful website that any web developer or web designer should have bookmarked. ColorCombos When designing a website, one of the firsts (and most important) steps of the process is to choose a color scheme. Color Combos allow you to browse thousand of different colors combinations for getting inspired for your upcomming design. Color schemes can be browsed by colors.Visit colorcombos.com LIpsum Who doesn’t know the extremely popular Lorem Ipsum text? What the font? You just saw a logo or website using a particular font and you enjoyed it.

ConvertIcon Favicons are a must have for any website, mostly because on modern browsers as such as Firefox, it is displayed along with the site name in tabs. BgPatterns background Patterns is definitely one of the current webdesign trends. HTML Encoder Test Everything Sprite Generator. Building Dynamic Websites | Harvard Video Course.

Online File Sharing solution for Businesses from Egnyte - 15 Day Free Trial of File Sharing feature of Egnyte Cloud File Server. Leading File Sharing Program. Transfer Large Files Quickly, Easily, and Professionally. Stock Photography: Search Royalty Free Images & Photos. Custom Twitter Backgrounds. Delaware LLC. | About. Small Business Internet, Phone, Long Distance, and VOIP Services | AT. Bookkeeping - Bookkeeping outsourcing services for small businesses. Small Business Answering Service | AnswerConnect.com™ Services for Small Business - Main Page. Small business mentoring and training. 13 Terrific Cloud Services for Small Business.

ADP Small Business Services | Payroll | Tax | HR | Time and Attendance. Easy Payroll for Small Business - Online Payroll Service. Business Support Services for small business and medium scale enterprises. All Covered Partnerships. Toll Free Numbers, 800 Numbers - eVoice. Live Chat, Chat Software, Live Chat Software, Website Live Chat | WebsiteAlive.

Online banking solutions | Core banking solutions | Yodlee. CONDOMINIUM ASSOCIATIONS IN FLORIDA Mailing List. Data Quality Tools, Mailing list & Sales Leads, Mailing Software, Data Enhancement Services - Melissa Data Products & Services. Comparison of relational database management systems. Arkanoid Edition. Benefits | LLC Formation | Limited Liability Company | Form An LLC Today. Dial A Human! Wpqsample.pdf (application/pdf Object) Work Profile Questionnaire (WPQ) NetLingo The Internet Dictionary. Wednesday Journal Classifieds. Locations. Policies. Mapper. Academica Schools - Welcome to Academica. About the Governing Board of Directors. Micro Sites | Micro Web Sites | Internet Marketing Packages.

Deutsche Gruppe. Zitate, Sprüche, Gedichte, Geschichten und Bauernweisheiten. JavaScript Slideshow Wizard by BarelyFitz. Online Database by Caspio | Pricing and Packages. Conducting Focus Group: ComWest Translations Network - Login.

Independent Contractor

Office Products Recycling. Server & Web Administration. Web Design. Management Strategy. Text Messaging. Csadata.net.