Skip to content

Instantly share code, notes, and snippets.

View shurkin18's full-sized avatar
🏠
Working from home

Aleksandr Kamenev shurkin18

🏠
Working from home
View GitHub Profile
@shurkin18
shurkin18 / Apple-Automated-Updates-Deferral-JIRA-Ticket.sh
Last active July 11, 2023 15:49
Apple Mac System Updates automated script with deferrals, which will create a JIRA ticket after last deferral
#!/bin/bash
############################################################################################################################
# NOTE1: You will need to supply the JIRA API credentials down below under "JIRA API credentials and Issue Category" section
# NOTE2: You will need to modify the issue type id variable "mm_jira_cloud_it_tic_issue_type" (# Issue Type can be found in
# JIRA > Administration > Issues > Issue Types > copy link of Edit button next to the issue type and there will be ID at the end)
# NOTE3: You can modify the ticket creation wording for the summary and description, however make sure you match the issue/ticket
# presence check section as well, as it uses specific wording in the issue/ticket summary ("AUTOMATED TICKET") and the Reporter,
# so that if 1 issue/ticket is already created for the user > it will not keep creating more similar tickets!
# The rest of the script you can leave intact
@shurkin18
shurkin18 / read_from_txt-file_append_to_csv-file.py
Last active July 11, 2023 15:31
Python script which will read a number from temp file, then append it to CSV file (I use this for my tradingbot to collect and store daily trading results)
from datetime import datetime
import time
import os
import pytz
########################################################################################################################
# THIS PROGRAM WILL READ a NUMBER FROM TEMP FILE, THEN PLACE THAT NUMBER INTO A CSV (APPEND) FILE WITH DATE/TIME STAMP #
#
# NOTE: You may need to modify permissions/ownership of the folder where the files will be located
# To find out which user the python script is running as, comment out everything and just add these 2 lines: