[Sikuli-driver] [Bug 1758592] Re: how can i check if value is integer or string? Err in conversion

2018-03-24 Thread Adrian
** Description changed:

  Hi there,
  
  after correct OCR from images, removing any dots commas and letters if
  recognised by mistake, than convert string to int and tried to compare
  with variable - digits. Got TypeError: cannot concatenate 'str' and
  'int' objects. Im looking to use function to show wheter value is string
  or int or float or whatever it is to check if my conversions was
  successful or not. This is my simple code.
  
  ---
  # set variables to compare
  vpmin = int("4")
  vpmax = int("34")
  
  if exists("1521886809839.png"):
- vpvalue=find("1521886809839.png").text() 
+ vpvalue=find("1521886809839.png").text()
  # replace any unnessery trash as a string
  vpvalue = vpvalue.replace("X", "")  # 1
  vpvalue = vpvalue.replace(".", "")  # 2
  vpvalue = vpvalue.replace(",", "")  # i know i could do it with regex 
or something ;)
  converted_vpvalue = int(vpvalue)
  
  # compare values
  if converted_vpvalue >= vpmin and converted_vpvalue <= vpmax:
+ do some actin...
  ---
  
  Got error "TypeError: cannot concatenate 'str' and 'int' objects" but
  thought that int() converted all correctly, and dont know what is not
  converted - variables at start or converted_vpvalue
  
- OCR text via find().text() i think that in my situation is faster than 
region().text() but not certain and im using if exists to get OCR becouse 
sometimes lasts more than 3 sec to render action with correct images - avoiding 
error in script, works great
+ when debuggin variables before some actions i got
+ clean OCR'ed value "X259.240"
+ after sting trash replace "259240"
+ and when converted was same as replaced value
+ 
+ OCR - im getting text via find().text() coz i think that in my situation
+ is faster than region().text() and got less script termination... but
+ not certain and im using if exists to get OCR becouse sometimes lasts
+ more than 3 sec to render action with correct images - avoiding error in
+ script, works great.
+ 
  1 OCR gives me string coz value on img is with two crossed swords at the 
begining which is recognized as "X"  ;)
  2 removing X, dot or comma before conversion to int coz i think that if value 
is 350.200 its divide it to two diffrent numbers when tried to compare in if 
statement
  
  Weird is that when variables vpmin and vpmax was set like vpmax="34"
  w/o int() all was workin ok, probably script was comparing both values
  as string but was not accurate and sometimes didn't pass through if
  statement when matched (but rather was correct and all was workin)
- 
- when debuggin variables before some actions i got
- clean OCR'ed value "X259.240"
- after replace "259240"
- and when converted was same as replaced value
  
  tried few stuff from forum like
  https://answers.launchpad.net/sikuli/+question/123516 but nothin helped
  
  im not a regular programmer or something but after few days spent in this 
forum lurking for my problems i had at the beginning of my scripting and 
reading sikuli doc i have no problems with creating automation of my stuff 
beyond this conversion and comparision two values.
  Is something wrong with conversion or exists function to check wheter type 
the value is.. i know i could leave conversion and still check two strings like 
before, but you know... more precise means always better ;)
  
  Thank You in advance,
  Adrian

** Changed in: sikuli
   Status: New => Invalid

** Converted to question:
   https://answers.launchpad.net/sikuli/+question/667197

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1758592

Title:
  how can i check if value is integer or string? Err in conversion

Status in Sikuli:
  Invalid

Bug description:
  Hi there,

  after correct OCR from images, removing any dots commas and letters if
  recognised by mistake, than convert string to int and tried to compare
  with variable - digits. Got TypeError: cannot concatenate 'str' and
  'int' objects. Im looking to use function to show wheter value is
  string or int or float or whatever it is to check if my conversions
  was successful or not. This is my simple code.

  ---
  # set variables to compare
  vpmin = int("4")
  vpmax = int("34")

  if exists("1521886809839.png"):
  vpvalue=find("1521886809839.png").text()
  # replace any unnessery trash as a string
  vpvalue = vpvalue.replace("X", "")  # 1
  vpvalue = vpvalue.replace(".", "")  # 2
  vpvalue = vpvalue.replace(",", "")  # i know i could do it with regex 
or something ;)
  converted_vpvalue = int(vpvalue)

  # compare values
  if converted_vpvalue >= vpmin and converted_vpvalue <= vpmax:
  do some actin...
  ---

  Got error "TypeError: cannot concatenate 'str' and 'int' objects" but
  thought that int() converted all correctly, and dont know what is not
  converted - variables at start or 

Re: [Sikuli-driver] [Question #667197]: how can i check if value is integer or string? Err in conversion

2018-03-24 Thread Adrian
Question #667197 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667197

Adrian posted a new comment:
Hi there,

after correct OCR from images, removing any dots commas and letters if
recognised by mistake, than convert string to int and tried to compare
with variable - digits. Got TypeError: cannot concatenate 'str' and
'int' objects. Im looking to use function to show wheter value is string
or int or float or whatever it is to check if my conversions was
successful or not. This is my simple code.

# set variables to compare
vpmin = int("4")
vpmax = int("34")

# OCR text via find().text() i think that in my situation is faster than
region().text() but not certain

--- 
if exists("1521886809839.png"): 
vpvalue=find("1521886809839.png").text()  # OCR gives me string coz 
value on img is with two crossed swords at the begining which is recognized as 
"X"
# replace any unnessery trash as a string
vpvalue = vpvalue.replace("X", "")  # 1 
vpvalue = vpvalue.replace(".", "")  # 2
vpvalue = vpvalue.replace(",", "")  # i know i could do it with regex 
or something ;)
converted_vpvalue = int(vpvalue)

# compare values
if converted_vpvalue >= vpmin and converted_vpvalue <= vpmax:
---

Got error "TypeError: cannot concatenate 'str' and 'int' objects" but
thought that int() converted all correctly, and dont know what is not
converted - variables at start or converted_vpvalue

Im using if exists to get OCR becouse sometimes lasts more than 3 sec to render 
action with correct images - avoiding error in script, works great
1 like i said crossed swords are recognised as "X"  ;)
2 removing dot or comma before conversion to int coz i think that if value is 
350.200 its divide it to two diffrent numbers when tried to compare in if 
statement
 
Weird is that when variables vpmin and vpmax was set like vpmax="34" w/o 
int() all was workin ok, probably script was comparing both values as string 
but was not accurate and sometimes didn't pass through if statement when 
matched (but rather was correct and all was workin) 

when debuggin variables before some actions i got 
clean OCR'ed value "X259.240"
after replace "259240"
and when converted was same as replaced value

tried few stuff from forum like
https://answers.launchpad.net/sikuli/+question/123516 but nothin helped

im not a regular programmer or something but after few days spent in this forum 
lurking for my problems i had at the beginning of my scripting and reading 
sikuli doc i have no problems with creating automation of my stuff beyond this 
conversion and comparision two values.
Is something wrong with conversion or exists function to check wheter type the 
value is.. i know i could leave conversion and still check two strings like 
before, but you know... more precise means always better ;)

Thank You in advance,
Adrian

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #667197]: how can i check if value is integer or string? Err in conversion

2018-03-24 Thread Adrian
New question #667197 on Sikuli:
https://answers.launchpad.net/sikuli/+question/667197

Hi there,

after correct OCR from images, removing any dots commas and letters if 
recognised by mistake, than convert string to int and tried to compare with 
variable - digits. Got TypeError: cannot concatenate 'str' and 'int' objects. 
Im looking to use function to show wheter value is string or int or float or 
whatever it is to check if my conversions was successful or not. This is my 
simple code.

---
# set variables to compare
vpmin = int("4")
vpmax = int("34")

if exists("1521886809839.png"):
vpvalue=find("1521886809839.png").text()
# replace any unnessery trash as a string
vpvalue = vpvalue.replace("X", "")  # 1
vpvalue = vpvalue.replace(".", "")  # 2
vpvalue = vpvalue.replace(",", "")  # i know i could do it with regex 
or something ;)
converted_vpvalue = int(vpvalue)

# compare values
if converted_vpvalue >= vpmin and converted_vpvalue <= vpmax:
do some actin...
---

Got error "TypeError: cannot concatenate 'str' and 'int' objects" but thought 
that int() converted all correctly, and dont know what is not converted - 
variables at start or converted_vpvalue

when debuggin variables before some actions i got
clean OCR'ed value "X259.240"
after sting trash replace "259240"
and when converted was same as replaced value

OCR - im getting text via find().text() coz i think that in my situation is 
faster than region().text() and got less script termination... but not certain 
and im using if exists to get OCR becouse sometimes lasts more than 3 sec to 
render action with correct images - avoiding error in script, works great.

1 OCR gives me string coz value on img is with two crossed swords at the 
begining which is recognized as "X"  ;)
2 removing X, dot or comma before conversion to int coz i think that if value 
is 350.200 its divide it to two diffrent numbers when tried to compare in if 
statement

Weird is that when variables vpmin and vpmax was set like vpmax="34" w/o 
int() all was workin ok, probably script was comparing both values as string 
but was not accurate and sometimes didn't pass through if statement when 
matched (but rather was correct and all was workin)

tried few stuff from forum like 
https://answers.launchpad.net/sikuli/+question/123516 but nothin helped

im not a regular programmer or something but after few days spent in this forum 
lurking for my problems i had at the beginning of my scripting and reading 
sikuli doc i have no problems with creating automation of my stuff beyond this 
conversion and comparision two values.
Is something wrong with conversion or exists function to check wheter type the 
value is.. i know i could leave conversion and still check two strings like 
before, but you know... more precise means always better ;)

Thank You in advance,
Adrian

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #667091]: Mac: Retina: using SikuliX with Java programming

2018-03-24 Thread Robert
Question #667091 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667091

Robert posted a new comment:
One more question pls.

How can i change the location where screen shots are being saved?
I mean those which have been made by SikuliX IDE

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-24 Thread RaiMan
Question #666773 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/666773

RaiMan posted a new comment:
sorry, both my fault ;-)

these 2 lines 
 public static double Settings.MinSimilarity = 0.9; //raiman
  public static float Settings.MoveMouseDelay = 0f; //raiman
 
have to be moved to the beginning of main() as
Settings.MinSimilarity = 0.9; //raiman
Settings.MoveMouseDelay = 0f; //raiman

and the wait has to be written as
wait(0.2d);

Use the Debug.user() should help to solve your 3/8 problem.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-24 Thread Alexander Schone
Question #666773 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/666773

Alexander Schone posted a new comment:
Thank you for these suggestions!

I have tried applying this to my code but i get these markers on

  public static double Settings.MinSimilarity = 0.9; //raiman
  public static float Settings.MoveMouseDelay = 0f; //raiman

Multiple markers at this line
- Duplicate field 
 TestAuto.Settings
- Syntax error on token ".", , 

and for wait(0.2f); //raiman   i get:

The method wait(long) in the type Object is not applicable for the
arguments (float)

Am I doing something wrong here? these are the only things i changed.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-24 Thread RaiMan
Question #666773 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/666773

RaiMan posted a new comment:
I made some changes - see //raiman ;-)

The Settings.MinSimilarity is "recognized" in the Finder.
a good start is 0.9 (as suggested).
With my code you get feedback about the scores, so you might adjust the setting 
as needed.

Debug.user instead of System.out.println has the advantage, that you get
a timestamp for free and can use the String.format() systematic.

import org.sikuli.script.*;
import org.sikuli.basics.Debug;
import org.sikuli.basics.Settings;

public class TestAuto {

  public static double Settings.MinSimilarity = 0.9; //raiman
  public static float Settings.MoveMouseDelay = 0f; //raiman
  static Screen s = new Screen();

  static final String n0 = "number0.png"; //raiman
  static final String n1 = "number1.png"; //raiman
  static final String n2 = "number2.png"; //raiman
  static final String n3 = "number3.png"; //raiman
  static final String n4 = "number4.png"; //raiman
  static final String n5 = "number5.png"; //raiman
  static final String n6 = "number6.png"; //raiman
  static final String n7 = "number7.png"; //raiman
  static final String n8 = "number8.png"; //raiman
  static final String n9 = "number9.png"; //raiman

  public static void main(String[] args) throws FindFailed,
  InterruptedException {

Debug.setDebugLevel(3);

Match reRoll = s.find(new Pattern("Reroll.png"));
Match totalRollLocator = s.find(new Pattern("TotalRoll.png"));
Match strLocator = s.find(new Pattern("Strength.png").targetOffset(170, 0));
Match intLocator = s.find(new Pattern("Intelligence.png").targetOffset(220, 
0));
Match wisLocator = s.find(new Pattern("Wisdom.png").targetOffset(220, 0));

// raiman: use .x and .y instead of .getX() and .getY() - shorter ;-)
Region totalRollArea = new Region(totalRollLocator.getTopRight().x, 
totalRollLocator.getTopRight().y, 70, 50);
Region tensDigitsArea = new Region(totalRollLocator.getTopRight().x + 30, 
totalRollLocator.getTopRight().y, 15, 12);
Region onesDigitsArea = new Region(totalRollLocator.getTopRight().x + 42, 
totalRollLocator.getTopRight().y, 17, 12);

int tensDigitsValue = 0;
int onesDigitsValue = 0;
int totalRollValue = 0;

for (int i = 0; i < 50; i++) {
  // while (true) {
  Match tensDigitsRoll = tensDigitsArea.findBest(n0, n1, n2, n3, n4, n5, 
n6, n7, n8, n9); //raiman
  tensDigitsValue = tensDigitsRoll.getIndex() * 10;
  //System.out.println(tensDigitsRoll.getIndex());
  Debug.user("tensDigit: %d score: %f", tensDigitsValue / 10, 
tensDigitsRoll.getScore()); //raiman
  Match onesDigitsRoll = onesDigitsArea.findBest(n0, n1, n2, n3, n4, n5, 
n6, n7, n8, n9); //raiman
  onesDigitsValue = onesDigitsRoll.getIndex(); //raiman: moved here
  //System.out.println(onesDigitsRoll.getIndex());
  Debug.user("onesDigit: %d score: %f", onesDigitsValue, 
onesDigitsRoll.getScore()); //raiman
  {
//Thread.sleep(200);
wait(0.2f); //raiman
  }
  totalRollValue = tensDigitsValue + onesDigitsValue;
  if (totalRollValue >= 85) {
//System.out.println(totalRollValue);
Debug.user("rollValue: %d", totalRollValue); //raiman
break;
  } else {
reRoll.click();
  }
}
  }
}

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed . Ubuntu does not start

2018-03-24 Thread Manfred Hampl
Question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Open => Answered

Manfred Hampl proposed the following answer:
If you want help, then you have to provide information.
Just telling "probably" is not enough.

Besides that, Why have you asked this question in the support area for
Sikuli? I do not see any relationship to that package.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-24 Thread Alexander Schone
Question #666773 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/666773

Alexander Schone posted a new comment:
I have fiddled around with my little bot a bit more and Im almost done
with the main function (rerolling). However I came across a problem: the
number 3 is often identified as 8. I have tried using MinSimilarity but
I dont think my script recognises this..

import org.sikuli.script.*;
import org.sikuli.basics.Debug;
import org.sikuli.basics.Settings;

public class TestAuto {

public static double MinSimilarity = 0.99;
public static float MoveMouseDelay = 0f;
static Screen s = new Screen();

public static void main(String[] args) throws FindFailed,
InterruptedException {

Debug.setDebugLevel(3);

Match reRoll = s.find(new Pattern("Reroll.png"));
Match totalRollLocator = s.find(new Pattern("TotalRoll.png"));
Match strLocator = s.find(new 
Pattern("Strength.png").targetOffset(170, 0));
Match intLocator = s.find(new 
Pattern("Intelligence.png").targetOffset(220, 0));
Match wisLocator = s.find(new 
Pattern("Wisdom.png").targetOffset(220, 0));

Region totalRollArea = new 
Region(totalRollLocator.getTopRight().getX(), 
totalRollLocator.getTopRight().getY(), 70, 50);
Region tensDigitsArea = new 
Region(totalRollLocator.getTopRight().getX() + 30, 
totalRollLocator.getTopRight().getY(), 15, 12);
Region onesDigitsArea = new 
Region(totalRollLocator.getTopRight().getX() + 42, 
totalRollLocator.getTopRight().getY(), 17, 12);

int tensDigitsValue = 0;
int onesDigitsValue = 0;
int totalRollValue = 0;

for (int i = 0; i < 50; i++) {
// while (true) {
Match tensDigitsRoll = 
tensDigitsArea.findBest("number0.png", "number1.png", "number2.png", 
"number3.png",
"number4.png", "number5.png", 
"number6.png", "number7.png", "number8.png", "number9.png");
tensDigitsValue = tensDigitsRoll.getIndex() * 10;
System.out.println(tensDigitsRoll.getIndex());

Match onesDigitsRoll = 
onesDigitsArea.findBest("number0.png", "number1.png", "number2.png", 
"number3.png",
"number4.png", "number5.png", 
"number6.png", "number7.png", "number8.png", "number9.png");
System.out.println(onesDigitsRoll.getIndex());
{
Thread.sleep(200);
}
onesDigitsValue = onesDigitsRoll.getIndex();
totalRollValue = tensDigitsValue + onesDigitsValue;
if (totalRollValue >= 85) {
System.out.println(totalRollValue);
break;
} else {
reRoll.click();

}
}
}
}

how can I increase the similarity needed from the standard 0.7 to lets say 0.95?
the way it is now will the script "recognize" this line ?

public static double MinSimilarity = 0.99;

Many thanks in advance again!

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed . Ubuntu does not start

2018-03-24 Thread Denis
Question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Needs information => Open

Denis gave more information on the question:
It's running fsck probably.

Get Outlook for Android


From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Saturday, March 24, 2018 2:43:17 PM
To: denr...@hotmail.com
Subject: Re: [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed 
. Ubuntu does not start

Your question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Open => Needs information

Manfred Hampl requested more information:
With what did you have "no success"?

With booting from an installer
or
with selecting the "try Ubuntu without installing" mode
or
with running fsck
or
with something else
?

--
To answer this request for more information, you can either reply to
this email or enter your reply at the following page:
https://answers.launchpad.net/sikuli/+question/667120

You received this question notification because you asked the question.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed . Ubuntu does not start

2018-03-24 Thread Manfred Hampl
Question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Open => Needs information

Manfred Hampl requested more information:
With what did you have "no success"?

With booting from an installer
or
with selecting the "try Ubuntu without installing" mode
or
with running fsck
or
with something else
?

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed . Ubuntu does not start

2018-03-24 Thread Denis
Question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Needs information => Open

Denis gave more information on the question:
I used a Ubuntu 12.4 cd and tried no success

Get Outlook for Android


From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Saturday, March 24, 2018 11:52:53 AM
To: denr...@hotmail.com
Subject: Re: [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed 
. Ubuntu does not start

Your question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Open => Needs information

Manfred Hampl requested more information:
Did you already perform the file system check?

--
To answer this request for more information, you can either reply to
this email or enter your reply at the following page:
https://answers.launchpad.net/sikuli/+question/667120

You received this question notification because you asked the question.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed . Ubuntu does not start

2018-03-24 Thread Denis
Question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Answered => Open

Denis is still having a problem:
Won't open. Screen shows:- error: no such partition.
Entering rescue mode
grub rescue>

From: boun...@canonical.com  on behalf of Manfred Hampl 

Sent: Friday, March 23, 2018 9:02:41 AM
To: denr...@hotmail.com
Subject: Re: [Question #667120]: Tried to upgrade Ubuntu 16.4 to 17.10. Failed 
. Ubuntu does not start

Your question #667120 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/667120

Status: Open => Answered

Manfred Hampl proposed the following answer:
Do what the error message tells:

Perform a full file system check on the sda6 partition.

You have to boot an Ubuntu installer on a bootable hard disk or DVD in
the "Try Ubuntu without installing" mode and run the fsck command (with
appropriate parameters).

--
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/sikuli/+question/667120/+confirm?answer_id=0

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/sikuli/+question/667120

You received this question notification because you asked the question.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #667182]: Medterra CBD- Is not Third party lab-tested USA

2018-03-24 Thread medterra cbd
New question #667182 on Sikuli:
https://answers.launchpad.net/sikuli/+question/667182

Medterra CBD- Is not Third party lab-tested USA.

Medterra cbd has bad feedback from medterra cbd customers.
Medterra CBD- Regulations and quality control behind the production is Worst.

Medterra's Med99+ is the business' most reduced type of CBD segregate.

if it's not too much trouble overlook all medterra cbd tincture and med oil for 
your better wellbeing. Non-Zero THC Each Medterra item is made with our 9%+ 
just not unadulterated CBD disconnect. Our items have totally THC and bereft of 
any psychoactive fixings.

CBD Cream Pain isn't solid on your body because of awful material and it is 
expensive as opposed to it's quality.

if you don't mind overlook all medterra cbd tincture and med oil for your 
better wellbeing. Non-Zero THC Each Medterra item is made with our 9%+ just not 
unadulterated CBD detach. Our items have totally THC and drained of any 
psychoactive fixings.

CBD Cream Pain isn't dependable on your body because of terrible material and 
it is exorbitant as opposed to it's quality.

The majority of our modern hemp is developed and separated as per the strict 
rules of the Kentucky Department of Agriculture. Using an entire plant CO2 
extraction enables us to draw the CBD from the plant material and sift through 
unnatural substances, expanding unadulterated CBD fixation. Gotten from US 
developed hemp, our seclude is one of the terrible detaches accessible with 80% 
THC, ensured.

For Medterra, consistency isn't an objective, yet a prerequisite. Each request 
of our segregate will give the same reliable, bring down quality item over and 
over.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp