by http://webgeektutorials.blogspot.com
Showing posts with label web. Show all posts
Showing posts with label web. Show all posts

Monday, April 16, 2012

Photoshop CS6 beta Ready to download


Adobe  Photoshop "World's best digital image editing software" beta CS6 is available for download now. It has new look and some really effective and magical tools. Adobe Photoshop CS6 beta is capable of 3D image editing and quantitative image analysis capabilities but these features are available in shipping version of Photoshop CS6 extended. You'll find lots of new ways to work faster and with greater creative freedom and precision when you dive into Photoshop CS6 beta.


You can free download adobe Photoshop CS6 beta by following link given below
Link:  http://labs.adobe.com

Here below  3  videos displays capabilities of new Photoshop CS6 beta.



Wednesday, March 28, 2012

Download ChromePlus ? It's CoolNovo Now

Looking for Chrome Plus? It's Coolnovo now..

Now it is Maple browser and called  CoolNovo  is a improved chrome kernel, multi-label, multi-window of the green browser. The rapid dual-core, the boss key, privacy protection, ad filtering more than 20 enhancements. It is completely free, no trojan, no virus, no adware plug-in, without any functional limitations, do not bundle any third-party software. Can be the perfect running the Windows 2000/XP/2003/vista/7 and Linux operating systems.

Features
  • Maple browse specialized such as online banking website does not support chrome mode to add IE list so open these URLs will automatically switch to IE mode to open. Users can also add other sites according to their needs for IE list.
  • I Personally like this feature, Mouse gestures are generated when you press and hold the right mouse button to move the mouse track. Skilled in the Maple browser mouse gestures will save you a lot of time and bring you the efficient operation and use of fun. For example, through the left and right mouse gestures to achieve backward forward effect; under the left and right mouse gesture to close the current tab and activate the left and right labels.

Friday, January 6, 2012

SQL Server database : Regular maintenance

If you are a DBA it is very important for you to know maintenance plan in SQL Server. Generally we use SQL Enterprise Manager to perform regular maintenance of SQL database.

The information below does not cover everything you can do to maintain your SQL database in SQL Enterprise Manager. Before you must See your SQL documentation for details on what else you can do to maintain your database.

Backing up the transaction log is not compatible with simple recovery. If you have multiple databases with different recovery models, you can create separate database maintenance plans for each recovery model. In this way you can include a step to backup your transaction logs only on the databases that do not use the simple recovery mode.

Change recovery model to simple

Simple recovery mode is recommended because it prevents the transaction logs from swelling. In simple recovery, once a checkpoint is complete, the transaction logs for the time before the checkpoint are dropped from the active database. A checkpoint automatically occurs when the backup is made. We recommend having a database maintenance plan that performs a backup of the ePO database, together with "Simple Recovery". In this way, once a backup is successfully created, the portion of the transaction log in the active database will be dropped as it is no longer needed since a backup file exists.

Saturday, December 31, 2011

Photoshop Convert photo to sketch/line draw

This tutorial is just the first video of a multi video session that will show how to turn a photo into a drawing and adding a lil jazz to the image.



Sunday, October 30, 2011

Google is retiring google Buzz


Google Buzz is a social networking, microblogging and messaging tool from Google. In a few weeks google is retiring Google Buzz .with google buzz  you start conversations about the things you find interesting. Share updates, photos, videos and more with your friends. At that time you won't be able to create any new posts, but your existing content will remain accessible in two ways:
I'm gonna miss you  google buzz..

    Thursday, October 13, 2011

    Diagram Editor for Google+ Hangouts

    The Diagram Editor for Google+ Hangouts enables you to collaboratively create diagrams with your friends while you video-chat with them in a Google+ Hangout: Everyone can contribute to the diagram and everyone sees your edit in real-time. It feels like all your friends are hanging out in the same conference room editing the diagram on a giant whiteboard without the need for being in the same physical location.

    The editor enables you to collaboratively create diagrams with your friends while you videochat with them in a Google+ Hangout: Everyone can contribute to the diagram and everyone sees your edit in realtime. It feels like all your friends are hanging out in the same conference room editing the diagram on a giant whiteboard without the need for being in the same physical location. Currently, six different diagram types like UML class diagrams and business process diagrams are supported.

    Friday, September 23, 2011

    ER Diagram for a College System

    The ER diagram refined to have an 'is-a' relationship. The simple conceptual tables can now be designed in such case as:

    STUDENT (st-id, dob)
    FULL-TIMEPROG (p-code, duration)
    PART-TIMEPROG (p-code, duration)
    REGISTERS (p-code, st-id)


    Please note that the design above is not complete; a complete design would require all types defined and constraints identified. All such information is made available by the detailed analysis document.Any how some points can be considered...

    In an educational institute, there are several departments and students belong to one of them. Each department has a unique department number, a name, a location, phone number and is headed by a professor.
    •  Professors have a unique employee Id, name, phone number. We like to keep track of the following details 
    • regarding students: name, unique roll number, sex,phone number, date of birth, age and one or more email addresses. 
    •  Students have a local address consisting of the hostel name and the room number. They also have home address consisting of house number, street, city and PIN. It is assumed that all students reside in the hostels. 
    • A course taught in a semester of the year is called a section. There can be several sections of the same course in a semester; these are identified by the section number. Each section is taught by a different professor and has its own timings and a room to meet. 
    •  Students enroll for several sections in a semester. Each course has a name, number of credits and the department that offers it. A course may have other courses as prerequisites i.e, courses to be completed before it can be enrolled in. 
    •  Professors also undertake research projects. These are sponsored by funding agencies and have a specific start date, end date and amount of money given. More than one professor can be involved in a project. Also a professor may be simultaneously working on several projects. A project has a unique projectId. 

    Wednesday, September 21, 2011

    Google APIs Client Library for Java developers


    Google APIs Client Libraries & Tools team making available a Beta version of the open source Google HTTP Client Library for Java. This is the common HTTP client library. It features a pluggable HTTP transport abstraction that allows it to work seamlessly on any of the supported Java platforms, support for efficient JSON and XML data models for parsing and serialization, and a pluggable JSON and XML parser so you can use whatever works best for you.

    Here is an example of how easy it is to use the OAuth 2.0 library to make a request using the library for the Google+ API:

    // Set up the HTTP transport and JSON factory
    HttpTransport httpTransport = new NetHttpTransport();
    JsonFactory jsonFactory = new JacksonFactory();

    // Set up OAuth 2.0 access of protected resources 
    // using the refresh and access tokens, automatically 
    // refreshing the access token when it expires
    GoogleAccessProtectedResource requestInitializer =
        new GoogleAccessProtectedResource(accessToken, httpTransport,
        jsonFactory, clientId, clientSecret, refreshToken);

    // Set up the main Google+ class
    Plus plus = new Plus(httpTransport, requestInitializer, jsonFactory);

    // Make a request to access your profile and display it to console
    Person profile = plus.people().get("me").execute();
    System.out.println("ID: " + profile.getId());
    System.out.println("Name: " + profile.getDisplayName());
    System.out.println("Image URL: " + profile.getImage().getUrl());
    System.out.println("Profile URL: " + profile.getUrl());

    Source: Google code

    Friday, August 5, 2011

    Javascript to get URL of page

    In my project, today i need to get the URL of the page, i used a small Javascript to implement it. In Javascript location object contains information about the current URL. It is supported by all the major browsers.
    The location object is part of the window object and is accessed through the window.location property. Quite simple script to do this is :


    <script language="javascript" type="text/javascript">
        document.write (document.location.href);
    </script>

    Properties of Location Object
     hash  Returns the anchor portion of a URL
     host  Returns the hostname and port of a URL
     hostname  Returns the hostname of a URL
     href  Returns the entire URL
     pathname  Returns the path name of a URL
     port  Returns the port number the server uses for a URL
     protocol  Returns the protocol of a URL
     search  Returns the query portion of a URL

    Note : Please note that this won't work if you are using frames in your page.

    Tuesday, July 12, 2011

    Common ways to redirect website

    However there are many ways to redirect website's but here are simple ways by examples, This question often comes in-front of you when giving interview for web designer or developer.

    For this example I will use the website: http://www.domain.com
    Let’s say this site is build in the folder: /folder/ we need a redirect from
    DOMAIN to DOMAIN/FOLDER.

    META Tags:
    Create in the root of your domain an index.html and use a meta-refresh tag in the of your HTML.
    This way of redirecting is according to W3C not so nice, and it also will have a delay.
    You can set this delay, however I set it to 0.

    <meta http-equiv="refresh" content="0;URL=http://www.domain.com/folder/" />

    Link :
    Not so nice, but to most accessible way, is to just create an empty index.html with an hyperlink
    to your new folder.

    Sunday, July 3, 2011

    Adobe Dreamweaver CS 5.5 New Features

    Adobe® Dreamweaver® CS5.5 is the industry-leading web authoring and editing software that provides both visual and code-level capabilities for creating standards-based websites and designs for the desktop, smartphones, tablets, and other devices.



    Support CSS3/HTML5
    Design using the panel CSS, which now supports the new rules CSS3. Presentation of Design now supports mediazaprosy and apply different styles if you resize the screen. Generate code for modern websites using technologies HTML5, with handy tips on the code and visualization presentation "Design".

    Thursday, June 16, 2011

    View in Ruby

    Use the Ruby command ruby script/generate controller Hello:
    ruby script/generate controller Hello

    Creating an Action
    //Edit hello_controller.rb under \app\controllers

    class HelloController < ApplicationController
                     def there...............
    end
    end

    //To establish a view template for the hello controller's there action, you can create a file named there.rhtml and store it in the
    //\app\views\hello directory.

    Ruby: Unit Testing


    Unit Testing is a great way to catch errors early in the development process, if you dedicate time to writing appropriate and useful tests. As in other languages, Ruby provides a framework in its standard library for setting up, organizing, and running tests called Test::Unit.
    There are other very popular testing frameworks, rspec and cucumber come to mind.
    Specifically, Test::Unit provides three basic functionalities:
    1. A way to define basic pass/fail tests.
    2. A way to gather like tests together and run them as a group.
    3. Tools for running single tests or whole groups of tests.
    Writing a UNIT TEST 
    require 'test/unit'

    class Person
    attr_accessor :first_name, :last_name, :age

    def initialize(first_name, last_name, age)
    raise ArgumentError, "Invalid age: #{age}" unless age > 0
    @first_name, @last_name, @age = first_name, last_name, age
    end

    Wednesday, June 8, 2011

    How to add +1 button to Wordpress

    Google has made adding the +1 button fairly simple, but we wanted to provide self-hosted WordPress.org users with a quick walkthrough of the process of adding and enabling the +1 button to their site and their blog posts. We’re sure that dozens of +1 plugins will be available in the next few days, but in the meantime, this is what you need to do.

    Step 1: Add a Line of JavaScript to Your Theme Files


    The +1 button tool page lays out what webmasters need to add to their website. For users who have a standard XHTML website (or are using Tumblr), copying and pasting the following java scriptbefore the </body> tag on a website works just fine.
    <script type=”text/javascript” src=”http://apis.google.com/js/plusone.js”></script>
    Simply Go to the Appearances section in the WordPress dashboard and select “editor.” Then find the footer.php file in your template listing. Scan through the file until you see the area marked </body>, then paste in the JavaScript line.
    Hit update and you’re ready for step two!

    Step 2: Add a Button to Your Sidebar


    After the JavaScript snippet has been added to your website, users can paste the <g:plusone></g:plusone><g:plusone></g:plusone> wherever they want a button to appear. Using the +1 button tool, you can configure the button size and include other advanced options.
    Another common use for the +1 button, besides on individual blog posts, will likely be in sidebar widgets on a homepage. This can act as a nice, generic hub for +1 activity.
    To add the +1 button to a sidebar in WordPress (assuming your theme supports sidebars), simply go to the Appearances section in the Dashboard and select “Widgets.”
    We’ll assume that you want to create a new widget for the +1 button, but other sidebar widgets can also be customized to display the button.

    Tuesday, February 15, 2011

    Static Twitter Follow Me Badge For Any Web In 5 Easy Steps

    Twitter is large social networking site and has a million's of users. Many Bloggers/Webmasters are using twitter to promote their blogs. So here i'm sharing how to include Twitter follow me badge in easy 5 steps for blogger user, but it doesn't mean this post is not useful for other webmasters , even for them its very easy ( Please follow only 4,5 step). 

    Steps are
    1. Login into your account first.
    2. After successful login you are at Dashboard, now select Design 
    3. Now select tab Edit HTML.
    4. Find (Ctrl + F) "</head>" tag.
    5. Paste the code Just before it, Now in place of "UID" ( second line of code )write your twitter User Name ( ie webgeektutorial ) let others be same and save your work,  its Done !
    CODE: 
    <!-- HTML Codes by http://webgeektutorials.blogspot.com -->
    <a href='http://www.twitter.com/UID' rel='nofollow' style='display:scroll;position:fixed;top:250px;right:5px;z-index:10' target='_blank' title='Follow Us On Twitter'>
    <img alt='by http://webgeektutorials.blogspot.com' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl38NVMDrq1uBbLJVpzIOIwYBaVRI2bWVFKBfu0BMTF4dY5gLj5ampvKm3UCCEdTOwghN1uRRQU29QfSGEmR-VHCOGKipR_W8QArGuNQMGNIo8xUlRaajjZDXXIoFxJ143KNsEqU6Iddg/s104/twitter_fm.jpg'/>
    </a>

    If you like my post. Please do not remove Html comment line.  

    Sharing is Caring :) So keep sharing.

    Friday, February 11, 2011

    How well you know Interactive Ruby Shell?

    The Interactive Ruby Shell, more commonly known as IRB, is one of Ruby's most popular features, especially with new developers. You can bash out a one-liner, try a method you've just learned about, or even build a small algorithm or two without going the whole way to writing a complete program.
    I've started learning ruby, so while I've been digging through some of the best content I can find on IRB learning all about its internals and ways to get more out of it and big thanks to all of those guys who contributed great knowledge on web, thought I should share some of best contents gathered :

    Try out some trick in your IRB console:

    irb> Kernel.methods.each do |method| puts method; system "/usr/local/bin/ri --no-pager Kernel##{method}"; ch = STDIN.getc; break if (ch.chr == 'q') end

    Once you enter this just keep hit enter until you want to quit, at that point hit ‘q’ and enter.


    How to clear IRB console ?

    On Mac OS X or Linux you can use Ctrl + L to clear the IRB screen. But in windows i don't know how but yes i know the dos command 'cls' which clears screen. so simply i'm calling this command using system.

    Thursday, February 10, 2011

    Photoshop Glass Text Effect

    How to create a glass text effect? Its a simple effect using the Blending Options.
    This tutorials is divided into two parts. Big thanks goes to the up loader.

    Part-1


    How to Create Magical Effects

    HD video to assist how one can create magical effects using Photoshop.

    3D text in Photoshop CS5

    How to create 3D effects within PhotoShop CS5. Though not as indepth as say a strictly 3D modeling program, this works fine for print and web purposes. The Process is fairly simple to learn, here are some good video resources.



    With Photoshop CS5 Extended, you can create 3D logos and artwork from any text layer, selection, or layer mask with new Adobe Repoussé technology. Twist, rotate, extrude, bevel, and inflate these designs, and then easily apply rich materials like chrome, glass, and cork to explore different looks. And take your designs even further by leveraging the Adobe 3D Forge engine for advanced editing of your 3D models.

    Monday, February 7, 2011

    Developing iPhone app using Ruby on Rails

    This article focused on the structure needed to support separating content for iPhone and iPod touch users, very well written by Noel Rappin. It covered how to manage the viewport to display Mobile Safari content at the right size and scale, and started to discuss what to place in the basic layout of your mobile site.
    Part 2 covers how to display your content in a Mobile Safari browser. It also looks at the UI guidelines for managing iPhone content and explores how to make those guidelines come to life in your own Rails application.

    Follow these links :
    Developing iPhone applications using Ruby on Rails Part 1
    Developing iPhone applications using Ruby on Rails Part 2
    Developing iPhone applications using Ruby on Rails Part 3

    Noel Rappin is the vice president of the Rails practice at Pathfinder Development (http://www.pathf.com), and has a decade of experience with web application development. He has a doctorate from the Georgia Institute of Technology, where he studied how to teach Object-Oriented design concepts. He is the author of Professional Ruby on Rails, and the co-author of wxPython in Action and Jython Essentials. Read more at http://www.pathf.com/blogs and http://10printhello.blogspot.com.