Wednesday, May 31, 2017
Download aTube Catcher 3 8 5187 Final Offline Installer Setup PcSoftGuru
Download aTube Catcher 3 8 5187 Final Offline Installer Setup PcSoftGuru
Hello everyone, Welcome again on Samsung Galaxy V Archive, Today i wanna share a SystemUi.apk has been mod look a like Facebook style, This UI has been created by Maz Badri on Official Samsung Galaxy V.

Go to link for download
Tuesday, May 30, 2017
Download Internet Download Manager 6 18 Build 7 Final Update Installer PcSoftGuru
Download Internet Download Manager 6 18 Build 7 Final Update Installer PcSoftGuru
(and the internal workings of the Tile Rendering Engine)
This morning, I got an email from one of the users of the Tiled Maps library. He pointed out that although it was easy to place Bitmap overlays at a position on the map, he couldnt figure out how to draw text at that position. His approach was to draw text on a Bitmap and then draw that Bitmap onto the map. The problem he was running into, however, was having a proper transparent background on that Bitmap (Windows Mobile does not support an alpha channel). Although it is possible to do a masked blit in Windows Mobile, this method of drawing text onto a map is not ideal.
If one examines the internals of the Tiled Map Client, you will find that overlays that appear on the map actually have a very flexible abstraction layer around them. The TiledMapSession itself has no internal knowledge of the overlay renderering implementation, in that it does not actually perform the drawing. It is only concerned about the Width and Height, so it can perform proper layout to let the rendering engine (IMapRenderer) to draw the content at the proper location. This is how the Tiled Map Client is flexible enough to perform both 2D and 3D rendering:
/// <summary> /// IMapRenderer provides the methods necessary for a TiledMapSession /// to draw tiles to compose the map, as well as the other content /// that may appear on the map. /// </summary> public interface IMapRenderer { /// <summary> /// Get a IMapDrawable from a stream that contains a bitmap. /// </summary> /// <param name="session">The map session requesting the bitmap</param> /// <param name="stream">The input stream</param> /// <returns>The resultant bitmap</returns> IMapDrawable GetBitmapFromStream(TiledMapSession session, Stream stream); /// <summary> /// Given a IMapDrawable, draw its contents. /// </summary> /// <param name="drawable">The IMapDrawable to be drawn.</param> /// <param name="destRect">The destination rectangle of the drawable.</param> /// <param name="sourceRect">The source rectangle of the drawable.</param> void Draw(IMapDrawable drawable, Rectangle destRect, Rectangle sourceRect); /// <summary> /// Draw a filled rectangle on the map. /// </summary> /// <param name="color">The fill color.</param> /// <param name="rect">The destination rectangle.</param> void FillRectangle(Color color, Rectangle rect); /// <summary> /// Draw a line strip on the map. /// </summary> /// <param name="lineWidth">The width of the line stripe.</param> /// <param name="color">The line strip color.</param> /// <param name="points">The points which compose the line strip.</param> void DrawLines(float lineWidth, Color color, Point[] points); } /// <summary> /// IMapDrawable is the interface used by the Tiled Map Client to represent content /// onto a IMapRenderer. /// IMapDrawable is generally tied to an implementation of IMapRenderer, /// which is responsible for internally representing and rendering the drawable. /// </summary> public interface IMapDrawable : IDisposable { /// <summary> /// The width of the drawable content. /// </summary> int Width { get; } /// <summary> /// The height of the drawable content. /// </summary> int Height { get; } }
So, how do we go from drawing a bitmap to drawing text? The standard/normal implementation and usage of an IMapRenderer is the GraphicsRenderer. The GraphicsRenderer is what facilitates rendering of a TiledMapSession to a System.Drawing.Graphics instance. Lets take a look at its implementation of Draw:
public void Draw(IMapDrawable drawable, Rectangle destRect, Rectangle sourceRect) { IGraphicsDrawable graphicsDrawable = drawable as IGraphicsDrawable; graphicsDrawable.Draw(Graphics, destRect, sourceRect); }
As you can see, it casts the IMapDrawable to an IGraphicsDrawable and calls its implementation of Draw, passing it the Graphics object:
/// <summary> /// IGraphicsDrawable is a type of IMapDrawable that can draw to a /// System.Drawing.Graphics instance. /// </summary> public interface IGraphicsDrawable : IMapDrawable { void Draw(Graphics graphics, Rectangle destRect, Rectangle sourceRect); }
There are two provided implementations of IGraphicsDrawable: WinCEImagingBitmap, which uses the Imaging API to draw bitmaps that contain alpha, and StandardBitmap, which draws a standard System.Drawing.Bitmap. So what we need, is a third implementation, which I called TextMapDrawable. TextMapDrawable will implement IGraphicsDrawable and use Graphics.DrawString to draw text onto the Graphics object.
Heres my implementation of TextMapDrawable:
public class TextMapDrawable : IGraphicsDrawable { static Bitmap myMeasureBitmap = new Bitmap(1, 1, PixelFormat.Format16bppRgb565); static Graphics myMeasureGraphics = Graphics.FromImage(myMeasureBitmap); public float MaxWidth { get; set; } public float MaxHeight { get; set; } Brush myBrush; public Brush Brush { get { return myBrush; } set { myBrush = value; } } bool myDirty = true; string myText; public string Text { get { return myText; } set { myText = value; myDirty = true; } } Font myFont; public Font Font { get { return myFont; } set { myDirty = true; myFont = value; } } #region IGraphicsBitmap Members public void Draw(Graphics graphics, Rectangle destRect, Rectangle sourceRect) { // just ignore source rect, doesnt mean anything in this context. if (CalculateDimensions() && myBrush != null) graphics.DrawString(myText, myFont, myBrush, destRect.X, destRect.Y); } #endregion bool CalculateDimensions() { bool valid = !string.IsNullOrEmpty(myText) && myFont != null; if (myDirty) { myDirty = false; if (valid) { SizeF size = myMeasureGraphics.MeasureString(myText, myFont); myWidth = (int)Math.Ceiling(size.Width); myHeight = (int)Math.Ceiling(size.Height); } else { myWidth = 0; myHeight = 0; } } return valid; } #region IMapBitmap Members int myWidth; public int Width { get { CalculateDimensions(); return myWidth; } } int myHeight; public int Height { get { CalculateDimensions(); return myHeight; } } #endregion #region IDisposable Members public void Dispose() { } #endregion }
As you can see, it took only 38 lines of code (according to Visual Studios Code Metrics) to allow drawing of text to the map! I have also updated the Tiled Map Client source for those interested in these changes.
Go to link for download
Monday, May 22, 2017
Download Hotspot Shield 3 19 Final Update Installer For Windows PcSoftGuru
Download Hotspot Shield 3 19 Final Update Installer For Windows PcSoftGuru
Thanks to a kind soul from XDA-Developers, Ive been able to mirror my various downloads on their hosting service, for free! Thanks again to Rich from BlurryFox! Most of that bandwidth was eaten by Klaxon, so if thats what you are looking for, the download is available at the new mirror.
Go to link for download
Sunday, May 7, 2017
Download AVG Free Antivirus 2014 Build 4158a6730 Offline Installer Setup PcSoftGuru
Download AVG Free Antivirus 2014 Build 4158a6730 Offline Installer Setup PcSoftGuru
Hello everyone , Welcome again on Galaxy V Archive , Today I wanna share a SystemUI Mod by Ally Rawskin from Official Samsung Galaxy V Group. Lets begin.

- ALL MEMBER
- Om TENG TENG
- ALLY RAWKSKIN13
- Om ARIEL ALEXANDRIA (Flyme)
- Om Farkhan (Fw)
- Om Sutikno (Guide Fw Transparan)
- EYANG GOOGLE
- XDA
- DAN KAMU IYA KAMU... :)
Go to link for download
Saturday, May 6, 2017
BlueStacks 2 App Player Pro v2 0 0 1011 Rooted Offline Installer
BlueStacks 2 App Player Pro v2 0 0 1011 Rooted Offline Installer

Note: To make use of these quick actions, your android must have android marshmallow 6.0 or android nougat 7.0.
The first application we have is the fingerprint gesture.

Enable the fingerprint gestures from the toggle menu as shown in the image. Once you are done with this, go settings and then to accessibility. Enable the app permission here, in order to use this application further. This application has lots of functionalities without having the root access. You can even set gestures for single tap, double tap and fast tap on the fingerprint sensor which is also known as a swipe. You can do multiple things with these gestures starting from making them work as navigation buttons, power button, opening notification panel, clicking the pictures, locking the apps, playing and pausing the music, you can also play next song or the previous song. If this is not enough for you then you can open any particular application or turn on/off the torch. Basically, you can customize it in your own way and it works very well.
Things become more interesting when you have the root access on your device. You can make your phone sleep and you can scroll down, take a screenshot, open google assistant and much more. This is one of my favorite apps on the play store.
If you do not want anyone else to use this functionality on the phone then you can select the option of allowing only registered fingerprints and it makes sure that your phone does not use this feature on your phone.
If you are unable to uninstall this application then go to accessibility and disable the permission which you have provided earlier.
The second application we have is the Fingerprint Quick action.

Final Verdict:
With the help of above two applications, you can customize fingerprint gestures to a new level. Though there are some bugs in these apps and they do not respond all the time as the apps are still in testing mode, developers are working on it and soon they will fix the problems. I have tested these apps on my Lenovo k4 note and Redmi Note 3 and the results were perfect all the time. The fingerprints speed and accuracy are magnificent.
Go to link for download
Thursday, May 4, 2017
Monday, May 1, 2017
Download PicPick 3 2 8 Final Setup Installer Free PcSoftGuru
Download PicPick 3 2 8 Final Setup Installer Free PcSoftGuru
I spent a bit of time figuring out how to determine the stylus on the HTC Touch Diamond. It only took like 5 minutes: it was exactly where I suspected, a registry key that toggled depending on the stylus state. So basically its really easy to access. I rolled access to this registry key up in the Sensor SDK.
(HKEY_CURRENT_USERControlPanelKeybdStylusOutStatus for those curious.)
The new HTCStylusSensor has 2 members:
StylusState
This property is has a value that is either StylusIn or StylusOut.
StylusStateChanged
This event fires whenever the StylusState property changes.
Click here if you want to download the APIs and source to access the G-Sensor, Light Sensor, Nav Sensor, or Stylus Sensor.
I will be releasing an tool shortly that allows users to launch any application, shortcut, sound file, etc, when the stylus is removed from the device.
Go to link for download
Sunday, April 30, 2017
Download Avast! Free Antivirus 9 0 2007 Final Update Offline Installer For Windows PcSoftGuru
Download Avast! Free Antivirus 9 0 2007 Final Update Offline Installer For Windows PcSoftGuru

Go to link for download
Saturday, April 29, 2017
New Falcon Box Latest Version v1 9 Full Crack Setup Installer Free Download By Finalevil2009
New Falcon Box Latest Version v1 9 Full Crack Setup Installer Free Download By Finalevil2009

- Super fast and safe non root method for Samsung galaxy note 7 series.
- Direct unlock.
- Read lock status.
- Reset MSi.
- Relock reset MSi for Samsung shannon series.
- Improve universal Qualcomm features.
- Enable diag.
- Imei repair.
- Direct unlock root method.
- More......

Go to link for download
Tuesday, April 25, 2017
Download Google Chrome 31 0 1650 48 Beta Final Update 2013 Offline Installer PcSoftGuru
Download Google Chrome 31 0 1650 48 Beta Final Update 2013 Offline Installer PcSoftGuru
God, what a mess.
| true | false | |
| VARIANT_BOOL | -1 | 0 |
| bool (C#/C++) | true | false |
| BOOL (C++) | not 0 | 0 |
| HRESULT | >= 0 | < 0 |
I ran into this mess while creating COM interfaces in C# that were being used in C++ (via tlbexp). I discovered some silly behavior with regards to how C# or tlbexp marshals bool return types, which was the cause of a couple bugs:
C# COM Interface:
[Guid("91B57DDB-5CCF-4cb5-9A26-A7F9559BAFFF")] public interface IFoo { // by default bool is marshalled as VARIANT_BOOL bool Bar(); void Goo(); }
Seriously? Why is it defaulted to VARIANT_BOOL and not BOOL? VARIANT_BOOL is a Visual Basic concept (and a retarded one at that). Looking at the table above, it is the complete opposite behavior of COM HRESULTs. The fix:
[Guid("91B57DDB-5CCF-4cb5-9A26-A7F9559BAFFF")] public interface IFoo { [return: MarshalAs(UnmanagedType.Bool)] bool Bar(); void Goo(); }
Another issue that bothered me was that these COM calls actually look like the following:
virtual HRESULT __stdcall raw_Bar (/*[out,retval]*/long* pRetVal ) = 0;
virtual HRESULT __stdcall Goo () = 0;
All COM calls are returning HRESULTs behind the scenes, which is expected. However, what happens when the C# code throws an exception? You would expect the marshaller to maybe catch it and return an HRESULT failure? Nope. On .NET CF (and maybe even in the desktop version too), the application crashes (without any chance for recovery) in native code. Beautiful. This basically requires that your C# COM methods have a try/catch wrap around all operation, as an exception would be fatal. I guess I can understand why you wouldnt want to have the COM interop handling arbitrarily catch all exceptions, but it is quite tedious to have to do it yourself.
Go to link for download
Monday, April 24, 2017
Download My IP Hide 1 11 Build 1031 Final Installer PcSoftGuru
Download My IP Hide 1 11 Build 1031 Final Installer PcSoftGuru
I was interviewed/quoted for an article in Business Week, "Windows Mobile: What Microsoft Needs to Fix". Kinda cool.
Go to link for download
Sunday, April 23, 2017
UC Browser Latest v10 8 0 apk installer download Latest Version apps
UC Browser Latest v10 8 0 apk installer download Latest Version apps
Gratis Download Song DESY RATNASARI - MENYESAL Karaoke, Official DESY RATNASARI - MENYESAL.mp4 Terbaru. More Related Songs
Download Music DESY RATNASARI - MENYESAL (Full Album) - POP INDONESIA [readmore]
We also have other in different categories. You can browse through the category and find your favorite.
Credits - Video
DMCA - Disclaimer
This video is shared by users. We dont upload the file, we just found on "youtube.com". We do not intend to infringe any legitimate intellectual, artistic rights or copyright. If you are the copyright owner for this file, please Report Abuse to "youtube.com" (source link) and if you liked this post, say thanks by sharing it.
Go to link for download
BBM apk v2 10 0 30 apk installer download Latest Version aplikasi
BBM apk v2 10 0 30 apk installer download Latest Version aplikasi
Description: Immortal Conquest - is a free-to-play, terrain-based epic strategy war game set in a fantastical and far away land. Select powerful Gairo to lead your troop, each with their own unique characteristics and abilities. Utilize up to three in different combinations to outthink your enemy and strategically achieve different objectives.
KEY FEATURES:
- EXPAND your territory across a vast map of over 2 million pieces of land
- BUILD and upgrade facilities to grow your military power
- FORM alliances with other real players to fight for resources and defend your territory
- CREATE strategies and use diplomacy to achieve military ambitions
- DEFEND the alliance or betray the alliance – your choices will determine victory or defeat
- DEPLOY Gairo with different skills to form the best combination of troops
The epic story of Immortal Conquest lies ahead of you waiting to be written! There are no rules, no constraints, just vast opportunities to conquer the world map. Cooperation and alliance, bloodshed and betrayal awaits as you set your own path for complete domination!
Devise masterful strategies to rule over 2 million pieces of land on a vast map shared by all players. Harvest resources, forge powerful alliances, and conquer a city, a region and ultimately claim total world domination. There’s no one path to victory in this MMO strategy game but there can be only one winning alliance – so the fight for control is on!
Immortal Conquest is now available on Android in the United States, Canada, Australia and New Zealand. Now begin your own epic history!
KEEP IN TOUCH
Support : click “Help” in game to contact us
Forum : http://forum.immortalconquest.com/forum.php
Facebook : https://www.facebook.com/ImmortalConquestGame
- Screenshots
- Official Trailer
DOWNLOAD APK v1.1.4 [43 MB]
DOWNLOAD OBB DATA [196 MB]PowerVR Adreno Mali Tegra
How to install?Immortal Conquest: unpack the archive folder in / sdcard / Android / obb /
- so you should get / the sdcard / Android / obb /com.netease.immortalconquest/
- the size of the decompressed cache 200 MB
- install and play the game!
other source: http://androgamelinks.blogspot.com | http://wikipedia.org "Kirimkan artikel kamu melalui email, artikel bebas sopan. Back Link Welcome."
Go to link for download
Friday, April 21, 2017
Download TSR Watermark Image 2 5 1 1 Final Installer PcSoftGuru
Download TSR Watermark Image 2 5 1 1 Final Installer PcSoftGuru
GL Maps is a really interesting and fun project, but I havent had any time to work on it as of late! But I figure that other developers may be interested in carrying the torch. Ill probably return to this project some day in the distant future...
Download GL Maps source code here.
Go to link for download
Monday, April 17, 2017
Download Mozilla Firefox 25 0 Final Offline Installer PcSoftGuru
Download Mozilla Firefox 25 0 Final Offline Installer PcSoftGuru

Hello everyone and have a happy weekends , We meet again :) . In this post im gonna share with you guys some tips and tricks on how to speed up your Galaxy V. This gonna be a long post and take your time to relax. Please take a note in this post we gonna use some complication tweaks , various apps. and stuff like that. So please do your backup to be on the safe side, And remember Always Do With Your Own Risk (DWYOR) , Galaxy V Archive will not responsible if any damage happen on your device. So lets begin !
What is Tweak ? Im gonna give a simple explanation of what Tweak means.
Tweak is a script on Android that has been develop by many Developers from Xda Developers and so on, This script contain a like a "magic" to control your performance and stabilty on your device by making a changes of your system.
Requirements to install a tweak
- Rooted and Custom Recovery Installed. How to root your Galaxy V? Read below
Read HERE on How To Root and Install CWM Recovery on Galaxy V - In order to install a Tweak, you must have init.d support, How to enable init.d on Galaxy V ?Read HERE on How To Enable Init.D on your Samsung Galaxy V
- Tweak files (Below)
- Busybox installed. (Download from Google Play)
- Some Required Info on that Tweak Thread.
Wednesday, April 12, 2017
Download ESET NOD32 Antivirus 6 0 316 0 Final Setup Installer PcSoftGuru
Download ESET NOD32 Antivirus 6 0 316 0 Final Setup Installer PcSoftGuru
Version 2.0.0.29
- Updated Klaxon to support Samsungs Light Sensor
- Fixed issue with device not waking up from sleep to sound alarm.
Heres the download!
Go to link for download
Download SpeedUpMyPC 2013 5 3 11 3 Offline Installer
Download SpeedUpMyPC 2013 5 3 11 3 Offline Installer

- Rooted
- Deodexed
- Zipalign system apks
- Bloatware Removed
- Rebooter
- 13 Battery Selectable Icon
- Battery Bar
- Custom Carrier Label
- Potato Clock
- Contextual Header
- Gradient Header
- Dinamic Statusbar (Tinted all apps without third party application)
- 3Tab SystemUi
- Recent Card Stack Wannabe
- Music Player on Statusbar
- Network Traffic Meter (CharmeleonOS)
- Network Speed Meter (Thinking Bridge)
- Carbon Network Traffic
- Visualizer
- AOKP Weather on Lockscreen
- ListView Animation
- Low Battery Warning
- MiPop
- Multiwindow Sidebar
- DSP Manager
- Dolby Atmos
- Music FX
- System App Remover
- Performance Control
- Font Chooser
- Remodified Setting Layout
- Init.D support
- Custom Tweak integrated
- Custom Notification Panel Background
- Check it by yourself (^_^)
Additional Files:
Revo_Dolby_FIX : DOWNLOAD HERE
Revo_DSP_Lib_FIX : DOWNLOAD HERE
Revo_Tweaks : DOWNLOAD HERE
RevoSystemFix :DOWNLOAD HERE
BE SURE TO INSTALL CWM/TWRP RECOVERY BEFORE INSTALL THIS CUSTOM ROM !
In this case this ROM has so many files , So I recommended that you make a folder. Its up to you.
- Boot into CWM Recovery
- Apply Update From sdcard
- Install RevoOS_ROM.zip and choose yes to install
- Once its done, do not reboot yet, We gonna install additional file
- Directly choose zip from sdcard and now select Revo_Dolby_FIX.zip and choose yes to confirm.Done
- Now choose zip from sdcard again, And this time choose Revo_DSP_Lib_Fix.zip and choose yes to confirm.Done
- Now choose zip from sdcard again, And this time choose Revo_Tweaks and choose yes to confirm.Done
- Now choose zip from sdcard again, And this time choose RevoSystemFIX.zip and choose yes to confirm.Done
- Once its done, DO NOT REBOOT YET! , Go to advance and choose WIPE DALVIK CACHE
- Reboot system now. DONE !
Sometimes TekCafe Music Player Force Close, So if you dont like it , Just use Apollo Music player ,Im included 2 Music player in this ROM
Bug? What is that ? I dont found any BUG on this ROM yet
Hyekal HiTech
Bittalas
Awe Sobat Madridista
Ariv Rivaldi
Android Archive
StackOverflow.com
Eboy Basit
Cleverior
Arjuna
Adi Sukahadi
Ferdi Ansyah
Harry Wiryawan
Ariel AlexandriaMaz Badri
Wahyudin Eka Rahayu
Ulin Nuha
Irshal Mulki
Banni
Nopi Yanto
Yanu Abu Alwi
Bang Bagger
iSiddHart
Edy
Ally Rawskin
Luthfy
Boedhy
Aditya
Candra
Ammar Mughny Fattah
Farkhan
FMD
Xda Developers
Windows
Dev Apktool & ApkMulti Tool
Lenox
Group OFFICIAL SAMSUNG GALAXY V
Group Mediatek Android Art And Dev
Dan semua member Galaxy V seramai 16K :*
Go to link for download
Thursday, March 30, 2017
Download Dropbox 2 4 7 Stable Final Update Installer PcSoftGuru
Download Dropbox 2 4 7 Stable Final Update Installer PcSoftGuru
Google recently released their Windows USB driver for the Android Debug Bridge. This driver allows you to deploy and debug Android applications on a real device. And its a snap to install and use on a 32 bit Windows operating system. But if you have a Windows x64 OS, you are outta luck. There is no 64 bit driver.
I mulled over a couple options like switching back to a 32 bit OS, dual booting Windows Server 2008 with Linux or Vista. Those are all pretty cruddy solutions, and as I was driving home, an idea dawned on me that was crazy enough to work. VMWare has a feature that allows you to take a USB port on a host machine and delegate it to a client VM. I was hoping that this would work with the Android Debug Bridge. I installed VMWare Player and grabbed an Ubuntu appliance, and voila, it worked!
Basic instructions to do this on your own:
- Get VMWare Player.
- Download Ubuntu from the appliance list on the VMWare website.
- Open the VM and update everything in Ubuntu. (The default user/password on the appliance I downloaded was user/user).
- Follow these instructions to set up Ubuntu to recognize and connect to your phone.
- In Ubuntu, download Eclipse and the Android SDK as per the instructions found on Google.
- In Ubuntu, download the JDK using the "sudo apt-get install sun-java6-jdk" command.
- Set up your Eclipse environment per the instructions found on Google.
- Plug in your phone, and give VMWare Player control of it. For me, the phone was called "High Speed Composite Device" in the list of icons in the lower right corner of VMWare. I now see it listed as "High Removable Disk".
- Follow the instructions found on Developing on Device Hardware to set up debugging on Ubuntu.
Thats it! Good luck.
Go to link for download