Active Topics

 


Reply
Thread Tools
HtheB's Avatar
Moderator | Posts: 3,715 | Thanked: 7,419 times | Joined on Dec 2009 @ Bize Her Yer Trabzon
#501
Originally Posted by aegis View Post
Jeebus, now there's complaints about an apology.

Is there a way to virtually slap people?
Yes, you can always slap around a bit with a large trout
__________________
www.HtheB.com
Please donate if you think I'm doing a good job.
 

The Following 5 Users Say Thank You to HtheB For This Useful Post:
Posts: 26 | Thanked: 44 times | Joined on May 2012
#502
Anyway the apology is necessary. Because Jolla gave at some moment more importance to the deal with DNA than the deal with their initial supporters (people who paid 100€ blindly)
 
Posts: 98 | Thanked: 104 times | Joined on Dec 2013
#503
Originally Posted by aegis View Post
Jeebus, now there's complaints about an apology.

Is there a way to virtually slap people?
Not every comment is a complaint, though, nor should be read in such a way as to suggest slapping an appropriate response. We can help Jolla with honest reactions and flesh out ideas for them. Feedback is actually usually considered a good thing.

What you are merely witnessing is people having different opinions and views. It is not the same people asking for apologies and saying they are unnecessary. That's the richness of opinion. You can't expect everyone having the same opinion.
 
Posts: 64 | Thanked: 117 times | Joined on Aug 2010
#504
Originally Posted by jamar View Post
Don't know about Android app, but I've made a quick & dirty bash script for automatic checking of my order status, if anyone interested:

Code:
# cat check_order_status.sh
Code:
#!/bin/bash

email="your@email.org"
username="your.login@email.net"
password="_secret-pass_"

echo "Getting login page..."
curl -s -c cookie.txt https://shop.jolla.com/customer/account/login/ > /dev/null
echo "Sending POST data..."
curl -s -b cookie.txt -c cookie.txt -d "login[username]=$username" -d "login[password]=$password" -d "send=" https://shop.jolla.com/customer/account/loginPost/ > /dev/null
echo "Getting orders list..."
orders=`curl -s -b cookie.txt https://shop.jolla.com/sales/order/history/`
echo "Filtering status..."
order_status=`echo $orders | sed -e 's/.*<td><em>//g' -e 's/<\/em>.*$//g'`

if [ ! -f status.txt ]; then
        echo "unknown" > status.txt
fi

if [ `cat status.txt` == $order_status ]; then
        echo "Status of your order is still $order_status, nothing to do but wait."
else
        echo "Wohoo, your order status has just changed do $order_status, sending e-mail notification!"
        echo "Time to celebrate, after endless waiting your Jolla order status just changed to $order_status!" | mail -s "Your Jolla order status changed to $order_status" $email
        echo $order_status > status.txt
fi
echo "Done."
Just added it to crontab and now I can do more useful things than checking Jolla's store page

I'm not a bash expert, so it surely could be done better. For the mail commad to work, you need to have set up local MTA. Also, if you're going to use this in any way, please don't hammer Jolla's server and set the check interval to maybe 30 minutes or so...
Will this work as a billboard script?
Code:
#!/bin/bash

email="your@email.org"
username="your.login@email.net"
password="_secret-pass_"

curl -s -c cookie.txt https://shop.jolla.com/customer/account/login/ > /dev/null
curl -s -b cookie.txt -c cookie.txt -d "login[username]=$username" -d "login[password]=$password" -d "send=" https://shop.jolla.com/customer/account/loginPost/ > /dev/null
orders=`curl -s -b cookie.txt https://shop.jolla.com/sales/order/history/`
order_status=`echo $orders | sed -e 's/.*<td><em>//g' -e 's/<\/em>.*$//g'`

if [ ! -f status.txt ]; then
        echo "unknown" > status.txt
fi

if [ `cat status.txt` == $order_status ]; then
        echo "Jolla :( $order_status."
else
        echo "Jolla :) $order_status!"
fi
No way to control billboard refresh speed though, would this eat a lot of battery?
 
Posts: 738 | Thanked: 819 times | Joined on Jan 2012 @ Berlin
#505
in picking #116x

YEAH



EDIT: lol wich one from you have delete all Order ID Numbers with x on the end? .... bravo guy, bravo!

Last edited by cvp; 2013-12-12 at 14:33.
 

The Following 2 Users Say Thank You to cvp For This Useful Post:
Posts: 64 | Thanked: 117 times | Joined on Aug 2010
#506
Originally Posted by cvp View Post
lol wich one from you have delete all Order ID Numbers with x on the end? .... bravo guy, bravo!
They are not deleted, x's have been replaced with 0's
 

The Following 2 Users Say Thank You to SaiKo For This Useful Post:
Posts: 138 | Thanked: 164 times | Joined on Aug 2009 @ Chateauroux, FRANCE
#507
@cvp: yeah, we replaced xxx with 0 to make sorting work properly...
 

The Following User Says Thank You to TheBootroo For This Useful Post:
Posts: 26 | Thanked: 44 times | Joined on May 2012
#508
Originally Posted by SaiKo View Post
Will this work as a billboard script?
Code:
#!/bin/bash

email="your@email.org"
username="your.login@email.net"
password="_secret-pass_"

curl -s -c cookie.txt https://shop.jolla.com/customer/account/login/ > /dev/null
curl -s -b cookie.txt -c cookie.txt -d "login[username]=$username" -d "login[password]=$password" -d "send=" https://shop.jolla.com/customer/account/loginPost/ > /dev/null
orders=`curl -s -b cookie.txt https://shop.jolla.com/sales/order/history/`
order_status=`echo $orders | sed -e 's/.*<td><em>//g' -e 's/<\/em>.*$//g'`

if [ ! -f status.txt ]; then
        echo "unknown" > status.txt
fi

if [ `cat status.txt` == $order_status ]; then
        echo "Jolla :( $order_status."
else
        echo "Jolla :) $order_status!"
fi
No way to control billboard refresh speed though, would this eat a lot of battery?

For Billboard:

Code:
#!/bin/bash

email="your@email.org"
username="your.login@email.net"
password="_secret-pass_"

curl -s -c cookie.txt https://shop.jolla.com/customer/account/login/ > /dev/null
curl -s -b cookie.txt -c cookie.txt -d "login[username]=$username" -d "login[password]=$password" -d "send=" https:/
orders=`curl -s -b cookie.txt https://shop.jolla.com/sales/order/history/`
order_status=`echo $orders | sed -e 's/.*<td><em>//g' -e 's/<\/em>.*$//g'`

echo $order_status


I will miss low power mode in Jolla
 

The Following 6 Users Say Thank You to xgoan For This Useful Post:
Posts: 64 | Thanked: 117 times | Joined on Aug 2010
#509
Originally Posted by xgoan View Post
For Billboard:

Code:
#!/bin/bash

email="your@email.org"
username="your.login@email.net"
password="_secret-pass_"

curl -s -c cookie.txt https://shop.jolla.com/customer/account/login/ > /dev/null
curl -s -b cookie.txt -c cookie.txt -d "login[username]=$username" -d "login[password]=$password" -d "send=" https:/
orders=`curl -s -b cookie.txt https://shop.jolla.com/sales/order/history/`
order_status=`echo $orders | sed -e 's/.*<td><em>//g' -e 's/<\/em>.*$//g'`

echo $order_status


I will miss low power mode in Jolla
Thank you!
 
zwer's Avatar
Posts: 455 | Thanked: 782 times | Joined on Nov 2009 @ Netherlands
#510
Originally Posted by xgoan View Post
I will miss low power mode in Jolla
You, and pretty much anyone moving from the N9 to Jolla

I'd easily pay 100€ for an OLED screen with a LPM. Easily!
__________________
Man will never be free until the last king is strangled with the entrails of the last priest.
 

The Following 4 Users Say Thank You to zwer For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 12:05.