Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: file sharing across devices question
Post: file sharing across devices question
...ok, so basically i made a reminder GUI application (using TkInter mainly) and i save the date in a CSV file. The client wants to be able to install this software on various devices. I have beent se... |
|
jacksfrustration |
General Coding Help |
3 |
703 |
Aug-28-2024, 08:50 PM |
|
|
Thread: installing an application on a Mac OS question
Post: installing an application on a Mac OS question
My question is a bit complex but simple at the same time.
I designed an application for a client. They want me to install the application on a Mac as well as Windows. This application uses images and ... |
|
jacksfrustration |
General Coding Help |
1 |
314 |
Aug-26-2024, 07:31 PM |
|
|
Thread: filtering csv file problem
Post: filtering csv file problem
i am trying to write a function to send emails for reminders if todays date matches the dates saved on a csv file. i first go through the csv file, i add the correct reminders and create a list, i the... |
|
jacksfrustration |
General Coding Help |
1 |
547 |
Jul-04-2024, 11:41 AM |
|
|
Thread: writing list to csv file problem
Post: RE: writing list to csv file problem
(Jun-30-2024, 03:55 AM)deanhystad Wrote: If you are using pandas, why are you using a CSV writer? Pandas knows how to read and write CSV files. Your save_info function should be:
events_dataframe.... |
|
jacksfrustration |
General Coding Help |
5 |
1,329 |
Jul-01-2024, 10:17 AM |
|
|
Thread: writing list to csv file problem
Post: writing list to csv file problem
im making a task reminder that will send emails and sms reminding of tasks and events. my problem that im stuck with is with saving the data. i chose csv as it is easy to maintain and construct using ... |
|
jacksfrustration |
General Coding Help |
5 |
1,329 |
Jun-29-2024, 11:17 PM |
|
|
Thread: recurring events every specific amount of days
Post: RE: recurring events every specific amount of days
(Jun-27-2024, 12:07 PM)deanhystad Wrote: i want the format of the dates to be DD-MM-YYYY instead of the default YYYY-MM-DDWhy put dates in a format that is not sortable or comparable. Save and wor... |
|
jacksfrustration |
General Coding Help |
6 |
1,052 |
Jun-27-2024, 12:21 PM |
|
|
Thread: recurring events every specific amount of days
Post: RE: recurring events every specific amount of days
(Jun-26-2024, 02:17 PM)deanhystad Wrote: What have you tried?
And why a CSV file? By being tabular, CSV files are restrictive and require extra work to read and write. I would use a json file. I... |
|
jacksfrustration |
General Coding Help |
6 |
1,052 |
Jun-27-2024, 12:04 PM |
|
|
Thread: recurring events every specific amount of days
Post: recurring events every specific amount of days
im making a reminder app not for profit and one of the features would ideally be recurring reminders. So i would have something like a checkbox and if it is on then a simpledialog window will open so ... |
|
jacksfrustration |
General Coding Help |
6 |
1,052 |
Jun-26-2024, 01:58 PM |
|
|
Thread: email address input
Post: RE: email address input
(Jun-26-2024, 05:13 AM)rodiongork Wrote: Hi Friend!
it sounds like we all may profit from a bit more details - e.g. what is the exact output of error ModuleNotFound, which module it complains about... |
|
jacksfrustration |
General Coding Help |
5 |
1,193 |
Jun-26-2024, 05:17 AM |
|
|
Thread: email address input
Post: email address input
making an app to send reminder emails. i want to set up a way to make sure that in the email entry widget the input should always be in a format of [email protected] and any input that does not match th... |
|
jacksfrustration |
General Coding Help |
5 |
1,193 |
Jun-26-2024, 05:03 AM |
|
|
Thread: regex issue
Post: RE: regex issue
(Jun-25-2024, 12:04 PM)menator01 Wrote: You might could use pythons startswith method
phone = '+44 20 7123 4567'
phone2 = '44 20 7123 4567'
phone3 = '+41 20 7123 4567'
test = True if phone.startsw... |
|
jacksfrustration |
General Coding Help |
4 |
631 |
Jun-25-2024, 12:26 PM |
|
|
Thread: regex issue
Post: regex issue
basically im making a reminder app as practice. i try to use regex to verify that the phone number the user inputs is UK based. So basically the input should only start with + and end with 12 digits. ... |
|
jacksfrustration |
General Coding Help |
4 |
631 |
Jun-25-2024, 11:46 AM |
|
|
Thread: tkinter photo image problem
Post: RE: tkinter photo image problem
(Jun-24-2024, 05:15 PM)menator01 Wrote: Are you trying to get something like this?
import tkinter as tk
from PIL import Image, ImageTk
import os
# Setting a path to executing script
path = os.pa... |
|
jacksfrustration |
General Coding Help |
5 |
1,514 |
Jun-25-2024, 11:44 AM |
|
|
Thread: tkinter photo image problem
Post: RE: tkinter photo image problem
(Jun-24-2024, 04:12 PM)menator01 Wrote: You may be better off using a label to display the image
The images you posted are not showing
I tried using the label but i could get it to align in the mid... |
|
jacksfrustration |
General Coding Help |
5 |
1,514 |
Jun-24-2024, 04:15 PM |
|
|
Thread: tkinter photo image problem
Post: tkinter photo image problem
i have the basic code that follows
window = Tk()
window.title("Reminder Application")
window.geometry("1079x719")
bg_pic = PhotoImage(file="christ_photo.png")
canvas = Canvas(window, width=835, hei... |
|
jacksfrustration |
General Coding Help |
5 |
1,514 |
Jun-24-2024, 03:56 PM |
|
|
Thread: reminder app logic problem
Post: RE: reminder app logic problem
thanks a lot for your help mate.. much appreciated |
|
jacksfrustration |
General Coding Help |
3 |
710 |
Jun-24-2024, 03:50 PM |
|
|
Thread: reminder app logic problem
Post: reminder app logic problem
im making a reminder app. one of the first step would be to only accept dates set in the future and not in the past to avoid any user mistakes. Does anyone know how to do this? much appreciated |
|
jacksfrustration |
General Coding Help |
3 |
710 |
Jun-24-2024, 02:28 PM |
|
|
Thread: sort list of dictionaries by value
Post: sort list of dictionaries by value
i am trying to sort a list of dictionaries based by a value of a specific key under the column of name values. i found two ways to do this
first i found
new_lst=sorted(lst,key=itemgetter(name))this... |
|
jacksfrustration |
General Coding Help |
4 |
928 |
Jun-20-2024, 01:32 PM |
|
|
Thread: web scraping problem
Post: web scraping problem
im trying to build a web scraper using BS4. i want to filter news articles and only get the href links of all the articles that have above a number of votes in them. for example my code looks somethin... |
|
jacksfrustration |
General Coding Help |
1 |
422 |
May-30-2024, 12:07 PM |
|
|
Thread: calculator app problem
Post: calculator app problem
hello. so im trying to build a calculator app GUI with tkinter and i have the following problem
First to explain how the code works, i concatenate digits to the string representations of each of the v... |
|
jacksfrustration |
General Coding Help |
1 |
656 |
Apr-11-2024, 12:13 PM |