Saturday, April 1, 2017
Google Summer of Code 2013
Google Summer of Code 2013
Google Summer of Code has been a great success throughout this years and its 2013 and Google Summer of Code (GSOC) 2013 is now being officially announced. GSOC has been an annual tradition by Google and open source project to collaborate and enabling students to learn something from the open source community via their mentors and also contributes back to the project by working on certain things or features that hopefully will be implemented on that project. Many open source project has received this benefits.
If you are a students and would like to join GSOC 2013, head to the website and check their timeline and also FAQs
Available link for download
Sunday, February 26, 2017
How to get a master code for your Nokia phone
How to get a master code for your Nokia phone
Hello reader, do you know you can calculate and obtain your phones master unlock code?
Well, lets let the cat out of the bag.
Prerequisites:
Obtain the SERIAL Number of the mobile phone you are using. To do this on your phones main screen press *#06#. Your serial number will display, copy it out and visit www.nfader.su
Type in the serial number you copied in the require field and click on calculate and your master code will be generated. Thats all!
Available link for download
Friday, December 23, 2016
Monday, December 12, 2016
GPGIndustries News LG X330 Phone Code Done
GPGIndustries News LG X330 Phone Code Done
LG X330 Phone Code Done Posted: 17 Feb 2012 08:01 PM PST |
: JTAG-Pro Tool Aka GPGJTAG New Update V1.18!! Posted: 17 Feb 2012 02:46 AM PST |
Available link for download
Wednesday, October 26, 2016
Guide Post Code To Blogger
Guide Post Code To Blogger
How to post code to Blogger?

Vietnamese: Làm th? nào ?? vi?t code lên Blogger?
English: Go To Template >> insert into code:
VietNamese: Vào Template chèn ?o?n code:
Code:
<link href="http://alexgorbatchev.com/pub/sh/current/styles/shThemeEclipse.css" rel="stylesheet" type="text/css"></link>
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js" type="text/javascript">
<script src=http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJava.js type=text/javascript/>
<script src=http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js type=text/javascript/>
<script src=http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCsharp.js type=text/javascript/>
<script src=http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPython.js type=text/javascript/>
<script src=http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js type=text/javascript/>
<script language=javascript type=text/javascript>
SyntaxHighlighter.config.bloggerMode = true;
SyntaxHighlighter.all();
</script>
English: How to use?
Once you have the code with escaped characters, you can copy it on your blogger post inside <pre> tags. In the title you can choose a title for the code block and in the class you choose the code template to use.
Vietnamese: ?? s? d?ng các b?n s? d?ng th? <pre> và trong class là tên ngôn ng? mu?n hi?n:
ví d? ngôn ng? c?n hi?n là XML thì class="brush:xml;" ho?c csharp: class="brush:csharp;"
Code:
<pre title="here goes a title" class="brush:xml;">
...
</pre>
Code Demo a code Csharp:
Code:
public static Point LatLongToPixel(double latitude, double longitude, double zoom)
{
Point point = new Point();
double centerPoint = Math.Pow(2, zoom + 7);
double totalPixels = 2 * centerPoint;
double pixelsPerLngDegree = totalPixels / 360;
double pixelsPerLngRadian = totalPixels / (2 * Math.PI);
double siny = Math.Min(Math.Max(Math.Sin(latitude * (Math.PI / 180)), -0.9999), 0.9999);
point = new Point((int)Math.Round(centerPoint + longitude * pixelsPerLngDegree),
(int)Math.Round(centerPoint - 0.5 * Math.Log((1 + siny) / (1 - siny)) * pixelsPerLngRadian));
return point;
}
Available link for download