Showing posts with label Tools. Show all posts
Showing posts with label Tools. Show all posts

20.1.13

Dual Monitor Taps Apps in Windows

To get the application back on your single desktop, if it opens in another windows sometimes is tricky but there seems to be an easy way out.

In your task bar, move the mouse pointer on top of the application that is hiding.
Step 1. Maximize by clicking on the application. (Of course you won't be able to see your application window)
Step 2. Right click on the taskbar and click on "Move"
Step 3. Now press your arrow key until you see your application window on your desktop

Thats about it!!

16.7.11

Samsung Sens SF510

Ubuntu 11.10 support is near about wonderful support for samsung sens. For any issues one might find helpful resources at at this site.

26.6.11

connecting remote desktop windows from ubuntu linux

terminal server client +  rdesktop is a simple utility to connect windows from ubuntu.

4.4.11

Special Command Lists -- System, Emacs, NS-2,3, vi

bash#
1. Enabling environment variable: source
2. 

3.4.11

Generic PostScript Printer in Windows 7 and EPS

To generate eps image from excel or visio for publishing: For windows 7 to work with generic postscript setup adobe acrobat does not seem to have fine support. Simple workaround is to use Generic Printer driver from driver list of the operating system.
  • Add printers and find MSPublisher color printer
  • Convert settings to suit when you print to file to EPS (for EPS conversion)
  • Add bounding box using gsview

4.3.11

Sync Ipod touch with ubuntu linux installation

With Ubuntu 10.10 it was a worthless try to install itunes for windows. Starting itunes with wine support was just possible but without any functional success. Check out this page that goes through simple set of instruction to add drivers for your ipod and sync using rythmbox or any package in your ubuntu installation. Of course it is not possible to connect to istore, but rest of the features can be easily explored.

12.11.09

Now that there is Go!!

Not long back was nepals go-go washing powder.. now here comes Go that's complement to programmers, out of the box from 20% time from google.

19.6.09

Two Best Friends for Programmers

[gdb-help]: http://heather.cs.ucdavis.edu/~matloff/UnixAndC/CLanguage/Debug.html#tth_sEc4.3

[git-help] http://www.gitready.com/

3.6.09

GIT Tagging

*Creating and pushing tags
http://blog.ashchan.com/archive/2008/06/30/tags-on-git/
*More important for me is to check out branch and tags
1. git branch -a (list all branches)
2. git tag -l (list all tags)
3. git checkout remoteBranchName
4. git checkout -b localBranchName (3 and 4 creates local branch for the remotebranch)
5. git checkout -b localBranchName remoteTagName (creates localBranch for remoteTag)
6. git clone username@url:/remoteRepository (creates a local repository)
7. git fetch
8. git merge origin (7 and 8 equal to push)
9. git commit (commits code)
10. git push (updates code)
11. git log (gives me the commit points)
12. git reset --hard f72f1e84f2fb89abe5d1cd3862eed6f271844b0d (revoking to previous statge)
13 git merge tagname (merge to tag)