Tampilkan postingan dengan label belajar. Tampilkan semua postingan
Tampilkan postingan dengan label belajar. Tampilkan semua postingan

Rabu, 23 Juni 2010

Menghitung Biaya Pembuatan Website Bisnis

Personal Computer

Untuk dapat memberikan kesan yang baik bagi konsumen dan calon konsumen, sebuah website bisnis harus direncanakan dengan tepat dan maksimal sehingga efektif namun efisien dari segi biaya. Pebisnis sudah mulai menggunakan website sebagai sara promosi online, namun tidak sedikit juga memulai usaha mereka dari situs jejaring sosial seperti Facebook. Mereka memilih website atau jejaring sosial tentunya berdasarkan pertimbangan tertentu, seperti biaya. Menghitung biaya pengelolaan website secara akurat harus dilakukan bagi pebisnis yang ingin memiliki website sebagai sarana promosi online mereka. Menghitung biaya pembuatan dan pengelolaan website bisnis dapat dilihat dari hal-hal berikut:

Biaya Pembuatan Website

Biaya pembuatan website mengalami penurunan yang sangat drastis dibanding lima tahun yang lalu. Dasar penghitungan pun saat ini telah berubah. Dulu sebelum era CMS berkembang, website cenderung statis, maka hitungan biaya pun diukur dari jumlah halaman yang dibuat. Dengan CMS, maka variabel penghitungan biaya pembuatan website pun berubah. CMS yang dibuat khusus untuk satu website tentunya lebih mahal dibanding dengan penggunaan CMS Open Source seperti WordPress atau Joomla. Bahkan beberapa desainer tidak mengenakan biaya atas penggunaan CMS Open Source tersebut.

Biaya Desain

Kata-kata yang paling sering saya dengar ketika seseorang ingin membuat website adalah pertanyaan tentang “Berapa harga web yang sederhana?”. Definisi sederhana seringkali bias, yang saya tangkap dari hal ini adalah, sederhana dalam artian website yang tidak mementingkan seni dan keindahan atau bisa dianggap asal online. Sebaiknya hindari membuat website yang “sederhana” sebagai promosi online Anda. Desain yang baik adalah desain yang mencerminkan image/citra perusahaan atau bisnis Anda. Meskipun hanya berupa usaha kecil atau menengah, tentunya citra perusahaan akan sangat berpengaruh pada kesuksesan bisnis Anda. Tentunya Anda tidak ingin calon konsumen Anda lari hanya karena mereka melihat halaman depan website Anda yang kurang berkesan “profesional”.

Biaya Hosting dan Pendaftaran Nama Domain

Variabel biaya yang sangat penting untuk diperhatikan adalah biaya hosting dan pendaftaran Nama Domain. Berbagai macam paket hosting bisa Anda cari dari website-website penyedia layanan ini. Jangan terpaku pada harga sewa yang murah, sebaiknya pilih jasa layanan hosting yang menjamin keamanan data dan kelangsungan hidup website Anda nantinya. Sebisa mungkin hindari penggunaan domain gratisan untuk website bisnis. Sekali lagi, image perusahaan Anda harus didahulukan untuk kemajuan bisnis Anda.

Biaya Perawatan Website

Perawatan website juga harus diperhatikan sebagaimana Anda merawat dan memelihara tempat usaha Anda. Salah satu yang harus diperhatikan adalah rangking website Anda pada search engine. Di sinilah diperlukan beberapa teknik dan strategi SEO, yaitu mengoptimalkan isi website Anda agar lebih mudah ditemukan pada hasil pencarian search engine. Biaya yang muncul dari sini contohnya adalah biaya untuk pemasangan iklan dan semacamnya.

Kesimpulan

Biaya yang diperlukan untuk membangun sebuah website bisnis pastinya berbeda-beda tergantung dari banyak faktor seperti fitur yang diperlukan, kualitas dan kerumitan desain, kapasitas desainer, dan faktor-faktor lainnya. Biaya minimal yang ditetapkan antara web designer satu dan yang lainnya pun bisa bervariasi. Beberapa pembuat website (Bukan designer) bahkan menetapkan harga yang sangat murah. Di Yogyakarta, terdapat seorang pembuat website yang menawarkan jasa pembuatan website dengan harga hanya Rp.300.000,-. Bisa ditebak, hasil yang didapat adalah website murahan yang justru tidak akan efektif untuk promosi Anda.

Sebelum memutuskan untuk membuat website dan untuk menentukan biaya dengan tepat, ada baiknya Anda menimbang dulu website seperti apa yang Anda inginkan, bagaimana spesifikasi yang Anda inginkan dan lain-lain. Selalu konsultasikan dengan web designer segala detail yang Anda inginkan tentang website Anda agar tercapai kesepakatan yang tidak saling merugikan. Dalam artikel berikutnya, akan saya berikan petunjuk bagaimana memilih web designer yang tepat untuk membantu mempromosikan bisnis Anda secara online.

sumber :

http://preaxz.com/2010/03/menghitung-biaya-pembuatan-website-bisnis/

Selasa, 18 Mei 2010

Our Progress of Innovaction Intro Websites

Yes, here we go the Innovaction Yves Andre Perfume Online Organ Bar, New Zealand, thanks God for the 60% DONE, Flash Intro. It just like TVC, man!!

Rabu, 21 April 2010

Perbedaan ID dan Class

Ehm,,, sok keren dikit,, mau share sedikit dari yang kutahu.
Yaitu tentang perbedaan ID dan Class dalam HTML CSS

Yok mulai, perbedaan menyolok dari ID dan Class adalah : for more>>

Sabtu, 20 Februari 2010

What's framework(s)???

What's framework(s)?
desain yang dapat digunakan kembali untuk sebuah sistem perangkat lunak (atau subsystem). Sebuah kerangka kerja perangkat lunak mungkin mencakup support perangkat lunak, code libraries, a scripting language, atau perangkat lunak lain untuk membantu mengembangkan dan mengikat bersama-sama komponen yang berbeda dari sebuah proyek perangkat lunak. Berbagai bagian dari kerangka kerja dapat terpapar melalui API.

Selected frameworks

GUI frameworks

VCL

Controller
The controller is represented by the visual forms created either in the form designer or via code.

Combined frameworks

Java: Java Platform, Enterprise Edition (Java EE)

Simple Version implementing Java Servlets and JavaServer Pages from Java EE:

Model
The model is a collection of Java classes that form a software application intended to store, and optionally separate, data. A single front end class that can communicate with any user interface (for example: a console, a graphical user interface, or a web application).
View
The view is represented by JavaServer Page, with data being transported to the page in the HttpServletRequest or HttpSession.
Controller
The Controller servlet communicates with the front end of the model and loads the HttpServletRequest or HttpSession with appropriate data, before forwarding the HttpServletRequest and Response to the JSP using a RequestDispatcher.

The Servlet is a Java class, and it communicates and interacts with the model but does not need to generate HTML or XHTML output; the JSPs do not have to communicate with the model because the Servlet provides them with the information—they can concentrate on creating output.

Unlike the other frameworks, Java EE defines a pattern for model objects.

Model
The model is commonly represented by entity beans, although the model can be created by a servlet using a business object framework such as Spring.
View
The view in a Java EE application may be represented by a JavaServer Page, which may be currently implemented using JavaServer Faces Technology (JSF). Alternatively, the code to generate the view may be part of a servlet.
Controller
The controller in a Java EE application may be represented by a servlet, which may be currently implemented using JavaServer Faces (JSF).

XForms

XForms is an XML format for the specification of a data processing model for XML data and user interface(s) for the XML data, such as web forms.

Model

XForms stores the Model as XML elements in the browser. They are usually placed in the non-visible elements of a web page.

View

The Views are XForms controls for screen elements and can be placed directly in the visible section of web page. They are usually placed in the elements of a web page.

The model and views are bound together using reference or binding statements. These binding statements are used by the XForms dependency graph to ensure that the correct views are updated when data in the model changes. This means that forms developers do not need to be able to understand either the push or pull models of event processing.

Controller

All mouse events are processed by XForms controls and XML events are dispatched.

Implementations of MVC as GUI frameworks

Smalltalk's MVC implementation inspired many other GUI frameworks, such as the following:

[edit] Implementations of MVC as web-based frameworks

In the design of web applications, MVC is implemented by web template systems as a "View for web" component.

MVC is typically implemented as a "Model 2" architecture in Sun parlance. Model 2 focuses on efficiently handling and dispatching full page form posts and reconstructing the full page via a front controller. Complex web applications continue to be more difficult to design than traditional applications because of this "full page" effect. More recently AJAX driven frameworks that focus on firing focused UI events at specific UI Components on the page are emerging. This is causing MVC to be revisited for web application development using traditional desktop programming techniques.[citation needed]

ABAP Objects

Actionscript

  • PureMVC Framework for Actionscript.
  • FlashMVC- A lightweight Framework for Actionscript3 aimed at beginners to power users.

ASP

C++

  • cppcms A C++ Web Development Framework (not CMS) aimed for Rapid Web Application Development.
  • Wt - Web toolkit A library and application server for web applications using a desktop-like event-driven MVC pattern.

ColdFusion

  • Mach-II A framework that focuses on trying to ease software development and maintenance
  • Model-Glue Through a simple implementation of Implicit Invocation and Model–View–Controller, they allow applications to be well organized without sacrificing flexibility.
  • Fusebox Fusebox does not force the Model–View–Controller (MVC) pattern or Object-Oriented Programming (OOP) on the developer. However, either or both of these development approaches can be used with Fusebox.
  • PureMVC Framework for ColdFusion
  • Coldbox is an event-driven conventions based MVC ColdFusion Framework with an extensive array of patterns for its operations such as Factories, Helpers, Workers, etc.
  • Switchboard is a MVC framework with built in authentication, redirecting, and URL routing.
  • FW/1 is intended to require near-zero configuration, letting you build your application without worrying about a framework getting in your way.

Flex

  • Cairngorm one of the primary open source frameworks for application architecture in Adobe Flex.
  • HydraMVC Flex framework improving upon PureMVC
  • Mate Architectural framework for Flex development.
  • PureMVC ActionScript 3 MVC framework for Flex, Flash and AIR development.
  • Aconcagua is a Flex/AIR framework built to support enterprise application development.

Groovy

Java

MVC web application frameworks:

JavaScript

MVC web application frameworks:

Informix 4GL

  • Informix 4GL MVC models to use for Informix 4GL report and form creation
  • EGL — IBM's EGL MVC Implementation

Lua

.NET

Perl

PHP

  • Agavi a PHP5 application framework that focuses on sustained quality and correctness.
  • Akelos PHP Framework a Ruby on Rails port to PHP4/5..
  • Atomik Framework micro framework for PHP5. Atomik Framework
  • BluewaterMVC A Different Approach to MVC Frameworks.
  • CakePHP webapplication framework modeled after the concepts of Ruby on Rails.
  • CodeIgniter An MVC framework for PHP4 (up-compatible with PHP 5.3.0 as of version 1.7.2).
  • CodeLighter Micro Codeigniter-like MVC PHP5 framework that uses Codeigniter plugins and libraries.
  • Concrete5 A PHP MVC framework and CMS platform.
  • Dingo Framework An application framework designed for ease of use and flexibility.
  • EuropaPHP An extremely fast and lightweight PHP5 MVC framework. Compatible with the Zend Framework.
  • Exponent CMS is web Content Management System web application framework using its own MVC framework modeled after Rails.
  • EZG Framework is a simple and lightweight MVC based PHP framework.
  • FUSE A powerful but easy-to-use PHP 5 Framework for MVC development modeled after the concepts of Ruby on Rails.
  • FLOW3 TYPO3's MVC framework (being developed)
  • Jelix (web framework)
  • Jaws is a Framework and Content Management System for building dynamic web sites.
  • Joomla! v1.5.x is an open source Content Management System that employs the MVC model for its extensions, called components and modules.
  • KISSMVC A minimalist but fully flexible PHP MVC framework designed based on the KISS principle
  • Kohana is an open source MVC oriented framework, originally forked from CodeIgniter.
  • Kumbia PHP Framework is an open source PHP5 MVC framework with ActiveRecord, Routing,...
  • LightMVC is an lightweight Zend-like framework using PHP5.
  • LISA MVC is an open source object oriented web application framework.
  • Lithium Lithium is a light-weight, high-performance, RAD framework for PHP 5.3 and up.
  • Micro CMS Open Source (LGPL) MVC framework and nice and simple CMS in one
  • MODx Full-featured Open Source OOP MVC/ORB xPDO-based CMS
  • MVCnPHP Fast, open source and only does MVC.
  • Nette Framework A PHP MVC/MVP framework.
  • Neutron A lightweight open-source PHP5 library featuring a simple MVC routing framework.
  • Odin Assemble Small footprint PHP based MVC Framework.
  • OpenCart Open Source Shopping Cart based on MVC Framework.
  • Orinoco Framework is a full-stack yet lightweight framework written in PHP5. It implements the Model 2 design paradigm.
  • PHP4MVC A minimal easy-to-use MVC architecture in PHP4.
  • PHP Faces Open Source Event Driven MVC framework. PDO ORM Framework phpfaces.webmahsulleri.com
  • PHP Fat-Free Framework is a single-file MVC-based Web application framework with a template engine, URL-based cache, HTML forms processor, CAPTCHA image generator, CSS/Javascript compressor and an easy-to-use SQL handler for databases.
  • PHPonTrax A PHP 5 MVC framework modeled after Ruby on Rails.
  • phpXCore A MVC design pattern based PHP content management framework compatible with PHP4 and PHP5.
  • Pluf PHP WebApp Framework modeled after Django framework.
  • PRADO A PHP 5 MVC framework modeled after ASP.NET web forms.
  • RA PHP Framework A PHP5/up-compatible PHP 5.3 MVC/STH (Strong Type Hinting) framework.
  • PureMVC Framework for PHP
  • Qcodo is an open-source PHP 5 web application framework that also includes a code generator.
    • QCubed is a community fork of Qcodo with more rapid development.
  • Samstyle PHP Framework is a rapid development for the PHP environment that is easy and fast to use.
  • SilverStripe contains a fully fledged PHP 5.2 ORM/MVC Framework focused on building websites.
  • Solar
  • Switch board (framework) PHP 5 MVC Framework with Routing.
  • Symfony Framework PHP 5 MVC Framework modeled after the concepts of Ruby on Rails.
  • Vork PHP 5 MVC Framework designed for rapid development of performance-oriented scalable applications
  • Yii PHP Framework A PHP 5, high-performance component-based framework best for developing large-scale Web applications
  • SimpleTools An Object Oriented MVC Framework
  • MvcSkel web framework for PHP5
  • Zend Framework A PHP 5-based MVC framework conceptually similar to Ruby on Rails.
  • ZNF PHP5 MVC framework for enterprise web applications
  • Zoop Framework A Mature PHP 4/5 MVC framework.

Python

  • Django A complete Python web application framework. Django prefers to call its MVC implementation MTV, for Model-Template-View.[8]
  • Enthought The Enthought Tool Suite brings the Model–view–controller mindset to scientific GUIs and visualization
  • Pylons—Python Web Framework
  • TurboGears for Python
  • web2py A scalable full-stack enterprise level Python agile web development framework with support for highly flexible and rapid database-driven web application development.
  • Zope Web application server
  • Plone Content management system built on top Zope
  • PureMVC Framework for Python
  • Pygtkmvc Model-View-Controller (MVC) and the Observer patterns for the PyGTK2 graphic toolkit
  • mvckit Lightweight Model-View-Controller Kit/Framework for Python

Ruby

Smalltalk

XML

  • XForms—XForms has an integrated Model–view–controller architecture with an integral dependency graph that frees the programmer from specifically having to perform either push or pull operations.

XQuery

  • XQMVC A framework for XQuery.

Mahkluk aneh bernama MVC (Model-ViewController)

Hai,
sekarang gua mau ngasih tau sedikit yang gua tahu tentang Model-View-Controller programming concept. Diambil dari otak gua, dan dari google n Wiki :

Src :
http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller
,
http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/images/app-archa2.gif


So, Model-View-Controller (MVC) adalah sebuah pola arsitektur yang digunakan dalam rekayasa perangkat lunak. Pola ini memisahkan "domain logika" (logika aplikasi untuk pengguna) dari input dan presentasi (GUI), memungkinkan pengembangan independen, pengujian dan pemeliharaan dari masing-masing, dalam arti pembuat :

  1. LOGIKA (Controller) dapat mengerjakan pembuatan class-class dan fungsi untuk core modul bersangkutan
  2. TAMPILAN/DESAIN (View) dapat mengerjakan pembuatan tata letak dan gaya (style) dari tampilan akhir yang dilihat user
  3. DATABASE (Model) dapat mengerjakan pembuatan table dan database yang diperlukan sesuai dengan class diagram yang telah disepakati bersama
Berikut merupakan contoh gambar dari konsep MVC :
















Nah, gambar ini cukup mewakili dari konsep dari MVC secara umum. Kira-kira begini penjelasan lengkapnya :

  1. MODEL adalah domain spesifik representasi data pada aplikasi yang beroperasi. Domain logika menambahkan makna pada data mentah (misalnya, menghitung apakah hari ini adalah hari ulang tahun pengguna, atau total, pajak, dan biaya pengiriman untuk keranjang belanja item). Ketika sebuah model mengubah keadaan, itu akan memberitahu yang terkait pandangan sehingga mereka dapat me-refresh.
  2. VIEW merender model menjadi bentuk yang cocok untuk interaksi, biasanya elemen antarmuka pengguna. Beberapa pandangan bisa eksis untuk satu model untuk berbagai tujuan.
  3. CONTROLLER menerima input dan memulai tanggapan dengan membuat panggilan pada objek model.
MVC ini sering terlihat pada aplikasi web di mana tampilan HTML atau XHTML yang dihasilkan oleh aplikasi. Pengendali GET atau POST menerima masukan dan memutuskan apa yang harus dilakukan dengan itu, diserahkan kepada obyek domain (yaitu model) yang berisi aturan bisnis dan tahu bagaimana melaksanakan tugas-tugas khusus seperti pengolahan langganan baru.

Choose Topic

benediQue (18) IT Solution (10) pembuatan website (10) progress (10) project (9) Berita IT (8) IT (7) buat web (7) cara buat web (7) it business (7) toko online (7) web3days (7) FEEL IT (6) bisnis (6) company profile (6) innovaction (6) konsep programming (6) php (6) Google (5) Tutorial (5) bahasa pemrograman (5) belajar (5) harga murah (5) harga pembuatan website (4) programming concept (4) yves andre (4) flash (3) html (3) jQuery (3) programming language (3) 3d animation (2) Ajax (2) bakmi grand kelinci (2) css (2) dokumentasi (2) flash intro (2) javascript (2) membuat website (2) netbeans (2) perfume (2) Ajax Library (1) GPA (1) Google Code (1) Indonesia (1) Mootools (1) Sistem Operasi Linux (1) Welcome (1) animation (1) animation house (1) appologize (1) asteros (1) benedique client (1) benedique portfolio (1) blog (1) bug fixing (1) caffeine (1) cara membuat website (1) cara membuat website gratis (1) client (1) cool intro (1) daftar framework (1) design web (1) ellingbra (1) facebook apps (1) fanzilla (1) framework (1) gasp (1) gasp shout (1) gaspshout (1) google search (1) harga buat web (1) harga buat website (1) jasa membuat website (1) jasa pembuatan website (1) kebutuhan skill web developer (1) klien (1) membuat website gratis (1) menkominfo (1) model view controller (1) mvc (1) mysql (1) pola programming (1) programmer (1) programming pattern (1) rpm konten multimedia (1) search engine optimization (1) seo (1) skill programmer (1) skill web developer (1) subversion (1) tvc (1) web company profile (1) web developer (1) website perusahaan (1)