"﻿Что GNOME грядущий нам готовит? Часть 2: Zeitgeist и Activity Journal"
Семен Есилевский



sudo add-apt-repository ppa:zeitgeist/ppa
sudo apt-get update
sudo apt-get install gnome-activity-journal



------------------------------------------------------------



"Qt 4 в Haiku OS: почувствуй себя комфортно"
Андрей Кузнецов



setgcc gcc4



qmake -project
qmake MyProgramme.pro
make



#if defined(Q_WS_X11)



Листинг 1

QLocale Locale;
QString sLocale = Locale.system().name();



ln -s /boot/apps/your_programme/bin/your_programme



------------------------------------------------------------



"Схемотехника в Linux с помощью gEDA. Часть 4: создание паттерна"
Александр Дроздов



# pacman -S pstoedit inkscape



# pacman -S pstoedit xfig transfig



$ pstoedit -page 9 irf2804s-7p.pdf irf2804s-7p-new.svg



$ pstoedit -page 9 -f "xfig: -metric" irf2804s-7p.pdf irf2804s-7p-new.fig



$ pstoedit -xscale 0.555632727 -yscale 0.555632727 -f "pcb: -stdnames -grid 0.1 -mm -snapdist 0.4" irf2804s-7p.ps irf2804s-7p.pcb



; local project libraryes
(component-library "./symbols" "Local project symbols")

; define symbols prefix
(define user-sym-path "/home/hatred/gaf/symbols")

(for-each
 (lambda (dir)
   (if (list? dir)
       (component-library (build-path user-sym-path (car dir)) (cadr dir))
       (component-library (build-path user-sym-path dir)))
   )
 (reverse '(
  ; Symbols subdirs
    ("hatred-MOSFET"      "MOSFET transistors with footprint")
    ("hatred-microschems" "User's Microschems symbols")
    ("connectors"         "User's Connectors")
    ("sensors"            "User's Sensors")
    ("crystal"            "User's Crystals")
    )))


(component-library "./symbols"                                   "Local project symbols")
(component-library "/home/hatred/gaf/symbols/hatred-MOSFET"      "MOSFET transistors with footprint")
(component-library "/home/hatred/gaf/symbols/hatred-microschems" "User's Microschems symbols")
(component-library "/home/hatred/gaf/symbols/connectors"         "User's Connectors")
(component-library "/home/hatred/gaf/symbols/sensors"            "User's Sensors")
(component-library "/home/hatred/gaf/symbols/crystal"            "User's Crystals")



elements-dir ~/gaf/packages



~/gaf/packages:packages



------------------------------------------------------------
