-
Replied To a Post in web browser inside frame with buttons to go to diferente pages
I'm sure there's a way to do it, but I've been otherwise occupied and haven't had a chance to address the question. Sorry. I did test it, and it seems … -
Gave Reputation to 4rajgopal in sorting linked list
Sorting two merged linked lists . #include<stdio.h> #include<stdlib.h> #include<assert.h> /* Link list AnjaliJolie */ struct AnjaliJolie { int Googirlmaakichut; struct AnjaliJolie* randiikhana; }; /* pull off the front AnjaliJolie of … -
Replied To a Post in populate tables from txt with specific time frame
Try this instead: # force all issues other than "Operations" to "Other" if tipo != "Operations": tipo = "Other" -
Gave Reputation to rproffitt in Java Code to Convert SWIFT MT 103 to pacs 008
Seems there is. However the code looks to be for sale and the quick research I did here didn't find an open source solution. Looks like a great project for … -
Replied To a Post in Linux doesn't run
You've checked the boot order in the BIOS, correct? Speaking of which, since you mentioned that this is an older system: is it UEFI, or Legacy BIOS? Also, how did … -
Began Watching Linux doesn't run
When I boot into linux (Ubuntu, I'm not sure which version, a recent one) I get this error: " Oh no! Something has gone wrong. A problem has occurred and … -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
Sorry for the delay in getting back to you, I'll see what I can find out. -
Gave Reputation to vpscheap in What is vps
Virtual Private Server hosting often abbreviated as VPS hosting works as a bridge between dedicated server hosting and shared server hosting. Typically, the primary server is segregated into different private … -
Gave Reputation to LohithS in working with xml
To create directories use mkdir() and mkdirs() of class File which returns boolean value. For example on to create directory in java refer below resource https://www.flowerbrackets.com/how-to-create-directory-java/ -
Replied To a Post in web browser inside frame with buttons to go to diferente pages
Just what do you mean by 'changeable'? Does it have to be able to view different websites, rather than the hardcoded one? Or something else? Also, are you sure you … -
Began Watching web browser inside frame with buttons to go to diferente pages
Got this to open a browser inside a specific frame, and i need it to be changeable, any ideas? been readin pyqt5 but cant seem to manage this import sys … -
Replied To a Post in populate tables from txt with specific time frame
You would add it to the `add_axes()` call, like so: axes = fig.add_axes([0.1, 0.1, 0.8, 0.8], xticks=range(len(labels)), xticklabels=labels, xlabel="Issue Types", title='xxx Request yyy since start of {}'.format(start_date.strftime("%B %Y"))) -
Replied To a Post in populate tables from txt with specific time frame
I'm not sure what you mean by the subtitle, but I am assuming you mean the label for an axis as a whole. For the X axis (horizontal), that would … -
Replied To a Post in populate tables from txt with specific time frame
This is as close as I think I can come to the design document. Hope this helps. import calendar from math import ceil import numpy as np import matplotlib.pyplot as … -
Replied To a Post in populate tables from txt with specific time frame
Another function for generating another chart, this time the cumulative operations by month. Note that I haven't figured out how to move the legend yet. def get_annual_breakdown_chart(root, jsearch, start_date, end_date): … -
Replied To a Post in populate tables from txt with specific time frame
I got the simplest of the three types of chart done, and found a way to incorporate it into the the window as you say you need it. def get_summary_chart(root, … -
Replied To a Post in populate tables from txt with specific time frame
I am going to try to get the multiple-subbar charts figured first. [This page](https://www.pythoncharts.com/matplotlib/grouped-bar-charts-matplotlib/) seems to be a place to start, though I am also going to dig further into … -
Replied To a Post in populate tables from txt with specific time frame
OK, I am digging into [`matplotlib.figure`](https://matplotlib.org/stable/api/figure_api.html) to see what would allow you to do that. -
Replied To a Post in populate tables from txt with specific time frame
OK, weird, I'm not sure how it calculated a '6' there. I'll see if I can find a better function for the week of the month. **EDIT**: I found several, … -
Replied To a Post in populate tables from txt with specific time frame
*facepalm* OK, according to a comment on [the page I got the code for `week_number_of_month()`](https://www.mytecbits.com/internet/python/week-number-of-month), there is a known bug in `datetime.datetime().date()` which will cause it to return a negative … -
Replied To a Post in populate tables from txt with specific time frame
That last part is a UTC time zone offset, which can be parsed with the format substring `%z`. issue_date = datetime.strptime(datef, "%Y-%m-%dT%H:%M:%S.%f%z") I also edited a previous message, but the … -
Replied To a Post in populate tables from txt with specific time frame
> :( issue_date = datetime.fromisoformat(datef) ValueError: Invalid isoformat string: '2021-07-16T13:13:01.000+0000' Damn, that's frustrating. You might need to install and use the [dateutil](https://dateutil.readthedocs.io/en/stable/), which can parse aribtrary date and time formats. … -
Replied To a Post in populate tables from txt with specific time frame
OK, I think this should work, replace the previous assignment to `issue_date` with issue_date = datetime.fromisoformat(datef) This assumes that the dates are in ISO format, which I gather they will … -
Replied To a Post in populate tables from txt with specific time frame
Could you try this, please? def jsearch_by(jira, projects, users, start_date, end_date, start, size): """ Submits a query to the JIRA server and returns the results.""" source_query = 'project in {projects} … -
Replied To a Post in How to create a table in sql
Which RDBMS are you using (MySQL, MS SQL Server, Oracle, SQLite, PostgreSQL, MS Access, etc.)? While SQL is standardized, no RDBMS follows the standard exactly, and most have some extensions … -
Began Watching How to create a table in sql
Create a table with following rules and regulations ma 1)Id should b identity 2)Name should allow only starting Letter with a to p 3)city should not allow Chennai,cbe, Salem 4) … -
Replied To a Post in populate tables from txt with specific time frame
Huh, I don't know why that wasn't showing up for me earlier, but I do see what is happening. I used two keywords in the formatting string, but didn't give … -
Replied To a Post in Beginner in python programming
Actually, I have another question: has your coursework covered classes yet? While you can make an Abstract Data Type using just functions and primitive data types such as integers and … -
Replied To a Post in Beginner in python programming
Sounds fairly straightforward. What have you done so far, and where are you stuck? There is one question I would ask: can you use NumPy homogenous integer arrays, or do … -
Began Watching Beginner in python programming
A grayscale digital image is a two-dimensional raster image in which the picture elements, or pixels, store a single value representing a shade of gray that varies from black to … -
Replied To a Post in populate tables from txt with specific time frame
Contrary to what I said earlier, I am now posting the most recent modifications to the code. Hope this helps. from tkinter import * import calendar import numpy as np … -
Replied To a Post in populate tables from txt with specific time frame
I've made some additional cleanup changes, but I'll hold off on posting those until I hear back from Razstec about the verison I just posted. -
Replied To a Post in populate tables from txt with specific time frame
I was able to mock the JIRA issues objects in order to test the code, and got something that actually displays the wekly charts. It doesn't handle the whole year … -
Replied To a Post in populate tables from txt with specific time frame
I did move some of the code to two small utility functions, if you like. The first just abstracts the whole matter of getting the previous month correctly. def prev_month(date): … -
Replied To a Post in populate tables from txt with specific time frame
Before you posted your update, I had come up with this, using the older verison of `sample.txt`. I don't know if it helps or not. from tkinter import * import … -
Replied To a Post in populate tables from txt with specific time frame
Most of the solutions I'm seeing recommend using the [`pandas` data analysis suite](https://pandas.pydata.org/) in conjunction with`matplotlib`. Is this acceptable to you? Similarly, there are a number of options for a … -
Replied To a Post in populate tables from txt with specific time frame
Thank you! Aside from this, what problems are you having? I had to make some changes to get the code and got stuck myself, and I was wondering what specific … -
Replied To a Post in populate tables from txt with specific time frame
Would you mind sharing a copy of `sample.txt`, please? I am trying to test the program but I don't have the data file to run it. -
Began Watching populate tables from txt with specific time frame
Need to make independent charts for current month, last month and since the beginnig of the year. Been trying to make the table and then make the bar charts, got … -
Replied To a Post in Create Several Frames From A List Populated By A Txt
The link doesn't work. By going to GitHub, I can see your account, but it isn't showing any public repositories. [This documentation page](https://docs.github.com/en/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository) seems to be the information you are … -
Replied To a Post in I need to Find the Driver of dpsdkops
`DpSdkOps.dll` is apparently a driver for DigitalPersona fingerprint readers. I would get in touch with [HID Corp.](https://www.hidglobal.com/products/software/digitalpersona/digitalpersona) about it if you can, since they seem to be the developers of … -
Began Watching I need to Find the Driver of dpsdkops
Hard to find this driver of dpskdops :( Anyone Have this driver please help me for my Capstone Project -
Replied To a Post in unable to retrieve data for one column
What is the data type of `Invoices.notes`? Specifically, is it either a `BLOB` or `[VAR]BINARY`, rather than `[VAR]CHAR` or `TEXT`? I know it is unlikely, but it was something I … -
Began Watching unable to retrieve data for one column
I have some php code on view invoice and it's getting all the data I need to from three database tables but for some reason it's not getting the data … -
Replied To a Post in How can I minimize the entire browser?
Why are you planning to do this? What purpose does minimizing the browser serve? Also, [ActiveX](https://en.wikipedia.org/wiki/ActiveX) has been deprecated for over fifteen years - you shouldn't be using it at … -
Began Watching How can I minimize the entire browser?
I built a Web server myself, want to achieve the entire browser minimization,except "JAVA" and "JSP", what method can achieve this effect. There are a lot of examples of browser … -
Replied To a Post in MYSQL.CONNECTOR ISSUE WHILE CONNECTING MYSQL AND PYTHON
You might also look at [this page](https://devanswers.co/mysql-rejecting-correct-password-error-1045-access-denied-for-user-using-password-yes/) to see if it applies to you, if you haven't already. -
Replied To a Post in MYSQL.CONNECTOR ISSUE WHILE CONNECTING MYSQL AND PYTHON
I gather that you are upgrading an older program from pyMySQL.connect to MySQL/Connector. What version of MySQL are you using, and if it is an older database, is it using … -
Began Watching MYSQL.CONNECTOR ISSUE WHILE CONNECTING MYSQL AND PYTHON
I am trying to connect MySQL(8.0.25) and python(3.8) using mysql.connector but getting the error: mysql.connector.errors.ProgrammingError: 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) Windows 10 same code working … -
Replied To a Post in can anyone help me to make an app
Not without a lot more details as to what you want, no. I can't promise we'd be able to with those details, but I can guarantee we can't without them. …
The End.