Midagi mis viimasel ajal hinge on läinud
Share on Facebook
Share on Facebook
Kuna mul koguaeg läheb see mergemine meelest siis paar hinti endale siia.
1. svn co /path/to/your/svn/repo/your/branch/ projectname
2. Nüüd uuri välja revisioni number millal branch on tehtud (r-start) ja viimane revision sinu branchis (r-end)
3. svn merge -r r-start:r-end file:///path/to/your/svn/repo/your/branch/
4. svn ci -m “- sinu teade. Võiks sisaldada ka mergetud revisione”
* revert to some version – svn up [...]
Share on Facebook
Share on Facebook
To export, use:
gpg –armor –export mymail@here.com > public.asc
gpg –armor –export-secret-key mymail@here.com > private.asc
To import, use:
gpg –import public.asc
gpg –allow-secret-key-import private.asc
Share on Facebook
mysqldump -u root -p –opt –default-character-set=latin1 –insert-ignore –skip-set-charset DBNAME > DBNAME.sql
Then using sed I changed all occurrences of the word latin1 to utf8:
iconv -f ISO-8859-1 -t UTF-8 DBNAME.sql > DBNAME_new.sql
sed -e ’s/latin1/utf8/g’ -i ./DBNAME.sql
From here I then created the new database and then imported the dumpfile.
mysql -p -e “create database DBNAME”
mysql [...]
Name : sextractor
Arch : i386
Version: 2.5.0
Release: 5.fc8.1
Size : 577 k
Repo : extras
Summary: Extract catalogs of sources from astronomical images
Description:
SExtractor is a program that builds a catalogue of objects from an
astronomical image. Although it is particularly oriented towards
reduction of large scale galaxy-survey data, it performs rather
well on moderately [...]