> cd ~/.local/share/applications
create file: [application name].desktop
[Desktop Entry]
Type=Application
Name=[...]
Comment=[...]
Icon=[absolute path to icon]
Exec=[absolute path to application executable]
Terminal=false
Categories=[categories ';' separated]
> sudo update-desktop-database
Monday, June 25, 2012
Wednesday, June 6, 2012
Git Cheat Sheet
A handy little git cheat sheet that I found:
http://cheat.errtheblog.com/s/git/
Monday, June 4, 2012
Referencing third-party library source code in a GWT Project
Found a great blog post on how to use 3rd party source code in a GWT project.
The only thing that I will add is that you will also need need to configure just your projects module to be loaded, otherwise you will get an error about gwt.xml files not having an entry point.
The only thing that I will add is that you will also need need to configure just your projects module to be loaded, otherwise you will get an error about gwt.xml files not having an entry point.
...
<artifactId>maven-source-plugin</artifactId>
...
<configuration>
...
<modules>
<module>com.my.Module</module>
</modules>
...
</configuration>
...
<artifactId>maven-source-plugin</artifactId>
...
<configuration>
...
<modules>
<module>com.my.Module</module>
</modules>
...
</configuration>
...
Subscribe to:
Posts (Atom)