Re: alternative to skype

2018-03-19 Thread Néstor
You can actually use Google voice in another country as long as you have
access to the internet.

Sometimes if I am I another and I need to call someone in that country I
will go to a place that has WiFi and make the call like if i was in the US
and i call that country's phone number.

It worked for me in Japan, Panama, Philippines, Mexico, Peru

On Mon, Mar 19, 2018, 3:49 PM Patrick O'Callaghan 
wrote:

> On Sun, 2018-03-18 at 11:03 -0700, Mike Wright wrote:
> > On 03/18/2018 09:32 AM, fred roller wrote:
> > >  > Does Google Hangouts allow international free phone number calling?
> > >
> > > AFAIK it is just a private chat set up by email identifier so no phone.
> > > In essence then yes. The Google Voice option, if you can get it will do
> > > what I suspect you want; your account to a non-account call.
> >
> > I've been using Google Voice for years.  From the US all US and Canada
> > calls are free.  Other countries start at 1¢ (e.g. MX, BR, AU, FR) per
> > minute.  Even DPRK is only 55¢.
>
> That's fine, but as I said earlier, only available to users in the US.
> Google Voice had been around for quite some time now and has never
> expanded its service beyond the US (not just calling but unified phone
> numbers etc.), all of which I would have been interested in at one
> time.
>
> poc
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: is my filesystem damaged?

2017-12-11 Thread Néstor
another:
https://stackoverflow.com/questions/541533/only-questionmarks-in-linux-dirlisting

On Mon, Dec 11, 2017 at 3:28 PM, Néstor  wrote:

> I had that a long time ago and it was permissions but I do not remember
> how I solved it
> but here is a link that talks about it.
>
> https://superuser.com/questions/528459/linux-ls-l-
> prints-only-question-marks
>
>
> On Mon, Dec 11, 2017 at 3:23 PM, Chris Murphy 
> wrote:
>
>> OK I see from dmesg that this is kernel 4.14.3, and I've used that
>> quite a bit without problems so I don't think it's related.
>>
>> What do you get for
>>
>> $ sudo btrfs dev stats /dev/
>>
>> If you haven't done a scrub since this problem happened it's worth
>> seeing if that shows any problems:
>>
>> $ sudo btrfs scrub start /
>> $ sudo btrfs scrub status /
>>
>> IF there are errors, you can extract those and post them with
>>
>> $ dmesg | grep -i btrfs
>>
>> I'll keep looking for this  filename business.
>>
>> Chris Murphy
>> ___
>> users mailing list -- users@lists.fedoraproject.org
>> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>>
>
>
>
> --
> Né§t☼r  *Authority gone to one's head is the greatest enemy of Truth*
>



-- 
Né§t☼r  *Authority gone to one's head is the greatest enemy of Truth*
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: is my filesystem damaged?

2017-12-11 Thread Néstor
I had that a long time ago and it was permissions but I do not remember how
I solved it
but here is a link that talks about it.

https://superuser.com/questions/528459/linux-ls-l-prints-only-question-marks


On Mon, Dec 11, 2017 at 3:23 PM, Chris Murphy 
wrote:

> OK I see from dmesg that this is kernel 4.14.3, and I've used that
> quite a bit without problems so I don't think it's related.
>
> What do you get for
>
> $ sudo btrfs dev stats /dev/
>
> If you haven't done a scrub since this problem happened it's worth
> seeing if that shows any problems:
>
> $ sudo btrfs scrub start /
> $ sudo btrfs scrub status /
>
> IF there are errors, you can extract those and post them with
>
> $ dmesg | grep -i btrfs
>
> I'll keep looking for this  filename business.
>
> Chris Murphy
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>



-- 
Né§t☼r  *Authority gone to one's head is the greatest enemy of Truth*
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Possible OT php form processing..

2013-03-08 Thread Néstor
Try:
print "Your name $_GET['username'] ";
print "you live in region: $_GET['region']";

Look at all the examples in
http://php.net/manual/en/reserved.variables.get.php

Good Luck!!!


On Fri, Mar 8, 2013 at 7:36 AM, Reindl Harald wrote:

>
>
> Am 08.03.2013 16:32, schrieb Aaron Konstam:
> > I don't know whether its my ignorance but I am having a problem wit form
> > processing through php. I wish some help. Small example below:
> >
> >   form.html-
> > 
> > 
> >  Welcome to ABC Web Page 
> > 
> > Enter Your Name:
> > 
> > Where do you live?
> > 
> > 
> > 
> > 
> > 
> >
> > processForm.php
> > 
> > 
> > 
> >   Your form is being processed 
> >  > print "Your name $username ";
> > print "you live iin region: $region";
> > ?>
> > 
> > 
> >
> > When I run form.html and click the submit , processForm.php is run but
> > $username and $region is not transferred. Why is that?
>
> oh my god
>
> * register_globals is dead since years
> * echo unsanitized user input is pure XSS
> * unedfined variables are unsexy
> * method GET form forms is bad and insecure for passwords due history
>
>
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
>
>
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Changing default apache index page

2012-07-17 Thread Néstor
What is your DocumentRoot set to?
Is php set and running?

Also go to the DoumentRoot and if there is a index.html then rename it or
move it to
something else like indexx.html see if that displays your php page.


On Tue, Jul 17, 2012 at 5:44 PM, Alex  wrote:

> Hi,
>
> I have an fc17 box with a few virtual hosts, all of which have
> index.php as their index page. For some reason it continues to go to
> the default fedora welcome page, despite there being an index.php in
> the document root.
>
> Even with the only reference to DirectoryIndex in httpd.conf being
> "DirectoryIndex index.php", and nothing else, it continues to go to
> the welcome page. I've tried making index.php first, followed by
> index.html, and it doesn't change.
>
> If I wrap the DirectoryIndex around "" tags, it works as
> expected.
>
> What is the proper way to ensure my index.php page is loaded for all
> virtual hosts, and the default /var/www/html page?
>
> Searching for this seems to indicate it may be a bug? I can't see how
> that could be possible. I otherwise had no success in finding a
> solution.
>
> Thanks,
> Alex
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
>
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: GGoogle chat vs Skype

2011-09-25 Thread Néstor
I use Google Voice all the time and I have use Google chat.  When you make a
call with
Google Chat you can actually see the credit you have in Google Voice.  I
actually made a
phone call from the Phillipines to San Diego using Google Chat and it was
free.  I do not
know how.  I do know that phone calls with Google Voice within the US are
free and the
calls to other countries are less expensive than Skype ( I also have Skype).
 Skype has
a rate but then they add extra fees, which Google Voice does not.

:-)

On Sun, Sep 25, 2011 at 1:45 PM, Aaron Konstam wrote:

> On Sun, 2011-09-25 at 09:32 -0400, Fulko Hew wrote:
> > On Sun, Sep 25, 2011 at 9:20 AM, Aaron Konstam 
> wrote:
> > >
> > >> As I understand it, there seem to be 2 ways to use skype, ekiga,
> Bosix,
> > >> etc and probably google.
> > >> skype to skype,  and skype to telephone.
> > >> skype to skype is free of charge, that's the one I refer to.
> > >>
> > >> For skype to telephone you pay skype in advance by opening an account
> > >> and can make calls as you wish to the value of the account. I would
> > >> assume that would similarly apply to google.
> > >> Some of my associates who are in frequent international contact have
> > >> skype acounts. They have VOIP telephones and modems. Bigpond in
> > >> Australia disables VOIP in the Thompson Gateway modems.
> > >
> > > That is one of the things I don't understand. Google has not asked me
> for money
> > > to telephone.  I live in San Antonio and I called my son in Chicago. I
> > > have no account with Google and as far as I can see the call was free.
> > > Can someone explain this?
> >
> > If you look at this chart, calls to US and Canada are free.
> >
> > http://www.google.com/chat/voice/compare.html
>
> Except if you look at the "Terms of Service" tab on that page  the
> prices are for Google Voice. I am using Google Chat which is a different
> product.
> What are its costs?
> --
> ===
> Someone is speaking well of you.
> ===
> Aaron Konstam telephone: (210) 656-0355 e-mail: akons...@sbcglobal.net
>
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
>
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: OT gmail alert -- spam or real?

2010-05-06 Thread Néstor
Jackson,

The link below, helps to track an email ipaddress
http://aruljohn.com/info/howtofindipaddress

Nestor :-)

On Thu, May 6, 2010 at 10:49 AM, jackson byers  wrote:

> I don't know how to tell whether the below quoted email is really from
> gmail or some sort of spam/scan.  I don't recall ever giving my birthdate
> to gmail before, or having to put in my password except when starting
> gmail. .?
> Any other users on this list seeing this?
>
> thanks for advice
> Jack
>
> fromGmail Support 
> to
> dateSun, May 2, 2010 at 7:19 PM
> subject ALERT: Act Fast!
> mailed-by   gmail.com
> signed-by   gmail.com
> hide details May 2 (4 days ago)
> Gmail Team is working on total security on all accounts and as a
> result of this security upgrade we require all Google members to
> verify their account with Google. To prevent your account from
> disability you will have to update your information by clicking the
> reply button and filling the space below.
>
> Account:
> Password:
> Birth date:
> Country:
> Warning!!! Account owner that refuses to update his or her account
> within Seven days of receiving this warning will lose his or her
> account permanently.
> Thank you for using Gmail!
>
> The Gmail Team
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
>
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines