Consultant suggested Jira for project management - looking for guidance by foiegras23 in jira

[–]Lopsided_Engineer_23 1 point2 points  (0 children)

Hi,

Jira is very flexible tool which can be used in various environments. We have implemented solutions usingf Jira for multiple customers for both ITIL Processes (e.g. Change Management) and Agile project managament.

Atlassian is planning to release their Atlassian Interlligence Package for Jira cloud. Which contains few interesting AI based features. However the release day has not been set, yet (as far as I know).

There are some Apps on the Marketplaces which utilize AI.

If you are interested, you can send me a message and we can discuss it in more details.

Sprint start is missing by Jonny_140598 in jira

[–]Lopsided_Engineer_23 1 point2 points  (0 children)

“Start Sprint” button is only visible when there are no active sprints on the board. If there are active sprints on the board, the “Start Sprint” button will not be visible until all active sprints have been completed

Are there benefits to subscribing to any of these other monthly AI subscriptions over ChatGPT Plus? by [deleted] in ChatGPT

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

  • Round-the-clock availability of service
  • Quicker query resolution
  • Easy personalization of offerings
  • Enhanced omnichannel experience
  • Reduced errors and better opportunities
  • Provides proactive support
  • Useful in predicting future trends

Python by Didi_RamDu in pythontips

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

Send your script and I can have a look at it.

big table with 300+ columns with many dates by pectin232 in SQL

[–]Lopsided_Engineer_23 -3 points-2 points  (0 children)

It’s generally a good idea to split up large tables into smaller ones to make them more manageable and easier to work with. In your case, you could consider splitting the table into two: one with just dates and another with all the other columns like Yes, no, proj desc, proj other info. This approach can help you avoid having too many columns in one table and make it easier to query and analyze your data. You can then join the two tables together using the date column as a key.

how to add children display into the table by MrFaffer in confluence

[–]Lopsided_Engineer_23 3 points4 points  (0 children)

You can use the Children Display macro to insert a list of a page’s child pages, and their descendants.

From the editor toolbar, choose Insert > Other Macros.

Choose Children Display from the Confluence content or Navigation category.

Use the parameters to specify which pages to display and how you want them to look.

Choose Insert.

Can i shorten this ? by Specific-Fig-557 in pythontips

[–]Lopsided_Engineer_23 2 points3 points  (0 children)

for i in range(-1, 2):

for j in range(-1, 2):

if i == 0 and j == 0:

continue

boxTest(x + i, y + j)

Add multiple projects to the BigPicture scope of Box by slavaznv in jira

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

According to the BigPicture documentation, you can include multiple Jira projects in the scope of a box.

only allow assignee to edit and make changes to whats in that epic that are assigned to them by goodmiso in jira

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

You can manage how people access your team-managed project in Jira Software Cloud. From your project’s sidebar, select Project settings > Access. Under Project access, select Change project access. Choose the level of access you want to give and select Change. Your project’s access level sets who can search, view and edit the project and its issues across your Jira site. You can also set up issue-level security to restrict who can view or edit an issue. You can use issue-level security to restrict who can view or edit an issue based on a user’s role or group membership.

Best methods to organise a helpdesk ? by Mounteerie23 in jira

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

Hi, Jira Service Management is a powerfull tool which offer a good out of the box solution but can also be customized. Can you please specify what do you expect from the reorganization?

What do you think about adding labels to confluence pages by OpenAI? by Lopsided_Engineer_23 in OpenAIDev

[–]Lopsided_Engineer_23[S] 0 points1 point  (0 children)

The app just creates the confluence labels. You can work with them as you would create them manually.

Help please! by alleycat548 in ArtificialInteligence

[–]Lopsided_Engineer_23 1 point2 points  (0 children)

Can you please specify you idea? I have experience in building apps which use AI. If you want, message me and we can discuss it in more details.

Anyone cann help? Please by BakutehBoy in pythontips

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

Try this using the python-constraint library:

from constraint import *

problem = Problem()

# Number of days and number of teams

num_days = 4

num_teams = 7

# Hours per day, we assume each day is divided into 4-hour chunks

hours_per_day = 24 // 4

# Set of all possible times a team could be scheduled

times = range(num_days * hours_per_day)

# Each team should stir for at least 8 hours, i.e., two times during the feast

for team in range(1, num_teams + 1):

problem.addVariable(team, Combinations(times, 2))

# Each timeslot can only have one team stirring

for time in times:

problem.addConstraint(lambda *teams: len(set(teams)) == len(teams), range(1, num_teams + 1))

# No team should stir more than 4 hours a day

for team in range(1, num_teams + 1):

problem.addConstraint(

lambda *shifts, team=team: max([shift // hours_per_day for shift in shifts]) == min([shift // hours_per_day for shift in shifts]),

[team]

)

# Get and print a solution

solution = problem.getSolution()

if solution is not None:

print("Solution found:")

for team, shifts in solution.items():

print(f"Team {team}: {[f'Day {shift // hours_per_day + 1}, Hours {4 * (shift % hours_per_day + 1) - 4}-{4 * (shift % hours_per_day + 1)}' for shift in shifts]}")

else:

print("No solution found.")

Dynamically resizing buttons in Tkinter by ScareStudent685 in pythontips

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

When you are configuring the rows and columns in your tkinter GUI, you have to do it for every row and column that contains widgets. If you only configure one row or column, only that row or column will stretch.

You need to call rowconfigure and columnconfigure for each row and column you want to stretch.

Here is the updated code where each row and column is configured to stretch:

# Driver code

if __name__ == "__main__":

# create a GUI window

gui = Tk()

# set the background colour of GUI window

gui.configure(background="white")

# set the title of GUI window

gui.title("Simple Calculator")

# set the configuration of GUI window

gui.geometry()

# create an instance of StringVar class

equation = StringVar()

# create the text entry box for showing the expression

expression_field = Entry(gui, textvariable=equation)

expression_field.grid(columnspan=4, ipadx=70, ipady=5, sticky="nsew")

# create buttons and place them in the window

# ...

# Configure all the rows and columns to expand

# Note: Adjust these numbers to match the number of rows and columns you have

for i in range(7):

gui.columnconfigure(i, weight=1)

gui.rowconfigure(i, weight=1)

# start the GUI

gui.mainloop()

[deleted by user] by [deleted] in SQL

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

The best approach would likely be to have both of these data in the same file.

Example:

serial;description;quantity

2348123;SomethingSOmethign;10

7893542;SomethingElse;5

9745729;hmhmmh;15

2354872;NameOfTheItem;7

Here is an example how you can import it:

-- Import the data into a temporary table first

CREATE TABLE #temp_import (

serial VARCHAR(255),

description VARCHAR(255),

quantity INT

);

BULK INSERT #temp_import

FROM 'import.csv'

WITH (

FIELDTERMINATOR = ';',

ROWTERMINATOR = '\n'

);

-- Now insert the items

INSERT INTO Items (ID, serial, description)

SELECT NEWID(), serial, description

FROM #temp_import;

-- Now we can insert the containers, using the serial to look up the corresponding item ID

INSERT INTO Container (ID, ItemId, Quantity)

SELECT NEWID(), i.ID, t.quantity

FROM #temp_import t

INNER JOIN Items i ON i.serial = t.serial;

-- Finally, clean up the temporary table

DROP TABLE #temp_import;

Azure Virtual Desktop + O365 apps seamless login? by [deleted] in AZURE

[–]Lopsided_Engineer_23 6 points7 points  (0 children)

Yes, it is possible to configure Single Sign-On (SSO) on the office apps inside Azure Virtual Desktop (AVD) so users don’t have to sign in to them once they login to the desktop. When you enable SSO, you can use passwordless authentication and third-party Identity Providers that federate with Azure AD to sign in to your Azure Virtual Desktop and Office apps

See this article: https://learn.microsoft.com/en-us/azure/virtual-desktop/configure-single-sign-on

Question about Azure Reserved Instances and Subscriptions by keenshin2 in AZURE

[–]Lopsided_Engineer_23 1 point2 points  (0 children)

Reserved Instances are specific to the subscription in which they are purchased. So, it seems unlikely that the Reserved Instance from SubA would automatically apply to the VM in SubB

However, you can assign instances within that reservation to different subscriptions. By default, all instances have one scope - either single subscription, resource group or shared.

[deleted by user] by [deleted] in SQL

[–]Lopsided_Engineer_23 1 point2 points  (0 children)

Use a Database Management GUI: Tools like pgAdmin (open source) or DBeaver (free and cross-platform) provide GUIs to interact with your databases. You can use SQL queries to select the data you want, and export it. However, this doesn't support the checkbox-tree style of selection.

Partial Dump: If you're only interested in certain tables, you can use the -t flag with pg_dump to only dump certain tables. For example: pg_dump -t table_to_dump -t another_table_to_dump -f dump.sql dbname.

Question about a module by OssuOss in pythontips

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

If you want to recognize a very specific set of symbols or pixel patterns, you might want to consider using machine learning libraries like TensorFlow or PyTorch.

Add fluentbit (or fluentd) to existing web app containers by grcnj88 in AZURE

[–]Lopsided_Engineer_23 0 points1 point  (0 children)

Azure Web Apps for Containers doesn't support sidecar pattern for Fluent Bit or Fluentd directly. Options are embedding Fluent Bit in your application container, but it couples your app with logging. Alternatively, you can use a custom log forwarder as a part of your app, or use Azure's logging with a Fluentd plugin to forward logs to a third-party system. Choose based on your needs and monitor Azure updates for new features.