How to Make Your Own Cell Phone #Web Development #Root #By Sayed Ahmed

 

Make your own cellphone from scratch.

http://www.instructables.com/id/Make-your-own-cellphone-from-scratch/

 

Build Your own Cell Phone Jammer

http://www.wikihow.com/Make-Your-Own-Cell-Phone-Jammer

 

Circuit Diagrams for Samsung Products

http://www.schematicsunlimited.com/s/samsung

  From: http://sitestree.com/?p=1025
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-05-04 21:09:06

Microprocessors by Intel #Web Development #Root #By Sayed Ahmed

Intel High End Desktop Processors
http://ark.intel.com/products/family/79318/Intel-High-End-Desktop-Processors#@Desktop

Desktop Processors by Intel after 2008
http://ark.intel.com/

Intel Microprocessors up to 2008
http://www.intel.com/pressroom/kits/quickreffam.htm From: http://sitestree.com/?p=975
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-04-13 18:48:24

Some Microprocessor Stuff #Web Development #Root #By Sayed Ahmed

In a Challenge to Intel, ARM Chips to Show Up in Servers in 2014

http://recode.net/2014/01/01/in-a-challenge-to-intel-arm-chips-to-show-up-in-servers-in-2014/

Scientist developing 3-D chips to expand capacity of microprocessors

http://phys.org/news/2014-01-scientist-d-chips-capacity-microprocessors.html

14 Nanometer Microprocessors

http://en.wikipedia.org/wiki/14_nanometer

 

 

 

  From: http://sitestree.com/?p=970
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-04-13 18:26:56

Some Electronics Concepts #Web Development #Root #By Sayed Ahmed

Semiconductor:

http://en.wikipedia.org/wiki/Semiconductor

 

Semiconductor – Diode:

http://en.wikipedia.org/wiki/Semiconductor

 

Triode:

http://en.wikipedia.org/wiki/Triode

 

Transistor:

http://en.wikipedia.org/wiki/Transistor

 

Understanding Transistors:

http://www.talkingelectronics.com/projects/TheTransistorAmplifier/TheTransistorAmplifier-P1.html

 

Soldering:

http://en.wikipedia.org/wiki/Soldering

 

PCB – Printed Circuit Boards:

http://en.wikipedia.org/wiki/Printed_circuit_board

 

Build your own Arcade Gaming Machine

https://www.kickstarter.com/projects/1604943853/build-your-own-arcade

MAMA Arcade Emulator:

http://en.wikipedia.org/wiki/MAME

 

  From: http://sitestree.com/?p=966
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-04-13 17:33:35

OpenGL Circle Draw #Web Development #Root #By Sayed Ahmed

in C/C++
// Create the circle in the coordinates origin
const int sides = 20;  // The amount of segment to create the circle
const double radius = 5; // The radius of the circle

glBegin(GL_LINE_LOOP);

  for (int a = 0; a < 360; a += 360 / sides)
  {
    double heading = a * 3.1415926535897932384626433832795 / 180;
    glVertex2d(cos(heading) * radius, sin(heading) * radius);
  }

glEnd();

---

in C# and TAO FrameWork
// Create the circle in the coordinates origin
  for (int a = 0; a < 360; a += 360 / sides)
  {
    heading = a * MathEx.deg2Rad;
    vertices.Add(new Vector3d(Math.Cos(heading) * this.radius, Math.Sin(heading) * this.radius, position.Z));
  }

Rendering
Gl.glBegin(Gl.GL_LINE_LOOP);
  for (int i = 0; i < vertices.Count; i++)
    Gl.glVertex3dv(vertices[i]);
Gl.glEnd();

Reference:
http://www.opengl.org/discussion_boards/showthread.php/169668-How-to-draw-circle



From: http://sitestree.com/?p=951
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-04-06 01:01:42

DotNetNuke ErrorPages.aspx #Web Development #Root #By Sayed Ahmed

<%@ Page Language=”C#” AutoEventWireup=”false” Inherits=”DotNetNuke.Services.Exceptions.ErrorPage” CodeFile=”ErrorPage.aspx.cs” %>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” lang=”en-US”>
<head>
<meta name=”revisit-after” content=”1 days” />
<meta name=”robots” content=”noindex,nofollow” />
<title runat=”server” id=”Title”>Error</title>
<link id=”DefaultStylesheet” runat=”server” rel=”stylesheet” type=”text/css” href=”~/Portals/_default/default.css” />
<link id=”InstallStylesheet” runat=”server” rel=”stylesheet” type=”text/css” href=”~/Install/install.css” />
</head>
<body>
<form id=”Form” runat=”server”>
<table cellspacing=”5″ cellpadding=”5″ border=”0″>
<tr>
<td><asp:Image ID=”headerImage” runat=”server” BorderStyle=”None” AlternateText=”DotNetNuke” /></td>
</tr>
<tr style=”height:100%;”>
<td valign=”top” style=”width:650px;”>
<h2>DotNetNuke Error</h2>
<hr />
<p><asp:PlaceHolder ID=”ErrorPlaceHolder” runat=”server” /></p>
</td>
</tr>
<tr>
<td align=”right”><asp:Hyperlink ID=”hypReturn” runat=”Server” NavigateUrl=”~/Default.aspx” cssClass=”dnnPrimaryAction” text=”Return to Site”/></td>
</tr>
<tr><td height=”10px”></td></tr>
</table>
</form>
</body>
</html> From: http://sitestree.com/?p=949
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-04-06 00:53:46

Some insights on Google Webmaster Tools

Some insights on Google Webmaster Tools

1. If you want your pictures to appear on Google search results where you are the author for the articles/pages, you need to verify yourself as the author for your articles/pages. Use the Author Stats option under Labs inside Google Webmaster Tools. You are also required to have a Google+ account.

2. You can use special markups to provide structured data on your web-site pages. Google will use these
structured data to generate the search result content for your pages. You can use Microdata, Micorformats, and RDFs to write these structured data. You can select one of the formats and use that. You can use markups to define/mark the following on your pages: Reviews, People, Products, Businesses and organizations, Recipes, Events, and Music

Read details here: https://support.google.com/webmasters/answer/99170?hl=en

You can also use Google Structured Data Testing Tool to test your structured data: https://www.google.com/webmasters/tools/richsnippets

Check http://schema.org/ as well.

3. You can use the Data Highlighter tool instead of providing structured data. Data Highlighter tool can be easier to
use. ‘With Data Highlighter, you simply “tag” each data field with your mouse’ . You provide your URLs, select
the types of data you want to highlight (events, reviews), and then use mouse clicks to highlight.

4. HTML Improvements: Google webmaster tools will inform you if you have used too long or too short titles; will also inform you if you have missed title tags for your pages. Use these data to improve your site and improve your SEO score.

5. On search results, Google sometimes display a list of your web-site sections such as About X, Solutions, and Products. You can use sitelink tools inside Google webmaster tools to demote a sitelink.

From: http://en.wikipedia.org/wiki/Sitelink
“Sitelinks are hyperlinks to website subpages that appear under certain Google listings in order to help users navigate the site.
The site owner cannot add any sitelinks; Google adds them through its own secret automated algorithms”

“Search engine optimization experts consider sitelinks to be an important measure of how “trusted” a site is,
and accordingly have attempted to deduce what causes them to appear”

6. Google webmaster tools show you the search queries, clicks on search results, and your top pages in search activity.

7. Google webmaster tools also show you links to your site from external sources. Inbound links from high PR sites and authoritative sites can be good for SEO ranking.

8. Google webmaster tools can show manual webspam actions

9. You will also get indexing stats for your sites and pages

10. You will get an idea on the keywords that Google has discovered on your sites.

11. You can remove your URLs that you do not want to appear on search results using Google webmaster tools.

12. You can also select which of the two URLs you want to appear in search results such as http://www.yahoo.com or http://yahoo.com

13. Google webmaster tools will also show you crawling stats such as:

Crawling Errors: Access Denied, Not Found errors
Crawl Stats: Pages crawled per day
List of Blocked URLs

14. You can upload your sitemaps i.e. list of all of your URLs for Google to crawl and index.

15. Google webmaster tools can show you malware activities on your site as detected by Google

16. Related Tools

PageSpeed Insights: Can show you the speed of your pages and can suggest on how to improve From: http://sitestree.com/?p=944
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-03-23 21:32:53

Some boilerplate code

HTML 5 Boiler Plate Code : http://html5boilerplate.com/

Boilerplate WordPress Themes: http://wordpress.org/themes/

JQuery Boilerplate: http://jqueryboilerplate.com/

  From: http://sitestree.com/?p=914
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-03-08 19:31:50

Java New Features

Java 8: Will be released on March, 2014

Addition of Lambda expression support. Actually closure support

Addition of JavaScript runtime. Hence, developers will be able to embed Javascript code

Annotation on Java Types

Improvements on Date and Time API

 

Java SE 10 : Will be released on 2016

Speculation:

Removing primitive data types

Move towards 64 bit addressable arrays.

 

Reference:

http://en.wikipedia.org/wiki/Java_version_history

You will also get the history of different Java versions

 

  From: http://sitestree.com/?p=722
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-02-03 01:21:08

Plugins for NetBeans IDE : For Web Development in PHP/MySQL/JavaScript/JQuery

The plugins will provide additional functionality to make your life easier in using the IDE

How to install:

From Tools->plugins, you can select the plugins and install them.

CoffeeScript editor features:

  • Just works! (No need for additional dependencies)
  • Autocompiling to a JavaScript file in the same directory

 

JSLint is a JavaScript program that looks for problems in JavaScript programs. It is a code quality tool.

PHP Smarty Framework

PHP ApIGen

PHP Composer

PHP Symfony Framework

PHP Doctrine2 Framework

PHP Yii Framework

PHP Zend Framework

PHP Twig Templates

PHP Symfony2 Framework

 

History Clipboard

Recent File List

 

Subversion

Git

Mercurial

 

Hudson – Continuous Integration Tool

CSS Source Model

Local History

 

Embedded Browser

Bugzilla

HTML5 Kit

Open URL to GIT

Disk cleanup tool

 

Google web toolkit

  From: http://sitestree.com/?p=719
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2014-02-02 01:05:42