Wednesday, September 3, 2014

How to Forward Port to another IP/Machine on Windows

Let say you want to forward listened port 4422 (at you current machine with IP 192.168.1.111) to port 80 on a machine with IP address 192.168.0.33, here is the command:

netsh interface portproxy add v4tov4 listenport=4422 listenaddress=192.168.1.111 connectport=80 connectaddress=192.168.0.33

If you want to list all the port forwarding setting on your machine:

netsh interface portproxy show all

I think by now you could already figured out how to delete the port forwarding!

Take note that this setting will be saved even after you restart the machine. If you want to disable the port forwarding, you need to delete it.

Happy Forwarding!

:: aerobraintech ::

Wednesday, July 2, 2014

Free Flat UI Design Kit

1. Flat design UI – HTML5 + CSS3

This is a free flat design UI kit where you will find the HTML5 and CSS3 codes for free.

2. Responsive Flat UI kit – HTML

This UI kit allows you to work alongside the latest version of Bootstrap.

3. Light UI Kit in CSS & HTML

If it's features that you want, this UI kit has plenty to offer.

4. Bootflat – Flat UI kit for Bootstrap

BOOTFLAT is an open source Flat UI KIT based on Bootstrap 3.1.1 CSS framework.

5. Free PSD & HTML Flat UI kit

This is a flat design UI kit that is available in both PSD and HTML forms to suit your needs.

6. Flat Admin UI kit

This is another flat UI kit that you can use. Unlike other options though, this one is meant especially for administrators.

7. Email UI kit Dashboard

This is a very useful UI kit that was first designed to be used for email user's interfaces. It has dashboard elements.

8. Free PSD/HTML Web UI Elements Kit

This is a web user interface that is available in PSD, HTML, CSS and jQuery formats.

9. Futurico UI HTML

This is a web user interface for designers and developers, which is based on the free version of the Futurico web UI.

10. Web UI CSS kit

A lightweight and modular front-end framework for developing fast and powerful web interfaces.

Original Source: http://efytimes.com/e1/fullnews.asp?edid=137969

Top 9 Challenges Site for Programmers

1. Top Coder

This is the biggest competitive software development community in the world. It has members from over 200 countries and the number of members spread over 200,000. You can find contests in Java, C# and C++.

2. Codechef

This website originates in India and has over 25,000 members. It gets membership from all over the world though and hosts events, contest and training for them.

3. Apps for Development

This is a website by the World Bank, inviting developers to create innovative tools and apps by making use of the data that it has collected through its Open Data Initiative.

4. Facebook Engineering Puzzles

Facebook's Engineering Puzzles are available on the company's careers page. It can be a good opportunity for you to land a job at the world's biggest social network, which has been known to have one of the best work environments.

5. HTML5Contest

This website hosts monthly contests. It has been created by a gaming company looking to promote HTML5 mobile games using these contests.

6. Al Zimmermann’s Programming Contests

This website hosts two programming contests every year. Interestingly, it doesn't ask you for the code that you have written and you just have to come up with the solution. Hence, a programmer can use any tool that they want to solve the problems

7. Programming Paraxis

This website contains a number of programming problems that can be solved using various programming languages.

8. Project Euler

This is a well known website amongst programmers, which hosts challenges in computer and mathematics.

9. Python challenge

As evident from the name, this website hosts challenges to be solved using the Python programming language.

Original Source: http://efytimes.com/e1/fullnews.asp?edid=132115

Wednesday, February 5, 2014

Uninstall Symantec Endpoint Protection without Password


  1. Run regedit as Administrator
  2. Delete smcexit key at HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\SMC
  3. Delete smcinstdata key at HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\SMC
  4. Run "smc -stop" at command prompt (run as Administrator)
  5. Uninstall Symantec Endpoint Protection using Program and Features (in Control Panel) 

Good Luck!

:: aerobrainTech ::