Projects tagged ‘clone’


[56 total ]

20 Users
   

Akelos is a PHP framework for developing database-backed web applications according to the Model-View-Controller pattern. From the Ajax in the view, to the request and response in the controller, to ... [More] the domain model wrapping the database the Akelos PHP Framework gives you a pure-PHP development environment built upon programming best practices. To go live, all you need to add is a database and a web server. Who is the Akelos PHP Framework for? * PHP developers who want to enjoy writing web applications. * Ruby on Rails developers who need to code in PHP. * Developers who want to distribute their work to the mass market of cheap shared hosting. * Developers who need to write multilingual web applications. [Less]
Created over 3 years ago.

0 Users

Created 7 months ago.

0 Users

Introduction This is a simple and fully functional clone of the standard Windows Notepad. The article describes about the functions used in Notepad and tells the logic to write the code. Code is ... [More] also provided Background Notepad basically has File, Edit, Format, View and Help. I have recreated the menus File, Edit, Format and Help. I have excluded View menu because I think a simple notepad Application doesn't require any status bar. If you think you need a status bar, I've also provided the code for it. Using the code File Menu New - If the document is modified then a Message Box with the buttons Yes and No is displayed asking whether it should be saved or not. Code is : If doc.Modified = True Then Dim x As Integer = MsgBox("Do you want to save the modified document ?", MsgBoxStyle.YesNo) If x = vbYes Then SaveToolStripMenuItem.PerformClick() Else Me.Text = "Untitled - Notepad.NET" doc.Clear() End If Me.Text = "Untitled - Notepad.NET" doc.Clear() End If Open - File is opened and Notepad.NET uses Rijndael encryption - HEX is encoding type. I have took a Cryptography class from this site called "Crypto.vb". I have implemented this to decrypt the data in the TextBox doc. Save - File is saved using the same encryption algorithm. And A PageSetupDialog is also used. Edit menu has the standard Cut, Copy, Paste, Undo etc. When it came to the part of Find, Find Next and Replace, It was a big confusion and there was a difficulty doing it. But I turned up successfully with it. Logic and Code of both Find and Replace First I created a function called FindText with a dependency on the start_pos (declared as Integer). This is the starting position. Then I declared two private variables - target_pos (integer for determining the target's position) and target (declared as string). Then I declared pos as integer Pos is assigned to the function InStr that determines the position of the text. So if pos is above 0 then text is found. So to select text, target_pos is assigned to ps. The selection was a quite a difficulty for me. The textbox's SelectionStart property determines the starting position. So it is target_pos minus 1. The selection goes up to the end. So the SelectionLength property is set to Len(target)-(Len(target)-Len(target)) If its not found , Clear the target variable and display message that text is not found. Ain't it easy ??? The code I came up with is : The code is as following Private Sub FindText(ByVal start_pos as integer) Dim pos As Integer pos = InStr(start_pos, doc.Text.ToLower, tf.Text.ToLower) If pos > 0 Then target_pos = pos doc.SelectionStart = target_pos - 1 doc.SelectionLength = Len(target) - (Len(target) - Len(target)) Else MsgBox("Text Not Found") target = "" End If End Sub target = InputBox("Enter Word to find") FindText(1) If doc.SelectedText <> target Then Else x = InputBox(String.Format("Selected text is : {0}. Enter text to replace", target)) doc.SelectedText = x End If The above is the code for Replace. Word Wrap is a default property of the textbox. Code for FindNext is also simple Just add 1 to target_pos. So code will be FindText(target_pos + 1) Font can be changed by declaring a new FontDialog, assigning the selected font to the textbox font and textbox fontstyle to the dialog's selected style. Thats All. Simple isn't it ? [Less]
Created 12 months ago.

0 Users

What exactly is BeastClone?BeastClone is one of the only free (app is shareware, but free version is fully functional) solutions to creating a completely customizable OS X boot USB/FireWire/Volume and ... [More] possibly DVDs (support coming soon). It will create a minimal OS X installation containing your chosen apps. How does it work?BeastClone copies a carefully selected set of files from your current installation. Where a normal OS X install is 6-7GB, a BeastClone install is 1.75GB after installation (requires 1.81GB) to install 1 leaving plenty of room for your apps. Then the apps are copied along with any app support folders, pref files, and frameworks required for them to run 2 1 Numbers taken from a Snow Leopard variation, Leopard support is in the works, numbers unknown right now. 2 Excluding external binaries (must be copied by user) Licensing/PricingThe licensing/pricing details have not been finalized yet. The only thing I can promise for sure is that a free FULLY functional version of the program will be available without restriction. Paid users may get additional conveniences (once again, these details have not been finalized yet and will be posted when known). Whats happening right now?For progress information please take a look at the CurrentProgress wiki page Some screenshots [Less]
Created 2 months ago.

0 Users

A Tetris clone developed in c++.
Created 2 months ago.

0 Users

OOK Is an EV clone for the iPhone. EV stands for Escape Velocity and is a series of games destributed by Ambrosia SW. Unlike the EV series, OOK will be fully 3D. Its universe will have a different ... [More] environment, too. The universe of EV focuses on jumping from solar system to solar system. Contrary to EV, OOK will focus on intra-system interactions. Traveling through the system will take time, and jumping between systems requires the use of a jump gate called an SAR (Subspace Accelerator Ring). Join me in my journey through space and follow the creation of this game. Join the forum, contribute, and possibly earn yourself a place in the credits and a free copy of the game. Again, this is an iPhone game. [Less]
Created 23 days ago.

0 Users

Another tetris clone
Created 2 months ago.

0 Users

Shinji-ko(Japanese name is "宍道湖") is Google's source code review tool "Mondrian" or Mondrian Opensource clone "Rietveld" clone. It developed by Ruby on Rails. Rietveld is great software, but ... [More] it build on Google App Engine only. But enterprise or closing software wanna use internal or closing networks. Screenshot InstallRequire gems "rails gettext diff-lcs" and more. $ sudo gem install rails gettext diff-lcs $ svn checkout http://shinjiko.googlecode.com/svn/trunk/ shinjiko Feature Localize support SVN protocol support Linksrietveld - Google Code http://code.google.com/p/rietveld/ Shinji-ko is famous lake in Matsue-city Japan. PublishingRuby on Railsによるコードレビュー・システム「宍道湖」,オープンソースとして公開:ITpro  http://itpro.nikkeibp.co.jp/article/NEWS/20080611/307687/ MOONGIFT、ソースコードレビューシステム「宍道湖」をオープンソースで公開 : Venture Now(ベンチャーナウ)News  http://www.venturenow.jp/news/2008/06/11/2223_005274.html Rails製のソースコードレビューシステム「宍道湖」が登場 | エンタープライズ | マイコミジャーナル  http://journal.mycom.co.jp/news/2008/06/12/035/index.html [Less]
Created about 1 year ago.

0 Users

jSnapshot is a screen capture tool written in Java. The software is a clone of the very useful KDE application ksnapshot. Unfortunately many functions are not implemented yet but the most important ... [More] cropping the rectangular portion of the screen works very well. [Less]
Created 4 months ago.

0 Users

ファミコン版・GBA版のアルゴリズムをベースにした ロードランナークローンです。 D言語+SDLで書かれています。 ... [More] 特徴毎秒60フレームの軽快な動作でさくさくプレイ (ロボット100体でも余裕の軽さ) ゲームパッド対応 エディットできるサイズは無制限・ロボットの数も無制限 プレイ中にステージをエディットする「リアルタイムエディット」機能 GBA版の「脱出扉」「動かせるブロック」が使える 自分のベストプレイを自動で録画し、後から再生できる ↑を再生し続けるスクリーンセーバー付き [Less]
Created 12 months ago.