CSO [NST Edition]

Counter-Strike NST is Modded CS 1.6 by sontung0, ...
CSO-NST

Torchlight

Torchlight is game RPG for PC and released in 2009, ...
Torchlight

Membuat JAR Archive

Diposting oleh Taufik Suryaman

Untuk mendeploy file java / membuat file .jar, caranya:

1. Sediakan file java yang berekstensikan .java.
2. Setelah itu, compile program tersebut dengan perintah javac namaprogram. Untuk lebih jelasnya klik link ini.

Membuat file Manifest

Diposting oleh Taufik Suryaman


Manifest File di Java digunakan sebagai informasi identitas aplikasi dalam sebuah archive, terutama Java Archive (JAR). Manifest File merupakan file dengan format text yang berisi informasi dari aplikasi yang akan didistribusikan dalam JAR. Manifest akan disimpan dalam file dengan nama MANIFEST.MF dalam direktori META-INF dalam file JAR tersebut.


[JAVA] Pencari Nilai Minimal

Diposting oleh Taufik Suryaman



Kali ini saya akan posting tentang Program Java yang berfungsi untuk mencari 2 nilai terendah.
Program ini dibuat untuk mempermudah anda dalam mencari nilai terendah dari nilai yang anda inputkan dan mencari nilai rata-ratanya.







[JAVA] Pengurut Nilai Secara Descending

Diposting oleh Taufik Suryaman



Kali ini saya akan posting tentang Program Java yang berfungsi untuk mengurutkan nilai secara descending (dari nilai terbesar ke nilai terendah).
Saya menggunakan Arraylist untuk menyimpan nilai yang diinput oleh user dan mengurutkannya dengan prosedur yang ada di Comparator.







Java Compiler

Diposting oleh Taufik Suryaman




Untuk men-compile file java, langkah - langkahnya adalah:
1. Buka CMD (Command prompt)
2. Pindahkan dir ke direktori / folder tempat kita menyimpan file tersebut
3. Ketik syntax: javac [nama file].java







Untuk lebih jelasnya perhatikan gambar berikut ini:



Untuk me-running program ketik syntax:
java [namaclass]
*tanpa ekstensi .class

Ada cara yang lebih mudah tanpa mengetik syntax. Anda hanya perlu membuat windows batch file [.bat].
Caranya :
  1. Buka notepad
  2. Copy-kan script didalam spoiler coding dibawah
  3. Save as JAVA Compiler.bat
Coding :
Untuk men-copy tekan view plain dan select all lalu copy [Ctrl+C]
@ECHO OFF
REM  QBFC Project Options Begin
REM  HasVersionInfo: Yes
REM  Companyname: OneWay Corp.
REM  Productname: 1Y0004
REM  Filedescription: For Compile Java File
REM  Copyrights: Copyright (c) 2011
REM  Trademarks: OneWay Corp. (r)
REM  Originalname: JAVA Compiler.exe
REM  Comments: Advanced User Only
REM  Productversion:  1. 0. 0. 0
REM  Fileversion:  0. 0. 0. 1
REM  Internalname: 
REM  QBFC Project Options End
title JAVA Compiler by OneWay
if not "%6"=="" goto HELP
if not "%5"=="" goto FIVE
if not "%4"=="" goto FOUR
if not "%3"=="" goto THREE
if not "%2"=="" goto TWO
if not "%1"=="" goto ONE

:HELP
echo    Drag a Java file and drop it on this batch file
echo    to compile, deploy, or running that program
echo    Max. 5 File to process at same time.
goto END

:ONE
CLS
echo **************************************************************
echo Processing one file .java . . .
echo **************************************************************
CLS
echo Compiling File . . .
cd /d "%~dp1"
echo Note:
echo **************************************************************
javac %~nx1
echo **************************************************************
echo Testing program . . .
echo Debug:
echo **************************************************************
echo.
java %~n1
echo.
echo **************************************************************
goto END

:TWO
CLS
echo **************************************************************
echo Processing two file .java . . .
echo **************************************************************
CLS
echo Compiling File . . .
cd /d "%~dp1"
echo Note:
echo **************************************************************
javac %~nx1
echo **************************************************************
echo Testing program . . .
echo Debug:
echo **************************************************************
echo.
java %~n1
echo.
echo **************************************************************
goto END

:THREE
CLS
echo **************************************************************
echo Processing rhree file .java . . .
echo **************************************************************
CLS
echo Compiling File . . .
cd /d "%~dp1"
echo Note:
echo **************************************************************
javac %~nx1
echo **************************************************************
echo Testing program . . .
echo Debug:
echo **************************************************************
echo.
java %~n1
echo.
echo **************************************************************
goto END

:FOUR
CLS
echo **************************************************************
echo Processing four file .java . . .
echo **************************************************************
CLS
echo Compiling File . . .
cd /d "%~dp1"
echo Note:
echo **************************************************************
javac %~nx1
echo **************************************************************
echo Testing program . . .
echo Debug:
echo **************************************************************
echo.
java %~n1
echo.
echo **************************************************************
goto END

:FIVE
CLS
echo **************************************************************
echo Processing five file .java . . .
echo **************************************************************
CLS
echo Compiling File . . .
cd /d "%~dp1"
echo Note:
echo **************************************************************
javac %~nx1
echo **************************************************************
echo Testing program . . .
echo Debug:
echo **************************************************************
echo.
java %~n1
echo.
echo **************************************************************

:END
PAUSE
CLS
Cara compiling :
Cara pertama :
1. Drag file yang akan dicompile (Max. 5 file).
2. Drop file ke batch file yang telah kita buat agar dieksekusi.
3. Program siap dicompile.
Cara kedua:
1. Jika sudah melakukan langkah 1-3 dibawah, maka anda bisa langsung ke langkah 4.
2. Buat shortcut batch file yang telah kita buat.
3. Copy-kan ke folder SendTo
[untuk Windows 7 biasanya di C:/Users/NamaUser/AppData/Roaming/Microsoft/Windows/SendTo]
div>
4. Klik-kanan file yang akan dicompile
5. Send to batch file yang kita buat tadi.
6. Program siap dicompile.
Pada saat di-running, maka akan muncul pesan seperti gambar dibawah ini:


Selamat Mencoba!

[JAVA] Penghitung Nilai Raport

Diposting oleh Taufik Suryaman


Kali ini saya akan posting tentang Program Java yang berfungsi untuk menghitung nilai raport.
Program ini dibuat untuk mempermudah guru atau siswa dalam mencari nilai rata-rata dan menyatakan lulus atau tidak lulusnya.
Program ini menggunakan Scanner untuk mendapatkan input data dari user
Untuk bagian prosesnya program ini menggunakan operator aritmatika, operator kondisi, dan statement if-else.

Counter Strike Xtreme V6

Diposting oleh Taufik Suryaman



What's New in this version?

- Added 8 New Character
- New Menu launcher
- New Animation & Fun Staff
- New Zombie Unite
- New Weapon
- New Interface of Gui bckground

Pengenalan Java

Diposting oleh Taufik Suryaman

A. Pengertian Java
Java adalah sebuah teknologi yang diperkenalkan oleh Sun Microsystems pada pertengahan tahun 1990. Menurut definisi dari Sun, Java adalah nama untuk sekumpulan teknologi untuk membuat dan menjalankan perangkat lunak pada komputer standalone ataupun pada lingkungan jaringan. Kita lebih menyukai menyebut Java sebagai sebuah teknologi dibanding hanya sebuah bahasa pemrograman, karena Java lebih lengkap dibanding sebuah bahasa pemrograman konvensional.

Portal 2

Diposting oleh Taufik Suryaman

Portal 2 REPACK-KaOs inc multiplayer Release: 2 april 2009, by AVENGED
Genre: Logic (Puzzle) / 3D



Developer: Valve Corporation
Language: English

PC game

Darkest of Days

Diposting oleh Taufik Suryaman

Darkest of Days (2010/ENG/MULTI6/RePack by mefist00)
Year: 2010

PC Game
Developer: 8Monkey Labs
Publisher: Phantom EFX
Size: 900 MB Genre: Action (Shooter) / 3D / 1st Person

Turok (2008/ENG/Full-RIP)

Diposting oleh Taufik Suryaman


Turok (2008/ENG/Full-RIP by Skullptura)
Year: 2008

Platform: PC
Language: English
Developer: Propaganda Games / Aspyr Studios
Publisher: Touchstone Studios
Size: 5.45 GB
Genre: Action (Shooter) / 3D / 1st Person 


SANCTUM

Diposting oleh Taufik Suryaman

Sanctum-RELOADED
Size: 865.58 MB
Genre: Action (Shooter) / Strategy (Real-time) / 3D / 1st Person
Year: 17 April 2011
Platform: PC
Language: English
Developer & Publisher: Coffee Stain Studios

Torchlight

Diposting oleh Taufik Suryaman



Torchlight is an action role-playing-game for the PC made by the creators of Diablo, Fate, and the never-released Mythos among other games. Set in the mining town of Torchlight, players will adventure to uncover the mysteries of the Ember mines. It offers a fully featured character leveling system, randomized dungeons, hordes of monsters, and gobs of great loot. The adventure is set in the mining settlement of Torchlight, a boomtown founded on the discovery of rich veins of Ember – a rare and mysterious ore with the power to enchant or corrupt all that it contacts. This corruptive power may have dire consequences however, and players set out into the nearby mountains and depths below to discover the full extent of Ember’s influence on the civilizations that have come before.

Counter-Strike [NST Edition]

Diposting oleh Taufik Suryaman

_________________________________________________________________________________
Counter-Strike NST is Modded CS 1.6 by sontung0 at GameVN.
All source is from Counter-Strike Online made by Gamania.
Thanks to VALVe, CSO Gamania, sontung0, raechaa, and FaaZeenBreakBoy
__________________________________________________________________________________

Feature:
- All Weapons from CSO
- My Weapons for weapons warehouse
- 6 New game mode
- New character
- New map
- Detailed graphic
- 3 Different Bot

For the Glory 1.0 Eng

Diposting oleh Taufik Suryaman

Portable For the Glory 1.0 Size: 153Mb
Take up the reins of your country, guide domestic and foreign policy, navigate thousands of historical events, engage in various struggles and lead your country to prosperity – all in the name of glory! For the Glory offers full historical immersion, with a completely new in-depth experience with over 10000 historically accurate events. Take charge of the mighty Habsburg Empire, the aggressive Swedish state, or the seafaring Portuguese. Build up your empire through trade, diplomacy, colonialism and war. Interact with real historical events and persons to determine what path your nation will take. Nothing is written in stone, and while a wise leader may choose to follow the path of history, you may also take advantage of opportunities for change.

CHEAT PB

Diposting oleh Taufik Suryaman

Post tentang cheat PB akan diposting Disini!
Cheat PointBlank Terbaru!

NIGHTMARE SPHERE

Diposting oleh Taufik Suryaman

Game Action sidescroll mirip Castlevania 2D. 
Grafis dann gameplay-nya simpel [lebih mudah dari Castlevania].

Privates

Diposting oleh Taufik Suryaman


Sex
It's all pleasant-feeling and squishy and tingly and what-have-you.
Trouble is, if you're not careful about how you go about it, you can catch some pretty unpleasant infections off people, which can make your bits ooze an unpleasantly smelly discharge, or can completely screw up your insides. Delightful!
Thank the stars then for John "Jack" Sterling, worn-down Captain of the oh-so-useless 'Foxtrot Squad'. It's up to you to take charge and lead your squad in and around people's private parts, clearing them of all manner of pesky and dangerous critters, oozes and bosses

Hero's Tale - Enhanced Edition 1.0

Diposting oleh Taufik Suryaman



Portable Hero's Tale - Enhanced Edition 1.0 Size: 54Mb
Hero's Tale Enhanced Edition is a jRPG game which captures the basic gameplay of the genre. Those unfamiliar with the genre will be in for a pleasant surprise to find out that Hero's Tale is simple to play and get in to. Additionally, veterans in the genre won't feel overlooked since they’ll also find plenty of challenge in the game.
The story revolves around a young boy named Elrik. He goes on an epic journey in the search of the seven elemental keys of the goddess Aeria. During his adventure Elrik will meet with some new friends who include an elemental mage, a dragon hunter and a nature mage. Together they'll have to overcome various obstacles, traverse many locations and defeat lots of dangerous enemies. Join Elrik and his new friends on this epic journey and find out what the boy's destiny is.

Conflict: Global Terror 1.0 Eng

Diposting oleh Taufik Suryaman


Portable Conflict: Global Terror 1.0 Size: 512Mb

In Conflict: Global Terror, you can try to recover a team member who has gone MIA at the hands of the terrorist organization March 33. You join a five man counter-terrorism team dispatched to stop the terrorists from creating a new world order.
Conflict: Global Terror brings the Conflict series into the 21st century. Set within the modern day context of counter-terrorism, the game, using a 100% rebuilt engine, boasts radically enhanced graphics, improved order system, highly detailed characters, hi-tech weaponry and is a clear generation above previous installments.

Back to the Future: The Game - Episode 2: Get Tannen!

Diposting oleh Taufik Suryaman


Back to the Future: The Game - Episode 2: Get Tannen! | 364 MB
Developer(s): Telltale Games
Publisher(s): Universal
Genre: : Sci-Fi Action Adventure Episodic series
Modes: Single player


While keeping an eye on young Doc Brown's proverbial date with scientific destiny, Marty and 1980's Doc must prevent gang boss Kid Tannen from wreaking havoc on Marty's family, and erasing his girlfriend from the future.

Relics of Fate: A Penny Macey Mystery [FINAL]

Diposting oleh Taufik Suryaman

Relics of Fate: A Penny Macey Mystery [FINAL] | 371 MB

Newtown’s local PI Jack Macey is kidnapped while investigating a series of robberies linked to a mysterious set of relics discovered in the town. You take on the role of Penny, his daughter, who discovers he’s missing after finding a letter addressed to her at his office. Explore the town, talk to its inhabitants and solve intriguing puzzles in Relics of Fate A Penny Macey Mystery, an exciting Hidden Object Puzzle Adventure game!

Just Cause 2

Diposting oleh Taufik Suryaman

Rico returns to action in the sequel to Avalanche Studios’ gargantuan action game. Just Cause 2 stars Rico Rodriquez, back to wreak havoc once again, this time with a new destination - the huge playground of the South East Asian islands of Panau. The sequel features more stunts, vehicles and weapons than ever before and an incredible overhauled grappling hook system.

KKND 2: Krossfire

Diposting oleh Taufik Suryaman

KKND 2: Krossfire
PC game | Genre: SciFi RealTime Strategy | 101 Mb

Realtime strategy/action game, set on a earth after a Nuclear War where three factions are in conflict. One group is a race that evolved on the surface and was mutated by the radiation and uses mutant animals in place of technology. Another is a race that developed underground, free from the effects of the radiation, that employs conventional vehicles and weapons. The third is a group of robots.

IDM 6.05 Full Version

Diposting oleh Taufik Suryaman

IDM kembali update dengan versinya yang terbaru 6.05 released tanggal 1 february 2011 kemarin.


PDF To Text Converter

Diposting oleh Taufik Suryaman


Pernahkah anda mendownload sebuah ebook yang sangat berguna, kemudian anda ingin membacanya  tetapi anda tidak mempunyai software untuk membaca file PDF?

Bermain Games LAN mode melalui Internet (VPN jaringan)

Diposting oleh Taufik Suryaman

Cara Mudah Untuk LAN melalui Internet (VPN jaringan)
1. Penjelasan

2. Apa yang kita perlukan
3. Mengapa menggunakan Tunngle?
4. Instalasi
5. Bermain
6. Masalah Umum

Cara Mengkoneksikan Database dengan Visual Basic

Diposting oleh Taufik Suryaman

Untuk dapat mengakses suatu database dari visual basic, Anda harus membuat koneksi ke database tersebut. Visual basic dapat menangani berbagai database, teks bakan worksheet excel. Terdapat beberapa cara yang tersedia untuk itu sesuai dengan database yang digunakan.

Apa itu SQL, DDL, DML, dan DCL?

Diposting oleh Taufik Suryaman

Apa itu SQL?

SQL merupakan singkatan dari Structured Query Language. SQL atau juga sering disebut sebagai query merupakan suatu bahasa (language) yang digunakan untuk mengakses database. SQL dikenalkan pertama kali dalam IBM pada tahun 1970 dan sebuah standar ISO dan ANSII ditetapkan untuk SQL. Standar ini tidak tergantung pada mesin yang digunakan (IBM, Microsoft atau Oracle). Hampir semua software database mengenal atau mengerti SQL. Jadi, perintah SQL pada semua software database hampir sama.
Terdapat 3 (tiga) jenis perintah SQL, yaitu DDL, DML dan DCL.

NFS Hot Pursuit 2010

Diposting oleh Taufik Suryaman

Released: 2010
Genre: Arcade / Racing (Cars) / 3D
Games Developer: Criterion Games
Publisher: Electronic Arts
Platform: PC

Minimum System Requirements
* OS: Windows XP, Vista or Windows 7
* CPU: Intel Core 2 Duo @ 1.8 Ghz / AMD Athlon 64 X2 4000+
* RAM: 1.5 GB
* HDD: 6.5 GB free disk space
* Graphics: 256 MB Graphics Memory with Pixel Shader 3
* Sound Card: DirectX 9 Compatible
* DirectX: Version 9.0c


Cities XL 2011

Diposting oleh Taufik Suryaman

 Developer: Focus Home Interactive|
Publisher: Focus Home Interactive|
Genre: Strategy (Manage / Busin. / Real-time) / 3D|
Release Date: 2010-10-14

Title: Cities XL Limited Edition (2010/ENG/Milti3/FASiSO release/CRACKED)
Year: 2010
Genre: Strategy (Manage/Busin. / Real-time) / 3D
Developer: Monte Cristo
Platform: PC

Hoyle Card Games 2011

Diposting oleh Taufik Suryaman

Special HOYLE 2011 Feature:
- Classic
- Astro Jack
- Backroom Blackjack
- Special 21s
- Video Blackjack - all featuring exciting animation
when player gets a natural (21 in the first two cards dealt)
- Video Poker
- Single hand with 17 varieties to play and
- Multi-hand with 3 varieties to play
System Requirements
OS X 10.4.11-10.6
Intel Core Solo processor or better
1.5 GHz or higher processor
512 MB RAM
64MB VRAM (Intel GMA chipsets supported)
3 GB hard drive space
33.6 Kbps modem or faster and internet service provider ***
required for internet access. Broadband internet service recommended.


GTA Tokyo Drift [GTA SAN ANDREAS MOD]

Diposting oleh Taufik Suryaman

GTA TOKYO DRIFT
PC | Windows | EN | Rockstar Toronto | 798 Mb
Genre: action-adventure, third-person, shooter

Minimum System Requirements
Intel Pentium 4 or AMD Athlon XP processor (or better)
384(+) MB of RAM
16x DVD-ROM drive
4.7 GB of free Hard Disk space for a full install
128(+) MB Video Card with DirectX 9 compatible drivers ("GeForce4" or better)
DirectX 9 compatible Surround Sound Card
Game pad with twin axis analog controls (USB or Joystick Port)
Keyboard & Mouse

DragonBall Online

Diposting oleh Taufik Suryaman


Description:
Tron: Evolution is an upcoming action-adventure tie-in video game for the film Tron: Legacy currently in development by Propaganda Games, to be published by Disney Interactive. It was officially announced at the Spike Video Game Awards and will be released for the Microsoft Windows, PlayStation 3, PlayStation Portable, Xbox 360, Wii and Nintendo DS platforms
on 7 December 2010. Additional DLC will be available post-launch. The music in the game was composed by Sascha Dikiciyan (aka Sonic Mayhem), Cris Velasco (God of War) and Kevin Manthei. Two tracks from the film composed by Daft Punk will be included in the game: "Derezzed" and "The Grid".
It was Age 784 when Goku snuck away from the Tenkaichi Budokai with Uub.

Tron Evolution RELOADED (2010)

Diposting oleh Taufik Suryaman


Gameplay:
Evolution is a third-person action game with racing and RPG elements incorporated. The game features both singleplayer and multiplayer modes. The basic gameplay focuses on acrobatics and combat. Player's movements are heavily parkour-influenced, while combat was inspired by capoeira. The game also features light cycle races. Each cycle leaves a light trail that can hurt or "de-res" any enemy. Evolution features persistent character progression system, that lets players earn new levels and unlock new upgrades, both in multiplayer and singleplayer.

Counter 1.6 Version 48 - Final Release by Dexa

Diposting oleh Taufik Suryaman

Features:
Protocol 48 Non-Steam
Exe version 1.1.2.6 Build: (4554) FIX Bug in Vista & Win 7
NEW REVOLUTION Emulator 9.83
Added - FPS & PING Booster (Much FPS)
Non-Steam server Browser (Play Online on 1000 Servers)
FIX - Bug Serverbrowser with favorites using Setti MasterServer
Play on LAN or Internet
Added - Option to launch listen server in LAN mode
Compatible with sXe
Steam Account / CD-Key NOT required. Installing, running, playing.
Half Life Multiplayer Games
Bots included v2.5

Counter Strike Source 1.9.1 + Bot

Diposting oleh Taufik Suryaman




System requirements
1.7 GHz processor (3.0 Ghz recommended)
512MB RAM (1GB recommended)
DirectX 8.1 video card (DirectX 9 recommended)
Internet connection (for online play)

Sponsor Ads

Put your ads here

Site Map

Post by Taufik S.
taufik4.blogspot.com

ようこそ

Post by M. Ridwan T.
watashiwaridwandesu.blogspot.com

Pemrograman JAVA

Kurnia @ BLOG.com
kurniaeliazar.blog.com

Recent Comment