This commit is contained in:
mathieu 2010-02-17 20:43:36 +01:00
commit f018c33c3a
26 changed files with 1348 additions and 33 deletions

Binary file not shown.

View File

@ -5,4 +5,5 @@ pidgin &
evolution &
conky &
/usr/lib/gnome-volume-manager/gnome-volume-manager --sm-disable &
xplanet &
#nm-applet --sm-disable &

View File

@ -113,10 +113,12 @@
<number>4</number>
<firstdesk>1</firstdesk>
<names>
<!-- set names up here if you want to, like this:
<!-- set names up here if you want to, like this:
<name>desktop 1</name>
<name>desktop 2</name>
-->
<name>desktop 3</name>
<name>desktop 4</name>-->
</names>
<popupTime>875</popupTime>
<!-- The number of milliseconds to show the popup for when switching
@ -275,6 +277,12 @@
<command>/usr/bin/gmrun</command>
</action>
</keybind>
<keybind key="A-F3">
<action name="Execute">
<name>Lance </name>
<command>gnome-terminal</command>
</action>
</keybind>
<keybind key="W-e">
<action name="Execute">
<startupnotify>

View File

@ -6,15 +6,16 @@ Left = 250
# You can make aliases withing gmrun, for example:
# My second firefox profile (made with `firefox -ProfileManager`)
URL_ff =`/usr/bin/firefox` #type ff:
URL_google = x-www-browser 'http://www.google.com.ph/search?q=%s'
URL_trans2fr = x-www-browser 'http://translate.google.fr/translate_t?hl=fr&ie=UTF-8&text=%s&sl=en&tl=fr#'
URL_trans2en = x-www-browser 'http://translate.google.fr/translate_t?hl=fr&ie=UTF-8&text=%s&sl=fr&tl=en#'
URL_google = x-www-browser 'http://www.google.com/search?q=%s'
URL_verbe = x-www-browser 'http://www.la-conjugaison.fr/du/verbe/%s.php'
URL_en2fr = x-www-browser 'http://translate.google.fr/translate_t?hl=fr&ie=UTF-8&text=%s&sl=en&tl=fr#'
URL_fr2en = x-www-browser 'http://translate.google.fr/translate_t?hl=fr&ie=UTF-8&text=%s&sl=fr&tl=en#'
Terminal = gnome-terminal #type ctrl-enter
TermExec = gnome-terminal -e
URL_http = /usr/bin/firefox %u
URL_https = /usr/bin/firefox %u
URL_uf = /usr/bin/firefox http://ubuntuforums.org/ #type uf://
URL_mail = /usr/bin/firefox https://mail.google.com/ #type mail://
URL_http = x-www-browser %u
URL_https = x-www-browser %u
URL_uf = x-www-browser http://ubuntuforums.org/ #type uf://
URL_mail = x-www-browser https://mail.google.com/ #type mail://
URL_top = ${TermExec} '%s' #type [command] ctrl-enter
URL_mc = ${TermExec} '%s'

View File

@ -1,3 +0,0 @@
let g:netrw_dirhistmax =10
let g:netrw_dirhist_cnt =1
let g:netrw_dirhist_1='/media/LaCie'

4
.vim/filetype.vim Normal file
View File

@ -0,0 +1,4 @@
augroup filetypedetect
au BufNewFile,BufRead .tmux.conf*,tmux.conf* setf tmux
augroup END

96
.vim/syntax/tmux.vim Normal file
View File

@ -0,0 +1,96 @@
" Vim syntax file
" Language: tmux(1) configuration file
" Maintainer: Tiago Cunha <me@tiagocunha.org>
" Last Change: $Date: 2009/10/25 22:16:55 $
" License: This file is placed in the public domain.
if version < 600
syntax clear
elseif exists("b:current_syntax")
finish
endif
setlocal iskeyword+=-
syntax case match
syn keyword tmuxAction any current none
syn keyword tmuxBoolean off on
syn keyword tmuxCmds detach[-client] ls list-sessions neww new-window
syn keyword tmuxCmds bind[-key] unbind[-key] prev[ious-window] last[-window]
syn keyword tmuxCmds lsk list-keys set[-option] renamew rename-window selectw
syn keyword tmuxCmds select-window lsw list-windows attach[-session]
syn keyword tmuxCmds send-prefix refresh[-client] killw kill-window lsc
syn keyword tmuxCmds list-clients linkw link-window unlinkw unlink-window
syn keyword tmuxCmds next[-window] send[-keys] swapw swap-window
syn keyword tmuxCmds rename[-session] kill-session switchc switch-client
syn keyword tmuxCmds has[-session] copy-mode pasteb paste-buffer
syn keyword tmuxCmds new[-session] start[-server] kill-server setw
syn keyword tmuxCmds set-window-option show[-options] showw show-window-options
syn keyword tmuxCmds command-prompt setb set-buffer showb show-buffer lsb
syn keyword tmuxCmds list-buffers deleteb delete-buffer lscm list-commands
syn keyword tmuxCmds movew move-window select-prompt respawnw respawn-window
syn keyword tmuxCmds source[-file] info server-info clock-mode lock[-server]
syn keyword tmuxCmds saveb save-buffer downp down-pane killp
syn keyword tmuxCmds kill-pane resizep resize-pane selectp select-pane swapp
syn keyword tmuxCmds swap-pane splitw split-window upp up-pane choose-session
syn keyword tmuxCmds choose-window loadb load-buffer copyb copy-buffer suspendc
syn keyword tmuxCmds suspend-client findw find-window breakp break-pane nextl
syn keyword tmuxCmds next-layout rotatew rotate-window confirm[-before]
syn keyword tmuxCmds clearhist clear-history selectl select-layout if[-shell]
syn keyword tmuxCmds display[-message] set-environment show-environment
syn keyword tmuxCmds choose-client displayp display-panes run[-shell] lockc
syn keyword tmuxCmds lock-client locks lock-session lsp list-panes pipep
syn keyword tmuxCmds pipe-pane
syn keyword tmuxOptsSet prefix status status-fg status-bg bell-action
syn keyword tmuxOptsSet default-command history-limit status-left status-right
syn keyword tmuxOptsSet status-interval set-titles display-time buffer-limit
syn keyword tmuxOptsSet status-left-length status-right-length message-fg
syn keyword tmuxOptsSet message-bg lock-after-time default-path repeat-time
syn keyword tmuxOptsSet message-attr status-attr status-keys set-remain-on-exit
syn keyword tmuxOptsSet status-utf8 default-terminal visual-activity
syn keyword tmuxOptsSet visual-bell visual-content status-justify
syn keyword tmuxOptsSet terminal-overrides status-left-attr status-left-bg
syn keyword tmuxOptsSet status-left-fg status-right-attr status-right-bg
syn keyword tmuxOptsSet status-right-fg update-environment base-index
syn keyword tmuxOptsSet display-panes-colour display-panes-time default-shell
syn keyword tmuxOptsSet set-titles-string lock-command lock-server
syn keyword tmuxOptsSet mouse-select-pane
syn keyword tmuxOptsSetw monitor-activity aggressive-resize force-width
syn keyword tmuxOptsSetw force-height remain-on-exit uft8 mode-fg mode-bg
syn keyword tmuxOptsSetw mode-keys clock-mode-colour clock-mode-style
syn keyword tmuxOptsSetw xterm-keys mode-attr window-status-attr
syn keyword tmuxOptsSetw window-status-bg window-status-fg automatic-rename
syn keyword tmuxOptsSetw main-pane-width main-pane-height monitor-content
syn keyword tmuxOptsSetw window-status-current-attr window-status-current-bg
syn keyword tmuxOptsSetw window-status-current-fg mode-mouse synchronize-panes
syn keyword tmuxTodo FIXME NOTE TODO XXX contained
syn match tmuxKey /\(C-\|M-\|\^\)\p/ display
syn match tmuxNumber /\d\+/ display
syn match tmuxOptions /\s-\a/ display
syn match tmuxVariable /\w\+=/ display
syn match tmuxVariableExpansion /\${\=\w\+}\=/ display
syn region tmuxComment start=/#/ end=/$/ contains=tmuxTodo display oneline
syn region tmuxString start=/"/ end=/"/ display oneline
syn region tmuxString start=/'/ end=/'/ display oneline
hi def link tmuxAction Boolean
hi def link tmuxBoolean Boolean
hi def link tmuxCmds Keyword
hi def link tmuxComment Comment
hi def link tmuxKey Special
hi def link tmuxNumber Number
hi def link tmuxOptions Identifier
hi def link tmuxOptsSet Function
hi def link tmuxOptsSetw Function
hi def link tmuxString String
hi def link tmuxTodo Todo
hi def link tmuxVariable Constant
hi def link tmuxVariableExpansion Constant
let b:current_syntax = "tmux"

View File

@ -1,7 +1,7 @@
"2.1 (created: 2009/05/21 13:13:06)
set guioptions=rbm
set guioptions=rbT
set runtimepath=/home/mathieu/.vimperator
source! /home/mathieu/.vimperatorrc.local
" vim: set ft=vimperator:
" vim: set ft=vimperator:

12
.vimrc
View File

@ -268,13 +268,15 @@ if has("cscope")
" use both cscope and ctag for 'ctrl-]', ':ta', and 'vim -t'
set cscopetag
" use ctags before cscope
set csto=1
set csto=0
" add any cscope database in current directory
if filereadable("cscope.out")
cscope add cscope.out
" else add the database pointed by environment variable
elseif $CSCOPE_DB != ""
cscope add $CSCOPE_DB
" add the database pointed by environment variable
elseif $CSCOPE_DB != ""
if filereadable($CSCOPE_DB)
cscope add $CSCOPE_DB
endif
endif
" show message when any other cscope db added
set cscopeverbose
@ -335,6 +337,8 @@ else
command! TagsBuild
\ :!echo "building ctags database..." &&
\ ctags --c++-kinds=+p --fields=+iaS --extra=+q -R
\:set tags=./tags,./../tags,./../../tags,./../../../tags,tags
map <S-F8> :TagsBuild<CR><CR>
endif
" close preview window after a completion

View File

@ -362,6 +362,7 @@ _comps=(
'git-mktree' '_git'
'git-mv' '_git'
'git-name-rev' '_git'
'git-octopus' '_git'
'git-pack-objects' '_git'
'git-pack-redundant' '_git'
'git-pack-refs' '_git'
@ -421,7 +422,6 @@ _comps=(
'gmake' '_make'
'gmplayer' '_mplayer'
'gnome-gv' '_gnome-gv'
'gnupod_addsong' '_gnupod'
'gnupod_addsong.pl' '_gnupod'
'gnupod_check' '_gnupod'
'gnupod_check.pl' '_gnupod'
@ -517,6 +517,7 @@ _comps=(
'ionice' '_ionice'
'ip' '_ip'
'ipset' '_ipset'
'ip' '_ip'
'iptables' '_iptables'
'iptables-restore' '_iptables'
'iptables-save' '_iptables'
@ -745,6 +746,7 @@ _comps=(
'pkginfo' '_pkginfo'
'pkg_info' '_bsd_pkg'
'pkgrm' '_pkgrm'
'pkg_info' '_bsd_pkg'
'pkgtool' '_pkgtool'
'pldd' '_pids'
'pmake' '_make'
@ -771,6 +773,9 @@ _comps=(
'portsnap' '_portsnap'
'postsuper' '_postfix'
'powerd' '_powerd'
'portlint' '_portlint'
'portsnap' '_portsnap'
'postsuper' '_postfix'
'prcs' '_prcs'
'prev' '_mh'
'print' '_print'
@ -1170,7 +1175,6 @@ _services=(
'iceweasel' 'firefox'
'Mail' 'mail'
'mailx' 'mail'
'mktunes.pl' 'mktunes'
'nail' 'mail'
'ncl' 'nc'
'nedit-nc' 'nc'
@ -1187,7 +1191,6 @@ _services=(
'remsh' 'rsh'
'slogin' 'ssh'
'svnadmin-static' 'svnadmin'
'tunes2pod.pl' 'tunes2pod'
'xelatex' 'latex'
'xetex' 'tex'
)
@ -1328,6 +1331,79 @@ autoload -Uz _a2ps _a2utils _aap _acpi _acpitool \
_redirect _regex_arguments _regex_words _renice _reprepro \
_requested _retrieve_cache _retrieve_mac_apps _ri _rlogin \
_rm _rpm _rrdtool _rsync _rubber \
_attr _auto-apt _autocd _bash_completions _baz \
_bind_addresses _bindkey _bison _bittorrent _bogofilter \
_brace_parameter _brctl _bsd_pkg _bts _bug \
_builtin _bzip2 _bzr _cache_invalid _cal \
_calendar _call_function _canonical_paths _ccal _cd \
_cdbs-edit-patch _cdcd _cdrdao _cdrecord _chflags \
_chkconfig _chmod _chown _combination _comm \
_command _command_names _compdef _complete _complete_debug \
_complete_help _complete_help_generic _complete_tag _compress _condition \
_configure _correct _correct_filename _correct_word _cowsay \
_cp _cpio _cplay _cssh _csup \
_ctags_tags _cut _cvs _cvsup _cygcheck \
_cygpath _cygrunsrv _cygserver _cygstart _dak \
_darcs _date _dchroot _dchroot-dsa _dcop \
_dd _debchange _debdiff _debfoster _deb_packages \
_debsign _default _defaults _delimiters _describe \
_description _dhclient _dict _dict_words _diff \
_diff_options _diffstat _directories _directory_stack _dir_list \
_dirs _disable _dispatch _dlocate _dmidecode \
_domains _dpatch-edit-patch _dpkg _dpkg-buildpackage _dpkg-cross \
_dpkg-repack _dpkg_source _dput _du _dumper \
_dupload _dvi _ecasound _echotc _echoti \
_elinks _elm _email_addresses _emulate _enable \
_enscript _env _equal _expand _expand_alias \
_expand_word _fakeroot _fc _fetchmail _figlet \
_file_descriptors _files _file_systems _find _finger \
_fink _first _flasher _flex _floppy \
_fortune _fsh _functions _fuse_arguments _fuser \
_fusermount _fuse_values _gcc _gdb _generic \
_genisoimage _getclip _getconf _getent _getfacl \
_getmail _git _global _global_tags _globqual_delims \
_globquals _gnome-gv _gnu_generic _gnutls _gpg \
_gphoto2 _gprof _gqview _grep _groff \
_groups _growisofs _gs _guard _guilt \
_gv _gzip _hash _hdiutil _history \
_history_complete_word _history_modifiers _hosts _iconv _id \
_ifconfig _ignored _imagemagick _init_d _in_vared \
_invoke-rc.d _ip _iptables _irssi _ispell \
_iwconfig _java _java_class _jobs _jobs_bg \
_jobs_builtin _jobs_fg _joe _kfmclient _kill \
_killall _kld _knock _kvno _last \
_ldd _ld_debug _less _lighttpd _limit \
_limits _linda _links _lintian _list \
_list_files _loadkeys _locales _locate _logical_volumes \
_look _losetup _lp _ls _lscfg \
_lsdev _lslv _lsof _lspv _lsusb \
_lsvg _lynx _lzop _mac_applications _mac_files_for_application \
_madison _mail _mailboxes _main_complete _make \
_make-kpkg _man _match _math _md5sum \
_members _mencal _menu _mercurial _mere \
_mergechanges _message _metaflac _mh _mii-tool \
_mime_types _mkdir _mkshortcut _mkzsh _module \
_module-assistant _modutils _mondo _monotone _most_recent_file \
_mount _mozilla _mpc _mplayer _mt \
_mtools _mtr _multi_parts _mutt _my_accounts \
_mysqldiff _mysql_utils _nautilus _ncftp _nedit \
_netcat _net_interfaces _netscape _newsgroups _next_label \
_next_tags _nice _nmap _normal _nothing \
_nslookup _object_classes _oldlist _open _options \
_options_set _options_unset _other_accounts _pack _parameter \
_parameters _patch _path_commands _path_files _pax \
_pbm _pdf _perforce _perl _perl_basepods \
_perldoc _perl_modules _php _physical_volumes _pick_variant \
_pids _pine _ping _piuparts _pkg-config \
_pkgtool _pon _portlint _ports _portsnap \
_postfix _prcs _precommand _prefix _print \
_printenv _printers _prompt _ps _pscp \
_pspdf _psutils _pump _putclip _python \
_qemu _qiv _qtplay _quilt _raggle \
_rake _ranlib _rar _rcs _read \
_read_comp _redirect _regex_arguments _regex_words _renice \
_reprepro _requested _retrieve_cache _retrieve_mac_apps _ri \
_rlogin _rpm _rrdtool _rsync _rubber \
_ruby _sablotron _samba _sccs _sched \
_schroot _screen _sed _sep_parts _service \
_services _set _set_command _setopt _setup \
@ -1338,6 +1414,11 @@ autoload -Uz _a2ps _a2utils _aap _acpi _acpitool \
_su _sub_commands _subscript _subversion _sudo \
_suffix_alias_files _surfraw _svn-buildpackage _sysctl _tags \
_tar _tar_archive _tardy _tcpdump _tcpsys \
_smit _socket _softwareupdate _source _spamassassin \
_sqsh _ssh _sshfs _stat _store_cache \
_strip _stty _su _sub_commands _subscript \
_subversion _sudo _suffix_alias_files _surfraw _svn-buildpackage \
_sysctl _tags _tar _tar_archive _tardy \
_tcptraceroute _telnet _terminals _tex _texi \
_texinfo _tidy _tiff _tilde _tilde_files \
_time_zone _tin _tla _todo.sh _toilet \
@ -1363,6 +1444,13 @@ autoload -Uz _a2ps _a2utils _aap _acpi _acpitool \
_zcat _zcompile _zdump _zed _zfs \
_zfs_dataset _zfs_pool _zftp _zip _zle \
_zmodload _zmv _zpool _zpty _zstyle
_xmlsoft _x_modifier _xmodmap _x_name _xpdf \
_xrandr _x_resource _xscreensaver _x_selection_timeout _xset \
_xt_arguments _xterm _x_title _xt_session_id _x_utils \
_xv _x_visual _x_window _xwit _yast \
_yodl _yp _yum _zcat _zcompile \
_zdump _zed _zftp _zip _zle \
_zmodload _zmv _zpty _zstyle
autoload -Uz +X _call_program
typeset -gUa _comp_assocs

View File

@ -39,7 +39,7 @@ prompt bart green red
# pushd pour cd
setopt autopushd
# ne tue pas les processus quand zsh quitte
setopt nohup
#setopt nohup
# auto cd avec le nom du dossier
setopt autocd
@ -77,7 +77,6 @@ alias xte='nohup xterm &' # xte lancera un xterm qui ne se fermera pas si on fer
#export
export EDITOR=/usr/bin/vim
# support des type mimes -> ./toto.pdf
autoload -U zsh-mime-setup
autoload -U zsh-mime-handler

View File

@ -4,10 +4,11 @@
#Java And Android Env
export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.12
export ANDROID_HOME=/home/mathieu/Android/android-sdk-linux
export ANDROID_SKD=/home/mathieu/Android/android-sdk-linux/platforms/android-1.6/
export ECLIPSE_HOME=/home/mathieu/Eclipse/eclipse-modeling-galileo
export PATH=$JAVA_HOME/bin/:$ANDROID_HOME/tools:$ANDROID_SKD/tools:$ECLIPSE_HOME:$PATH
export ANDROID_HOME=$HOME/Android/android-sdk-linux_86
export ANDROID_SKD=$ANDROID_HOME/platforms/android-1.6/
export ECLIPSE_HOME=$HOME/Tools/eclipse
export NETBEANS_HOME=$HOME/netbeans-6.8
export PATH=$NETBEANS_HOME/bin:$JAVA_HOME/bin/:$ANDROID_HOME/tools:$ANDROID_SKD/tools:$ECLIPSE_HOME:$PATH
#Perso Bin
export PATH=$HOME/bin/bin:$HOME/bin:$PATH

File diff suppressed because one or more lines are too long

22
Desktop
View File

@ -1,8 +1,9 @@
NOWHERE=$PWD
aptitude install openbox obconf obmenu
aptitude install libcairo2-dev libpango1.0-dev libglib2.0-dev libimlib2-dev libxinerama-dev #libxrand-dev
sudo aptitude install openbox obconf obmenu
sudo aptitude install libcairo2-dev libpango1.0-dev libglib2.0-dev libimlib2-dev libxinerama-dev #libxrand-dev
sudo aptitude install autoconf build-essentials
sudo aptitude install libxdamage-dev libxcomposite-dev
if [ ! -d ./tint2-read-only ]; then
svn checkout http://tint2.googlecode.com/svn/trunk/ tint2-read-only
fi
@ -11,7 +12,7 @@ cd tint2-read-only
./autogen.sh
./configure
make
make install
sudo make install
ln -s $NOWHERE/.config $HOME/.config
@ -28,4 +29,15 @@ ln -s $NOWHERE/gmrunrc $HOME/.gmrunrc
#install GSM-openboxTheme.obt dans openbox
#aptitude install xcompmgr
# echo "transset 0.5"
aptitude install network-manager-gnome
sudo aptitude install network-manager-gnome
sudo aptitude install xplanet
sudo dpkg -i $NOWHERE/debian-multimedia-keyring_2008.10.16_all.deb
wget -q http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc -O- | sudo apt-key add -
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config jar

279
bookmarks.html Normal file
View File

@ -0,0 +1,279 @@
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<!-- This is an automatically generated file.
It will be read and overwritten.
DO NOT EDIT! -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks</H1>
<DL><p>
<DT><H3 ADD_DATE="0" LAST_MODIFIED="0" PERSONAL_TOOLBAR_FOLDER="true">Barre de favoris</H3>
<DL><p>
<DT><A HREF="http://www.exalead.fr/search/" ADD_DATE="1247211859">Recherche Web - Exalead</A>
<DT><A HREF="http://www.examplenow.com/" ADD_DATE="1257329577">http://www.examplenow.com/</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">RTEL4I</H3>
<DL><p>
<DT><A HREF="https://projects.openwide.fr/services/git/gitweb/gitweb.cgi/rtel4i-dev/" ADD_DATE="1246527355">Git Repository - rtel4i-dev/summary</A>
<DT><A HREF="https://projects.openwide.fr/wombat/project/services/rtel4i-dev/" ADD_DATE="1246527386">Wombat-RTEL4I</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="1263379103">Kernel</H3>
<DL><p>
<DT><A HREF="http://www.linux.com/news/software/linux-kernel/23685-the-kernel-newbie-corner-your-first-loadable-kernel-module" ADD_DATE="1246527467">The Kernel Newbie Corner: Your First Loadable Kernel Module</A>
<DT><A HREF="http://www.linux.com/news/software/linux-kernel/25078-the-kernel-newbie-corner-your-first-loadable-kernel-module-part-deux" ADD_DATE="1246527486">The Kernel Newbie Corner: Your First Loadable Kernel Module, Part Deux</A>
<DT><A HREF="http://kdubois.net/?p=760" ADD_DATE="1263200025">FOSSline » Blog Archive » How To Make A Kernel Sandbox using QEMU</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="1262680673">Outils</H3>
<DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Git</H3>
<DL><p>
<DT><A HREF="http://wiki.openembedded.net/index.php/GitPhraseBook" ADD_DATE="1246958693">GitPhraseBook - Openembedded</A>
<DT><A HREF="http://git-scm.com/" ADD_DATE="1247148519">Git - Fast Version Control System</A>
<DT><A HREF="http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html" ADD_DATE="1247149113">gittutorial(7)</A>
<DT><A HREF="http://progit.org/book/" ADD_DATE="1248711398">Pro Git - Table of Contents</A>
<DT><A HREF="http://book.git-scm.com/" ADD_DATE="1248790397">Git Community Book</A>
<DT><A HREF="http://batterypowered.wordpress.com/2008/07/04/deploying-a-git-repository-server-in-ubuntu/" ADD_DATE="1250843737">Deploying a Git Repository Server in Ubuntu « Battery Powered</A>
<DT><A HREF="http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way" ADD_DATE="1251118071">scie.nti.st » Hosting Git repositories, The Easy (and Secure) Way</A>
<DT><A HREF="http://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git/" ADD_DATE="1256632865">How to create and apply a patch with Git | Ariejan.net</A>
<DT><H3 ADD_DATE="1262699735" LAST_MODIFIED="1262875792">Nouveau dossier</H3>
<DL><p>
<DT><A HREF="http://bouwcam.science.uva.nl/view/index.shtml" ADD_DATE="1262699735">Live view - AXIS 213 PTZ Network Camera version 4.03</A>
<DT><A HREF="http://www.google.com/search?q=git%20change%20less" ADD_DATE="1262699735">git change less - Recherche Google</A>
<DT><A HREF="http://git.or.cz/course/svn.html" ADD_DATE="1262699735">Git - SVN Crash Course</A>
<DT><A HREF="http://www.algorithm.com.au/blog/files/git-less.php" ADD_DATE="1262699735">Stay Hungry, Stay Foolish - git &amp; less | …on Coding, Mac OS X | Algorithm.com.au</A>
</DL><p>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="1263379129">Latex</H3>
<DL><p>
<DT><A HREF="http://blog.rom1v.com/2009/07/bien-debuter-en-latex-sous-ubuntu/" ADD_DATE="1247732849">Bien débuter en LaTeX sous Ubuntu « ®om&#39;s blog</A>
<DT><A HREF="http://www.faqs.org/faqs/fr/faq-latex-francaise/part1/" ADD_DATE="1263379103">FAQ LaTeX francaise V2.12 part 1</A>
<DT><A HREF="http://www.faqs.org/faqs/fr/faq-latex-francaise/part2/" ADD_DATE="1263379119">FAQ LaTeX francaise V2.12 part 2</A>
<DT><A HREF="http://www.faqs.org/faqs/fr/faq-latex-francaise/part3/" ADD_DATE="1263379129">FAQ LaTeX francaise V2.12 part 3</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Vim</H3>
<DL><p>
<DT><A HREF="http://www.oualline.com/vim-cook.html" ADD_DATE="1248248676">Vim Cookbook</A>
<DT><A HREF="http://www.tuxfiles.org/linuxhelp/vimcheat.html" ADD_DATE="1248248726">The Vim commands cheat sheet</A>
<DT><A HREF="http://www.geocities.com/volontir/" ADD_DATE="1248249549">Vim Regular Expressions 101</A>
<DT><A HREF="http://www.swaroopch.com/notes/Vim_fr:Table_des_Mati%C3%A8res" ADD_DATE="1249049667">Vim fr:Table des Matières - Notes</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Configure</H3>
<DL><p>
<DT><A HREF="http://www.airs.com/ian/configure/" ADD_DATE="1249290651">The GNU configure and build system - Table of Contents</A>
</DL><p>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Docs</H3>
<DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Java</H3>
<DL><p>
<DT><A HREF="http://deptinfo.unice.fr/~grin/messupports/" ADD_DATE="1246969876">Cours General Java</A>
<DT><A HREF="http://java.sun.com/docs/books/tutorial/collections/implementations/index.html" ADD_DATE="1253004583">Lesson: Implementations (The Java™ Tutorials &gt; Collections)</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">JNI</H3>
<DL><p>
<DT><A HREF="http://jamesthornton.com/eckel/TIJ-2nd-edition/AppendB.htm" ADD_DATE="1253193782">B: The Java Native Interface (JNI)</A>
<DT><A HREF="http://www.velocityreviews.com/forums/t125915-help-passing-and-returning-objects-using-jni.html" ADD_DATE="1253193798">HELP: Passing and Returning Objects using JNI</A>
<DT><A HREF="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jniexamp.html" ADD_DATE="1253193814">Chapter 5 Continued: JNI Example</A>
<DT><A HREF="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jnistring.html" ADD_DATE="1253193822">Chapter 5 Continued: Strings and Arrays</A>
<DT><A HREF="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jniref.html" ADD_DATE="1253193830">Chapter 5 Continued: Other Programming Issues</A>
<DT><A HREF="http://www.iut-orsay.fr/dptinfo/Pedagogie/Roger.Astier/app_java/javaJni.html" ADD_DATE="1253193847">JNI : échanges entre Java et C++</A>
<DT><A HREF="http://java.sun.com/developer/onlineTraining/Programming/JDCBook/jni.html" ADD_DATE="1255681090">Chapter 5: JNI Technology</A>
<DT><A HREF="http://java.sun.com/docs/books/jni/html/intro.html" ADD_DATE="1255681181">http://java.sun.com/docs/books/jni/html/intro.html</A>
</DL><p>
<DT><A HREF="http://java.sun.com/docs/books/jni/" ADD_DATE="1255680915">Java Native Interface: Programmer&#39;s Guide and Specification</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Eclipse</H3>
<DL><p>
<DT><A HREF="http://eclipse.developpez.com/cours/?page=platform-cat#plugin-dev" ADD_DATE="1247041141">Les meilleurs cours Eclipse - Plugin</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">OSGI</H3>
<DL><p>
<DT><A HREF="http://www.javaworld.com/javaworld/jw-03-2008/jw-03-osgi1.html?page=1" ADD_DATE="1247041257">Hello, OSGi, Part 1: Bundles for beginners - JavaWorld</A>
<DT><A HREF="https://www.ibm.com/developerworks/library/os-ecl-osgi/" ADD_DATE="1247041190">Understanding how Eclipse plug-ins work with OSGi</A>
<DT><A HREF="http://t-templier.developpez.com/tutoriel/java/osgi/osgi1/" ADD_DATE="1247041215">Programmation par composant avec la technologie OSGi (1ère partie) - Club des décideurs et professionnels en Informatique</A>
</DL><p>
<DT><A HREF="http://www.javaworld.com/javaworld/jw-03-2008/jw-03-osgi1.html?page=3" ADD_DATE="1247041332">Hello, OSGi, Part 1: Bundles for beginners - JavaWorld</A>
<DT><A HREF="http://wiki.improve.fr/wiki/moni/articles/thirdpartylib" ADD_DATE="1247041371">moni:articles:thirdpartylib [IMPROVE Mana]</A>
<DT><A HREF="https://www.ibm.com/developerworks/library/os-eclipse-plugindev1/" ADD_DATE="1247041402">Plug-in development 101, Part 1: The fundamentals</A>
</DL><p>
<DT><A HREF="http://formation-debian.via.ecp.fr/" ADD_DATE="1247046397">Formation Debian GNU/Linux</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Python</H3>
<DL><p>
<DT><A HREF="http://www.linuxjournal.com/article/3946" ADD_DATE="1247732499">Python Programming for Beginners</A>
<DT><A HREF="http://www.python.org/doc/2.3.4/" ADD_DATE="1255002581">Python 2.3.4 Documentation</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">package</H3>
<DL><p>
<DT><A HREF="http://ubuntuforums.org/showthread.php?t=51003" ADD_DATE="1249301673">Howto make debian standard debs from scratch - Ubuntu Forums</A>
<DT><A HREF="http://tldp.org/HOWTO/html_single/Debian-Binary-Package-Building-HOWTO/" ADD_DATE="1249304694">Debian Binary Package Building HOWTO</A>
<DT><A HREF="http://www.debian.org/doc/maint-guide/" ADD_DATE="1249292322">Guide du nouveau responsable Debian</A>
</DL><p>
<DT><A HREF="http://wiki.auto-hebergement.fr/" ADD_DATE="1250151657">start [Auto-hébergement]</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">AWK</H3>
<DL><p>
<DT><A HREF="http://www.grymoire.com/Unix/Awk.html" ADD_DATE="1251366687">Awk - A Tutorial and Introduction - by Bruce Barnett</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Francois Armand</H3>
<DL><p>
<DT><A HREF="http://didel.script.univ-paris-diderot.fr/claroline/course/index.php?cid=M2T1SYSTAV" ADD_DATE="1260453029">M2T1SYSTAV - Diderot en ligne</A>
<DT><A HREF="http://www.pps.jussieu.fr/~armand/" ADD_DATE="1260453077">François Armand, Enseignements à l&#39;Université Denis Diderot</A>
</DL><p>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Framework</H3>
<DL><p>
<DT><A HREF="http://markup.sourceforge.net/" ADD_DATE="1247663365">markup.py - an HTML and XML generator in Python</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">OpenEmbedded</H3>
<DL><p>
<DT><A HREF="http://www.kernel-labs.org/files/openembedded-guide/openembedded-guide.html" ADD_DATE="1249476016">OpenEmbedded Guide by Example</A>
<DT><A HREF="http://www.uv-ac.de/openembedded/" ADD_DATE="1249476034">OpenEmbedded HowTo</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">ARM</H3>
<DL><p>
<DT><A HREF="http://linux.onarm.com/index.php/Image:Mobile-Internet-Wiki-Right.gif" ADD_DATE="1249648220">Image:Mobile-Internet-Wiki-Right.gif - ARM Linux Internet Platform</A>
<DT><A HREF="http://www.linux-arm.com/" ADD_DATE="1249648209">WebHome &lt; Main &lt; TWiki</A>
<DT><A HREF="https://wiki.ubuntu.com/ARM/RootfsFromScratch" ADD_DATE="1249648246">ARM/RootfsFromScratch - Ubuntu Wiki</A>
<DT><A HREF="http://909ers.apl.washington.edu/~dushaw/ARM/" ADD_DATE="1249648577">Debian ARM Linux on Qemu</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Tuto</H3>
<DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Android</H3>
<DL><p>
<DT><A HREF="http://android-france.fr/2009/07/21/developper-un-loading-sous-android-page-dattente/" ADD_DATE="1248247905">Loading sous android (page d&#39;attente) | Android-France</A>
<DT><A HREF="http://code.google.com/p/simple/" ADD_DATE="1248855615">simple - Project Hosting on Google Code</A>
<DT><A HREF="http://developer.android.com/guide/appendix/faq/commontasks.html" ADD_DATE="1251378466">Common Tasks and How to Do Them in Android | Android Developers</A>
<DT><A HREF="http://developer.android.com/guide/topics/fundamentals.html" ADD_DATE="1251378484">Application Fundamentals | Android Developers</A>
<DT><A HREF="http://developer.android.com/guide/developing/tools/traceview.html" ADD_DATE="1251708855">Traceview: A Graphical Log Viewer | Android Developers</A>
<DT><A HREF="http://android-france.fr/category/developpement/" ADD_DATE="1251726652">Developpement | Android-France</A>
<DT><A HREF="http://android-france.fr/2009/09/10/capturer-les-exceptions-anr-dandroid-de-vos-developpements-sur-votre-site/" ADD_DATE="1252597889">Capturer les exceptions (ANR) android de vos développements sur votre site | Android-France</A>
<DT><A HREF="http://lifehacker.com/5342237/five-great-reasons-to-root-your-android-phone" ADD_DATE="1252675655">Five Great Reasons to Root Your Android Phone - Android rooting - Lifehacker</A>
<DT><A HREF="http://code.google.com/p/android-scripting/" ADD_DATE="1252928339">android-scripting - Project Hosting on Google Code</A>
<DT><A HREF="http://android-dls.com/wiki/index.php?title=Magic_Rooting" ADD_DATE="1252944226">Magic Rooting - Android Wiki</A>
<DT><A HREF="http://ubuntuforums.org/showthread.php?t=1243312" ADD_DATE="1253092261">[all variants] Script to create android (480x320) compatible mp4 video using ffmpeg - Ubuntu Forums</A>
<DT><A HREF="http://code.google.com/p/android-roms/w/list" ADD_DATE="1254832192">Wiki Pages - android-roms - Project Hosting on Google Code</A>
</DL><p>
<DT><A HREF="http://android-france.fr/category/Tuto-developpement/" ADD_DATE="1248770173">Tuto développement | Android-France</A>
<DT><A HREF="http://www.dd-wrt.com/wiki/index.php/Ipkg" ADD_DATE="1251202796">Tuto WRT</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Bash_tips</H3>
<DL><p>
<DT><A HREF="http://www.dedoimedo.com/computers/linux-cool-hacks.html" ADD_DATE="1248683053">10 super-cool Linux hacks you did not know about</A>
<DT><A HREF="http://www.makeuseof.com/tag/15-great-tips-for-ubuntu-power-users/" ADD_DATE="1251363014">15 Great Ubuntu Tips For Linux Power Users</A>
<DT><A HREF="http://tuxarena.blogspot.com/2009/06/6-bash-productivity-tips.html" ADD_DATE="1250153813">Bash Tips</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">DIY</H3>
<DL><p>
<DT><A HREF="http://www.ladyada.net/make/index.html" ADD_DATE="1251379337">Make stuff</A>
<DT><A HREF="http://planet.madeinfr.org/" ADD_DATE="1260370094">Planet : Made in Fr</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Moto</H3>
<DL><p>
<DT><A HREF="http://www.prefecture-police-paris.interieur.gouv.fr/demarches/carte_grise/ou.htm#courier" ADD_DATE="1246953206">Carte grise : où l&#39;obtenir ?</A>
<DT><A HREF="http://www.carte-grise.org/mode_emploi_changement_proprietaire.htm" ADD_DATE="1255423019">Achat / vente d&#39;un véhicule d&#39;occasion, établissement d&#39;une nouvelle carte grise</A>
<DT><A HREF="http://www.forum-auto.com/moto/section24/sujet262684.htm" ADD_DATE="1248861606">Fazer (600, 1000, FZ6, FZ6 S2, FZ1) [topic officiel] - Les Tréteaux Topics officiels motos - FORUM Les Tréteaux - FORUM Moto</A>
<DT><A HREF="http://www.scribd.com/doc/10283675/Yamaha-Fazer-FZ6-S2-2007-Service-Manual-ENG" ADD_DATE="1248861942">Yamaha Fazer FZ6 S2 2007 Service Manual ENG</A>
<DT><A HREF="http://ymenvom.nl/search.php" ADD_DATE="1248862160">Search manuals</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Stinger</H3>
<DL><p>
<DT><A HREF="http://www.leboncoin.fr/vi/56990497.htm?ca=12_s" ADD_DATE="1249386888">Collecteur kawasaki pour zxr 750 modele 90 Equipement Auto / Moto Bouches du Rhône - leboncoin.fr</A>
<DT><A HREF="http://www.leboncoin.fr/vi/56983785.htm?ca=12_s" ADD_DATE="1249386918">Collecteur inox zxr 750 Equipement Auto / Moto Haute Marne - leboncoin.fr</A>
<DT><A HREF="http://www.leboncoin.fr/vi/56412838.htm?ca=12_s" ADD_DATE="1249386945">Pot d&#39;échappement d&#39;origine Equipement Auto / Moto Rhône - leboncoin.fr</A>
<DT><A HREF="http://www.leboncoin.fr/vi/54955910.htm?ca=12_s" ADD_DATE="1249386990">Pieces GPZR Z RS DR CBR BO ZXR DT ZZR Equipement Auto / Moto Seine Maritime - leboncoin.fr</A>
</DL><p>
<DT><A HREF="http://www.moto-station.com/article6679.html" ADD_DATE="1251463555">Pneu moto : Tout ce que vous avez toujours voulu savoir... - Moto Station</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Android_Example</H3>
<DL><p>
<DT><A HREF="http://www.tomgibara.com/android/camera-source" ADD_DATE="1251728391">Obtaining a Live Camera Preview in Android</A>
<DT><A HREF="http://p2p.wrox.com/book-professional-android-application-development-isbn-978-0-470-34471-2/72528-article-using-android-camera.html" ADD_DATE="1251878848">Article: Using the Android Camera</A>
<DT><A HREF="http://www.androidsnippets.org/snippets/57/" ADD_DATE="1251976946">Android Snippets: Auto completion for multiple selections from stored contacts on phone</A>
<DT><A HREF="http://developerlife.com/tutorials/?cat=41" ADD_DATE="1251978979">developerlife Tutorials » Android</A>
<DT><A HREF="http://blogoscoped.com/archive/2007-11-19-n27.html" ADD_DATE="1251984347">How to Program Google Android</A>
<DT><A HREF="http://mobiforge.com/developing/story/sms-messaging-android" ADD_DATE="1252076649">SMS Messaging in Android | mobiForge</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Archos</H3>
<DL><p>
<DT><A HREF="http://android-dls.com/wiki/index.php?title=Android_FAQ" ADD_DATE="1252334819">Android FAQ - Android Wiki</A>
<DT><A HREF="http://developer.android.com/intl/fr/guide/appendix/faq/index.html" ADD_DATE="1252334845">FAQs, Tips, and How-to | Android Developers</A>
<DT><A HREF="http://developer.android.com/intl/fr/guide/basics/what-is-android.html" ADD_DATE="1252334881">What is Android? | Android Developers</A>
<DT><A HREF="http://developer.android.com/intl/fr/guide/appendix/faq/licensingandoss.html" ADD_DATE="1252334904">Android Open Source Licensing FAQ | Android Developers</A>
<DT><A HREF="https://agora.cs.illinois.edu/display/cs428sp08/Android+FAQ" ADD_DATE="1252335015">Android FAQ - CS 428 Spring 2008 - The Computer Science Agora</A>
</DL><p>
<DT><A HREF="http://www.anddev.org/mjpeg_on_android_anyone-t1871.html" ADD_DATE="1252396851">MJPEG on Android</A>
<DT><A HREF="http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html" ADD_DATE="1252413846">Android Developers Blog: Updating Applications for On-screen Input Methods</A>
<DT><A HREF="http://openhandsetmagazine.com/2007/11/tips-howto-connect-android-emulator-behind-proxy/" ADD_DATE="1252943587">Tips: Howto Connect Android Emulator behind proxy | Open Handset Magazine</A>
<DT><A HREF="http://modmygphone.com/wiki/index.php/Main_Page" ADD_DATE="1252944710">Main Page - ModMyGPhone Wiki</A>
<DT><A HREF="http://www.androidsnippets.org/" ADD_DATE="1254922016">Android Snippets: Welcome</A>
<DT><A HREF="http://code.google.com/p/apps-for-android/" ADD_DATE="1255596831">apps-for-android - Project Hosting on Google Code</A>
<DT><A HREF="http://code.google.com/p/shelves/" ADD_DATE="1255596997">shelves - example using DB</A>
<DT><A HREF="http://groups.google.com/group/android-ndk/browse_thread/thread/d6c5e8f25f1ee543" ADD_DATE="1255610299">Logging - android-ndk | Google Groupes</A>
<DT><A HREF="http://www.inter-fuser.com/2009/09/live-camera-preview-in-android-emulator.html" ADD_DATE="1255944145">Live camera preview in the Android emulator</A>
<DT><A HREF="http://code.google.com/p/android-axis/" ADD_DATE="1259833607">android-axis - Project Hosting on Google Code</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="1263200025">Axis</H3>
<DL><p>
<DT><A HREF="http://www.axis.com/techsup/cam_servers/tech_notes/live_video_medium.htm" ADD_DATE="1253087839">Axis Communications - Network Video Support</A>
<DT><A HREF="http://www.axis.com/techsup/cam_servers/dev/cam_http_api_index.php" ADD_DATE="1262875792">VAPIX</A>
</DL><p>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Unix Tips</H3>
<DL><p>
<DT><A HREF="http://unixlab.blogspot.com/2009/08/using-multiple-widow-managers-with.html" ADD_DATE="1251792545">Using multiple window managers with nested Xserver</A>
<DT><A HREF="http://blogs.techrepublic.com.com/opensource/?p=883" ADD_DATE="1251793040">Mirroring Web sites with wget</A>
<DT><A HREF="http://www.andesi.org/noyau/noyau" ADD_DATE="1252676165">Andesi - noyau:noyau</A>
<DT><A HREF="http://www.packtpub.com/article/create-local-ubuntu-repository-using-apt-mirror-apt-cacher" ADD_DATE="1249375828">Create a Local Ubuntu Repository using Apt-Mirror and Apt-Cacher</A>
<DT><A HREF="http://www.debian-administration.org/articles/128" ADD_DATE="1255104974">Testing network connectivity</A>
<DT><A HREF="http://www.debianadmin.com/step-by-step-tutorial-howto-compile-kernel-in-debian-5-0-lenny.html" ADD_DATE="1248855969">Step by Step tutorial howto compile kernel in Debian 5.0 (Lenny) -- Debian Admin</A>
<DT><A HREF="http://www.cs.utah.edu/~swalton/listings/sockets/programs/" ADD_DATE="1256824491">Linux Sockets: Book Programs</A>
<DT><A HREF="http://www.linux.com/archive/articles/55617" ADD_DATE="1258973444">Create a secure Linux-based wireless access point</A>
</DL><p>
<DT><A HREF="http://code.google.com/p/flot/" ADD_DATE="1247214000">flot - Google Code</A>
<DT><A HREF="http://freefall.purrsia.com/default.htm" ADD_DATE="1247665799">Freefall 01753 July 15, 2009</A>
<DT><A HREF="http://www.vex.net/~x/python_and_vim.html" ADD_DATE="1247674490">Notes on using Vim with Python</A>
<DT><A HREF="http://code.google.com/p/live-android/" ADD_DATE="1247742284">live-android - Google Code</A>
<DT><A HREF="http://www.dedoimedo.com/computers/kdump.html" ADD_DATE="1248097280">Collecting and analyzing Linux kernel crashes - Kdump</A>
<DT><A HREF="https://wiki.ubuntu.com/Packaging/Training/Logs/2009-07-23" ADD_DATE="1248354519">Packaging/Training/Logs/2009-07-23 - Ubuntu Wiki</A>
<DT><A HREF="http://indlovu.bundublog.com/2009/07/26/cubuntu-console-ubuntu-part-iid/" ADD_DATE="1248683611">Cubuntu - Console Ubuntu part II | Indlovu</A>
<DT><A HREF="http://blocnotelinux.blogspot.com/2008/12/jouer-duke-nukem-3d-sous-ubuntu-810.html" ADD_DATE="1248773282">Bloc Note Linux: Jouer à Duke Nukem 3D sous Ubuntu 8.10</A>
<DT><A HREF="http://ubunteros.tuxfamily.org/spip.php?article142" ADD_DATE="1248784217">Carte ATI Radeon sous Debian - Linux On The Root !</A>
<DT><A HREF="http://forum.xda-developers.com/" ADD_DATE="1250513011">xda-developers - Powered by vBulletin</A>
<DT><A HREF="http://www.pengutronix.de/software/ptxdist/index_en.html" ADD_DATE="1251117713">Pengutronix - PTXdist</A>
<DT><A HREF="http://buildbot.net/trac" ADD_DATE="1251131419">Buildbot</A>
<DT><A HREF="http://linuxtogo.org/gowiki/Angstrom/qemu-system-arm" ADD_DATE="1251188044">Angstrom/qemu-system-arm - GoWiki</A>
<DT><A HREF="http://tuxarena.blogspot.com/2009/08/complete-guide-configure-and-customise.html" ADD_DATE="1251712422">TuxArena: Complete Guide: Configure and Customise ioQuake 3 in Linux</A>
<DT><A HREF="http://forums.precentral.net/homebrew-apps/199299-new-app-pre-dungeon-quest-8.html" ADD_DATE="1252331763">Dungeon Quest - Page 8 - PreCentral Forums</A>
<DT><A HREF="http://forum.xda-developers.com/showthread.php?t=442480" ADD_DATE="1252490641">How-to- Root, Hack, and Flashing your G1/Dream Read first!! - xda-developers</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Projets android SDK/NDK</H3>
<DL><p>
<DT><A HREF="http://jacob.hoffman-andrews.com/android/" ADD_DATE="1255596308">Jacob Hoffman-Andrews&#39; Android stuff</A>
<DT><A HREF="http://android.wooyd.org/" ADD_DATE="1255596194">VoiDroid (VoIP client for Android)</A>
</DL><p>
<DT><A HREF="http://www.monandroid.fr/wp/2009/10/14/remplacer-limage-sfr-du-boot-du-htc-magic/#more-158" ADD_DATE="1255695192">Remplacer limage SFR du boot du HTC Magic » MonAndroid.fr</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Traitement Image</H3>
<DL><p>
<DT><A HREF="http://www.jhlabs.com/ip/filters/index.html" ADD_DATE="1256038597">Jerry&#39;s Java Image Processing Pages</A>
<DT><A HREF="http://code.google.com/p/jjil/" ADD_DATE="1256043854">Imaging Library JAVA</A>
<DT><A HREF="http://www.morethantechnical.com/2009/08/09/near-realtime-face-detection-on-the-iphone-w-opencv-port-wcodevideo/" ADD_DATE="1257154514">Near realtime face detection on the iPhone w/ OpenCV port [w/code,video] | More Than Technical</A>
<DT><A HREF="http://www.computer-vision-software.com/blog/2009/04/opencv-vs-apple-iphone/" ADD_DATE="1257154523">Computer Vision Software » Blog Archive » OpenCV vs. Apple iPhone</A>
<DT><A HREF="http://www.computer-vision-software.com/blog/2009/03/arm-wrestling-with-opencv/" ADD_DATE="1257154528">Computer Vision Software » Blog Archive » ARM-wrestling with OpenCV</A>
<DT><A HREF="http://www.computer-vision-software.com/blog/2009/04/fixing-opencv/" ADD_DATE="1257154534">Computer Vision Software » Blog Archive » “Fixing” the OpenCVs implementation of Viola-Jones algorithm</A>
<DT><A HREF="http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome" ADD_DATE="1257154553">WebHome &lt; Motion &lt; Foswiki</A>
</DL><p>
<DT><A HREF="http://groups.google.com/group/android-developers/browse_thread/thread/235b3063a1656cf2/19afa9c47cc5bbd8" ADD_DATE="1256048451">Passing complicated datastructures from one activity to another - Android Developers | Google Groupes</A>
<DT><A HREF="http://www.linux-mag.com/cache/7568/1.html" ADD_DATE="1256291856">Encrypted Home Directory</A>
<DT><H3 ADD_DATE="1262680673" LAST_MODIFIED="0">Android System</H3>
<DL><p>
<DT><A HREF="http://wiki.smartphonefrance.info/(X(1)S(pbxbbfjlx3iwgd550h3o21ra))/firmware-htcmagic.ashx" ADD_DATE="1257504801">Firmware Smartphone France pour HTC Magic - Android &amp; Windows Mobile pour les nuls</A>
<DT><A HREF="http://wiki.smartphonefrance.info/(S(bvtpkda3a55b0tzilgt3w0ip))/root-htcmagic.ashx?NoRedirect=1" ADD_DATE="1257504929">Passer en mode Root un HTC Magic SFR - Android &amp; Windows Mobile pour les nuls</A>
</DL><p>
<DT><A HREF="http://www.deanmorriscards.co.uk/greeting-cards-1/smile-please-2/" ADD_DATE="1258100945">Smile Please : Dean Morris Cards, Greeting Cards, Keyrings &amp; Fridge Magnets</A>
<DT><A HREF="http://symlink.me/projects/" ADD_DATE="1258714388">Projets - SymLink Me</A>
<DT><A HREF="https://www.grc.com/passwords.htm" ADD_DATE="1258980323">Security Password Generator  </A>
<DT><A HREF="http://immersion.fr/index.php?page=shop.product_details&flypage=flypage.tpl&product_id=205&category_id=83&option=com_virtuemart&Itemid=5&lang=en" ADD_DATE="1258981146">PHANTOM Omni Developer Kit</A>
<DT><A HREF="http://wireless.kernel.org/en/users/Drivers" ADD_DATE="1258982470">Drivers - Linux Wireless - Status</A>
<DT><A HREF="http://home.comcast.net/~fbui/fwe.html" ADD_DATE="1259143372">Frugal Windowing Environment (FWE)</A>
<DT><A HREF="http://8086.tk/" ADD_DATE="1259144511">instruction x86</A>
<DT><A HREF="http://forum.hardware.fr/hfr/OrdinateursPortables/portables/wireless-minipci-adapter-sujet_21606_1.htm" ADD_DATE="1259152657">Intel® PRO/Wireless 2915ABG MiniPCI Adapter - Portables - Ordinateurs portables - FORUM HardWare.fr</A>
<DT><A HREF="http://forum.ubuntu-fr.org/viewtopic.php?id=276821" ADD_DATE="1259585781">Forum Ubuntu-fr.org / MultiBoot LiveUSB &amp; ModCustom LiveCD</A>
<DT><A HREF="http://fasmz.org/~pterjan/blog/" ADD_DATE="1259602717">pterjan&#39;s diary</A>
<DT><A HREF="http://blog.dipinkrishna.info/2009/12/crack-copy-protected-pdfs-using-two.html" ADD_DATE="1259843876">Linux Tips: Crack copy protected PDFs using two simple commands in Ubuntu</A>
<DT><A HREF="http://irclogs.ubuntu.com/" ADD_DATE="1260348246">Index of /</A>
<DT><A HREF="http://www.catonmat.net/blog/i-pushed-30-of-my-projects-to-github/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+catonmat+%28good+coders+code%2C+great+reuse%29&utm_content=Netvibes" ADD_DATE="1260452121">I pushed 30 of my projects to GitHub - good coders code, great reuse</A>
<DT><A HREF="http://news.ycombinator.com/" ADD_DATE="1260452400">Hacker News</A>
<DT><A HREF="http://ftp.traduc.org/doc-vf/gazette-linux/html/2005/120/lg120-C.html" ADD_DATE="1262623018">Un répondeur téléphonique sous Linux pour moins de 9 euros</A>
</DL><p>

106
clouds.pl Normal file
View File

@ -0,0 +1,106 @@
#!/usr/bin/perl
#
# A ajouter dans /etc/crontab
# 49 2,5,8,11,14,17,20,23 * * * perl /usr/local/bin/clouds.pl
#49 2,5,8,11,14,17,20,23 * * * mathieu perl /usr/local/bin/clouds.pl > /home/mathieu/xplanetclouds.log
# ------------------------------------------------------------------------------------
# Program for downloading XPlanet cloud images from a random mirror
#
# Copyright (c) 2003, cueSim Ltd. http://www.cueSim.com, Bedford, UK
#
# ------------------------------------------------------------------------------------
#
# Redistribution and use, with or without modification, are permitted provided
# that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Neither the cueSim name nor the names of its contributors may
# be used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
# SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# (2005-06) hacked by mose at nguild.org for personal use on a debian SID
# (2008-08) hacked by benhaim_jerome at yahoo.fr for personal use on a ubuntu Hardy
use LWP::Simple;
# Options:
# - ou sauvegarder l'image des nuages (par defaut le répertoire courant)
#
my $Filename = "/home/mathieu/.xplanet/images/clouds.jpg";
# - fréquences de mise à jour de l'image sur le serveur
my $MaxDownloadFrequencyHours = 2;
# - Combien d'essais, si le serveur ne répond pas
my $MaxRetries = 3;
## Note: excessive requests to a single image server is discouraged.
## This script limits max retries, does not download more frequently
## than every two hours (the file is generated every 3 hours). and
## picks a random mirror location for every download.
##
## Changer les paramètres risque de vous exclure (blacklisted)
## des serveurs d'images
if(-f $Filename) {
my @Stats = stat($Filename);
my $FileAge = (time() - $Stats[9]);
my $FileSize = $Stats[7];
if($FileAge < 60 * 60 * $MaxDownloadFrequencyHours && $FileSize > 400000) {
print "File is already up to date\n";
exit(1);
}
}
for(1..$MaxRetries) {
my $MirrorURL = GetRandomMirror();
print "Using $MirrorURL\nDownloading...\n";
my $Response = getstore($MirrorURL, $Filename);
if( IndicatesSuccess($Response)) {
print "Finished: file successfully downloaded to $Filename\n";
exit(0);
}
print "Download not available, trying another website\n\n";
}
print "ERROR: Tried to download the file $MaxRetries times, but no servers could provide the file\n";
exit(2);
sub IndicatesSuccess() {
my $Response = shift();
if($Response =~ /2\d\d/) {
return(1);
} else {
return(0);
}
}
## Liste des serveurs miroir
sub GetRandomMirror() {
my @Mirrors = (
"http://xplanet.arculeo.com/clouds_2048.jpg",
"http://xplanet.sourceforge.net/clouds/clouds_2048.jpg",
"http://www.ruwenzori.net/earth/clouds_2048.jpg",
"http://xplanet.dyndns.org/clouds/clouds_2048.jpg",
"http://userpage.fu-berlin.de/~jml/clouds_2048.jpg",
"http://userpage.fu-berlin.de/~jml/clouds_4096.jpg",
"http://php.nctu.edu.tw/~ijliao/clouds_2048.jpg",
"http://home.megapass.co.kr/~gitto88/cloud_data/clouds_2048.jpg",
"http://home.megapass.co.kr/~holywatr/cloud_data/clouds_2048.jpg",
"ftp://ftp.iastate.edu/pub/xplanet/clouds_2048.jpg",
"http://xplanet.explore-the-world.net/clouds_2048.jpg",
"ftp://mirror.pacific.net.au/xplanet/clouds_2048.jpg",
"http://www.narrabri.atnf.csiro.au/operations/NASA/clouds_2048.jpg",
);
return $Mirrors[rand scalar(@Mirrors)];
}

41
conkyrcExample Normal file
View File

@ -0,0 +1,41 @@
#background no
#out_to_console yes
#total_run_times 0
#no_buffers yes
#uppercase no
#update_interval 5
#maximum_width 1
#Avoid flicker
double_buffer yes
#own window to run simultanious 2 or more conkys
#on_bottom no
own_window yes
own_window_transparent yes
own_window_type override
own_window_hints undecorate,sticky,skip_taskbar,skip_pager
#borders
draw_borders no
border_margin 0
#shades
draw_shades no
#position
gap_x 0
gap_y 4
alignment top_middle
#behaviour
update_interval 5
#colour
default_shade_color 000000
own_window_colour 3d414c
#font
use_xft yes
xftfont snap:pixelsize=12
#to prevent window from moving
use_spacer no
#maximum_size 1280 0
TEXT
${alignc}${color cyan}:: ${color orange}Kernel: ${color D7D3C5}$kernel ${color cyan}:: ${color D7D3C5}${time %H:%M %d/%m/%y} ${color cyan}:: ${color orange}Cpu1: ${color D7D3C5}${cpu cpu1}% ${cpubar 6,50 AEA08E 9F907D} ${color D7D3C5} == ${color orange}Cpu2: ${color D7D3C5}${cpu cpu2}% ${cpubar 6,50 AEA08E 9F907D} ${color D7D3C5} ${color cyan}:: ${color orange}Mem: ${color D7D3C5}$mem/$memmax - $memperc% ${membar 6,50}${color D7D3C5} ${color cyan}:: ${color orange}Net: ${color green}${downspeed eth0} ${color D7D3C5}Kb/s ${downspeedgraph eth0 8,50 AEA08E 9F907D} ${color D7D3C5} ${totaldown eth0} ${color purple}down ${color D7D3C5}- ${color red}${upspeed eth0} ${color D7D3C5}Kb/s ${upspeedgraph eth0 8,50 green 9F907D} ${color 909090}${totalup eth0} ${color purple}up ${color cyan}::
${alignc}${color cyan}:: ${color orange}Temperature: ${color D7D3C5}${acpitemp} C ${color cyan}:: ${color orange}Battery: ${color D7D3C5}${battery}-${battery_time} ${color cyan}:: ${color orange}terra: ${color D7D3C5}${font}${fs_free /} / ${fs_size /} - ${fs_free_perc /}% ${color orange}mercury: ${color D7D3C5}${fs_free /mnt/mercury} / ${fs_size /mnt/mercury} - ${fs_free_perc /mnt/mercury}% ${color cyan}::

43
conkyrcExample2 Normal file
View File

@ -0,0 +1,43 @@
#Avoid flicker
double_buffer yes
#own window to run simultanious 2 or more conkys
#on_bottom no
own_window yes
own_window_transparent yes
own_window_type override
own_window_hints undecorate,sticky,skip_taskbar,skip_pager
#borders
draw_borders no
border_margin 0
#shades
draw_shades no
#position
gap_x 0
gap_y 0
alignment bottom_middle
#behaviour
update_interval 5
#colour
default_color 7CE56D
#default_shade_color 000000
own_window_colour 3d414c
#font
use_xft yes
xftfont snap:pixelsize=12
#to prevent window from moving
use_spacer no
#minimum_size 1280 0
TEXT
${alignc}${color cyan}:: ${color orange}Email: ${color D7D3C5}${pop3_unseen } - ${color cyan}G${color red}m${color yellow}a${color cyan}i${color green}l${color d7d3c5}: ${execi 50 python gmail.py} ${color cyan}:: ${color orange}Weather: ${color D7D3C5} ${execi 1800 weatherget -f ~/.conkyweatherrc -s GRXX0004 --metric } ${color cyan}:: ${color orange}Up: ${color D7D3C5}${uptime_short} ${color cyan}:: ${color orange}Processes: ${color D7D3C5}$processes : $running_processes ${color cyan}:: ${color orange}Top CPU usage: ${color ddaa00 } ${top name 1}:${top cpu 1} - ${color white} ${top name 2}:${top cpu 2} ${color cyan}:: ${color orange}

Binary file not shown.

227
default Normal file
View File

@ -0,0 +1,227 @@
# This file contains options you might want to customize for each
# body. It's best to leave this file alone and modify a copy. Use the
# -config option to tell xplanet to read your copy.
[default] # Values in this section apply to all
# bodies unless overridden below.
arc_color=white
#arc_file=
#bump_map=
bump_scale=1
cloud_gamma=1
#cloud_map=
cloud_ssec=false # true if the cloud map is from the
# University of Wisconsin Space
# Science and Engineering Center
cloud_threshold=90
color={255,255,255} # fallback color in case an image map
# isn't found
draw_orbit=false # if true, draw this body's orbit
# about its primary
grid=false
grid1=6
grid2=15
#image=
magnify=40 # draw the body as if its radius were
# magnified by this factor
marker_color=red
#marker_file=
#marker_font=
max_radius_for_label=3 # don't draw a label if the body's
# radius in pixels is more than this
min_radius_for_label=.01 # don't draw a label if the body's
# radius in pixels is less than this
min_radius_for_markers=40 # don't draw markers if the body's
# radius in pixels is less than this
#night_map=
orbit={-.5,.5,2} # extent of orbit to draw,
# {start, end, delta}, where
# start and end are in units of period
# of revolution and delta is angular
# increment in degrees to evaluate
# position
orbit_color={255,255,255} # color for the orbit
random_origin=true # Can this body be considered if
# -origin random is used?
random_target=true # Can this body be considered if
# -target random is used?
#satellite_file=
shade=30 # 0 = black, 100 = same as dayside
#specular_map=
text_color={255,0,0} # color for text (markers & body label)
twilight=6 # blend the day and night images for
# pixels within this many degrees of
# the terminator
[sun]
"Sun"
color={255,255,166}
max_radius_for_label=0 # never draw a label for the sun
shade=100 # No night side!
[mercury]
"Mercury"
color={100, 100, 100}
min_radius_for_label=0 # always draw a label
[venus]
"Venus"
color={161, 129, 70}
min_radius_for_label=0
[earth]
"Earth"
color={28, 82, 110}
cloud_map=clouds.jpg
# I have day and night maps of Australia centered on Alice Springs,
# which are cropped from higher resolution maps.
#map=alice_springs.png
#night_map=alice_springs_night.png
#mapbounds={-1.2,98.7107,-46.2,169.023} # lat1, lon1, lat2, lon2
#marker_file=earth
min_radius_for_label=0
#satellite_file=iss
[moon]
"Moon"
color={100, 100, 100}
[mars]
"Mars"
color={172, 123, 67}
min_radius_for_label=0
[phobos]
"Phobos"
[deimos]
"Deimos"
[jupiter]
"Jupiter"
color={204, 163, 133}
min_radius_for_label=0
[io]
"Io"
color={212, 182, 52}
[europa]
"Europa"
color={140, 140, 140}
[ganymede]
"Ganymede"
color={150, 150, 150}
[callisto]
"Callisto"
color={70, 70, 70}
[saturn]
"Saturn"
color={244, 199, 134}
min_radius_for_label=0
[mimas]
"Mimas"
[enceladus]
"Enceladus"
[tethys]
"Tethys"
[dione]
"Dione"
[rhea]
"Rhea"
[titan]
"Titan"
color={252,94,7}
[hyperion]
"Hyperion"
[iapetus]
"Iapetus"
[phoebe]
"Phoebe"
[uranus]
"Uranus"
color={105, 197, 238}
min_radius_for_label=0
[miranda]
"Miranda"
[ariel]
"Ariel"
[umbriel]
"Umbriel"
[titania]
"Titania"
[oberon]
"Oberon"
[neptune]
"Neptune"
color={95, 133, 232}
min_radius_for_label=0
[triton]
"Triton"
[nereid]
"Nereid"
[pluto]
"Pluto"
color={206, 180, 153}
min_radius_for_label=0
[charon]
"Charon"

View File

@ -1,6 +1,6 @@
#!/bin/bash
for i in $(ls -lA| awk '{print $8}'| grep -e "^\."| grep -v "git"|grep -v "swp")
for i in $(ls -lA| awk '{print $9}'| grep -e "^\."| grep -v "git"|grep -v "swp")
do
echo "ln -s $PWD/$i $HOME/$i"
done

45
models/model.tex Normal file
View File

@ -0,0 +1,45 @@
\documentclass[a4paper,10pt]{report}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage[bookmarks=false,colorlinks,linkcolor=blue]{hyperref}
\usepackage[utf8]{inputenc}
\pagestyle{fancy}
\fancyhf{}
\lhead{OpenWide}
\rhead{\today}
\chead{}
\cfoot{\thepage}
% Title Page
\title{E-Compagnon et SisellDroid}
\author{Mathieu Maret}
\begin{document}
\maketitle
\begin{abstract}
Ce document présente SisellDroid, une application de visualisation de webcam pour plateforme android réalisé dans le cadre du projet e-compagnon.
\end{abstract}
\tableofcontents
\chapter{Présentation de SisellDroid}
Dans le cadre du projet e-compagnon, OpenWide en partenarie avec Archos developpe des applications pour la plateform Android.
\chapter{Taches effectuées}
\section[camera]{Gestion des caméras}
\chapter{Prochaines évolutions}
\end{document}

36
sources.list Normal file
View File

@ -0,0 +1,36 @@
#
# deb cdrom:[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 CD Binary-1 20090214-16:29]/ lenny main
#deb cdrom:[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 CD Binary-1 20090214-16:29]/ lenny main
#depot a la con
deb http://nosuchfile.org/debian lenny main
#deb http://vlab:9999/debian stable main contrib
##Dépôts multimédia
deb http://www.debian-multimedia.org/ lenny main
deb http://ftp.fr.debian.org/debian/ lenny main
deb-src http://ftp.fr.debian.org/debian/ lenny main
deb http://ftp.fr.debian.org/debian/ lenny contrib non-free
deb http://security.debian.org/ lenny/updates main
deb-src http://security.debian.org/ lenny/updates main
deb http://volatile.debian.org/debian-volatile lenny/volatile main
deb-src http://volatile.debian.org/debian-volatile lenny/volatile main
#wine
#deb http://www.lamaresh.net/apt lenny main
#Scratchbox
deb http://scratchbox.org/debian stable main
deb http://scratchbox.org/debian legacy main
#virtual box
deb http://download.virtualbox.org/virtualbox/debian lenny non-free

31
sun_vbox.asc Normal file
View File

@ -0,0 +1,31 @@
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.6 (GNU/Linux)
mQGiBEh7C8oRBACtOAieuw71PWaeBpi3djCX2sbZ3pqvfMsTaUb4E8Jo6ylC5xOa
rc4PUQt5/fHaFwOgP+MF11pt8LunY7nXgFNufmXWxAwjaB26EqAF9CytxJS7viu9
tjEFqWQIL+2GHE1sEAevr8EvVr7fnmCUuY06nb1WvaOlL1VO2DAs+aJ2fwCguhlZ
ozqrrFyhO7XjRX9imHXbIvsD/2ntslEsaYgnTaNAOCGVUZi4kUQKVZrELgYpLo0Z
Wq6fbAskgI5qFe4XgP0TqLoI4KLg5OaMXdWDhboaJ3Ln9JgQnjLS3fJG75Lu3QF/
6nPWYKcuQILLOcsXPthHDxyvRqTv5uUmiNRSDJSMLMA2LgUjzKJ7mEzDZ/uL8jZq
jfR2A/9r+H4wct/YS0Xmm2JWZxDlT+D27zF0zKzHVINr2eSK8K5mIhOZxAJN37ay
qVcegz23JII3MQKOuvuH7pBzGEY1IiT6gvAI7WjVm+pRU+TarVwytoANWOvTWfid
2Y/OgClJ4iqnhj/egM/c3A7KrGG4Q/Tj1rHqnB+rRilVoYQbaLRRU3VuIE1pY3Jv
c3lzdGVtcywgSW5jLiAoeFZNIFZpcnR1YWxCb3ggYXJjaGl2ZSBzaWduaW5nIGtl
eSkgPGluZm9AdmlydHVhbGJveC5vcmc+iGAEExECACAFAkh7C8oCGwMGCwkIBwMC
BBUCCAMEFgIDAQIeAQIXgAAKCRDc+fh7bfvLrnOHAJwLYTeiZC3HyO6758GKiMHZ
2VTO5gCfXb1PdW17wqGKz5nyka9qpjOAs2C5Ag0ESHsL0BAIAKVaUE5yk8vsXkbj
CPxrs2R7XuqrLp2/KSdjV7wi1dhwOgFUNObNMsK3K683mxmMnT65mJ/HqiXgW9WY
5PgLzrHnEA27O7v2ol3O86wkr5BHaaStsLpkDIMItywjPqZkp7KHFDRXrhGTiHLg
0D6YQB/+GRlxWZTAmB6F+ZGwQj3k9+q7kUd5Gj+LbmC6RA/7yrxgLgCRpdbilGQd
xV2mGanX2qoA0Fu1nVXDWw3lPU95za3iAXVle89YRNFRK2WxV0hIFhqA/DndR1Y8
M9fL4jDYXRtbDnUTkhfZiH9MiuDVSzcXN0cUApaovLlnvDaPB7iLTi8SmIMdO6YY
ME7JwCsAAwUIAISgj2zdQC4TilbTGifMMJ0m3dVbjaoApuTaQc+vulCIhr/rf1DN
V7gtLNd+CRx67xtyVKfxPWL5vBL9OBCWcCdYY2iCplXv8gUZmwRtTN/B0+Ce07Re
+bWUe/wBl7z6YBYQnmtOxK55OXEgzv3/wL7L8Mt3co8AeO1qy4kM66JFnq8Scw81
Axx4lcIPW1q17moygSwD/1YbEgFMQHs/8V8aqB9xIs5yOdsA4VWj32V7ymW2V+sx
4oKoiZiYuGZOjgGpZlQMxgUaORO0PPRSqnCmuV9zujmd28Fljdrb+WDvc/xDwiKg
nN/FKpMczPur8keOGpPSeUmZPaxkNmKbqGyISQQYEQIACQUCSHsL0AIbDAAKCRDc
+fh7bfvLronZAKCfiCvC2s61vA1x/YJ9QUPn4lCpjgCbB4dSVAHE/imWR02yFhqz
32NqKPU=
=FQ5T
-----END PGP PUBLIC KEY BLOCK-----

63
xplanet-bg Executable file
View File

@ -0,0 +1,63 @@
#!/bin/bash
# xplanet-gnome.sh shell script v0.2
# Montre la Terre sur le bureau Gnome avec les condition courante d'éclairage,ex: le jour et la nuit
# délai de mise à jour en minutes
DELAY=10
# Répertoire racine de xplanet
PREFIX=~/.xplanet/
# Non du fichier images créer
OUTPUT=xplanet.png
# origine et look_at ne peuvent etre les mêmes
# modifier ORIGINE pour donner la planete d'où vous regardez
# modifier LOOK_AT pour changer la planete que vous regardez
ORIGINE=moon
LOOK_AT=earth
APPEND=2
# Géométrie de l'image à régler suivant la résolution du bureau
GEOMETRY=1280x1024
# Si vous utilisez un dock pour votre portable (et avez donc plusieurs résolutions
# d'écran suivant si vous êtes en vadrouille ou au bureau), commentez la ligne
# précédente et décommentez les trois suivantes
#XXX=`xdpyinfo|awk '$0~"dimensions"{print substr($0,match($0,/[[:digit:]]/),match($0,"x")-match($0,/[[:digit:]]/))}'`
#YYY=`xdpyinfo|awk '$0~"dimensions"{print substr($0,match($0,"x")+1,match($0,"pixel")-match($0,"x")-1)}'`
#GEOMETRY=${XXX}x${YYY}
# Position depuis où vous voulez regarder.
# Pour trouver la valeurs regarder dans les liens en fin de la page
# http://doc.ubuntu-fr.org/xplanet#Voir_aussi
# Nice L = 43.700° 43° 42'N; H = 7.266274° 7° 15E
LONGITUDE=7
LATITUDE=43
# Par defaut il n'y as pas de projection. Rendre un globe avec la projection rectangulaire en fait une carte à plat. vous pouvez aussi essayer : ancient, azimuthal, mercator,..
#PROJECTION=rectangular
# Renome l'image de fond ainsi Gnome réalise que l'image as changé - thx to dmbasso
if [ -e "$PREFIX$OUTPUT" ]; then
rm "$PREFIX$OUTPUT"
OUTPUT="$APPEND$OUTPUT"
else
rm "$PREFIX$APPEND$OUTPUT"
fi
if [ -z $PROJECTION ]; then
xplanet -num_times 1 -geometry $GEOMETRY -origin $ORIGINE -body $LOOK_AT -longitude $LONGITUDE -latitude $LATITUDE
else
xplanet -num_times 1 -geometry $GEOMETRY -origin $ORIGINE -body $LOOK_AT -longitude $LONGITUDE -latitude $LATITUDE -projection $PROJECTION
fi
# met à jour le fond d'écran de Gnome
#gconftool -t str -s /desktop/gnome/background/picture_filename "$PREFIX$OUTPUT"
sleep $DELAY
exec $0

232
xplanet.conf Normal file
View File

@ -0,0 +1,232 @@
# This file contains options you might want to customize for each
# body. It's best to leave this file alone and modify a copy. Use the
# -config option to tell xplanet to read your copy.
[default] # Values in this section apply to all
# bodies unless overridden below.
arc_color=white
#arc_file=
#bump_map=
bump_scale=1
cloud_gamma=1
#cloud_map=
cloud_ssec=false # true if the cloud map is from the
# University of Wisconsin Space
# Science and Engineering Center
cloud_threshold=90
color={255,255,255} # fallback color in case an image map
# isn't found
draw_orbit=false # if true, draw this body's orbit
# about its primary
grid=false
grid1=6
grid2=15
#image=
magnify=90 # draw the body as if its radius were
# magnified by this factor
marker_color=red
#marker_file=
#marker_font=
max_radius_for_label=3 # don't draw a label if the body's
# radius in pixels is more than this
min_radius_for_label=.01 # don't draw a label if the body's
# radius in pixels is less than this
min_radius_for_markers=40 # don't draw markers if the body's
# radius in pixels is less than this
#night_map=
orbit={-.5,.5,2} # extent of orbit to draw,
# {start, end, delta}, where
# start and end are in units of period
# of revolution and delta is angular
# increment in degrees to evaluate
# position
orbit_color={255,255,255} # color for the orbit
random_origin=true # Can this body be considered if
# -origin random is used?
random_target=true # Can this body be considered if
# -target random is used?
#satellite_file=
shade=30 # 0 = black, 100 = same as dayside
#specular_map=
text_color={255,0,0} # color for text (markers & body label)
twilight=6 # blend the day and night images for
# pixels within this many degrees of
# the terminator
[sun]
"Sun"
color={255,255,166}
max_radius_for_label=0 # never draw a label for the sun
shade=100 # No night side!
[mercury]
"Mercury"
color={100, 100, 100}
min_radius_for_label=0 # always draw a label
[venus]
"Venus"
color={161, 129, 70}
min_radius_for_label=0
[earth]
"Earth"
color={28, 82, 110}
cloud_map=clouds.jpg
#draw_orbit=true
#bump_map=bump.jpg
# I have day and night maps of Australia centered on Alice Springs,
# which are cropped from higher resolution maps.
#map=alice_springs.png
#night_map=alice_springs_night.png
#mapbounds={-1.2,98.7107,-46.2,169.023} # lat1, lon1, lat2, lon2
#marker_file=earth
min_radius_for_label=0
#satellite_file=iss
[moon]
"Moon"
color={100, 100, 100}
#draw_orbit=true
#orbit={-.51,.5,2}
[mars]
"Mars"
color={172, 123, 67}
#draw_orbit=true
min_radius_for_label=0
[phobos]
"Phobos"
[deimos]
"Deimos"
[jupiter]
"Jupiter"
color={204, 163, 133}
min_radius_for_label=0
[io]
"Io"
color={212, 182, 52}
[europa]
"Europa"
color={140, 140, 140}
[ganymede]
"Ganymede"
color={150, 150, 150}
[callisto]
"Callisto"
color={70, 70, 70}
[saturn]
"Saturn"
color={244, 199, 134}
min_radius_for_label=0
[mimas]
"Mimas"
[enceladus]
"Enceladus"
[tethys]
"Tethys"
[dione]
"Dione"
[rhea]
"Rhea"
[titan]
"Titan"
color={252,94,7}
[hyperion]
"Hyperion"
[iapetus]
"Iapetus"
[phoebe]
"Phoebe"
[uranus]
"Uranus"
color={105, 197, 238}
min_radius_for_label=0
[miranda]
"Miranda"
[ariel]
"Ariel"
[umbriel]
"Umbriel"
[titania]
"Titania"
[oberon]
"Oberon"
[neptune]
"Neptune"
color={95, 133, 232}
min_radius_for_label=0
[triton]
"Triton"
[nereid]
"Nereid"
[pluto]
"Pluto"
color={206, 180, 153}
min_radius_for_label=0
[charon]
"Charon"