(eog:56408): EOG-WARNING **: 12:53:23.754: Generating thumbnail failed: Child process exited with code 1 /u/Useful_Boss_2532 Python Education

(eog:56408): EOG-WARNING **: 12:53:23.754: Generating thumbnail failed: Child process exited with code 1 /u/Useful_Boss_2532 Python Education

i had this error show up about 30 times, and i’ve got a background program running, it’s been running for like 12 days and it will continue to run until the answer is found, but does this error warning show an attempt to print the answer but couldn’t? HELP!! This really could be worth some major dough, if it was this..i did have a print function embedded in my program when the answer is found, but it’s supposed to be in pdf format…??

submitted by /u/Useful_Boss_2532
[link] [comments]

​r/learnpython i had this error show up about 30 times, and i’ve got a background program running, it’s been running for like 12 days and it will continue to run until the answer is found, but does this error warning show an attempt to print the answer but couldn’t? HELP!! This really could be worth some major dough, if it was this..i did have a print function embedded in my program when the answer is found, but it’s supposed to be in pdf format…?? submitted by /u/Useful_Boss_2532 [link] [comments] 

i had this error show up about 30 times, and i’ve got a background program running, it’s been running for like 12 days and it will continue to run until the answer is found, but does this error warning show an attempt to print the answer but couldn’t? HELP!! This really could be worth some major dough, if it was this..i did have a print function embedded in my program when the answer is found, but it’s supposed to be in pdf format…??

submitted by /u/Useful_Boss_2532
[link] [comments]  i had this error show up about 30 times, and i’ve got a background program running, it’s been running for like 12 days and it will continue to run until the answer is found, but does this error warning show an attempt to print the answer but couldn’t? HELP!! This really could be worth some major dough, if it was this..i did have a print function embedded in my program when the answer is found, but it’s supposed to be in pdf format…?? submitted by /u/Useful_Boss_2532 [link] [comments]

Read more

Regex with groups, is there a more elegant way to do this? /u/Benign_Variant Python Education

Regex with groups, is there a more elegant way to do this? /u/Benign_Variant Python Education

Let’s say a fella wanted to parse out a (US) city, state, and 9 digit zipcode from a string that had them run together, Something like: “DOVER, FL 33527-4102”.

I’m currently doing this:

csz = "DOVER, FL 33527-4102" m1 = re.search(r'.+ ([A-Z][A-Z]) ([0-9]{5}-[0-9]{4})',csz) if (m1): (city,state,zipcode) = m1.groups() print("City:",city) print("State:",state) print("Zipcode:",zipcode) else: print("Failed") #Is there a better way to do this. Can it be done in fewer lines? 

submitted by /u/Benign_Variant
[link] [comments]

​r/learnpython Let’s say a fella wanted to parse out a (US) city, state, and 9 digit zipcode from a string that had them run together, Something like: “DOVER, FL 33527-4102”. I’m currently doing this: csz = “DOVER, FL 33527-4102” m1 = re.search(r’.+ ([A-Z][A-Z]) ([0-9]{5}-[0-9]{4})’,csz) if (m1): (city,state,zipcode) = m1.groups() print(“City:”,city) print(“State:”,state) print(“Zipcode:”,zipcode) else: print(“Failed”) #Is there a better way to do this. Can it be done in fewer lines? submitted by /u/Benign_Variant [link] [comments] 

Let’s say a fella wanted to parse out a (US) city, state, and 9 digit zipcode from a string that had them run together, Something like: “DOVER, FL 33527-4102”.

I’m currently doing this:

csz = "DOVER, FL 33527-4102" m1 = re.search(r'.+ ([A-Z][A-Z]) ([0-9]{5}-[0-9]{4})',csz) if (m1): (city,state,zipcode) = m1.groups() print("City:",city) print("State:",state) print("Zipcode:",zipcode) else: print("Failed") #Is there a better way to do this. Can it be done in fewer lines? 

submitted by /u/Benign_Variant
[link] [comments]  Let’s say a fella wanted to parse out a (US) city, state, and 9 digit zipcode from a string that had them run together, Something like: “DOVER, FL 33527-4102”. I’m currently doing this: csz = “DOVER, FL 33527-4102” m1 = re.search(r’.+ ([A-Z][A-Z]) ([0-9]{5}-[0-9]{4})’,csz) if (m1): (city,state,zipcode) = m1.groups() print(“City:”,city) print(“State:”,state) print(“Zipcode:”,zipcode) else: print(“Failed”) #Is there a better way to do this. Can it be done in fewer lines? submitted by /u/Benign_Variant [link] [comments]

Read more

What should i learn in python /u/Existing_Tap8748 Python Education

What should i learn in python /u/Existing_Tap8748 Python Education

Iam still student and still learning

I know that python is important thise dayes ,so if I’m not willing to use it as main language , what is the important things that i should learn with python or should have knowledge about.

I know the basics of the language

submitted by /u/Existing_Tap8748
[link] [comments]

​r/learnpython Iam still student and still learning I know that python is important thise dayes ,so if I’m not willing to use it as main language , what is the important things that i should learn with python or should have knowledge about. I know the basics of the language submitted by /u/Existing_Tap8748 [link] [comments] 

Iam still student and still learning

I know that python is important thise dayes ,so if I’m not willing to use it as main language , what is the important things that i should learn with python or should have knowledge about.

I know the basics of the language

submitted by /u/Existing_Tap8748
[link] [comments]  Iam still student and still learning I know that python is important thise dayes ,so if I’m not willing to use it as main language , what is the important things that i should learn with python or should have knowledge about. I know the basics of the language submitted by /u/Existing_Tap8748 [link] [comments]

Read more

What external libraries should I prioritise to learn? /u/BetaBeti Python Education

What external libraries should I prioritise to learn? /u/BetaBeti Python Education

So it’s been like about a month and a half and I think I learnt most of the python basics. Been using some of the built in libraries for my projects but most of them require external libraries. I have been learning kivy to learn gui and plan to learn django. Are there any other libraries I should prioritise or put in my do list.

Any intermediate projects ideas will also be appreciated. Thankss

submitted by /u/BetaBeti
[link] [comments]

​r/learnpython So it’s been like about a month and a half and I think I learnt most of the python basics. Been using some of the built in libraries for my projects but most of them require external libraries. I have been learning kivy to learn gui and plan to learn django. Are there any other libraries I should prioritise or put in my do list. Any intermediate projects ideas will also be appreciated. Thankss submitted by /u/BetaBeti [link] [comments] 

So it’s been like about a month and a half and I think I learnt most of the python basics. Been using some of the built in libraries for my projects but most of them require external libraries. I have been learning kivy to learn gui and plan to learn django. Are there any other libraries I should prioritise or put in my do list.

Any intermediate projects ideas will also be appreciated. Thankss

submitted by /u/BetaBeti
[link] [comments]  So it’s been like about a month and a half and I think I learnt most of the python basics. Been using some of the built in libraries for my projects but most of them require external libraries. I have been learning kivy to learn gui and plan to learn django. Are there any other libraries I should prioritise or put in my do list. Any intermediate projects ideas will also be appreciated. Thankss submitted by /u/BetaBeti [link] [comments]

Read more

Are curved-display phones becoming common again? /u/s1r-william Android

Are curved-display phones becoming common again? /u/s1r-william Android

So i’ve recently bought a Realme GT 6T after hours of research and comparison and i’ve noticed a bunch of mid to high range phones launched this year have curved edges. I think the last time i’ve seen a phone with curved display was years ago with the galaxy S10 or something like that. Is there a reason to this change or am i just stupid enough to never have noticed the presence of new curved-display phones?

submitted by /u/s1r-william
[link] [comments]

​r/Android So i’ve recently bought a Realme GT 6T after hours of research and comparison and i’ve noticed a bunch of mid to high range phones launched this year have curved edges. I think the last time i’ve seen a phone with curved display was years ago with the galaxy S10 or something like that. Is there a reason to this change or am i just stupid enough to never have noticed the presence of new curved-display phones? submitted by /u/s1r-william [link] [comments] 

So i’ve recently bought a Realme GT 6T after hours of research and comparison and i’ve noticed a bunch of mid to high range phones launched this year have curved edges. I think the last time i’ve seen a phone with curved display was years ago with the galaxy S10 or something like that. Is there a reason to this change or am i just stupid enough to never have noticed the presence of new curved-display phones?

submitted by /u/s1r-william
[link] [comments]  So i’ve recently bought a Realme GT 6T after hours of research and comparison and i’ve noticed a bunch of mid to high range phones launched this year have curved edges. I think the last time i’ve seen a phone with curved display was years ago with the galaxy S10 or something like that. Is there a reason to this change or am i just stupid enough to never have noticed the presence of new curved-display phones? submitted by /u/s1r-william [link] [comments]

Read more

What was your first smartphone you’ve ever owned? /u/Character-Parsley377 Android

What was your first smartphone you’ve ever owned? /u/Character-Parsley377 Android

10 years ago, my dad bought a phone for me which is a Cherry Mobile Spin, it’s literally a very budget phone that costs $29 in my country (which is adjusted to $39 today)

From the looks of it, the design is heavily inspired by the HTC M series which were ruling the mobile market. Spent many times playing Minecraft on it for 3 years until I got a BlackBerry Z10 my older brother passed it to me.

submitted by /u/Character-Parsley377
[link] [comments]

​r/Android 10 years ago, my dad bought a phone for me which is a Cherry Mobile Spin, it’s literally a very budget phone that costs $29 in my country (which is adjusted to $39 today) From the looks of it, the design is heavily inspired by the HTC M series which were ruling the mobile market. Spent many times playing Minecraft on it for 3 years until I got a BlackBerry Z10 my older brother passed it to me. submitted by /u/Character-Parsley377 [link] [comments] 

10 years ago, my dad bought a phone for me which is a Cherry Mobile Spin, it’s literally a very budget phone that costs $29 in my country (which is adjusted to $39 today)

From the looks of it, the design is heavily inspired by the HTC M series which were ruling the mobile market. Spent many times playing Minecraft on it for 3 years until I got a BlackBerry Z10 my older brother passed it to me.

submitted by /u/Character-Parsley377
[link] [comments]  10 years ago, my dad bought a phone for me which is a Cherry Mobile Spin, it’s literally a very budget phone that costs $29 in my country (which is adjusted to $39 today) From the looks of it, the design is heavily inspired by the HTC M series which were ruling the mobile market. Spent many times playing Minecraft on it for 3 years until I got a BlackBerry Z10 my older brother passed it to me. submitted by /u/Character-Parsley377 [link] [comments]

Read more
First month of pre-registration numbers for my Google Play app /u/NotFamous307 Android

First month of pre-registration numbers for my Google Play app /u/NotFamous307 Android

First month of pre-registration numbers for my Google Play app /u/NotFamous307 Android

First month of pre-registration numbers for my Google Play app

I wanted to share what the (nearly) first month of my apps Pre-registration numbers on Google Play look like. Tomorrow the pre-register page for my game Tower Farm will have been up for the first month – You may know that once you launch pre-register on a Google Play app you have 90 days to then release it, and so every person you can reach is incredibly important to a successful launch. I’m a solo dev doing this as a hobby, so I don’t have any kind of marketing budget or any advertisements running anywhere. With 1 more day to go in the first month the game has been pre-registered by 584 people so far! That may not sound great for some devs, but for me it the biggest numbers I’ve reached yet doing this and I’m excited for launch day in 2 months or so!

Here is the graph where you can see the first day spike, and also a couple other spikes where screenshots of the game drove some traffic! You can also check out Tower Farm here if interested, it is a roguelite Tower Defense game where Farming is your key to gaining resources. https://play.google.com/store/apps/details?id=com.genetix.towerfarm

https://preview.redd.it/r7fifqu7re9e1.png?width=3812&format=png&auto=webp&s=077ad30dffe5f434cdc4607d2c778c1e71ad569b

submitted by /u/NotFamous307
[link] [comments]

​r/Android I wanted to share what the (nearly) first month of my apps Pre-registration numbers on Google Play look like. Tomorrow the pre-register page for my game Tower Farm will have been up for the first month – You may know that once you launch pre-register on a Google Play app you have 90 days to then release it, and so every person you can reach is incredibly important to a successful launch. I’m a solo dev doing this as a hobby, so I don’t have any kind of marketing budget or any advertisements running anywhere. With 1 more day to go in the first month the game has been pre-registered by 584 people so far! That may not sound great for some devs, but for me it the biggest numbers I’ve reached yet doing this and I’m excited for launch day in 2 months or so! Here is the graph where you can see the first day spike, and also a couple other spikes where screenshots of the game drove some traffic! You can also check out Tower Farm here if interested, it is a roguelite Tower Defense game where Farming is your key to gaining resources. https://play.google.com/store/apps/details?id=com.genetix.towerfarm https://preview.redd.it/r7fifqu7re9e1.png?width=3812&format=png&auto=webp&s=077ad30dffe5f434cdc4607d2c778c1e71ad569b submitted by /u/NotFamous307 [link] [comments] 

First month of pre-registration numbers for my Google Play app

I wanted to share what the (nearly) first month of my apps Pre-registration numbers on Google Play look like. Tomorrow the pre-register page for my game Tower Farm will have been up for the first month – You may know that once you launch pre-register on a Google Play app you have 90 days to then release it, and so every person you can reach is incredibly important to a successful launch. I’m a solo dev doing this as a hobby, so I don’t have any kind of marketing budget or any advertisements running anywhere. With 1 more day to go in the first month the game has been pre-registered by 584 people so far! That may not sound great for some devs, but for me it the biggest numbers I’ve reached yet doing this and I’m excited for launch day in 2 months or so!

Here is the graph where you can see the first day spike, and also a couple other spikes where screenshots of the game drove some traffic! You can also check out Tower Farm here if interested, it is a roguelite Tower Defense game where Farming is your key to gaining resources. https://play.google.com/store/apps/details?id=com.genetix.towerfarm

https://preview.redd.it/r7fifqu7re9e1.png?width=3812&format=png&auto=webp&s=077ad30dffe5f434cdc4607d2c778c1e71ad569b

submitted by /u/NotFamous307
[link] [comments]

  I wanted to share what the (nearly) first month of my apps Pre-registration numbers on Google Play look like. Tomorrow the pre-register page for my game Tower Farm will have been up for the first month – You may know that once you launch pre-register on a Google Play app you have 90 days to then release it, and so every person you can reach is incredibly important to a successful launch. I’m a solo dev doing this as a hobby, so I don’t have any kind of marketing budget or any advertisements running anywhere. With 1 more day to go in the first month the game has been pre-registered by 584 people so far! That may not sound great for some devs, but for me it the biggest numbers I’ve reached yet doing this and I’m excited for launch day in 2 months or so! Here is the graph where you can see the first day spike, and also a couple other spikes where screenshots of the game drove some traffic! You can also check out Tower Farm here if interested, it is a roguelite Tower Defense game where Farming is your key to gaining resources. https://play.google.com/store/apps/details?id=com.genetix.towerfarm https://preview.redd.it/r7fifqu7re9e1.png?width=3812&format=png&auto=webp&s=077ad30dffe5f434cdc4607d2c778c1e71ad569b submitted by /u/NotFamous307 [link] [comments]

Read more