Hallo an alle,
was würdet ihr mir für eine Linux Distribution empfehlen,
wenn ich sie in Kombination mit win-xp-home
(kann leider aus bestimmten gründen nicht auf windows
verzichten ;o( )
auf meinem Notebook installieren möchte.
Wo finde ich diese??? Falls es sie gratis gibt???
grüße
Abler Matthias
Deutscher Text folgt weiter unten.
[ ### ITALIANO ### ]
Ricordo a tutti che martedi' 04 marzo presso il ristorante/pizzeria
Gambrinus si terra' l'assemblea ordinaria, con la quale concludiamo
ufficialmente il 2007 e diamo inizio all'anno associativo 2008.
Come tutti gli anni all'assemblea verra' fatta un breve resoconto delle
attivita' svolte e degli obiettivi raggiunti.
Verra' presentata la pianificazione per l'anno 2008. Tale pianificazione
non e' definitiva e puo' sempre essere arricchita di nuovi suggerimenti.
Siete percio' tutti invitati a proporre nuove iniziative!
Inoltre Paolo Pierobon e Christian Peer presenteranno la situazione
finanziaria del LUGBZ.
Ordine del giorno:
- Riassunto 2007
- Incontri settimanali
- Workshops
- ILIAS Conference
- Grigliata LUGBZ
- SFScon 2007
- Bilancio
- Programma 2008
- Incontri settimanali
- Workshops
- DocumentFreedomDay
- Grigliata LUGBZ
- Installation Party in autunno
- Software Freedomday
- Varie
Vi aspettiamo numerosi!
LUGBZ
[ ### DEUTSCH ### ]
Ich erinnere alle, dass am Dienstag den 04. März im Restaurant/Pizzeria
Gambrinus die Vollversammlung stattfindet. Diese schließt offiziell das
Vereinsjahr 2007 ab und eröffnet das Vereinsjahr 2008.
Wie jedes Jahr wird der Jahresbericht vom erfolgreichen Vorjahr
präsentiert und die Jahresplanung verabschiedet. Die Jahresplanung ist
kein statisches Dokument. Jeder ist eingeladen seine Ideen einzubringen!
Paolo Pierobon und Christian Peer werden uns über die finanzielle Lage
unseres Vereins aufklären.
Tagesordnung:
- Jahresrückblick 2007
- Stammtische
- Workshops
- ILIAS Conference
- LUGBZ Grillfete
- SFScon 2007
- Bilanz
- Jahresprogramm 2008
- Stammtische
- Workshops
- DocumentFreedomDay
- LUGBZ Grillfete
- Installation Party im Herbst
- Software Freedomday
- Allfälliges
Wir freuen uns auf eine zahlreiche Präsenz!
LUGBZ
I am pleased to invite you to the following seminar of the Faculty of
Computer Science of Bolzano-Bozen.
The seminar takes place at P.za Sernesi, 1, room D101
For the complete list of the Faculty Seminar Series 2007/2008 and
additional information on how to reach us, please visit the web site
http://www.unibz.it/inf/csseminars_1/index.html?LanguageID=EN
07.03.08 14:30-15:30 - Free University of Bolzano-Bozen, P.za Sernesi,
1, room D101
Segmenting Customer Bases in Personalization Applications Using Direct
Grouping and Micro-Targeting Approaches
<http://www.unibz.it/printerversions/newsfull.html?LanguageID=EN&content
id=5241&pageid=11&PV=TRUE&SHOW_CMD=FALSE>
Alexander Tuzhilin, Stern School of Business, New York University
Abstract
It is crucial to segment customers intelligently in order to offer them
more targeted and personalized products and services. Traditionally,
customer segmentation is achieved using statistics-based methods that
compute a set of statistics from the customer data and group customers
into segments by applying clustering algorithms. In this talk an
alternative direct grouping approach is presented that groups customers
not based on computed statistics, but in terms of optimally combining
transactional data of several customers to build a predictive data
mining model of customer behavior for each segment. Then building
customer segments becomes a combinatorial optimization problem of
finding the best partitioning of the customer base into disjoint groups
that collectively yield the best performance of predicting customer
behavior across the constructed segments. It is shown that finding an
optimal customer partition is NP-hard, and several suboptimal direct
grouping segmentation methods are proposed and empirically compared
among themselves and also against traditional statistics-based
segmentation and 1-to-1 methods across multiple experimental conditions.
Also, a micro-targeting method is proposed as an extension of the direct
grouping method that builds predictive models of customer behavior not
on the segments of customers but rather on the customer-product groups.
It is shown empirically that micro-targeting significantly outperforms
the direct grouping and statistics-based segmentation methods across
multiple experimental conditions and that it generates predominately
small-sized segments, thus providing additional support for the
micro-targeting approach to personalization.
Joint work with Tianyi Jiang
CV:
Alexander Tuzhilin is a Professor of Information Systems and NEC Faculty
Fellow at the Stern School of Business, NYU. He received Ph.D. in
Computer Science from the Courant Institute of Mathematical Sciences,
NYU. His current research interests include knowledge discovery in
databases, personalization, recommendation, and CRM technologies. He
published widely in leading CS and IS journals and conference
proceedings. Dr. Tuzhilin served on program and organizing committees of
numerous CS and IS conferences, including as a Program Co-Chair of the
Third IEEE International Conference on Data Mining. He also served on
the Editorial Boards of the IEEE Transactions on Knowledge and Data
Engineering, the Data Mining and Knowledge Discovery Journal, the
INFORMS Journal on Computing (as an Area Editor), the Electronic
Commerce Research Journal and the Journal of the Association of
Information Systems. Results of Dr. Tuzhilin's various academic and
industrial activities were described in major media publications,
including The New York Times, The Wall Street Journal, Business Week,
The Financial Times and The Los Angeles Times.
Reference person: Francesco Ricci <mailto:%20Francesco.Ricci@unibz.it>
> ho un problema di shell programming che non riesco a risolvere.
> Forse uno
> di voi ha la soluzione.
>
> Il problema e' il seguente:
> Ho una pipeline di comandi, tipo "CC | SS" dove CC produce del
> output e SS
> e' un filtro che riformatta l'output di CC. Io voglio eseguire la
> pipe e
> salvarmi il valore di ritorno di CC.
>
> Ho provato i seguenti comandi:
> CC; retval=$? | SS
> Questo non funziona perche' la pipe usa l'output di "retval=$?" e
> non di CC.
> (CC; retval=$?) | SS
> Adesso SS elabora l'output di CC, ma la variabile retval non e'
> definita
> al di fuori delle parentesi, perche' le parentesi lanciano una sub-
> shell e
> non so come esportare variabili da li'.
Ciao,
se per caso lavori con una versione recente di bash, c'e` la variabile
speciale
PIPESTATUS che potrebbe fare per te:
mercurius:~ chris$ ls | grep -i sdfsf | bc
mercurius:~ chris$ echo ${PIPESTATUS[0]}
0
mercurius:~ chris$ ls | grep -i sdfsf | bc
mercurius:~ chris$ echo ${PIPESTATUS[1]}
1
mercurius:~ chris$ ls | grep -i sdfsf | bc
mercurius:~ chris$ echo ${PIPESTATUS[2]}
0
Bye,
Chris.
PS: qui ho provato con
GNU bash, version 3.2.17(1)-release (i386-apple-darwin9.0)
Ciao,
ho un problema di shell programming che non riesco a risolvere. Forse uno
di voi ha la soluzione.
Il problema e' il seguente:
Ho una pipeline di comandi, tipo "CC | SS" dove CC produce del output e SS
e' un filtro che riformatta l'output di CC. Io voglio eseguire la pipe e
salvarmi il valore di ritorno di CC.
Ho provato i seguenti comandi:
CC; retval=$? | SS
Questo non funziona perche' la pipe usa l'output di "retval=$?" e non di CC.
(CC; retval=$?) | SS
Adesso SS elabora l'output di CC, ma la variabile retval non e' definita
al di fuori delle parentesi, perche' le parentesi lanciano una sub-shell e
non so come esportare variabili da li'.
Background del problema:
Ho un Makefile che deve fermarsi al primo errore. Pero' io devo
riformattare l'output di $(CC). La regola di Make e' a grandi linee la
seguente:
%.o: %.c
$(CC) -c $(CFLAGS) -o $@ $< 2>&1 | sed -e 's/ome/thing/'
Essendo sed l'ultimo programma nella pipe, la shell ritorna il retvalue di
sed che e' sempre 0. Quindi make continua a compilare anche se c'e' un
errore.
Non posso fare la ridirezione del output in un file e poi riformattarlo,
perche' lo scopo di questo esercizio e' di avere un output 'cliccable' in
una IDE. Quindi non posso fermarmi subito quando $(CC) ritorna errore.
L'unica soluzione che ho trovato e' la seguente, ma e' veramente
inefficiente:
%.o: %.c
retval=0
$(CC) -c $(CFLAGS) -o $@ $< > /tmp/file 2>&1 || retval=1
sed -e 's/ome/thing/' /tmp/file
[ $$retval -eq 0 ]
Qualcuno ha un idea come potrei risolvere questo in meno righe di codice?
Ciao,
Thomas
Konnte das Programm duplicity und Part image nur für Linux finden. Gibt
diese Programme auch für Windows?
Wenn nicht gibt es zu duplicity etwas vergleichbares? möchte Dadeien 1:1
kopieren
Danke
--
Frowin Oberrauch
Landschaftsarchitektur
Penegalstr. 21/A; 39100 Bozen; Südtirol - Italien
tel/Fax +39 0471 204402 Mobil: 349 7267304
St.Nr. BRRFWN71E19I729G MwSt. 01662260213
Bankverbindung IT 52 D 08081 11600 000300046981
Mitteilung im Sinne des Datenschutzkodex (gesetzesvertretende Verordnung
196/2003): Dieses E-Mail ist ausschließlich für den angeführten
Adressaten bestimmt. Wer diese Mitteilung irrtümlicherweise erhält wird
gebeten uns zu benachrichtigen und diese Mitteilung zu vernichten.
Questo messaggio di posta elettronica può contenere informazioni di
carattere confidenziale e riservato rivolte esclusivamente al destinatario.
Ne sono vietati l'utilizzo, la diffusione e la riproduzione in qualsiasi
forma da parte di terzi. Se aveste ricevuto erroneamente questo messaggio,
siete pregati di segnalarlo immediatamente al mittente e distruggere
quanto ricevuto. È illegittimo qualsiasi uso non autorizzato del contenuto.
>Hallo,
>die von dir vorgeschlagenen Möglichkeiten sind nur für Linux
>Systeme.
>Ich verwende Windows
Frowin,
erstens ist das hier die Mailing-List der *Linux* User Group
Bozen.
Schon mal ueberlegt, was das *Linux* im Namen bedeutet?
Zweitens kannst Du mit vielen der hier genannten Wege
Festplattenpartitionen kopieren - unabhaengig davon, was
fuer Betriebssysteme sie enthalten.
Bye,
Chris.
Liebe LUGBZ Freunde, cari amici del LUGBZ,
domani, 26 febbraio alle ore 18:30 si terrà presso l'associazione
giovanile "L'Orizzonte" il seguente workshop:
"GPG, MD5 e TrueCrypt: introduzione alla crittografia".
Il relatore sarà Davide Montesin.
morgen 26. Februar um 18:30 Uhr beim Jugendverein "L'Orizzonte" findet
folgender Workshop statt:
"GPG, MD5 und TrueCrypt: Einführung in die Verschlüsselung".
Der Referent wird Davide Montesin sein.
Per informazioni, weitere Informationen:
http://www.lugbz.org/activities/workshops/gpg_md5_truecrypt
Wir freuen uns auf Euer Kommen!
Vi aspettiamo numerosi!
> (Mi spiace, ma ho bisogno che supporti pienamente NTFS).
Linux non ha e non potra` mai avere pieno supporto per NTFS,
finche` la Microsoft ne tiene segreto il formato e minaccia
di fare causa per violazione di brevetti negli stati uniti
chiunque provi a farne il reverse-engineering.
Consiglio a tutti di NON usare il support parziale che c'e`
adesso perche` vi causera` la corruzione dei vostri dati
e di conseguenza darete la colpa a Linux dove di colpe non
ne ha.
Se ti serve supporto per NTFS, usa Windows.
Bye,
Chris.