[aprssig] aprssig Digest, Vol 94, Issue 13

Eduardo Gomez López hk3pqi at gmail.com
Thu Apr 12 09:40:48 EDT 2012


Thanks a lot gays, it is I was looking for. The next step: will try
with my group.

I have another question. Sorry lol, anyone have a 6.1 firmware of the
old kam? Without enhancing board. The .bin and I burn it here.

My kam it's running on 6.0 firmware but I have a problem, when I use
the "perm" command it says me error burning and if I start it again
the kam is in blank. "Put * to set autobaud" and looks like a new.
What is the problem? The EPROM is not the original, some gay told me
the EPROM is too small to save more information. Is that true?

Thanks a lot.

HK3PQI


Eduardo Gómez L.
Editor conceptual de entretenimiento
Caracol Televisión

El 12/04/2012, a las 7:00 a.m., "aprssig-request at tapr.org"
<aprssig-request at tapr.org> escribió:

> Send aprssig mailing list submissions to
>    aprssig at tapr.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>    https://www.tapr.org/cgi-bin/mailman/listinfo/aprssig
> or, via email, send a message with subject or body 'help' to
>    aprssig-request at tapr.org
>
> You can reach the person managing the list at
>    aprssig-owner at tapr.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of aprssig digest..."
>
>
> Today's Topics:
>
>   1. Re: aprssig Digest, Vol 94, Issue 11 (Dave B)
>   2. Re: aprssig Digest, Vol 94, Issue 11 (Andrew P.)
>   3. The PHP file_get_contents function not working (Keith Kaiser)
>   4. Re: The PHP file_get_contents function not working (Arnie Shore)
>   5. Re: The PHP file_get_contents function not working (Steve Dimse)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 11 Apr 2012 14:04:51 +0100
> From: "Dave B" <dave at g8kbv.demon.co.uk>
> Subject: Re: [aprssig] aprssig Digest, Vol 94, Issue 11
> To: TAPR APRS Mailing List <aprssig at tapr.org>
> Message-ID: <4F858173.22633.1362111 at dave.g8kbv.demon.co.uk>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On 10 Apr 2012 at 7:04, Eduardo Gomez L?pez wrote:
>
>> Hi, there is any APRS program how works like a messenger? I think is
>> very important in emergency when I need chat with other station or
>> other stations easy and fast. What do you think about it?
>>
>> HK3PQI
>
> This perhaps?
>
> http://www.kr1st.com/uimsg.htm
>
> Or...  http://www.apritch.myby.co.uk/uim.gif
> uses the AGW packet engine, or UiView.
>
> 73
>
> Dave G0WBX.
>
> -- Help for Hero's European Rally 2012 participant.
> Please help by visiting:-
> http://www.bmycharity.com/TeamSnowball
> For any/all donations, all 100% goes to H4H.
>
>
>
>
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 11 Apr 2012 09:51:44 -0400
> From: Andrew P. <andrewemt at hotmail.com>
> Subject: Re: [aprssig] aprssig Digest, Vol 94, Issue 11
> To: <aprssig at tapr.org>
> Message-ID: <BAY167-W131A117984E13BA8DB24204B8350 at phx.gbl>
> Content-Type: text/plain; charset="iso-8859-1"
>
>
> My client program YAAC ("Yet Another APRS Client") has a 1-to-1 chat mode as well.
>
> Andrew Pavlin, KA2DDO
> http://www.findtheater.com/ka2ddo/YAAC.html
>
>> From: dave at g8kbv.demon.co.uk
>> To: aprssig at tapr.org
>> Date: Wed, 11 Apr 2012 14:04:51 +0100
>> Subject: Re: [aprssig] aprssig Digest, Vol 94, Issue 11
>>
>> On 10 Apr 2012 at 7:04, Eduardo Gomez L?pez wrote:
>>
>>> Hi, there is any APRS program how works like a messenger? I think is
>>> very important in emergency when I need chat with other station or
>>> other stations easy and fast. What do you think about it?
>>>
>>> HK3PQI
>>
>> This perhaps?
>>
>> http://www.kr1st.com/uimsg.htm
>>
>> Or...  http://www.apritch.myby.co.uk/uim.gif
>> uses the AGW packet engine, or UiView.
>>
>> 73
>>
>> Dave G0WBX.
>>
>> -- Help for Hero's European Rally 2012 participant.
>> Please help by visiting:-
>> http://www.bmycharity.com/TeamSnowball
>> For any/all donations, all 100% goes to H4H.
>>
>>
>>
>>
>> _______________________________________________
>> aprssig mailing list
>> aprssig at tapr.org
>> https://www.tapr.org/cgi-bin/mailman/listinfo/aprssig
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://www.tapr.org/pipermail/aprssig/attachments/20120411/7366a4c2/attachment.html>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 11 Apr 2012 10:03:26 -0500
> From: Keith Kaiser <wa0tjt at gmail.com>
> Subject: [aprssig] The PHP file_get_contents function not working
> To: aprssig at tapr.org
> Message-ID: <7E5DD4C5-6387-487E-B37F-C15B91BB6E8F at gmail.com>
> Content-Type: text/plain; charset=us-ascii
>
> Below is the code I'm using in an attempt to extract posit data from FindU. But it doesn't work. I'm hoping someone will take a quick look and see immediately what I'm doing wrong. Any help you can provide will be greatly appreciated.
>
> Thanks in advance.
>
> <?php
> ini_set('display_errors', 1);
> error_reporting(E_ALL);
>
> function posit($call){
>
>    $url = 'http://www.findu.com/cgi-bin/posit.cgi?';
>
>    $params = array( 'call' => $call, 'start' => 36, 'time' => 1, 'comma' => 1 );
>
>    $opts   = array('http' => array(
>                    'method'  => "POST",
>                    'content' => http_build_query($params)));
>
>    $context = stream_context_create($opts);
>
>    $finduCall = file_get_contents("$url", FALSE, $context);
>
>    echo $finduCall;
> }
>
> echo posit("wa0tjt-1");
>
> ?>
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 11 Apr 2012 11:34:16 -0400
> From: Arnie Shore <shoreas at gmail.com>
> Subject: Re: [aprssig] The PHP file_get_contents function not working
> To: TAPR APRS Mailing List <aprssig at tapr.org>
> Message-ID:
>    <CAMN8bjkHAt=qoZD0mw+Ssc-drX7yc6R9G-EFayVq3yJTwBkpYw at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Drop the quotes around "$url" and see if that helps.  AS
>
> On 4/11/12, Keith Kaiser <wa0tjt at gmail.com> wrote:
>> Below is the code I'm using  ... <SNIP>
>
>
>
> ------------------------------
>
> Message: 5
> Date: Wed, 11 Apr 2012 11:42:49 -0400
> From: Steve Dimse <steve at dimse.com>
> Subject: Re: [aprssig] The PHP file_get_contents function not working
> To: TAPR APRS Mailing List <aprssig at tapr.org>
> Message-ID: <910B8EFA-0F94-4311-9A60-248C364695E5 at dimse.com>
> Content-Type: text/plain; charset=us-ascii
>
> The system may be detecting it is being accessed by machine. The system has some code to recognize non-permitted use and block it. Even if that is not the problem and it is simply a syntax error, this sort of use of findU is not allowed because of past abuse and limited resources.
>
> From the FAQ on the front page of findU:
>
> Dynamic findU HTML pages must not be used to extract data which goes into a database...in other words, no screen scrapers. If you have a project that needs to do this, you should either use the APRSworld database as a backend or create your own database by parsing the APRS data stream. Lately there has been a great increase in the number of people attempting screen-scraping, so I must clarify my position. A single access generated from a user action (starting a program, pushing a button, etc.) is allowed, while any repetative access by a program is NOT ALLOWED. This is necessary because a single program can use as much resource as dozens of human users, and I do not have the capacity to support this sort of use. I will be monitoring for inappropriate access and blocking IPs where I find a problem.
>
> On Apr 11, 2012, at 11:03 AM, Keith Kaiser wrote:
>
>> Below is the code I'm using in an attempt to extract posit data from FindU. But it doesn't work. I'm hoping someone will take a quick look and see immediately what I'm doing wrong. Any help you can provide will be greatly appreciated.
>>
>> Thanks in advance.
>>
>> <?php
>> ini_set('display_errors', 1);
>> error_reporting(E_ALL);
>>
>> function posit($call){
>>
>>    $url = 'http://www.findu.com/cgi-bin/posit.cgi?';
>>
>>    $params = array( 'call' => $call, 'start' => 36, 'time' => 1, 'comma' => 1 );
>>
>>    $opts   = array('http' => array(
>>                    'method'  => "POST",
>>                    'content' => http_build_query($params)));
>>
>>    $context = stream_context_create($opts);
>>
>>    $finduCall = file_get_contents("$url", FALSE, $context);
>>
>>    echo $finduCall;
>> }
>>
>> echo posit("wa0tjt-1");
>>
>> ?>
>> _______________________________________________
>> aprssig mailing list
>> aprssig at tapr.org
>> https://www.tapr.org/cgi-bin/mailman/listinfo/aprssig
>>
>
>
>
>
> ------------------------------
>
> _______________________________________________
> aprssig mailing list
> aprssig at tapr.org
> https://www.tapr.org/cgi-bin/mailman/listinfo/aprssig
>
>
> End of aprssig Digest, Vol 94, Issue 13
> ***************************************




More information about the aprssig mailing list