이수안 데이터 연구실

검색 :
RSS 구독 : 글 / 댓글 / 트랙백 / 글+트랙백

?

이올린에 북마크하기
"Android Programming" 카테고리의 다른 글
2011/07/29 11:10 2011/07/29 11:10

맨 위로

이올린에 북마크하기(0) 이올린에 추천하기(0)
2010/09/30 12:49 2010/09/30 12:49

맨 위로

?

http://www.londatiga.net/it/how-to-crea ··· droid%2F


?대
이올린에 북마크하기(0) 이올린에 추천하기(0)
"Android Programming" 카테고리의 다른 글
2010/08/04 15:10 2010/08/04 15:10

맨 위로

Android runOnUiThread(java.lang.Runnable)

UI 而⑦
이올린에 북마크하기(0) 이올린에 추천하기(0)
"Android Programming" 카테고리의 다른 글
2010/07/30 18:04 2010/07/30 18:04

맨 위로

?

?
이올린에 북마크하기(0) 이올린에 추천하기(0)
"Android Programming" 카테고리의 다른 글
2010/07/30 11:12 2010/07/30 11:12

맨 위로

COM & ATL

Silan Liu

1.      COM Basics

1.1.        Service Control Manager (SCM)

A Windows program called Service Control Manager (SCM) does most of the job in COM server invoking. It finds the server through System Registry, runs it, has it create the COM object, sets up local/remote transparency, and returns an interface pointer to the client.

Then the client can directly invoke methods of the COM object through the pointer, and there is no middleware involved unless it is a remote server, in which case only RPC is involved.

1.2.        Interface IUnknown

All COM interfaces should inherit interface IUnknown:

 

interface IUnknown

{

HRESULT QueryInterface(REFIID iid, void** ppvObject);

ULONG AddRef();

ULONG Release();

}

One COM object may be used by multiple clients. The COM server maintains a reference count for each interface of the object. When one client asks to create an instance of the interface with CoCreateInstance or CoCreateInstanceEx, the COM server will call that interface

이올린에 북마크하기(0) 이올린에 추천하기(0)
"ATL/COM" 카테고리의 다른 글
2008/06/09 10:00 2008/06/09 10:00

맨 위로

Top 119 Cheat Sheets

2008/05/03 13:07, 글쓴이
Site : http://webdeveloper.econsultant.com/

ActionScript

Ajax

2008/05/03 13:07 2008/05/03 13:07

맨 위로

Ruby on Rails Tutorials, References

Site : http://webdeveloper.econsultant.com/

Getting started Ruby on Rails articles.

  1. Exploring Ruby on Rails : at Linux Journal
  2. GettingStartedWithRails : at RubyOnRails
  3. How to introduce Ruby on Rails in your company : by Fred Brunel
  4. Programming Ruby : Extract from the book Programming Ruby - The Pragmatic Programmer
    이올린에 북마크하기(0) 이올린에 추천하기(0)
    "Ruby on Rails" 카테고리의 다른 글
2008/05/01 12:48 2008/05/01 12:48

맨 위로

PHP Tutorials

Site : http://webdeveloper.econsultant.com/

Services to help in PHP.

  1. MySQL Backup to Strongspace Script Generator : This script generates a MySQL backup script for any number of databases.
  2. PHP FormMail Generator : A tool to create ready-to-use web forms in a flash.
  3. POG - PHP Object Generator (v1.6 rc2) : Php Object Generator, (POG) is a PHP code generator which automatically generates tested Object Oriented code that you can use for your PHP4/PHP5 application.

Software / services to help in PHP.

  1. Hot Scripts : Useful development tools.
  2. MyDBO Code Generator : powerful and open object-oriented code generator for PHP/MySQL web application developers.
  3. Pear : PHP extension and application repository.
  4. PHP Classes - Class: PHP MySQL class generator : Generate classes to manipulate MySQL table rows.
  5. phpCodeGenie - Database Driven Applications Code Generator : phpCodeGenie is a code generator for database backed applications. It can communicate with different database servers and generate code in many programming languages from them
  6. PHPeclipse : Plugins for the Eclipse Framwork which provide an integrated IDE for PHP developers.
  7. PHP Freaks : Code examples, tutorials and scripts.
  8. PHPMaker : is an automation tool that can generate a full set of PHP scripts quickly from MySQL database. Using the generated PHP, users can view, edit, search, add and delete records in the database easily on the Web.
  9. phpMyEdit - Instant MySQL Table Editor and PHP Code Generator : phpMyEdit generates PHP code for displaying/editing MySQL tables in HTML
  10. PHP/SWF Charts : simple powerful PHP tool to create attractive web charts and graphs from dynamic data.
  11. phpThumb() : The PHP thumbnail creator
  12. PHP, MySQL, Apache Package for Mac : PHP, MySQL, and Apache Package for Mac.
  13. PHP, MySQL, Apache Package for PC : Easy to install Apache distribution containing MySQL, PHP and Perl.
  14. WWW SQL Designer : Visual database designer for PHP

Tutorials on PHP.

  1. Good PHP Tutorials : 100+ PHP tutorials
  2. PHPBuilder.com : The resource for PHP tutorials, templates, PHP manuals, content management systems, scripts, classes and more for the PHP developer
  3. PHP Freaks: Tutorials : basic and beginner level tutorials.
  4. PHP Tutorials : at Tutorialized.com
  5. PHP Tutorial : at Tizag.com


이올린에 북마크하기(0) 이올린에 추천하기(0)
"PHP" 카테고리의 다른 글
2008/05/01 12:43 2008/05/01 12:43

맨 위로

C++ Preprocessor: Always Assert Your Code Is Right

Site : http://www.devarticles.com/c/a/cplusplu ··· right%2F

Are you looking for a way to speed up the debugging process in C++? This article explains how to use asserts to do just that, showing that not all macros are evil.

If a man begins with certainties, he shall end in doubts;

But if he will be content to begin with doubts,

 He shall end in certainties.

[Francis Bacon 1561-1626]

Assertive Programming

If there is one thing I have learned over the past few years, it is not to underestimate the power of assert(). It comes with your compiler and can be found either in cassert or assert.h.

The reason I love assert is because it looks after me and helps me find bugs I was sure weren

이올린에 북마크하기(0) 이올린에 추천하기(0)
2008/04/26 18:20 2008/04/26 18:20

맨 위로