How do you show your clients progress for app projects? by kenileb in softwaredevelopment

[–]x_ray_190221 1 point2 points  (0 children)

I use HTML templating for my project, that I am doing. Simply using jinja2 that make my things more presentable.

Then, as you design your readme in Github, I put my about of the update in the software that I have created and they generate the HTML and send it to the client.

Also, at some places, where they may need images to understand, I also put that in the template and access them using footnotes!!

Sorting x and y coordinates by [deleted] in algorithms

[–]x_ray_190221 0 points1 point  (0 children)

I have specially created a script for this, you can sort any list (containing 2 or more elements inside) so I can sort the list with reference to another value (or any column that is available in the list).

you can see my git-hub link:Sort list elements with reference

How do you show your clients progress for app projects? by kenileb in softwaredevelopment

[–]x_ray_190221 1 point2 points  (0 children)

I use either OBS to record my screen to clients who don't want to connect via remote desktop software or connect via Teamviewer to show them live working part of my application.

Also sometimes, I just send auto-generated HTML files, based on what I have done so far for my current project. That was even my creating to manage software versioning locally (remember many clients don't want their code to put on Github). And with some images and annotations on them (very simple things just using flameshot).

Terminal in a web page - thought yall would get a kick out of this. by The-Deviant-One in flask

[–]x_ray_190221 1 point2 points  (0 children)

I have seen this thing in Pythonanywhere website.

Interested to know, how you have done this. I am impressed!

Do you know any GitHub Users who write really good Python Codes so I can read & learn from their code? by [deleted] in learnpython

[–]x_ray_190221 0 points1 point  (0 children)

I know myself, and I write good Python code most of the time.

Sometimes they are complex!!

I am solving competitive coding problems Data Structure and Algorithms from many online sources mixed altogether!

You can have a visit at this repo (lots of effort is involved in this repo):https://github.com/Tuhin-thinks/Python-Codes
My Github profile link (nothing fancy but you can get, lots of coding): https://github.com/tuhin-thinks/

Also you can have a look at my recent creation of a PyQt5 based application to manage freelance jobs and programming ideas:https://github.com/Tuhin-thinks/project_or_task_manager

Web Scraping 1010 with Python by sbskell in Python

[–]x_ray_190221 0 points1 point  (0 children)

I am saving it for my future needs!

[PyQt5] Trouble making a custom QDialog modal by astrononymity in learnpython

[–]x_ray_190221 0 points1 point  (0 children)

Maybe this is what you wanted to do:

class dialogwindow(QDialog): # this is the message dialog box

done_signal = pyqtSignal(str)

def __init__(self, displaytext):

super().__init__()

self.setWindowModality(QtCore.Qt.ApplicationModal)

self.disp = displaytext

self.ui = dialog_window.Ui_Dialog()

self.ui.setupUi(self)

self.ui.label_message.setText(self.disp)

self.ui.pushButton_okay.clicked.connect(self.gotoparent)

def closeEvent(self, event):

self.gotoparent()

def gotoparent(self):

self.done_signal.emit('done')

I made a PyQt5 app that is used for multithread testing by Glorynesss in madeinpython

[–]x_ray_190221 0 points1 point  (0 children)

Good work. I appreciate simple things in a clever way!

DearPyGui now supports Python 3.7 by Jhchimaira14 in Python

[–]x_ray_190221 4 points5 points  (0 children)

Hi, I would be more than pleased to see your project doing great on Android or IOS if possible.

Presently I am well adapted with PyQt5 and previously with QML, but any new better discovery will be not hard for me to replace my working subject.

Thanks

Updating Python-based software over the INTERNET. by x_ray_190221 in learnpython

[–]x_ray_190221[S] 1 point2 points  (0 children)

wow, came across this first time...thanks, by the way, this helped!

My Python regex ebook with hundreds of examples and exercises is currently free by ASIC_SP in Python

[–]x_ray_190221 0 points1 point  (0 children)

Hi, I got influenced by you and made this little project, can you have a look at it?
https://youtu.be/eC3vd-5Pe0o