<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>us-robotics &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/us-robotics/</link>
	<description>Feed of posts on WordPress.com tagged "us-robotics"</description>
	<pubDate>Tue, 07 Oct 2008 04:20:05 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Software: Simple VB Caller ID program and Flash lights]]></title>
<link>http://insteon.wordpress.com/?p=22</link>
<pubDate>Sun, 22 Jun 2008 21:39:38 +0000</pubDate>
<dc:creator>lgarcia4617</dc:creator>
<guid>http://pixiescorner.pt-br.wordpress.com/2008/06/22/software-simple-vb-caller-id-program-and-flash-lights/</guid>
<description><![CDATA[
One thing I was always interested was being able to notify me when a certain person calls.  And in]]></description>
<content:encoded><![CDATA[<p><img src="http://www.telephonetribute.com/images/27771942.jpg" alt="" width="81" height="104" /></p>
<p>One thing I was always interested was being able to notify me when a certain person calls.  And in this case flash a inteson light or two.</p>
<p>My code is in VB 2005, for a <a href="http://www.yes-tele.com/modem.html">VB6 Sample you can go here</a> and basically requires only some little coding.  In the case of VB6 I think you only need to add the Serial object and adjust the port via the objects property settings.</p>
<p><strong>What I used,<br />
</strong></p>
<ul>
<li>Analog phone with Caller ID (Vonage actually)</li>
</ul>
<ul>
<li>Internal / External Modem - Mine is a 56k External modem and <em>have caller Id capability.</em></li>
</ul>
<ul>
<li>Hook them up, from the wall to the modem, to the modem to the handset.  :)</li>
</ul>
<p><em></em></p>
<p>The best way to see if it does is to open Hyper terminal and type the following command <strong>AT #CID=1</strong> if it respond's ok your set. This of course if for the modem i'm using, depending on your device it may be different.  <a href="http://www.yes-tele.com/modem.html" target="_blank">This page includes how you can check for Caller ID capability on your modem</a></p>
<p>Here is a example of what the modem will pickup and we will parse.</p>
<p><strong>RING</strong></p>
<p><strong>DATE = 0621</strong></p>
<p><strong>TIME = 1113<br />
NMBR = 1407xxxxxxxxx<br />
NAME = Carlos Cobol </strong></p>
<p>If you modem is external like mine you need to make sure AutoAwnser is disabled this is done by the DIP switches, For the US robotics its Dip switch #5 as down. In the case its internal you will need to add the command to disable auto answer. This is done with the command <strong>ATS0=0</strong>.</p>
<p><img src="http://www.isis-technology.com/pics/Modem/usr-005686-03-bottom.jpg" alt="" width="345" height="576" /></p>
<p>My Dip settings are as follows,</p>
<p>1-DOWN</p>
<p>2-UP</p>
<p>3-DOWN</p>
<p>4-UP</p>
<p>5-DOWN</p>
<p>6-UP</p>
<p>7-UP</p>
<p>8-DOWN</p>
<p>Since the code below allows to send some strings up startup, just add the in there if you need to.</p>
<p>Note: I do make reference to textbox called txtDataReceived in my form which will include the output.</p>
<p>First we make our imports include the serial devices (My program writes to a SQL database so some lines may not be needed)</p>
<pre><span style="color:#008080;">Imports System.IO
Imports System.IO.Ports
Imports System.Net
Imports System.Data
Imports System
Imports System.Drawing
Imports System.Windows.Forms
Imports System.ComponentModel
Imports System.Threading</span></pre>
<p>In our Class definitions we include the reference to the serial port and we'll call it 'Modem'</p>
<pre><span style="color:#008080;">Public Class Form1
    Dim WithEvents <strong>Modem </strong>As New IO.Ports.SerialPort</span></pre>
<p>In our Load event we will attach to the serial port and give it the basic settings, Here is where you would also add any initialization commands</p>
<pre><span style="color:#008080;"> Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Modem.PortName = "COM1"
        Modem.BaudRate = 9600
        Modem.DataBits = 8
        Modem.Parity = Parity.None
        Modem.StopBits = StopBits.One
        If Modem.IsOpen = False Then Modem.Open()

        Modem.Write("AT #CID=1" &#38; vbCrLf)  '-------- YOU CAN ADD ADDITIONAL LINES SUCH AS #ATS0=0 TO DISABLE AUTO ANSWER IN INTERNAL MODEMS
    End Sub</span></pre>
<p>Next using the "Data Received" event we want to capture the Data which was received, Since there is a thread already running it wont allow us to update the textbox so simple we need to call use using the definition below,</p>
<pre><span style="color:#008080;"> Private Sub DataReceived(ByVal sender As Object, ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) Handles Modem.DataReceived

        Try
            txtDataReceived.Invoke(New myDelegate(AddressOf updateTextBox), New Object() {})
        Catch EX As Exception
            Debug.Print("ERROR")
        End Try
    End Sub</span></pre>
<p>Second function to update the textbox and check for the number, and check for one of the text information above, Ive stripped my code for simplicity but you can search for specific strings here, match it with fields in a database, even FTP the data somewhere else, but that i'll show you on another post.<br />
Here we will check for the number '123456789'</p>
<pre><span style="color:#008080;">
 Public Sub updateTextBox()
        Dim temp As String
        With txtDataReceived
            .Font = New Font("Garamond", 12.0!, FontStyle.Bold)
            .SelectionColor = Color.Red

            temp = Modem.ReadExisting.ToString
            Buffer = Buffer + temp
            .AppendText(temp)
            .ScrollToCaret()
        End With

        If Buffer.Contains("NMBR") = True Then</span>
<span style="color:#008080;">            Dim FILENAME As String = "c:\cALLINFO.TXT"  ' - Set a filename
            File.WriteAllText(FILENAME, Buffer)    '---- Write all the buffer for testing if we want to see it
</span>            <span style="color:#008080;">If Buffer.contains("123456789") then   '----- check for specific #
<em><strong>                'DO INSTEON COMMANDS HERE</strong></em>
                Buffer=""
                End If
        End if                  </span>
<span style="color:#008080;">End sub</span></pre>
]]></content:encoded>
</item>
<item>
<title><![CDATA[US Robotics 9108 ADSL Wireless Router. Πρόταση αγοράς]]></title>
<link>http://oktabitos.wordpress.com/?p=450</link>
<pubDate>Thu, 07 Feb 2008 22:31:04 +0000</pubDate>
<dc:creator>Oktabitos</dc:creator>
<guid>http://oktabitos.pt-br.wordpress.com/2008/02/08/us-robotics-9108-adsl-wireless-router/</guid>
<description><![CDATA[ 
Η US Robotics επανέρχεται δυναμικά με τη νέα σειρα 91xx. Με υ]]></description>
<content:encoded><![CDATA[<p align="center"> <img src="http://oktabitos.wordpress.com/files/2008/02/usr-9108.jpg" alt="US Robotics 9108 ADSL Wireless Router" /></p>
<p align="justify">Η US Robotics επανέρχεται δυναμικά με τη νέα σειρα 91xx. Με υποστήριξη <strong>ADSL2</strong> και <strong>ADSL2+</strong> και πολλά νέα χαρακτηριστικά. Έκπληξη προκαλεί η ενσωμάτωση Print Server, που σας επιτρέπει να συνδέσετε έναν εκτυπωτή μέσω USB και να τον διαμοιράσετε δικτυακά.</p>
<p align="justify"><b>Υποστηριζόμενη σύνδεση:</b> ADSL over ISDN ή ADSL over PSTN (ανάλογα με τον τύπο σύνδεσης της τηλεφωνικής σας γραμμής)</p>
<p align="justify"><b>Θύρες Επικοινωνίας:</b> 2x dBi swivel dipole removable antenna with reverse polarity SMA connector, 1x RJ-11 ADSL over ISDN port, 4x RJ-45, 10/100 auto-sensing/auto-switching Ethernet ports, 1x USB 1.1/2.0 port (για σύνδεση με τον εκτυπωτή). <b>Συνεργάζεται με εκτυπωτές που υποστηρίζουν Page Description Language (π.χ. PostScript, PCL, κλπ).<!--more--></b></p>
<p align="center"><a href="http://oktabitos.wordpress.com/files/2008/02/usr-9198-easy-adsl-wireless-networking-for-home-or-business.gif" title="USR 9198-Easy ADSL wireless networking for home or business"><img width="490" src="http://oktabitos.wordpress.com/files/2008/02/usr-9198-easy-adsl-wireless-networking-for-home-or-business.gif" alt="USR 9198-Easy ADSL wireless networking for home or business" height="238" style="width:555px;height:272px;" /></a></p>
<ul>
<li>
<div align="justify"><b>Υποστήριξη ADSL:</b> ADSL2 (ITU-T G.992.3/ADSL2+ (ITU-T G.992.5): up to 24 Mbps, S=1/2 for up to 12 Mbps, Supports full-rate G.DMT (ITU-T G.992.1) and T1.413 Issue 2 ADSL: up to 8 Mbps downstream and up to 1 Mbps upstream, Supports G.lite (ITU-T G.992.2) ADSL: up to 1.5 Mbps downstream and up to 512 Kbps upstream, Supports DSL handshaking (ITU-T G.994.1), RFC 2516 PPP over Ethernet (Client), RFC 2364 PPP over ATM, RFC 2684 (formerly 1483) Multi-protocol over ATM (Bridged and Routed), Multicast video streaming - VLAN</div>
</li>
</ul>
<ul>
<li>
<div align="justify"><b>Χαρακτηριστικα Wireless &#38; Firewall:</b> MAXg Technology for up to 125 Mbps performance <b>(Υποστηρίζεται μόνο όταν χρησιμοποιηθεί με μοντέλα της ίδιας εταιρείας που διαθέτουν την ίδια δυνατότητα. Η απόδοση μπορεί να διαφέρει ανάλογα με το περιβάλλον λειτουργίας και την απόσταση μεταξύ των συσκευών)</b>, Wi-Fi Protected Access 2 (WPA2)/802.11i, Wi-Fi Protected Access, TKIP, AES Encryption, 64/128-bit Wired Equivalent Privacy (WEP) encryption, SSID Broadcast Disabling, 802.1x authentication, WDS (Wireless Distribution System), Denial of Service, IP Filtering - Destination for address or port and by IP protocol (outbound only), Syslog - Reporting of firewall events, VPN Traversal (Pass-through IPSec, PPTP, L2TP), VPN termination upgradable, SPI - Stateful Packet Inspection, Password protected configuration access, DMZ and virtual server support</div>
</li>
</ul>
<ul>
<li>
<div align="justify"><b>Πιστοποιήσεις:</b> EMI - FCC Class B, Safety - UL, CUL, EMI &#38; Safety - CE Class B</div>
</li>
</ul>
<ul>
<li>
<div align="justify"><b>Πρόσθετα Χαρακτηριστικά:</b> IP Quality of Service (QoS), Dynamic DNS, Parental Control (Time of Day &#38; Days of Week)</div>
</li>
</ul>
<ul>
<li>
<div align="justify"><b>Διαστάσεις:</b> 13.97 x 23.36 x 4.06 cm</div>
</li>
</ul>
<ul>
<li>
<div align="justify"><b>Βάρος:</b> 454 γραμμάρια</div>
</li>
</ul>
<ul>
<li>
<div align="justify"><b>Εγγύηση:</b> 2 χρόνια</div>
</li>
</ul>
<p align="justify"><strong>Τιμή: 92,00 €</strong>  (το μοντέλο ADSL over ISDN)   <strong><a href="http://www.e-shop.gr/show_per.phtml?id=PER.533068">e-shop.gr</a></strong></p>
<p align="justify"><strong>Τιμή: 97,00 €</strong>  (το μοντέλο ADSL over PSTN)  <strong><a href="http://www.e-shop.gr/show_per.phtml?id=PER.533066">e-shop.gr</a></strong></p>
<p align="justify"><b><u>Προσοχή:</u></b> Οι ταχύτητες πρόσβασης ADSL εξαρτώνται από τον τηλεπικοινωνιακό φορέα, τον παροχέα της σύνδεσης και την απόσταση από το τηλεπικοινωνιακό κέντρο.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A Trip Down the Internet Memory Lane]]></title>
<link>http://dreamyworld.wordpress.com/2008/01/18/a-trip-down-the-internet-memory-lane/</link>
<pubDate>Fri, 18 Jan 2008 16:22:10 +0000</pubDate>
<dc:creator>Narayanan Aier</dc:creator>
<guid>http://narayananaier.com/2008/01/18/a-trip-down-the-internet-memory-lane/</guid>
<description><![CDATA[Here&#8217;s something I never expected to discover (or recover) over the holidays. A decision by my]]></description>
<content:encoded><![CDATA[<p align="justify">Here's something I never expected to discover (or recover) over the holidays. A decision by my mom to sell off an aging table to a local trader, resulted in me opening one of its drawers. It is really surprising how it was never opened in over eight years. Eight years! Phew! That's a long time! So no wonder we found a lot of computer junk in there:</p>
<div align="justify">
<ul>
<li>Floppies (long time since I saw one)</li>
<li>Parallel cables (the one's used for my old inkjet printers)</li>
<li>A U.S. Robotics 56Kbs Modem (ah! I almost forgot I used to have a dial-up connection)</li>
<li>A Kodak camera (click, flash, develop the film)</li>
<li>A piece of paper</li>
</ul>
</div>
<p align="justify">That piece of paper was a print out of the various user names and passwords I had for about thirty websites. I can't even recall some of these websites. It was a time when the internet was new to the masses in India. I jumped onto the bandwagon and signed up on every site that said "log in", "register" or "Not a member? Sign up here." That piece of literature even told me that I had an email address: knowledge@uselessknowledge.com. How geeky!</p>
<p align="justify">I wish I could list the websites on that sheet of paper (most of them probably went bust when the internet bubble burst). Unfortunately I snapped back to the present, smiled to myself, tore the sheet and threw it down the dustbin. About five minutes later I realized that it would have made a great blog post.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[10 anos de Linux em minha vida]]></title>
<link>http://jmmwrite.wordpress.com/2008/01/04/10-anos-de-linux-em-minha-vida/</link>
<pubDate>Fri, 04 Jan 2008 12:49:55 +0000</pubDate>
<dc:creator>julianommartins</dc:creator>
<guid>http://jmmwrite.pt-br.wordpress.com/2008/01/04/10-anos-de-linux-em-minha-vida/</guid>
<description><![CDATA[Neste mês de janeiro, comemoro 10 anos que conheci Linux! Como muitos usuários, aprendi sozinho, f]]></description>
<content:encoded><![CDATA[<p style="margin-top:0;margin-bottom:0;" align="justify"><img src="http://jmmwrite.wordpress.com/files/2007/11/tux.thumbnail.jpg" alt="10 anos de Linux em minha vida" align="right" />Neste mês de janeiro, comemoro <b>10 anos que conheci Linux!</b> Como muitos usuários, aprendi sozinho, fuçando na Internet. Resolvi fazer esse relato para mostrar a evolução do Linux nesse período para os mais novos e também compartilhar experiências que, certamente, muita gente passou.  Daria para escrever um livro com os “causos”, mas vou tentar ser o mais objetivo possível!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Em janeiro de 1997, eu tinha 17 anos e utilizava Windows 95. Eu vivia irritado com os paus do mesmo, e com as constantes “formatações” que tinha que fazer, seja para arrumar problemas ou melhorar o desempenho.</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Eu vivia comprando revistas sobre tecnologia, e de vez em quando via matérias falando de um tal de Linux, mas como tinha que fazer um download grande, eu sempre desanimava. Tinha internet discada em casa, e a paciência nunca foi meu forte.</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;text-align:left;"><a href="http://www.slackware.com" target="_blank"><img src="http://jmmwrite.wordpress.com/files/2008/01/slack.thumbnail.jpg" alt="Slackware" align="left" /></a>Num passeio por uma banca, encontrei uma revista, que nem me lembro o nome mais. Era uma edição especial, que vinha com o Slackware 3.1.0. Se não me falha a memória, acredito que nesta edição veio um CD, você tinha que abrir o CD e fazer um disquete para poder bootar pelo CD, algo assim.</p>
<p style="margin-top:0;margin-bottom:0;text-align:left;">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;text-align:left;"> Eu lembro que foi uma vida para instalar ele. A interface gráfica não funcionava nem a pau! Tínhamos que configurar tudo na mão. Arquivos textos pra lá e pra cá... Mas não demorou muito, para eu encontrar na Internet (navegando pelo Windows) um arquivo de configuração de um usuário avançado que tinha uma máquina igual a minha. A placa de vídeo era uma Trident de 4 megas! Um monstro para a época!</p>
<p style="margin-top:0;margin-bottom:0;text-align:left;">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Bem, funcionou a Interface gráfica, mas e ai? O que eu poderia fazer com aquilo sem Internet? Fiquei bons meses so brincando com o Slackware offline. Eu me lembro que em junho saiu a versão 3.3.0. Mas ai eu poderia baixar, mas não tinha gravadora para queimar a mídia! :-(</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Neste mesmo mês, passeando por uma banca, encontrei um tal de Linux Marumbi se não me engano. Finalmente coloquei ele na minha máquina, e “deu vídeo” de primeira! Amei a distro! No mesmo dia que instalei na minha máquina, instalei para um amigo, e perdi uma caixa de cerveja em uma aposta: após instalar o Linux eu apostei que se ele conseguisse dar um “dir”, eu pagaria a caixa para ele. Ele conseguiu. Foi ai que eu aprendi sobre alias!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify"><img src="http://jmmwrite.wordpress.com/files/2008/01/49736-modem-us-robotics.thumbnail.jpg" alt="Modem" align="right" />Já no começo de 98, eu estava querendo me matar, pois simplesmente não conseguia navegar na Internet com o Linux. Eu tinha um maldito Win modem que não funcionava. Em lista de discussão, via que todo mundo que conectava usando Linux, tinha modens US Robotics “jumpeados”. Foi batata, juntei dinheiro por uns 3 meses e comprei um!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Foi mais uma vida configurar o Linux para acessar Internet, não existia nenhum utilitário amigável, mas, demorou até que consegui. Ele vinha com o Netscape, se não me engano o 4. Não abria nada decentemente. Ficava muita coisa feia. Eu lembro que xingava o navegador (não sabendo que a culpa não era bem dele). Já o Licq funcionava bonitinho. Eu falava com meus amigos orgulhoso “Estou conversando com você do meu LINUX”, me sentia o verdadeiro Hacker!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Em 99 também conheci o Star Office, que é o pai do Open Office. Como o negócio era pesado. Não abria documentos do Word decentemente, muito menos XLS e PPT. Perdia todas as formatações.</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Outro problema que me matava era que eu não conseguia imprimir no Linux decentemente. Até eu conhecer o CUPS, por volta de 2000, eu salvava em disquete no Linux e ia pro windows e imprimia. Salvar em disquete demandava um mount e um umount, não havia ícone ou automount. Só fui descobrir como montar a partição Windows no Linux com suporte a escrita em meados de 2000.</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Em 2000 eu fiz minha primeira grande proeza por volta de fevereiro. Vi que saiu o Kernel 2.2, resolvi instalar o bicho. Muito trabalho para conseguir depois de umas 10 compilações, um kernel funcional!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify"><img src="http://jmmwrite.wordpress.com/files/2008/01/nvidia.thumbnail.jpg" alt="NVIDIA" align="left" />Em junho de 2000 eu resolvi voltar pro Slackware, aproveitando um upgrade em minha máquina. Baixei o Slackware 7.1. e instalei no bicho. A máquina veio com uma placa Nvidia, e eu lembro que a interface gráfica não funcionou. Encontrei um site com um how to de como baixar e configurar o driver para Linux, assim o fiz. Quando mandava um startx, aparecia o logo da Nvidia, eu quase chorei de emoção: Aceleração 3D no meu Linux!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Em janeiro de 2001 saiu o Kernel 2.4, mais uma vez, brinquei de recompilar e instalar o bicho. Dessa vez foi de primeira!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Ainda em 2001 conheci o dropline gnome, uma versão alterada do Gnome para o Slackware, muito bonita! Baixei e instalei! Conheci tambem o Piter Punk, e o slackpkg, uma espécie de apt-get para Slack.</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Neste mesmo ano eu comecei a trabalhar com Infra. Implementei muitas solulções baseadas em Linuxm dentre elas: servidor de páginas, rede (samba), rede wireless, VPN, fiz terminal burro rodando aplicativos Clipper no dosfree, etc.</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;text-align:left;"><a href="http://www.debian.org" target="_blank"><img src="http://jmmwrite.wordpress.com/files/2008/01/dabian.thumbnail.jpg" alt="Debian" align="left" /></a>Algo que me irritava no Slackware, talvez por incompetência minha mesmo, eram as suas atualizações. Eu vi um amigo meu, fazendo uma atualização de um servidor Debian: apt-get update, apt-get upgrade! Achei lindo, resolvi testar o bicho! Foi paixão a primeira vista. Botei Debian na minha máquina.</p>
<p style="margin-top:0;margin-bottom:0;text-align:left;">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Já em 2003, foi lançado o magnífico kernel 2.6. Compilação e instalação de primeira!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Desde 99 eu ja comecei a dar cursos de Linux na faculdade, pois acreditava (e ainda acredito), que devemos compartilhar conhecimento. Eu aprendia mais ainda nos cursos. Lembro que no meu terceiro curso, um infeliz perguntou sobre Firewall e eu não sabia!!! O cara fez eu aprender iptables!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Até 2006 eu fiquei trabalhando pacificamente com Linux e Windows em meu desktop. Quando precisava de algo no Windows, eu ia para ele, mas... no começo de 2007 eu conheci o Ubuntu, e vendo toda a maturidade atingida por aplicativos como Firefox, Open Office, e cia... quem precisa de Windows?</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="left"><a href="http://www.ubuntu.com" target="_blank"><img src="http://jmmwrite.wordpress.com/files/2008/01/ubuntu.thumbnail.jpg" alt="10 anos de Linux em minha vida" align="right" /></a>Hoje, sou um feliz usuário do Ubuntu 7.10, consigo utilizar o mesmo no meu trabalho. Em 2007 ainda haviam alguns softwares que precisavam de Windows para rodar, mas, consegui convencer minha gerente a remover esses softwares do projeto em favor de padrões abertos.</p>
<p style="margin-top:0;margin-bottom:0;" align="left">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Atualmente minha luta é trocar os formatos proprietários da M$ por <a href="http://jmmwrite.wordpress.com/2007/12/17/use-e-divulgue-o-open-document-format-odf/" target="_blank">ODF</a>, acredito que eu vá conseguir em breve!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Minha conclusão é que, desde 1997 o Linux evoluiu muito. Deixou de ser algo complicado de se utilizar e está muito mais amigável hoje. Isso dá um impulso no seu uso corporativo. Graças a distribuições “comerciais” como <a href="http://www.redhat.com" target="_blank">Red Hat</a>, o Linux entrou e ficou nas grandes corporações. Iniciativas magníficas de empresas sérias como <a href="http://www-03.ibm.com/linux/" target="_blank">IBM</a>, <a href="http://www.oracle.com/linux/index.html" target="_blank">Oracle</a> e <a href="http://www.sun.com/software/linux/" target="_blank">SUN</a>, colaboram cada vez mais para a utilização do Linux em larga escala. <b>As pessoas estão mais conscientes sobre padrões abertos e não querem ficar reféns de nenhuma empresa.</b> Todos estes fatores indicam que o Linux vai ser cada vez mais popular, e nós meus amigos, que já o conhecemos bastante, devemos evangelizar as pessoas!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">Que venham mais 10 anos de Linux!</p>
<p style="margin-top:0;margin-bottom:0;" align="justify">&#160;</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Normalność cz. 2]]></title>
<link>http://byisk.wordpress.com/2007/12/18/normalnosc-cz-2/</link>
<pubDate>Tue, 18 Dec 2007 15:29:16 +0000</pubDate>
<dc:creator>b.YISK</dc:creator>
<guid>http://byisk.pt-br.wordpress.com/2007/12/18/normalnosc-cz-2/</guid>
<description><![CDATA[Nie minęło kilka sekund, jak ujrzałem w /home/byisk/zdjęcia nasze zdjęcia.
- Poszukaj zdjęć, ]]></description>
<content:encoded><![CDATA[<p>Nie minęło kilka sekund, jak ujrzałem w /home/byisk/zdjęcia nasze zdjęcia.</p>
<p>- Poszukaj zdjęć, na których Olga jest na pierwszym planie i załaduj je do gThumb'a i pokaż mi je. - powiedziałem spokojnie. - Następnie wyszukaj zdjęć, na których jestem razem z moją Damą i wyświetl je na tapecie salonu.<br />
<!--more--><br />
Minęło kilka sekund, zdjęcia wyświetliły się na ekranie. Chciałem je pooglądać, jednak usłyszałem głos mojej ukochanej z salonu:</p>
<p>- Szymuś, jesteś niemożliwy! - Powiedziała to tak słodko, że z radością ruszyłem w jej kierunku. Wszedłem do salonu i zobaczyłem to co chciałem - na ścianie pokoju wyświetlały się nasze zdjęcia. Nagle usłyszałem cieniutki głosik - Szymku, chodź do mnie - po czym Olga odsunęła się trochę, robiąc miejsce dla mnie na kanapie. Polożyliśmy się razem i zaczęliśmy powoli zasypiać. Komputer Domu wyraźnie to wyczuł i wyłączył nam telewizor, światło, a włączył magnetofon, puszczając SDM, tak jak ma to ustawione. Po chwili usnęliśmy. </p>
<p>Obudziłem się. Olga już krzątała się w kuchni. Po chwili przyszła do mnie z kolacją. Położyła posiłek na stoliku, nieopodal mnie. Stanęła i powiedziała:</p>
<p>- Zobacz która już jest godzina.</p>
<p>Po tych słowach puknęła się palcem wskazującym i środkowym dwukrotnie w nadgarstek, co Komputer Domu zinterpretował prawidłowo - na tapecie pokoju pojawił się zegarek. Była 19:48. Musiałem być na 20:30 w US Robotics. Spojrzałem na to, co przygotowała. Zauważyła, że przyglądam się temu posiłkowi. Powiedziała:</p>
<p>- To dla Ciebie, ja już jadłam.<br />
- Nie trzeba było, kochanie - odpowiedziałem. Zrobiła sztucznie groźną minę. Zbliżyła się powoli, po czym niespodziewanie rzuciła się na mnie i zaczęła całować. Jest bardzo szalona, ale uwielbiam to. Długo się całowaliśmy. Po pewnym momencie wstała i rzekła:</p>
<p>- To było na zachętę. Jedz! - krzyknęła z nutką ironii, po czym słodko się uśmiechnęła. Jest wspaniała.</p>
<p><a href="http://byisk.wordpress.com/2007/12/16/normalnosc/">Poprzedni odcinek (1)</a></p>
<p><a href="http://byisk.wordpress.com/2007/12/18/normalnosc-cz-3/">Następny odcinek (3)</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Übertragungsfehler 51, 52 oder 54 bei US-Robotics und 3Com Modems]]></title>
<link>http://activefaxdeutsch.wordpress.com/2007/12/02/ubertragungsfehler-51-52-oder-54-bei-us-robotics-und-3com-modems/</link>
<pubDate>Sun, 02 Dec 2007 12:37:22 +0000</pubDate>
<dc:creator>activefax</dc:creator>
<guid>http://activefaxdeutsch.pt-br.wordpress.com/2007/12/02/ubertragungsfehler-51-52-oder-54-bei-us-robotics-und-3com-modems/</guid>
<description><![CDATA[Dies ist ein bekanntes Problem, welches durch einen Fehler in der Modem-Software (Firmware) verursac]]></description>
<content:encoded><![CDATA[<p>Dies ist ein bekanntes Problem, welches durch einen Fehler in der Modem-Software (Firmware) verursacht wird. Dieses Problem tritt häufig mit US-Robotics und 3Com Modems auf.</p>
<p>Das Modem erkennt in diesem Fall das Bestätigungs-Signal der Gegenstelle für die erfolgreiche Übertragung einer Faxseite nicht, wodurch die Übertragung als fehlerhaft gemeldet und das Fax, abhängig von der Anzahl der Wahlwiederholungen, mehrfach gesendet wird.</p>
<p>Sie können dieses Problem in der Regel umgehen, indem Sie das Modem im Faxklasse 1 Modus betreiben.<br />
--<br />
Cornelia Wegmueller, ACTIVEFAX Customer Support<br />
INTERTRADE ENTERPRISES LTD :: Blegistr.25 :: CH-6340 Baar/Switzerland<br />
Tel.: +41 44 5866974<br />
Fax: +41 44 2742350<br />
mailto:support@activefax-distribution.com<br />
<a href="http://www.activefax-distribution.com/de_main_start.html">http://www.activefax-distribution.com</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[When sending faxes with US-Robotics and 3Com modems the transmission error 51, 52 or 54 occurs.]]></title>
<link>http://activefax.wordpress.com/2007/12/01/when-sending-faxes-with-us-robotics-and-3com-modems-the-transmission-error-51-52-or-54-occurs/</link>
<pubDate>Sat, 01 Dec 2007 19:56:14 +0000</pubDate>
<dc:creator>activefax</dc:creator>
<guid>http://activefax.pt-br.wordpress.com/2007/12/01/when-sending-faxes-with-us-robotics-and-3com-modems-the-transmission-error-51-52-or-54-occurs/</guid>
<description><![CDATA[This is a known problem that is caused by a bug in the modem software (firmware). This problem typic]]></description>
<content:encoded><![CDATA[<p>This is a known problem that is caused by a bug in the modem software (firmware). This problem typically occurs with certain types of US-Robotics and 3Com modems. You usually can solve this by running the modem in fax class 1 mode.</p>
<p>The modem does not detect the acknowledgement signal for a successful page transmission from the remote fax machine when this error happens, so the fax is transmitted multiple times, depending on the number of transmission attempts configured in ActiveFax.</p>
<p>--<br />
Cornelia Wegmueller, ACTIVEFAX Customer Support<br />
INTERTRADE ENTERPRISES LTD :: Blegistr.25 :: CH-6340 Baar/Switzerland<br />
Phone: +41 44 5866974<br />
Fax: +41 44 2742350<br />
<a href="mailto:support@activefax-distribution.com">mailto:support@activefax-distribution.com</a><br />
<a href="http://www.activefax-distribution.com/">http://www.activefax-distribution.com</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[ActiveFax: recommended modems &amp; boards]]></title>
<link>http://activefax.wordpress.com/2007/12/01/activefax-recommended-modems-boards/</link>
<pubDate>Sat, 01 Dec 2007 18:40:57 +0000</pubDate>
<dc:creator>activefax</dc:creator>
<guid>http://activefax.pt-br.wordpress.com/2007/12/01/activefax-recommended-modems-boards/</guid>
<description><![CDATA[ActiveFax can be used with the following types of modems, ISDN boards and fax boards:
Fax modems tha]]></description>
<content:encoded><![CDATA[<p>ActiveFax can be used with the following types of modems, ISDN boards and fax boards:</p>
<p>Fax modems that support fax class 1, 2 or 2.0<br />
ISDN boards that support the T.30 (Fax Group 3) protocol<br />
Diva Server boards from Eicon<br />
Fax boards from Brooktrout<br />
Fax boards from Intel/Dialogic (Cpi series)<br />
VoIP/FoIP (Voice over IP/Fax over IP)<br />
Avoid low-cost modems<br />
In general, we recommend to avoid using low-cost modems for faxing, since such modems are usually only tested for data and Internet connections and do not work very reliable in fax mode. Since a modem has do establish connections to hundrets of different fax machines, using low-cost modems often causes problems when connections to certain types of fax machines cannot be done.</p>
<p>We recommend the following modems, ISDN boards and fax boards to be used with ActFax:<br />
Analog Modems<br />
Aztech 56k Turbo 2<br />
Diamond Supra Express 56e Pro<br />
Elsa Microlink 56k<br />
Elsa Microlink 56k Office<br />
Elsa Microlink 56k Pro<br />
Multitech MT5600ZDX<br />
Multitech MT5634ZBA<br />
Multitech MultiModem II<br />
US-Robotics 56k (only fax class 1)<br />
US-Robotics Sportster (only fax class 1)<br />
Zyxel Elite 2864<br />
Zyxel Omni 56k<br />
Zyxel U-1496<br />
Zyxel U-336<br />
Zyxel U-90<br />
Analog Multi-Modem Boards<br />
Eicon Diva Server Analog-4P/8P<br />
Equinox Multimodem Adapters<br />
Comtrol RocketModem<br />
Multitech Multimodem ISI<br />
ISDN Modems and ISDN Boards<br />
AVM B1 V4.0 (1 x S0)<br />
AVM C2 (2 x S0)<br />
AVM C4 (4 x S0)<br />
AVM Fritz!Card (1 x S0)<br />
Digi Datafire Micro V (1 x S0)<br />
Digi Datafire QuadMicro (4 x S0)<br />
Eicon Diva Pro 2.0 (1 x S0)<br />
Eicon Diva Server BRI 2M (1 x S0)<br />
Eicon Diva Server 4BRI 8M (4 x S0)<br />
Eicon Diva Server PRI 30M (1 x PRI)<br />
HST Saphir III (1 x S0)<br />
HST Saphir III ML (4 x S0)<br />
HST Saphir V (1 x PRI)<br />
Intelligent Fax Boards<br />
Brooktrout TR114 Series<br />
Brooktrout TR1034 Series<br />
Brooktrout Trufax Series<br />
Brooktrout Trufax-BRI Series<br />
VoIP/FoIP (Voice over IP/Fax over IP)<br />
Eicon Diva Server SoftIP Software</p>
<p>--<br />
Cornelia Wegmueller, ACTIVEFAX Customer Support<br />
INTERTRADE ENTERPRISES LTD :: Blegistr.25 :: CH-6340 Baar/Switzerland<br />
Phone: +41 44 5866974<br />
Fax: +41 44 2742350<br />
mailto:support@activefax-distribution.com<br />
<a href="http://www.activefax-distribution.com">http://www.activefax-distribution.com</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Class 2.0 Fax Standard Error]]></title>
<link>http://activefax.wordpress.com/2007/12/01/class-20-fax-standard-error/</link>
<pubDate>Sat, 01 Dec 2007 18:39:21 +0000</pubDate>
<dc:creator>activefax</dc:creator>
<guid>http://activefax.pt-br.wordpress.com/2007/12/01/class-20-fax-standard-error/</guid>
<description><![CDATA[Q:
I am trying the latest version of ActiveFax with 2 U.S Robotics 56 K fax modems. My problem is on]]></description>
<content:encoded><![CDATA[<p>Q:<br />
I am trying the latest version of ActiveFax with 2 U.S Robotics 56 K fax modems. My problem is on %50 of fax deliveries I get the message "The modem on COMX" does not support Class 2.0 Fax Standard". but the modems supports this standard. 1 use them with other fax programs without problem.</p>
<p>After I get this message "The Modem Server" stops and starts itself I guess, tries to send again and sometimes it delivers the fax from the same modem, sometimes it gives the same error again and again. If there was a problem with the modems it would not deliver any fax I guess. Any idea ?</p>
<p>A:<br />
Transmission errors with analog modems are often caused by a bug in the modem software (firmware) or by a DSP (Digital Signal Processor) with poor signal processing. We recommend to only use quality modems for fax operation, since low-cost modems usually do not work very reliable in practice.</p>
<p>Problems with bugs in the modem firmware can usually be solved by running the modem in fax class 1 mode with the following settings. By running a modem in fax class 1 mode, the modem software is only doing basic operations and most parts of the fax transmission are controlled directly by ActiveFax in that case. We also recommend to use at least ActiveFax Version, when running a modem in fax class 1 mode.</p>
<p>--<br />
Cornelia Wegmueller, ACTIVEFAX Customer Support<br />
INTERTRADE ENTERPRISES LTD :: Blegistr.25 :: CH-6340 Baar/Switzerland<br />
Phone: +41 44 5866974<br />
Fax: +41 44 2742350<br />
mailto:support@activefax-distribution.com<br />
<a href="http://www.activefax-distribution.com">http://www.activefax-distribution.com</a></p>
]]></content:encoded>
</item>

</channel>
</rss>
