Opana 10 mg ir image

Law and Order: Special Victims Unit

2011.11.18 17:49 chap253 Law and Order: Special Victims Unit

A place to discuss one of the greatest TV Dramas, Law and Order: Special Victims Unit.
[link]


2016.11.13 00:54 gabeb71 /r/GlockMod

The Official Modified Glock Subreddit
[link]


2013.05.06 19:54 Dorkside The 100 - The CW TV Show

🐬
[link]


2024.05.14 18:12 Jpwolfe99 PyMuPdf doesn't recognize every fillable element in a PDF form

I am trying to use Python to read in a PDF form so that I can fill all the elements and then create a new filled in PDF. I found code from this repo and everything works correctly for the most part, but some elements aren't being recognized. Below is what the form looks like when I am editing the elements: https://i.sstatic.net/oTn5wiGA.png
However, when I run my code most but not all of the elements get filled in. In this example I am filling each box with "STRING". https://i.sstatic.net/AQn06u8J.png
In my code, when I list all of the element names ("other, route_to_1, route_to_2, etc) all the names are correct and have been checked over and over. When I debug my code and look at the variable that stores all the form elements, it's simply misreading some of the elements. I am not sure what is causing this. Whether Acrobat made the form incorrectly, or if there's a problem with the code. Any help is appreciated. Here's the code I have:
create_pdf.py
from pdf_processing import ProcessPdf DATA_OBJECT = { "other": "string", "route_to_1": "string", "route_to_2": "string", "route_to_3": "string", "route_to_4": "string", "route_to_5": "string", "route_to_6": "string", "route_to_7": "string", "route_to_8": "string", "route_to_9": "string", "route_to_10": "string", "route_to_11": "string", "route_to_alt_1": "string", "route_to_alt_2": "string", "route_to_alt_3": "string", "route_to_alt_4": "string", "route_to_alt_5": "string", "dep_aerodrome": "string", "dep_elev": "string", "dep_atis_id": "string", "dep_atis_freq": "string", "dest_aerodrome": "string", "dest_elev": "string", "alt_dest": "string", "alt_elev": "string", "chan_id_1": "string", "chan_freq_1": "string", "chan_id_2": "string", "chan_freq_2": "string", "chan_id_3": "string", "chan_freq_3": "string", "chan_id_4": "string", "chan_freq_4": "string", "chan_id_5": "string", "chan_freq_5": "string", "chan_id_6": "string", "chan_freq_6": "string", "chan_id_7": "string", "chan_freq_7": "string", "chan_id_8": "string", "chan_freq_8": "string", "chan_id_9": "string", "chan_freq_9": "string", "chan_id_10": "string", "chan_freq_10": "string", "chan_id_11": "string", "chan_freq_11": "string", "chan_id_alt_1": "string", "chan_freq_alt_1": "string", "chan_id_alt_2": "string", "chan_freq_alt_2": "string", "chan_id_alt_3": "string", "chan_freq_alt_3": "string", "chan_id_alt_4": "string", "chan_freq_alt_4": "string", "chan_id_alt_5": "string", "chan_freq_alt_5": "string", "course_1": "string", "course_2": "string", "course_3": "string", "course_4": "string", "course_5": "string", "course_6": "string", "course_7": "string", "course_8": "string", "course_9": "string", "course_10": "string", "course_11": "string", "course_alt_1": "string", "course_alt_2": "string", "course_alt_3": "string", "course_alt_4": "string", "course_alt_5": "string", "dep_clearance_id": "string", "dep_clearance_freq": "string", "time_off": "string", "dep_app_cont_id": "string", "dep_app_cont_freq": "string", "dist_1": "string", "dist_2": "string", "dist_3": "string", "dist_4": "string", "dist_5": "string", "dist_6": "string", "dist_7": "string", "dist_8": "string", "dist_9": "string", "dist_10": "string", "dist_11": "string", "dist_total": "string", "alt_route": "string", "alt_app_cont_id": "string", "alt_app_cont_freq": "string", "dist_alt_1": "string", "dist_alt_2": "string", "dist_alt_3": "string", "dist_alt_4": "string", "dist_alt_5": "string", "ete_1": "string", "ete_2": "string", "ete_3": "string", "ete_4": "string", "ete_5": "string", "ete_6": "string", "ete_7": "string", "ete_8": "string", "ete_9": "string", "ete_10": "string", "ete_11": "string", "ete_total": "string", "ete_alt_1": "string", "ete_alt_2": "string", "ete_alt_3": "string", "ete_alt_4": "string", "ete_alt_5": "string", "eta_1": "string", "ata_1": "string", "eta_2": "string", "ata_2": "string", "eta_3": "string", "ata_3": "string", "eta_4": "string", "ata_4": "string", "eta_5": "string", "ata_5": "string", "eta_6": "string", "ata_6": "string", "eta_7": "string", "ata_7": "string", "eta_8": "string", "ata_8": "string", "eta_9": "string", "ata_9": "string", "eta_10": "string", "ata_10": "string", "eta_11": "string", "ata_11": "string", "eta_total": "string", "ata_total": "string", "eta_alt_1": "string", "ata_alt_1": "string", "eta_alt_2": "string", "ata_alt_2": "string", "eta_alt_3": "string", "ata_alt_3": "string", "eta_alt_4": "string", "ata_alt_4": "string", "eta_alt_5": "string", "ata_alt_5": "string", "dep_gnd_cont_id": "string", "dep_gnd_cont_freq": "string", "tas": "string", "mach": "string", "dest_tower_id": "string", "dest_tower_freq": "string", "leg_fuel_1": "string", "leg_fuel_2": "string", "leg_fuel_3": "string", "leg_fuel_4": "string", "leg_fuel_5": "string", "leg_fuel_6": "string", "leg_fuel_7": "string", "leg_fuel_8": "string", "leg_fuel_9": "string", "leg_fuel_10": "string", "leg_fuel_11": "string", "leg_fuel_total": "string", "alt_altitude": "string", "alt_tower_id": "string", "alt_tower_freq": "string", "leg_fuel_alt_1": "string", "leg_fuel_alt_2": "string", "leg_fuel_alt_3": "string", "leg_fuel_alt_4": "string", "leg_fuel_alt_5": "string", "efr_1": "string", "afr_1": "string", "efr_2": "string", "afr_2": "string", "efr_3": "string", "afr_3": "string", "efr_4": "string", "afr_4": "string", "efr_5": "string", "afr_5": "string", "efr_6": "string", "afr_6": "string", "efr_7": "string", "afr_7": "string", "efr_8": "string", "afr_8": "string", "efr_9": "string", "afr_9": "string", "efr_10": "string", "afr_10": "string", "efr_11": "string", "afr_11": "string", "efr_total": "string", "afr_total": "string", "efr_alt_1": "string", "afr_alt_1": "string", "efr_alt_2": "string", "afr_alt_2": "string", "efr_alt_3": "string", "afr_alt_3": "string", "efr_alt_4": "string", "afr_alt_4": "string", "efr_alt_5": "string", "afr_alt_5": "string", "cont_fuel": "string", "cont_fuel_1": "string", "cont_fuel_2": "string", "cont_fuel_3": "string", "cont_fuel_4": "string", "cont_fuel_5": "string", "cont_fuel_6": "string", "cont_fuel_7": "string", "cont_fuel_8": "string", "cont_fuel_9": "string", "cont_fuel_10": "string", "cont_fuel_11": "string", "alt_fuel": "string", "cont_fuel_alt_1": "string", "cont_fuel_alt_2": "string", "cont_fuel_alt_3": "string", "cont_fuel_alt_4": "string", "cont_fuel_alt_5": "string", "dep_tower_id": "string", "dep_tower_freq": "string", "lbs_ph": "string", "lbs_pm": "string", "dest_gnd_cont_id": "string", "dest_gnd_cont_freq": "string", "notes_1": "string", "notes_2": "string", "notes_3": "string", "notes_4": "string", "notes_5": "string", "notes_6": "string", "notes_7": "string", "notes_8": "string", "notes_9": "string", "notes_10": "string", "notes_11": "string", "notes_12": "string", "alt_gnd_cont_id": "string", "alt_gnd_cont_freq": "string", "notes_alt_1": "string", "notes_alt_2": "string", "notes_alt_3": "string", "notes_alt_4": "string", "notes_alt_5": "string", "alt_time": "string", "route_dest_iaf_fuel": "string", "route_alt_iaf_fuel": "string", "approaches_fuel": "string", "in_air_used_fuel": "string", "reserve_fuel": "string", "rwy_length_dest": "string", "lighting_dest": "string", "fuel_dest": "string", "ils_dest": "string", "loc_dest": "string", "asr_dest": "string", "par_mins_dest": "string", "tac_mins_dest": "string", "arr_gear_dest": "string", "pubs_dest": "string", "notams_dest": "string", "fuel_packet_dest_1": "string", "fuel_packet_dest_2": "string", "fuel_packet_dest_3": "string", "fuel_packet_dest_4": "string", "etc_dest": "string", "last_cruise_req_fuel": "string", "map_to_iaf_req_fuel": "string", "bingo_req_fuel": "string", "last_cruise_appr_fuel": "string", "map_to_iaf_appr_fuel": "string", "rwy_length_alt": "string", "lighting_alt": "string", "fuel_alt": "string", "ils_alt": "string", "loc_alt": "string", "asr_alt": "string", "par_mins_alt": "string", "tac_mins_alt": "string", "arr_gear_alt": "string", "pubs_alt": "string", "notams_alt": "string", "fuel_packet_alt_1": "string", "fuel_packet_alt_2": "string", "fuel_packet_alt_3": "string", "fuel_packet_alt_4": "string", "etc_alt": "string", "last_cruise_res_fuel": "string", "map_to_iaf_fuel": "string", "add_res_fuel": "string", "stto_fuel": "string", "total_req_fuel": "string", "total_aboard_fuel": "string", "spare_fuel": "string", "last_cruise_total_fuel": "string", "map_to_iaf_total_fuel": "string", "bingo_total": "string", "waypoint_1": "string", "waypoint_2": "string", "waypoint_3": "string", "waypoint_4": "string", "waypoint_5": "string", "waypoint_6": "string", "waypoint_7": "string", "waypoint_8": "string", "waypoint_9": "string", "waypoint_10": "string", "waypoint_11": "string", "waypoint_12": "string", "waypoint_13": "string", "waypoint_14": "string", "waypoint_15": "string", "waypoint_16": "string", "clearance_cleared_to": "string", "clearance_altitude": "string", "clearance_freq": "string", "clearance_transp": "string", "clearance_route": "string" } data = DATA_OBJECT output_file = 'final_pdf.pdf' temp_files = [] pdf = ProcessPdf('pdf_temp/', output_file) ''' PDF_TEMPLATE_PATH = path/to/your.pdf ''' data_pdf = pdf.add_data_to_pdf("Blank Jet Log Fillable.pdf", data) temp_files.append(data_pdf) 
pdf_processing.py
import os import re import fitz # requires fitz, PyMuPDF import pdfrw import subprocess import os.path import sys from PIL import Image ''' replace all the constants (the one in caps) with your own lists ''' ''' FORM_KEYS is a dictionary (key-value pair) that contains 1. keys - which are all the key names in the PDF form 2. values - which are the type for all the keys in the PDF form. (string, checkbox, etc.) Eg. PDF form contains 1. First Name 2. Last Name 3. Sex (Male or Female) 4. Mobile Number FORM_KEYS = { "fname": "string", "lname": "string", "sex": "checkbox", "mobile": "number" } This FORM_KEYS(key) returns the type of value for that key. I'm passing this as 2nd argument to encode_pdf_string() function. ''' FORM_KEYS = { "other": "string", "route_to_1": "string", "route_to_2": "string", "route_to_3": "string", "route_to_4": "string", "route_to_5": "string", "route_to_6": "string", "route_to_7": "string", "route_to_8": "string", "route_to_9": "string", "route_to_10": "string", "route_to_11": "string", "route_to_alt_1": "string", "route_to_alt_2": "string", "route_to_alt_3": "string", "route_to_alt_4": "string", "route_to_alt_5": "string", "dep_aerodrome": "string", "dep_elev": "string", "dep_atis_id": "string", "dep_atis_freq": "string", "dest_aerodrome": "string", "dest_elev": "string", "alt_dest": "string", "alt_elev": "string", "chan_id_1": "string", "chan_freq_1": "string", "chan_id_2": "string", "chan_freq_2": "string", "chan_id_3": "string", "chan_freq_3": "string", "chan_id_4": "string", "chan_freq_4": "string", "chan_id_5": "string", "chan_freq_5": "string", "chan_id_6": "string", "chan_freq_6": "string", "chan_id_7": "string", "chan_freq_7": "string", "chan_id_8": "string", "chan_freq_8": "string", "chan_id_9": "string", "chan_freq_9": "string", "chan_id_10": "string", "chan_freq_10": "string", "chan_id_11": "string", "chan_freq_11": "string", "chan_id_alt_1": "string", "chan_freq_alt_1": "string", "chan_id_alt_2": "string", "chan_freq_alt_2": "string", "chan_id_alt_3": "string", "chan_freq_alt_3": "string", "chan_id_alt_4": "string", "chan_freq_alt_4": "string", "chan_id_alt_5": "string", "chan_freq_alt_5": "string", "course_1": "string", "course_2": "string", "course_3": "string", "course_4": "string", "course_5": "string", "course_6": "string", "course_7": "string", "course_8": "string", "course_9": "string", "course_10": "string", "course_11": "string", "course_alt_1": "string", "course_alt_2": "string", "course_alt_3": "string", "course_alt_4": "string", "course_alt_5": "string", "dep_clearance_id": "string", "dep_clearance_freq": "string", "time_off": "string", "dep_app_cont_id": "string", "dep_app_cont_freq": "string", "dist_1": "string", "dist_2": "string", "dist_3": "string", "dist_4": "string", "dist_5": "string", "dist_6": "string", "dist_7": "string", "dist_8": "string", "dist_9": "string", "dist_10": "string", "dist_11": "string", "dist_total": "string", "alt_route": "string", "alt_app_cont_id": "string", "alt_app_cont_freq": "string", "dist_alt_1": "string", "dist_alt_2": "string", "dist_alt_3": "string", "dist_alt_4": "string", "dist_alt_5": "string", "ete_1": "string", "ete_2": "string", "ete_3": "string", "ete_4": "string", "ete_5": "string", "ete_6": "string", "ete_7": "string", "ete_8": "string", "ete_9": "string", "ete_10": "string", "ete_11": "string", "ete_total": "string", "ete_alt_1": "string", "ete_alt_2": "string", "ete_alt_3": "string", "ete_alt_4": "string", "ete_alt_5": "string", "eta_1": "string", "ata_1": "string", "eta_2": "string", "ata_2": "string", "eta_3": "string", "ata_3": "string", "eta_4": "string", "ata_4": "string", "eta_5": "string", "ata_5": "string", "eta_6": "string", "ata_6": "string", "eta_7": "string", "ata_7": "string", "eta_8": "string", "ata_8": "string", "eta_9": "string", "ata_9": "string", "eta_10": "string", "ata_10": "string", "eta_11": "string", "ata_11": "string", "eta_total": "string", "ata_total": "string", "eta_alt_1": "string", "ata_alt_1": "string", "eta_alt_2": "string", "ata_alt_2": "string", "eta_alt_3": "string", "ata_alt_3": "string", "eta_alt_4": "string", "ata_alt_4": "string", "eta_alt_5": "string", "ata_alt_5": "string", "dep_gnd_cont_id": "string", "dep_gnd_cont_freq": "string", "tas": "string", "mach": "string", "dest_tower_id": "string", "dest_tower_freq": "string", "leg_fuel_1": "string", "leg_fuel_2": "string", "leg_fuel_3": "string", "leg_fuel_4": "string", "leg_fuel_5": "string", "leg_fuel_6": "string", "leg_fuel_7": "string", "leg_fuel_8": "string", "leg_fuel_9": "string", "leg_fuel_10": "string", "leg_fuel_11": "string", "leg_fuel_total": "string", "alt_altitude": "string", "alt_tower_id": "string", "alt_tower_freq": "string", "leg_fuel_alt_1": "string", "leg_fuel_alt_2": "string", "leg_fuel_alt_3": "string", "leg_fuel_alt_4": "string", "leg_fuel_alt_5": "string", "efr_1": "string", "afr_1": "string", "efr_2": "string", "afr_2": "string", "efr_3": "string", "afr_3": "string", "efr_4": "string", "afr_4": "string", "efr_5": "string", "afr_5": "string", "efr_6": "string", "afr_6": "string", "efr_7": "string", "afr_7": "string", "efr_8": "string", "afr_8": "string", "efr_9": "string", "afr_9": "string", "efr_10": "string", "afr_10": "string", "efr_11": "string", "afr_11": "string", "efr_total": "string", "afr_total": "string", "efr_alt_1": "string", "afr_alt_1": "string", "efr_alt_2": "string", "afr_alt_2": "string", "efr_alt_3": "string", "afr_alt_3": "string", "efr_alt_4": "string", "afr_alt_4": "string", "efr_alt_5": "string", "afr_alt_5": "string", "cont_fuel": "string", "cont_fuel_1": "string", "cont_fuel_2": "string", "cont_fuel_3": "string", "cont_fuel_4": "string", "cont_fuel_5": "string", "cont_fuel_6": "string", "cont_fuel_7": "string", "cont_fuel_8": "string", "cont_fuel_9": "string", "cont_fuel_10": "string", "cont_fuel_11": "string", "alt_fuel": "string", "cont_fuel_alt_1": "string", "cont_fuel_alt_2": "string", "cont_fuel_alt_3": "string", "cont_fuel_alt_4": "string", "cont_fuel_alt_5": "string", "dep_tower_id": "string", "dep_tower_freq": "string", "lbs_ph": "string", "lbs_pm": "string", "dest_gnd_cont_id": "string", "dest_gnd_cont_freq": "string", "notes_1": "string", "notes_2": "string", "notes_3": "string", "notes_4": "string", "notes_5": "string", "notes_6": "string", "notes_7": "string", "notes_8": "string", "notes_9": "string", "notes_10": "string", "notes_11": "string", "notes_12": "string", "alt_gnd_cont_id": "string", "alt_gnd_cont_freq": "string", "notes_alt_1": "string", "notes_alt_2": "string", "notes_alt_3": "string", "notes_alt_4": "string", "notes_alt_5": "string", "alt_time": "string", "route_dest_iaf_fuel": "string", "route_alt_iaf_fuel": "string", "approaches_fuel": "string", "in_air_used_fuel": "string", "reserve_fuel": "string", "rwy_length_dest": "string", "lighting_dest": "string", "fuel_dest": "string", "ils_dest": "string", "loc_dest": "string", "asr_dest": "string", "par_mins_dest": "string", "tac_mins_dest": "string", "arr_gear_dest": "string", "pubs_dest": "string", "notams_dest": "string", "fuel_packet_dest_1": "string", "fuel_packet_dest_2": "string", "fuel_packet_dest_3": "string", "fuel_packet_dest_4": "string", "etc_dest": "string", "last_cruise_req_fuel": "string", "map_to_iaf_req_fuel": "string", "bingo_req_fuel": "string", "last_cruise_appr_fuel": "string", "map_to_iaf_appr_fuel": "string", "rwy_length_alt": "string", "lighting_alt": "string", "fuel_alt": "string", "ils_alt": "string", "loc_alt": "string", "asr_alt": "string", "par_mins_alt": "string", "tac_mins_alt": "string", "arr_gear_alt": "string", "pubs_alt": "string", "notams_alt": "string", "fuel_packet_alt_1": "string", "fuel_packet_alt_2": "string", "fuel_packet_alt_3": "string", "fuel_packet_alt_4": "string", "etc_alt": "string", "last_cruise_res_fuel": "string", "map_to_iaf_fuel": "string", "add_res_fuel": "string", "stto_fuel": "string", "total_req_fuel": "string", "total_aboard_fuel": "string", "spare_fuel": "string", "last_cruise_total_fuel": "string", "map_to_iaf_total_fuel": "string", "bingo_total": "string", "waypoint_1": "string", "waypoint_2": "string", "waypoint_3": "string", "waypoint_4": "string", "waypoint_5": "string", "waypoint_6": "string", "waypoint_7": "string", "waypoint_8": "string", "waypoint_9": "string", "waypoint_10": "string", "waypoint_11": "string", "waypoint_12": "string", "waypoint_13": "string", "waypoint_14": "string", "waypoint_15": "string", "waypoint_16": "string", "clearance_cleared_to": "string", "clearance_altitude": "string", "clearance_freq": "string", "clearance_transp": "string", "clearance_route": "string" } def encode_pdf_string(value, type): if type == 'string': if value: return pdfrw.objects.pdfstring.PdfString.encode(value.upper()) else: return pdfrw.objects.pdfstring.PdfString.encode('') elif type == 'checkbox': if value == 'True' or value == True: return pdfrw.objects.pdfname.BasePdfName('/Yes') # return pdfrw.objects.pdfstring.PdfString.encode('Y') else: return pdfrw.objects.pdfname.BasePdfName('/No') # return pdfrw.objects.pdfstring.PdfString.encode('') return '' class ProcessPdf: def __init__(self, temp_directory, output_file): print('\n########## Initiating Pdf Creation Process #########\n') print('\nDirectory for storing all temporary files is: ', temp_directory) self.temp_directory = temp_directory print("Final Pdf name will be: ", output_file) self.output_file = output_file def add_data_to_pdf(self, template_path, data): print('\nAdding data to pdf...') template = pdfrw.PdfReader(template_path) for page in template.pages: annotations = page['/Annots'] if annotations is None: continue for annotation in annotations: if annotation['/Subtype'] == '/Widget': if annotation['/T']: key = annotation['/T'][1:-1] if re.search(r'.-[0-9]+', key): key = key[:-2] if key in data: annotation.update( pdfrw.PdfDict(V=encode_pdf_string(data[key], FORM_KEYS[key])) ) annotation.update(pdfrw.PdfDict(Ff=1)) template.Root.AcroForm.update(pdfrw.PdfDict(NeedAppearances=pdfrw.PdfObject('true'))) pdfrw.PdfWriter().write(self.temp_directory + "data.pdf", template) print('Pdf saved') return self.temp_directory + "data.pdf" def convert_image_to_pdf(self, image_path, image_pdf_name): print('\nConverting image to pdf...') image = Image.open(image_path) image_rgb = image.convert('RGB') image_rgb.save(self.temp_directory + image_pdf_name) return self.temp_directory + image_pdf_name def add_image_to_pdf(self, pdf_path, images, positions): print('\nAdding images to Pdf...') file_handle = fitz.open(pdf_path) for position in positions: page = file_handle[int(position['page']) - 1] if not position['image'] in images: continue image = images[position['image']] page.insertImage( fitz.Rect(position['x0'], position['y0'], position['x1'], position['y1']), filename=image ) file_handle.save(self.temp_directory + "data_image.pdf") print('images added') return self.temp_directory + "data_image.pdf" def delete_temp_files(self, pdf_list): print('\nDeleting Temporary Files...') for path in pdf_list: try: os.remove(path) except: pass def compress_pdf(self, input_file_path, power=3): """Function to compress PDF via Ghostscript command line interface""" quality = { 0: '/default', 1: '/prepress', 2: '/printer', 3: '/ebook', 4: '/screen' } output_file_path = self.temp_directory + 'compressed.pdf' if not os.path.isfile(input_file_path): print("\nError: invalid path for input PDF file") sys.exit(1) if input_file_path.split('.')[-1].lower() != 'pdf': print("\nError: input file is not a PDF") sys.exit(1) print("\nCompressing PDF...") initial_size = os.path.getsize(input_file_path) subprocess.call(['gs', '-sDEVICE=pdfwrite', '-dCompatibilityLevel=1.4', '-dPDFSETTINGS={}'.format(quality[power]), '-dNOPAUSE', '-dQUIET', '-dBATCH', '-sOutputFile={}'.format(output_file_path), input_file_path] ) final_size = os.path.getsize(output_file_path) ratio = 1 - (final_size / initial_size) print("\nCompression by {0:.0%}.".format(ratio)) print("Final file size is {0:.1f}MB".format(final_size / 1000000)) return output_file_path 
submitted by Jpwolfe99 to learnpython [link] [comments]


2024.05.14 18:10 BaseballBot Game Thread 5/14 ⚟ Phillies (29-13) @ Mets (19-21) 1:10 PM ET

Join us on Discord!

Phillies (29-13) @ Mets (19-21)

First Pitch: 1:10 PM at Citi Field
Team Starter TV Radio
Phillies Aaron Nola (4-2, 3.67 ERA) NBC 10 WIP, WTTM1680 (ES)
Mets José Buttó (1-2, 3.00 ERA) SNY WCBS 880, WINS 92.3 (ES)
MLB Fangraphs Reddit Stream IRC Chat
Gameday Game Graph Live Comments Libera: ##baseball

Line Score - Pre-Game

1 2 3 4 5 6 7 8 9 R H E LOB
PHI 0 0 0 -
NYM 0 0 0 -

Box Score

Posted at 12:10 PM. Updates start at game time.
Remember to sort by new to keep up!
submitted by BaseballBot to baseball [link] [comments]


2024.05.14 18:10 NewYorkMetsBot2 GAME THREAD: Phillies @ Mets - Tue, May 14 @ 01:10 PM EDT

Phillies @ Mets - Tue, May 14

Game Status: Pre-Game - First Pitch is scheduled for 01:10 PM EDT

Links & Info

NLE Rank Team W L GB (E#) WC Rank WC GB (E#)
1 Philadelphia Phillies 29 13 - (-) - - (-)
2 Atlanta Braves 25 13 2.0 (121) 1 +6.0 (-)
3 Washington Nationals 19 20 8.5 (114) 4 0.5 (121)
4 New York Mets 19 21 9.0 (113) 6 1.0 (120)
5 Miami Marlins 11 32 18.5 (102) 12 10.5 (109)
Probable Pitcher (Season Stats) Report
Phillies Aaron Nola (4-2, 3.67 ERA, 49.0 IP) No report posted.
Mets José Buttó (1-2, 3.00 ERA, 33.0 IP) No report posted.
Phillies Lineup vs. ButtĂł AVG OPS AB HR RBI K
1 Schwarber - DH .200 .629 5 0 0 0
2 Castellanos, N - RF .250 .875 8 1 2 2
3 Harper - 1B .000 .500 1 0 0 1
4 Bohm - 3B .625 2.375 8 3 7 1
5 Stott - SS .571 1.142 7 0 1 2
6 Marsh - LF .000 .000 5 0 0 1
7 Clemens - 2B - - - - - -
8 Rojas - CF .000 .000 2 0 0 0
9 Stubbs - C 1.000 2.000 1 0 0 0
10 Nola, Aa - P - - - - - -
Mets Lineup vs. Nola, Aa AVG OPS AB HR RBI K
1 Nimmo - LF .261 .774 46 1 3 18
2 Marte, S - RF .333 .852 27 1 3 8
3 Lindor - SS .231 .618 26 0 1 6
4 Alonso - 1B .348 1.127 46 5 11 12
5 Martinez, J - DH .188 .466 16 0 1 8
6 Baty - 3B .000 .200 4 0 0 2
7 Taylor, T - CF .400 1.371 5 0 1 0
8 Wendle - 2B .250 .583 12 0 1 5
9 NarvĂĄez - C .000 .000 4 0 0 3
10 ButtĂł - P - - - - - -

Division Scoreboard

WSH @ CWS 04:40 PM EDT
WSH @ CWS 07:40 PM EDT
MIA @ DET 06:40 PM EDT
CHC @ ATL 07:20 PM EDT
Posted: 05/14/2024 12:10:00 PM EDT
submitted by NewYorkMetsBot2 to NewYorkMets [link] [comments]


2024.05.14 18:09 __Yam__ An actual class S tier list

An actual class S tier list
Who knew that a jpeg image made me lose so many brain cells that I wasted 10 minutes making this. What do y’all think?
submitted by __Yam__ to Asphalt9 [link] [comments]


2024.05.14 18:03 Psychics4U_net The Fool Tarot Card Meaning: [The Complete Guide]

This complete guide on The Fool tarot card is brought to you by psychics4u.net. For more valuable information, insights and resources, visit: http://psychics4u.net/
What does the fool mean in the tarot cards? The fool is the most wild tarot card in the deck that you can ever get in a psychic reading. The meaning of the fool tarot card is all about new beginnings, a journey which is usually spiritual and fast change. It indicates that things are really going to go forward for you whether it’s love, relationship, money, work, career and health. But all of these good predictions will come true, only if you will believe in yourself and take calculated risks.
If you are interested in learning everything about the meaning of the fool’s journey tarot card, you came to the right place. Keep on reading till the end of this guide as you will find here lots of useful information regarding to:
  1. The fool’s journey tarot card description and symbolism.
  2. Personality traits.
  3. The meaning in love, relationship, money, work, career and health.
  4. Is the fool a good tarot card or is it bad?
  5. Does the fool tarot card mean yes or no?
  6. How to read the fool’s journey tarot card in upright and reversed position.
  7. The fool tarot card meaning in past, present and future.
  8. The meaning of the number 0 (zero) and 22.
  9. Interpretation of astrological zodiac sign.
  10. Meaning as feelings.
  11. The fool tarot card art and history.
The fool tarot card meaning: Description and symbolism
When we take a first look at the art of fool’s journey tarot card, we immediately notice the bright yellow sun light, the worm rays, the orange – yellow sky and the lite brown ground. The fool has loose and comfortable clothes with flowers patterns on them, mostly yellow which also matches the shoes` shade. Yellow symbolize enlightenment, happy feelings and positive energies.
The fool is ready to take the leap of faith – start a journey to the unknown territory. He doesn’t care if he will encounter obstacles down the road or dangerous situations in the way. He is ready to go no matter what will happen. In fact the fool doesn’t even think about the meaning these problems.
The fool doesn’t care too much about the material world. He collected just the necessary items and packed all his little possessions in a small bag, holding it with his right hand. On the left hand he is holding a beautiful white rose. It means the willingness to scarify and devotion to the spiritual path of life.
Look at his face directed forward and up to the sky, they are full of inspiration, vision and confidence in the current moment. He is free of fear but also innocence because he isn’t aware of the fact that bad things might happen during the unknown journey.
He is standing on the hill, one step before the deadly abyss, caught in the moment. He trusts the universe that everything will turn on the right and positive side. The white dog is barking and jumping, trying to warn him about the chasm. The snowy white mountains and hills from behind also represent a potential slippery outcomes.
The fool is in movement, he is not just standing there, he took the first step and willing to take many more steps in order to complete the journey. In the end he is seeking meaningful spirituality, to be developed to a higher self. However, right now he doesn’t know exactly how to achieve it. There is no plan, no logical calculations, not even knowledge nor experience. Just the element of fire – the burning desire to go forward.
When we look at the fool’s face we can’t really recognize if it’s a man or a woman. That interpretation means it has both the male and female energies, working together in symbiosis.
The fool tarot card meaning as Personality (Persona)
The fool is a free spirit that has no worries, doesn’t always aware of dangerous and the consequences of his action, too impulsive, acting before thinking. This is why the fool needs help when making big decisions.
He is just like a little kid who is very curious and loves to explore everything about the world. He knows he will make mistakes and it will hurt a lot. Yet it doesn’t stop him from taking an action. He likes the experiences of life whether they are good or even bad. He can learn from each situation and grow wiser and stronger. His main goal is to go after the possibility, even if it doesn’t look very clear or doable at the current phase.
The art of celebrating the joy of life. Admiring the beautifulness of the little things, very positive, optimistic and looking at the bright side.
Flexible, can adapt to most situation. He doesn’t have a solid philosophy or principle he must apply, other than been carefree. He still doesn’t have a strong personality and foundations. He is waiting to be shaped by the future experiences.
He is new to this world; he doesn’t always play by the social norms or cultural rules. Mainly because the fool doesn’t knows the meaning of most of them yet. But after the experience is gained the personality will be shaped on the positive way.
What does the fool card mean in love and relationship reading?
The fool card in love and relationships is meaning a huge surprise. You might encounter your lover in a sequence of events that you never would predict, out of the blue. For example, a new stranger that comes into town, new neighbour or new work colleague.
It can also indicate that there is a person that is close to you, but you haven’t really thought you two are compatible in terms of romance, or can go along together because you two have different personality traits. You will suddenly realise that it can happen.
When it comes to a new relationship there is a lot of excitement in the air, meaning fresh positive energy and optimism. While it might give you good feelings and joy, you also need to be caution a bit. You don’t see the whole picture and what you can’t see might hurt you.
There will be warning signs and it is advised to take in consideration every weird signal into consideration. Your friends and family might have an opinion about your new love relationship, please note that they are not jealous or want things to go wrong for you. They just care that everything will work on the good path.
Don’t be too much swept of your feet, in the end you will have to face reality. What you think about a certain man or woman and what is going on in real life are two different things. Once you encounter the polarity between the two, you might be very disappointed.
If what you are looking for is a long term relationship like marriage, than this is not a good tarot card. The fool’s journey tarot card is indicating the beginning but not the middle and the end. Things will change or develop. If you want this to success there is still a lot of work to be done. The person you are seeing right now is not looking for a commitment. Maybe in the future it will change.
If you are a woman the fool tarot card also stand for fertility. It might predict a pregnancy – start of a new life.
The fool tarot card meaning in work, career and money
New possibilities are coming in your way. This is the time to take action and do what you always wanted. Maybe you always wanted to change your career, maybe you want to work somewhere else or maybe to have your own business.
The main interpretation or meaning is that you need to go with what you believe in, even if there will be hard times during that period. Some people will not like what you are doing, they will try to stop you and change your mind. Situations like this need to be balance. On the one hand it’s good to listen to them, because they have other point of view and might teach you new perspective. On the other way don’t let it to discourage you from achieving the goal.
Understand that making a change related to work and money has its own risks. You can find yourself unemployed for a while or even loosing money. But when we are looking at the long term of the journey, in most cases there will be a success.
The fool tarot card meaning health
Regarding health, the fool tarot card meaning is good physical conditions.
If you were sick before, the interpretation is that the illness might begin to disappear and you suppose to feel much better.
Another possible meaning and interpretation is regarding to health is physical accident. As you may very well know by now, the fool is taking risks without thinking about them too much. The fool is on the verge of the cliff and if something will go wrong he will slip down.
Is the fool a good tarot card or is it bad?
Basically the fool’s journey is a good tarot card, as the main meaning is a new beginning. Usually when we have something new in our life, it is exciting, gives us good feeling and very interesting and intriguing. At this moment we pay attention only to the good and positive aspects of the event. We normally drawn to the situation, don’t think too much about it and we don’t want to ruin it, just flow with the current.
However, nothing is perfect and you also need to be aware of dangerous situations that are a head of you. There will be warning signs of bad energies. Therefore the best practice is no keep an eye on what is going on.
Does the fool tarot card mean yes or no?
The fool’s journey tarot card is usually neutral. The card is symbolizing something fresh and new possibilities. It can turn bad or good depending or the steps you take during your journey. More often than not it is interpreted as a yes card.
The fool’s journey tarot card upright meaning
Upright keywords: new beginnings, freedom, originality, foolishness, spontaneity, travel, adventure, leap of faith, careless, innocence.
The upright meaning of the fool tarot card is about taking risks in order to improve your situation and gain more of what you really want in life. Every one of us has certain desires and personal goals that we want to pursue. So if this card show up in a psychic reading than it is a good time to start a new adventure.
You have to be brave and face your inner demons and fears. Although the card is generally positive, the road to happiness is not easy and you will encounter some problems. From that reason it is very crucial that you will have faith and believe in yourself. Believe that you can do it, even if right now it is not very clear how, you will find the solution. Even if everyone around advice or telling you that you will fail, don’t listen to them too much and go only with your inner true.
Don’t look back on past experiences. Even if you had bad moments, don’t let them hold you from changing your situation. Remember the lessons you have learned and just keep on go forward all the way.
The fool’s journey tarot card reversed meaning
Reversed keywords: lack of direction, chaos, naive, reckless, lack of direction, poor judgement
When the tarot card is being spread upside down (reversed), it means that you jumped too far without thinking about the implications of your action, this might put you in trouble. As shown graphically in the fool tarot card, he is standing right before the cliff. Every big step or reckless movement can bring him to death.
Even if the fool tarot card is showing in reversed it still means a new beginning, but something is holding you back. For example it can be fear of the unknown future, failure and inability to make decisions.
The reversed meaning in love and relationship: if you are single than you are not ready for a long term relationships, you will not find term partner. If you are already seen someone that he or she doesn’t ready to make a commitment. They just want to have fun and fool around.
With money and career, when the tarot card is reversed, beware that no one is taking an advantage or you. For example someone can offer you a bad business idea or shady investment opportunity. And in the end you will lose lots of money.
The fool tarot card meaning in past, present and future
When we relate to the past, the meaning of the fool tarot card is that you have wasted lots of time and energies on people or work or relationships that you are no longer interested in. you had enough with all of this and you are looking for something different.
The present: right now you need a change, you don’t know if it will turn out to be good or bad. You are standing on a crossroad, you need to make a choice and just go for it. Things are looking too complicated right now, this is fine and you will have to address those issues but not right now. The most important thing is that you’ll move on to the desired direction.
The future: the fool tarot card is mainly concern about the present moment. But it can give us a little projection on the future as well. In the future you will have to invent yourself, adapt and be very flexible. When you will see a new opportunity, don’t hesitate and don’t go back to your old habits, which are holding you back.
The fool tarot card number meaning
The fool tarot card is a part of the whole 22 major arcana cards. It referred to key number 0 (zero), meaning the first in the deck. But it can also be placed at the end – key number 22. Because of that fact, the fool symbolizing the beginning and the end of a life cycle. Further more, the cycle is endless so in theory it goes in never-ending loop forever and ever, repeat itself to the eternity.
During our life, we will go through the 21 keys or elements of the fool’s journey. We will meet people who will teach us lessons about life. We will change our behaviour and feelings in order to continue with the journey. So in the end we will go back to the very first place that it was all begun, but now we are different in the way that we are wiser and stronger. It is more like spiritual voyage of self discovery.
The word fool in French language means a sack that is full of air, not with material objects. This is the reason why everything is possible even if it doesn’t seem so. It is also a symbol of triumph.
The number zero in numerology represents no limitation and lots of positive options to choose from. It is nothing and yet it is also everything together. The order of the numbers doesn’t apply to zero, as it all start afterwards. So there is no past for the fool, only future.
22 innumerology is great transformation energy. It is the ability to turn dreams and wishes to come true to the world of reality.
The fool tarot card astrological zodiac sign
The fool tarot card astrological zodiac signs are Aquarius and Pisces.
Aquarius is the 11th zodiac in astrology, mainly represents the element of water. Liquid flow that travel on earth. Strong current of water that can creates its own path by shaping rivers, lakes and the bottom of the ocean. Always on the move, looking for new adventure and can get bored really quick.
Pisces is a dreamer very much like the fool’s personality from the tarot card. They want to go somewhere, but they can’t decide what the right direction for them is. They have this conflict as depict in the zodiac sign – two fish, each one of them is swimming to another side. Pisces are also very emotional and control by their feelings.
In astrology the role of Uranus planet is to be like a clock, to awake us and get us doing things. This is very similar to the fool’s situation as described in the tarot card. There is some burning flame of fire inside of him that wouldn’t let him rest until he will find his answers. It is a call to take immediate action.
The fool tarot card meaning as feelings
As feelings, the fool’s journey tarot card gives us positive feelings. In most cases the answers to you questions are yes, there are good energies and positive vibes surrounding you. Even if the tarot card show in reversed it is still have bigger aspect of positivity with a minor challenge that stands in your way. In fact, it the ancient days of psychic reading the card was actually a joker – the most powerful item in the deck.
The fool tarot card art and history
Long time ago when tarot cards were used as a game and not for psychic reading, the fool’s card was the most powerful card in the deck. He was outside of the order and if you had it, you could protect and win the game.
Few hundreds year later the art of this tarot card was described more as someone who has unwanted personality in society, and therefore he lost all his magic and power. People didn’t want to associate themselves with this image. It was considered a negative energy and bad omen from the future. It symbolized unsuccessful life, misfortune and tormeneted feelings.
Later on, the fool’s image became a man of courage. Until that very day, the fool’s is still the hero card on the tarot deck. Although he is numbered 0 (zero) which mean nothing, he denotes new journey and possibilities, which is everything we need.
In many myths, legends and folklore story through history, the fool is actually the wisest person of all. He might look a little different or simple or even out of the common norms, but he knows better. Although at the beginning he didn’t had too much wisdom, his actions and failures through life, brought him new experiences and valuable lessons to learn from. All of this could happen just because of one thing: he wasn’t afraid to take the risk.
In fact, those who are dismissing him or don’t understand him, are the real fools because they don’t know how much wisdom he has to offer to the world.
Other names for the fool tarot card: joker, jester, clown, buffoon, folie, fov, il matto, le fou, and le mat.
Feel free to write your thoughts or questions in the comments below. I'd love to hear from you!
submitted by Psychics4U_net to freepsychicreadings4u [link] [comments]


2024.05.14 18:03 debofav Alguém sabe como suportar um curso pesado mesmo tendo TDAH? (Aviso de texto longo)

Jå começa errado pois por falta de atenção fiz vestibular para arquitetura em uma universidade do outro lado da cidade (1:30 para ir e 2:00 pra voltar, vou de Înibus) e sem notar que era integral... Nesse momento estou no terceiro período mas as coisas estão complicadas, logo no início larguei uma disciplina muito importante por pura frustração de não conseguir aprender, deixei para cursar depois e foi tudo no ímpeto da hiperatividade.
Faço acompanhamento com psiquiatra e psicĂłlogo tem uns bons quatro anos pois tenho TAB e TDAH, passei toda a minha vida acadĂȘmica sem conseguir aprender nada. Eu era muito hiperativa quando pequena e de tanto ouvir professor reclamar larguei de mĂŁo de procurar para resolver minhas dĂșvidas e fui sĂł deixando disciplina acumular, principalmente exatas, nĂŁo sei absolutamente nada.
Eu nĂŁo consegui fazer algumas das matĂ©rias do segundo e terceiro perĂ­odo jĂĄ que larguei aquela importante pela metade e o pior Ă© que em arquitetura vocĂȘ precisa de acompanhar tudo ao mesmo tempo para entregar os projetos, pois um complementa o outro. Eu tinha muitaaaa dificuldade e pra completar cai na turma de uma professora que tava tendo problemas familiares e nĂŁo conseguia ensinar nada. Com o tempo fui sĂł acumulando frustraçÔes, eu gastava o dia todo lĂĄ, parei de comer bem, fazer exercĂ­cio, nĂŁo conseguia dormir, crise de ansiedade uma atrĂĄs da outra e minha imunidade foi lĂĄ embaixo. Boa parte do que eu precisava fazer tinha que ficar perguntando como para minhas amigas, nĂŁo conseguia fazer NADA sozinha e isso me incomodava muito jĂĄ que elas tambĂ©m estavam atoladas de coisa para fazer. Resultado: minha nota em projeto foi lĂĄ no chĂŁo.
A férias chegou e eu me afundei em tudo que gerava dopamina råpido, passava mais de 10 horas no tiktok procurando fugir da realidade, dormia pouquíssimo de noite pois ficava lendo de madrugada para ver se esquecia dos problemas. Voltei para faculdade do mesmo jeito que saí no semestre passado, só que mil vezes mais depressiva e descrente, jå fazia um bom tempo que tava pensando em mudar de curso jå que pelo jeito ia demorar muito para terminar a faculdade e com uma rotina cansativa dessa não ia conseguir ficar viva para me formar no final, certeza que se eu caísse em uma crise depressiva eu ia com Deus. 
No geral, chegou o terceiro período e eu comecei ter aula de estrutura e precisava de física (lembrando que eu larguei de mão no ensino médio), eu não entendia ABSOLUTAMENTE nada e na disciplina de projeto caí na turma de um professor cavalo MUITO grosso. Tive a falta de sorte de pegar dengue e ficar dez dias afastada, quando voltei tava muito, mas muito atrasada e na próxima semana teria a entrega e eu só tinha uma orientação. No dia foi absolutamente horrível, ele me esculachou na frente da turma toda e na minha cabeça foi só passando todos os momentos em que tive professor me humilhando na vida e eu desabei chorar, nem era a situação mas eu comecei a pensar "serå que eu deveria desperdiçar mais de cinco anos da minha vida passando o dia todo estudando algo que eu aprendi a odiar com tantas forças?"
No mesmo dia eu decidi largar, voltei para casa e fiquei praticamente morta na cama pensando o dia todo. O resultado foi que eu notei que eu era inteligente, existem vĂĄrias outras ĂĄreas que eu me destaco e tenho talento (como tudo relacionado a artes) o problema de verdade foi ter deixado acumular tanta coisa e negligenciar o TDAH. Na manhĂŁ seguinte jĂĄ comecei a mudança: desinstalei Instagram e tiktok, parei de ler de madrugada, comecei a dormir cedo, comer melhor e fazer exercĂ­cio. Isso jĂĄ faz um mĂȘs e eu estou bem melhor.
Li bastante sobre TDAH e organizei uma rotina que vem sendo maravilhosa na minha vida, voltei a estudar tudo do início com calma e também tÎ bem mais confiante vendo que não sou tão ruim quanto eu achava, era só que não me adaptava bem a forma que a escola ensinava. Moro quatro quadras de uma universidade particular, meu pai jå disse que paga para mim voltar a estudar e que se eu quiser posso trocar de curso também, mas sinceramente tÎ tão descrente que não sei se vou aguentar. No momento não sei muito o que fazer da vida.
Desculpe os erros de portuguĂȘs, essa foi outra disciplina que ignorei bastante kkkkkkk
submitted by debofav to TDAH_Brasil [link] [comments]


2024.05.14 18:01 HHHFreshBotRedux The Weekly [Fresh]ness - week of Monday, May 6, 2024

Monday, May 6, 2024
Post Link Score User
[FRESH] Drake - The Heart Part 6 link +10019 TheJakInDaBox
[FRESH] Masego - BBL Drizzy Sax Diss.wav link +5616 nemesisdelta24
[FRESH] Megan Thee Stallion - I Think I love Her Freestyle link +1840 ioweej
[FRESH] Mach-Hommy & KAYTRANADA feat. 03 Greedo - #RICHAXXHAITIAN link +421 mqwer
[FRESH] KevinKempt - #bbldrizzybeatgiveaway link +421 Kungfooler
[Fresh] luvkurby - BBL Drizzy - MetroBoomin link +277 slappywhyte
[FRESH] Nem - BBL Drizzy link +251 dabornstein
[FRESH] Aubrey's Conscience - Confessions of a BBL Drizzy link +136 yeezy-yeezy
[FRESH] Little Billiam - BBL DRIZZY #bbldrizzybeatgiveaway link +66 MyNewWhiteVan
[FRESH VIDEO] AUDREY NUNA - Jokes On Me (Official Video) link +60 DanielBryanCMPunk
[FRESH] K.I.A.Z - Graham Cracker link +50 itztherapperKIAZ
[FRESH] JACKSONRPORTER - Amber Alert link +31 FalseFiction
Tuesday, May 7, 2024
Post Link Score User
[FRESH] RXKNephew - What Does BBL Even Mean link +1528 PolPotPottery
[FRESH] PACKGOD x Yumi - BBL DRIZZY (Drake Diss Track) #bbldrizzybeatgiveaway link +1227 mauvebliss
[FRESH] Cilvanis - The BBL Rapper Who Stole my Joke (BBL Drizzy) (Drake Diss) link +1060 Murb1e
[FRESH] Kamui - OVO Tokyo (BBL Drizzy) link +840 Classic_Clock_7210
[FRESH] Scru Face Jean - BBL Drizzy Freestyle (Prod. Metro Boomin) link +538 IcanMakeThePiecesFit
[FRESH VIDEO] Big Hit, Hit-Boy & The Alchemist - Foreclosure link +166 Ethiopianutella
[FRESH VIDEO] Larry June - Meet Me In Napa link +145 Sjangtepeltang
[FRESH] DJ Mekalek - Skylines (feat. Westside Gunn & Mickey Diamond) link +35 thesuntalking
Wednesday, May 8, 2024
Post Link Score User
[FRESH] Tim Henson (Polyphia) - BBL Drizzy link +4572 alphageek8
[FRESH] Chief Keef - Almighty So 2 Trailer link +384 ImRBJ
[FRESH] BLACCMASS - not like us x isley brothers link +42 maloboosie
Thursday, May 9, 2024
Post Link Score User
[FRESH] Chief Keef - Drifting Away link +440 thisisnotaburner24
[FRESH] Central Cee - CC Freestyle link +173 abucalves
[FRESH VIDEO] Brother Ali - Ottomans link +104 abucalves
Friday, May 10, 2024
Post Link Score User
[FRESH ALBUM] Chief Keef - Almighty So 2 link +2447 AltforHHH
[FRESH ALBUM] Gunna - One of Wun link +1117 joshisashark
[FRESH VIDEO] Megan Thee Stallion - BOA (Official Video) link +1110 Impossible_Vast9846
[FRESH ALBUM] Conway the Machine - Slant Face Killah link +846 God_Will_Rise_
[Fresh] The Game - Freeway’s Revenge link +739 QQQput
[FRESH] Shaq - Shannon Sharpe diss track link +698 jeric13xd
[FRESH ALBUM] Ghostface Killah - Set The Tone (Guns & Roses) link +569 God_Will_Rise_
[FRESH] Ghostface Killah Ft Kanye West - No Face link +451 Lonz123
[FRESH VIDEO] Your Old Droog - DBZ ft. Denzel Curry, Method Man (prod. Madlib) link +251 chomps_43
[FRESH] Chief Keef - Jesus (feat. Lil Gnar link +129 LaMelgoatBall
[FRESH] Tee Grizzley - Swear to God (feat. Future) link +125 Dracolord1221
[FRESH] Ski Mask The Slump God - Headrush link +113 AltforHHH
[FRESH ALBUM] Ghostface Killah - Set The Tone (Guns & Roses) -DINI link +102 GhostfaceKillah36SI
[FRESH] Key Glock - The Greatest link +101 Sosasosasosa00
[FRESH] Conway The Machine - Raw! (feat. Tech N9ne) link +74 rightnotredamus
[FRESH ALBUM] The Act/UnoTheActivist - Omega Music Vol. 1 link +60 AltforHHH
[Fresh] Shorline Mafia - Heat Stick link +57 Heinie_Nuechtern
[FRESH] EL BBL - Sammy Andaluz link +51 Night_Fev3r
[FRESH] That Mexican OT - Texas Technician (ChopNotSlop Remix) link +51 No-Measurement-2989
[Fresh] Tee Grizzley - Swear to God (Feat. Future) [Official Video] link +46 No-Breakfast310
[FRESH ALBUM] Rio Da Yung OG - Rio Circa 2020 link +32 maloboosie
[FRESH VIDEO] Chief Keef (feat. Tierra Whack) - Banded Up (Official Audio) link +27 GoodKidMaadCityyy6
[FRESH VIDEO] Gangrene - The Gates of Hell feat. ANKHLEJOHN link +26 abucalves
[FRESH VIDEO] Shoreline Mafia - HEAT STICK link +25 maloboosie
[FRESH] Chief Keef - I’m Tryna Sleep link +25 ApartStatistician603
Saturday, May 11, 2024
Post Link Score User
[FRESH ALBUM] Abstract Museum & Guilty Simpson - Block Runners link +51 chomps_43
[FRESH VIDEO] Shoreline Mafia - Heat Stick link +26 flyestshit
[FRESH] BLK ODYSSY FEAT. WIZ KHALIFA - XXX link +25 mothergidra
Sunday, May 12, 2024
Post Link Score User
[FRESH ALBUM] K.A.A.N. & DJ Hoppa - Delusions Of Grandeur link +80 Diwky09
[Fresh] Shoreline Mafia - HEAT STICK (OHGEESY & FENIX FLEXIN) [Official Music Video] link +39 Spare-Discipline1448
[FRESH] BigXthaPlug - Hell Yea (ft. Ro$ama, 600 Ent.) link +30 Ireallywannamove
This post was generated by a bot
Subscribe to roundups: [Daily] [Weekly] [Unsubscribe]
[Site] [Info/Source] [Feedback]
submitted by HHHFreshBotRedux to HHHFreshBotRedux [link] [comments]


2024.05.14 17:57 Amphibian_Basic Firs impressions feedback

I love the idea of Kosmik but the execution isnt quite there yet. I plan on trying it out further but theres a couple of things that get in the way. This is my first impressions review and what i intend as constructive feedback
Usability (testing on windows 10)
Smaller stuff easy to improve (but are creating attrition for me constantly)
At least on windows feels a bit undercooked. I dont know wether some of those are design choices or features still missing but i feel the design a bit at odds- in some parts it conveys 'use mouse only/first' in others it demands keyboard, and in the mean time some of the common design patterns both for mouse and keyboard arent used or use some non-tradional choice- making it harder to learn, creating some confusion or wrong expectations.
For example the bookmark icon is a vey tradional and ubiqutuous skeumorphic symbol for a very common feature that saves urls or files in a list, tradionally urls. Some apps get away using then for favorite files, photos or other things given their context so the user can imagine the equivalent in a given context... but here it shows alongside the in-app browser, next to an url... Maybe a different icon, like a card with a Plus sign and a tip 'add to canvas'?
I dont understand why tags are in the browser if apparently they only work with cards added on the canvas. If the intent was treating the open browser as a canvas element then said browser should be like a card (for example being able to open multiple browser windows in different universes) as if they were cards. Right now the browser is like a temporary tool...
If the intention (im trying to deduce here) was to apply tags before bookmarking so the bookmark already apply said tags then both operations would work better together- 1 button, the add-site to canvas, and that button opening up a prompt to add tags before confirming if desired.
Overall- Service, app, marketing
I was a bit misled regarding expectations because of a video/moto 'best browser for research' - so i installed it expecting more of a Browser with a canvas then a canvas with a very limited in-app browser. So i came expecting multiple tabs or adding extensions...
I dont mean to say the app should be like a browser BUT it is a interesting area to improve and turn into its differential, given some of the competition and how most people would be using it alongside a browser anyway
In a general sense my impressions:
From the 'best browser for research' perspective:
I wonder if the app allowed for pages inside cards (not previews, rendered pages) would be a good alternative for things like tabs
From a general canvas-notation perspective
I have used waaay too many notes and canvas apps in my search for the apps that filled that niche for me like id like, and heck for years a good app with canvas was my most wanted feature that almost no one was doing save for few clunky flowchart apps.
Im glad that now theres been a boom of options and ive been giving everyone a chance- but still not one have all the things id like (i could pinpoint a frankenstein of features from different apps id wish into one)... Kosmik is already ahead of half of the competition (imo) just by having both a native app and web view options, and by the apps having the files locally+sync instead of rendering from the cloud only all the time (much faster and snappiers wich is a big deal for me) - and the web/browsing+canvas angle is a very interesting proposition
But that is where i got disapointed- the web-browsing in app alongside canvas is still very limited to hit the potential of that proposition. As it is right now, for example, i feel more confortable having any browser in a smaller window and copy-pasting urls into Kosmik then relying fully on the internal browser, save for quick search queries
I focus so much on the browser aspect not only because it was how i first found about kosmik but also because without that angle it falls short on some alternatives. Not completely btw, drawing tools and pdf handling seem to be great and ahead of some alternatives (some are good at drawing but barely beyond that, others better as notes but with terrible or no drawing)...
But i still feel like the 'best app for research' (browser+canvas/notes+pdf), emphasis on the browsing is the best angle, best bet for Kosmik to grow above alternatives... but extra emphasis on potential- i dont feel like its hitting that note quite yet, at least not on windows.
I will try to stick with Kosmik for awhile despite the clunkiness and attriction i feel, but not as id like to use it and more like a buffer between traditional browsing/searching and taking my notes- im planing on inserting Kosmik in between as quick notes for links before later refering to then on notes elsewhere... but i confess im sort of forcing this workflow just to keep using kosmik and keep tabs on updates- im sticking around in the hopes of what may come and not for what it currently is.
I have high hopes for the app and in my case (i lean more towards power user then casual) even if i use other apps a good better version of Kosmik in this niche would fit for me even alongside other apps. Heck i currently use 2 similars in tandem (similar in notes/canvas) for their different strengths and niches- and neither have carved web browsing research as their niche
Anyway, those were my very long 2cents. I hope the feedback is taken positively
submitted by Amphibian_Basic to kosmik_app [link] [comments]


2024.05.14 17:56 DANJCOLEMAN1991 Sound Like ASIAN KUNG-FU GENERATION Pt.1: Masafumi Gotoh (2024 version)

Introduction

ASIAN KUNG-FU GENERATION, Zepp Tokyo for \"Quarter-Century Tour\"
^(\This article is an updated version of my "Sound Like" article from 2021. I have reposted this article due to difficulties editing the original version*, and have included additional information and recommendations based on the increased popularity of amp simulator pedals*)*
Hello fellow musicians and Ajikan fans!
I have been a fan of ASIAN KUNG-FU GENERATION for roughly 16 years and as a guitarist was greatly inspired by the band's alt rock sound.
After a few years of research I have written a series of "sound like" articles for ASIAN KUNG-FU GENERATION. The purpose of these articles is to provide context on how the band create their signature sound, and to support beginning musicians or tribute acts who may wish to replicate it.
At the end of each article I have drafted a Budget Rig, which you could use for both at home and in a live environment. I have also provided some general amp settings to tweak and try, which are based on the band's live sound and be can used to help replicate their tones.
This is a 3-part series and if you enjoy this article I would recommend checking out the other articles:
ASIAN KUNG-FU GENERATION Sound Like Part 2: Kita : AsianKungFuGeneration (reddit.com)
ASIAN KUNG-FU GENERATION Sound Like Part 3: Yamada : AsianKungFuGeneration (reddit.com)
Please note that the article focuses on the band's live sound, which will be different to the albums and can vary depending on the venue. Also (and is a cliché every musician and instrument will vary slightly due to small differences in play style and build, so also be mindful of that.)
To help you recognise the individual guitar tones, Gotch's guitar parts are normally panned to the left earphone and Kita's are panned to the right earphone on the band's albums. (On 2016's Sol-Fa, Hometown and some of the Planet Folks singles the panning was swapped, with Gotch instead in the right ear and Kita on the left)

Masafumi Gotoh

Gotch live at the 02 Islington, London, 2013
Let's start off with lead singer and rhythm guitarist Masafumi Gotoh, or "Gotch" for short. Gotch's was massively influenced by the 90's alternative rock, Power Pop and the Britpop scene, and has previously highlighted Oasis, Weezer and Number Girl as key inspirations.
As Ajikan's main songwriter, Gotch follows the principle of "less is more" - keeping the arrangements simple for listeners, but combining pop hooks & traditional Asian melodies with the band's punk rock and indie influences.
Gotch's playing style follows this principle, as he primarily uses chord shapes, bar chords or repeated phrases to anchor the band. (The simple approach also makes it easier for Gotch to sing while performing)
Occasionally, Gotch will use "octave chords" (more on octave chords below) or play riffs with open strings notes, to add further depth. A good example of this is the opening riffs to Easter, where he plays an open D string while also playing the 3rd and 5th fret of the A string.
Octave Chords: Octave chords is famously used in punk rock and alt rock riffs, and is when you play the same note in two different octaves. Try play a bar chord on the 4th fret of the A string, and lifting your ring finger off the D string. You should get a "C# octave chord" and will recognise it from the intro of Haruka Kanata. Octave chords are used in many Ajikan songs and by many bands, so they are good to practice!
In more recent albums, Gotch has also experimented with moving chord shapes across the fretboard. For good examples, check out the opening of Caterpillar or the bridge section of Kouya Wo Aruke.
Gotch's guitar tends to be lower in the overall mix, with Kita acting as the band's lead guitarist and Gotch as the anchor for each song. However, Gotch tends to improvise with ambient sounds during live performances and occasionally will take on the lead role in songs like Hold Me Tight.

GUITARS:

When it comes to guitars Gotch almost exclusively plays Gibson Les Paul Jr's with P-90 pickups, and has been his preferred guitar since 2004. The P-90 pickups have a bright midrange sound in comparison to the muddier humbucker sound, which makes them better suited for Gotch's focus on chords.
Gotch main guitar is the 1959 Gibson Les Paul Special
The Les Paul Jr is also lighter and have less sustain and power compared to a normal Les Paul, which leaves space for the other instruments to stand out in the mix.
Gotch's main guitar is a 1959 Gibson Les Paul Special, which he plays in E Standard tuning and uses for both recording and live performances. Gotch also uses a 1961 Gibson Les Paul Jr (with the pickguard missing) or a 2000 Gibson Les Paul DC (with a gloss yellow finish) for songs in Eb/D# tuning, such as After Dark or Soredewa, Mata Ashita.
Gotch's is also famous for using a 1975 Gibson Marauder during the band's early years. Gotch has mostly retired the guitar (due to the "lack of volume" for larger venues), but it regularly appears in MV's, band merchandise and occasionally during special events, such as the 10th anniversary shows in Yokohama.
Gotch's Gibson Marauder
Gotch occasionally uses a few rarer guitars live, such as the Gibson Custom Les Paul Junior John Lennon model (Gotch has number 54 of 300 such guitars made), and is normally played with a capo for songs such as Maigo Inu To Ame No Beat.
Gotch has also used a Gibson Hummingbird for acoustic numbers, and can be seen used in Eizo Sakushin Shu Vol.6 for the band's performance of Kaigan Doori. Gotch likes to use Tortex Flex .88mm & Tortex Flex Triangle .88mm guitar picks, which he swaps between depending on the song.
If you are looking to sound like Gotch, the best place to start would be a Les Paul Jr guitar with P-90 pickups.

AMPLIFIERS:

After originally touring with a Roland JC-22, Gotch has almost exclusively played Fender amplifiers since 2004. Gotch uses two amps when playing live, one for his "clean" sound and the other for his "heavy" sound.
The band's often implement a "quiet/loud" dynamic into their song writing, so Gotch will often switch between his amps during live performances, using a custom made footswitch on his pedalboard. (A good example of this is Mustang or Solanin)
For his clean tone, Gotch uses a Fender 65' Twin Custom Twin 15. It can be heard on Korogaru Iwa, Kimi ni Asa Ga Furu, Solanin and Wonder Future. Occasionally, Gotch will combine the Twin Reverb with a boost pedal or overdrive pedal for more clarity, with Wonder Future a good examples of this.
(1) Fender '65 Twin Custom 15 (clean tone), (2) Fender Vibro-King Custom, (3) Fender Super-Sonic 60 Head (which uses the Vibro-King as a speaker), (4) Fender '63 Spring Reverb (which runs in between the pedal board and the Super-Sonic 60, and is toggled on or off by a switch)
For his heavier tone, Gotch primarily uses a Fender Vibro-King Custom for recording and appears in most of the band's MV's. The Vibro-King/Twin Reverb was Gotch's main setup during the 2000's and can be seen together on Eizo Sakushin Shu Vol. 6.
In 2009 Gotch started to use a Fender Super-Sonic 60 Amp Head and still uses it now. Until 2022, Gotch would use Vibro-King as a "cabinet", acting as the speaker unit for the Super-Sonic. Gotch now uses a Shinos & L Rocket Head for live shows, but has kept the Vibro-king for recording sessions and MVs.
Since 2022 Gotch has used Shinos & L Rocket amp & cabinet instead of the Fender Vibro-King
Gotch "heavy" amps for songs such as Re:Re:, Haruka Kanata and Rewrite. It is important to note that Gotch prefers to use his amps to create his distorted tone, but will occasionally add an overdrive pedal for heavier tracks such as Blood Circulator & Easter.
Alongside the Twin Reverb and Super-Sonic, Gotch is known to use a Fender 63' Spring Reverb Unit. This unit only runs into the Super-Sonic and is used for additional reverb to "thicken the sound". Gotch can control the 63' Reverb with a on/off switch on his pedal board.
Other notable amps that Gotch has used are the Matchless C30 & Bad Cat 30R Head. Both have been used exclusively for recording, most notably on Wonder Future. Gotch is also known to use VOX AC15 amps for recording.
Gotch's '63 Spring Reverb Unit, along with a selection of Vortex Flex .88m picks
In terms of mics, Gotch seems to use a Shure SM57 for his Fender Twin Reverb and a Shure SM58 on his Vibro-King or Shinos Rocket. When you are trying to emulate his sound with modelling or profiling amps, it is worth experimenting with mic positioning and different mics.
If you want to replicate Gotch's amp sound then you should look to replicate his Fender amps. However the Vibro-King is a key component and are unfortunately rare, notoriously loud and expensive. For that reason, I have put together some alternatives that should get you close.

PEDALS & EFFECTS:

During Ajikan's early years, Gotch combined a Roland JC-22 with a ProCo RAT to create the "quiet/loud" dynamic of the band's early records. After buying the Fender Vibro-King in 2004, Gotch no longer required the RAT, but kept a simplified pedalboard to achieve certain tones for live performances.
Gotch's 2004 pedalboard, which includes the ProCo RAT and Ibanez TS9 Tube Screamer
We will cover two different pedalboards that Gotch has used during the band's career. Regardless of which pedal board you look at, Gotch's has always included an overdrive or boost pedal, a phase pedal and a delay pedal.
The boost/overdrive is used to "lift" his clean sound during ballads (Solanin, Wonder Future) or to thicken his sound for heavier tracks. (Senseless, Dororo) Gotch will normally set the drive or gain low and the volume high.
The phaser is a more sparingly used pedal to add texture and colour, but can be heard on Shinkokyƫ, Blue Train and Rewrite. I will include more detail on Gotch's use of delay in the sections below.
Gotch's "Classic" Pedalboard
Gotch \"classic\" pedalboard, used between 2006-2013, with Gotch's custom made footswitch on the bottom left to control the amps
Gotch started to use this "classic" board during the Fanclub tour and continued to do so until the 10th Anniversary shows in 2013. This would be the easier and more affordable board to replicate for newcomers.
Gotch's setup started with a BOSS TU-3 tuner, which he also used as a "mute" pedal in between songs. From there, his chain would run into the Ibanez TS808 Tube Screamer, the BOSS PH-2 Super Phaser and the BOSS DD-20 Giga Delay. During the Magic Disk tour, Gotch also added a Custom Audio Tremolo.
The BOSS DD-20 has been Gotch's main delay pedal for twenty years and is set to "warp". On the warp setting, Gotch can keep his foot on the pedal to create swells of delays. Gotch's standard setting is 173-179bpm (beats per minute on 1/4 (quarter) notes and then he has four presets. These are 137bpm on 1/4 (for the intro of Blackout), 154bpm on 1/4 (for Kakato de Ai o Uchinarase), 177bpm on 1/2 (for Solanin and the intro of Siren) and finally 177 on 1/4. (For the second half of Siren))
Gotch also included two footswitches for his board; The first one was a handmade footswitch, which he used to swap between the Twin Reverb and the Vibro-King/Super-Sonic. The other footswitch was a BOSS FS-5L, which he used to control the '63 Spring Reverb Unit.
Gotch's "Modern" Pedalboard
Gotch's \"modern\" pedal board.【Pedal List】(1) api/TranZformer GT (compressoequalizer) (2) BOSS/TU-3 (tuner) (3) Spaceman Effects/Atlas III (preamp) (4) BOSS/DD-6 (delay) (5) Spaceman Effects/Voyager I (tremolo) (6) EarthQuaker Devices/Avalanche Run (delay/reverb) (7) Mu-Tron/Mu-FX Phasor 2X (phaser) (8) Caroline Guitar Company/KILOBYTE (9) BOSS/DD-20 (delay) (10) Handmade/Line Selector (11) FAT/514.D (booster)(12) strymon/Zuma R300 (power supply) (13)BOSS/EV-30 (Expression Pedal) (14) BOSS/FS-5L (foot switch)
During the recording of Wonder Future and his first solo album (Can't Be Forever Young), Gotch began to experiment more with boutique pedals, and has resulted in a more complex board since 2014, allowing more ambient experiments on the band's records and during live performances.
Gotch has added a API Tranzformer GT to the start of his chain, only using the E.Q. section and tweaking the settings for each venue.
Gotch's "Modern" board now includes a variety of delay and reverb pedals, such as the Earthquaker Device Avalanche Run and the Caroline Kilobyte Lo-Fi Delay. These are combined with his DD-20 to create the ambient sounds heard on Empathy & the outro of Demachiyanagi Parallel Universe.
The BOSS DD-6 Digital Delay is set to the "reverse" mode and is used during the intro of Re:Re: and the bridge of Rewrite. Gotch has removed the Tube-Screamer from his board and has experimented with multiple alternative pedals, which includes the Xotic Effects AC Plus and JHS Superbolt.
He currently uses the Atlas III Preamp Booster and the FAT 514.D for his overdrive sounds. The 514.D only runs to the Super-Sonic to help "thicken" the distorted tone of the Super-Sonic.
Gotch has also replaced the Super Phaser with the MU-FX Phasor 2x and is using a Voyager I Spaceman for his tremolo. (UCLA & No Name are good references for the tremolo) Finally, Gotch has added an BOSS EV-30 expression pedal, which he uses to control the delay of the Avalanche Run.
If you are looking to replicate Gotch's pedalboard, the best place to start would be a phaser, delay and a boost/overdrive pedal, which would cover most of Ajikan's Discography.

Sound Like Gotch...On a Budget

Now that you are up to speed on what Gotch uses for his guitar rig, we can start to look at replicating his sound. The idea of this section is to offer affordable suggestions to replicate Gotch's tone that can be used for home use and for small live venues.
I would like to highlight that I am just writing as a fan and the equipment I recommend are purely my own recommendations. I do not have any sponsors (I wish I did sometimes) and if you find alternatives that work for you, go for it!
Gotch performing in 2022, during the Quarter Century shows in Yokohama
To buy Gotch's current pedal board alone would cost roughly ÂŁ2,500 and would be unrealistic for most readers to purchase, however there are options that can get us close to Gotch's tone without breaking the bank.
The key elements to this rig are:
Let's start with the guitar, which is both important for the P-90 tone. You should always feel comfortable when playing the guitar you pick, so I recommend trying out the guitar when possible before buying.
GUITARS
As an affordable guitar, I would suggest looking at the Epiphone Les Paul Jr. It is the entry level price for Gibson guitars (Epiphone would be the equivalent to "Squier" for Fender) and includes P-90 pickups as the standard setup. You can buy one for around ÂŁ380 and should also be fairly easy to modify & similar to Gotch's sound.
Epiphone Les Paul Junior
If you do have a higher budget to work with, I would recommend the Gibson Les Paul Special Tribute DC. These were released in 2019 and you can normally find a 2nd hand version for roughly ÂŁ650 - ÂŁ800. (It is also the guitar I currently use!) Failing that, you can also look at the Gibson Les Paul Special for around ÂŁ800.
Gibson Les Paul Special Tribute DC
AMPLIFIERS
We are looking to replicate Gotch's Fender amps, so the affordable option to start with would be the Fender Mustang GTX. The newer Mustang amps are an improvement on the original and have simulations of the Twin Reverb, the Vibro-King and the Super-Sonic.
The GTX 50 (which has a smaller speaker) is roughly ÂŁ390 and the GTX 100 (which includes a footswitch) is about ÂŁ510, but you should be able to find both versions for a reduced cost second hand.
Fender Mustang GTX 100
If you do have a higher budget or prefer to use a tube amp, I would recommend going for the Fender Super-Sonic Combo or the Fender Hot Rod Deluxe for a solid distorted Fender tone.
Alternatively, you could consider the Fender Blues Junior, Fender Tone Master Twin-Reverb or Roland JC, and combine them with a ProCo RAT to replicate the tones from Houkai Amplifier and Kimi Tsunagi Five M.
PEDALS
To keep the list of suggestions short and simple, we will use Gotch's "classic" board as a reference and will cover most of the band's discography.
For a budget rig, I would recommend the Ibanez Tube-Screamer Mini, which is a miniature version of the standard Ibanez Tube-Screamer and sound great for the price. You could pair this up with a Boss Phase Shifter and a BOSS DD-6 Delay for around ÂŁ309 brand new to get a very similar Gotch board. (You could buy them for as low as ÂŁ110 combined on the 2nd hand market)
The Tube Screamer Mini is a cheap, effective overdrive pedal based on the classic TS808
For a more expensive pedalboard, the JHS Superbolt V2 was used by Gotch extensively between 2015-2019 and was once described by Gotch as "the Ajikan sound" on his blog. You could also buy the TS808 Tube Screamer that Gotch actually used for many years or the JHS Bonsai 9 which emulates multiple tube screamers.
For modulation sounds (phase, tremolo) the AmpliTube X-Vibe is one of many great multi-effect pedal on the market. If you have the money for it, you could buy a BOSS DD-20 second hand or the BOSS DD-200 to emulate Gotch's delay sound.
If you decided to go with the Mustang GTX, you would also have a selection of effects built into the amp.
THE TONE MASTER PRO? (and amp simulators)
As a final recommendation, Fender have recently released the Tone Master Pro (TMP), which is a multi effects and amp simulator.
It can be used as a device for home recording, but also as multi effects pedal in front of a standard amp or as your main amplifier when played through a IR cabinet. (I'll go into more detail in a bit!) The TMP are not cheap at ÂŁ1400, so I would only advise buying one if you plan to use it as your main amp and effects board.
If you have the budget and was starting your rig from scratch I would consider checking it out, as it includes great simulations of the Twin Reverb and Vibro-King. They are also easy to transport & the Fender IR cabinets only weigh 12.5kg. (For comparison, my VOX AC15 weighs 30kg and is a nightmare to transport for shows)
The TMP is Fender's first amp simulator pedal and from what I understand the Quad Cortex DSP, the Line 6 Helix series and the Headrush Pedalboard are more popular choices. However, for the purpose of "sounding like Gotch", I would start with the TMP for its Fender selection and simplicity
The Fender Tone Master Pro can be used to simulate multiple amps & as a pedalboard for live performances
If you decide to buy a Amp Simulator Pedal, there are 3 common ways to use it for band practices & live settings. (Outside of just using headphones or running straight to front of house at a venue)
Option 1: Only use the effects on the Amp Simulator and run it into a standard amp. (Make sure to not use the cabinets settings within the pedal when doing this You could still use the amps, however it will not always sound great with a normal amp)
Option 2: Use the Amp Simulator as your main amp and combining with a standard guitar cabinet. In order to do this, you will need to buy a separate power amp pedal to run in between the amp simulator and the guitar cabinet. (Otherwise you will not have any volume or oomph when you play through the cabinet)
Option 3: Buy a IR Cabinet. The difference between this and Option 2 is that you would not need to buy a separate power amp pedal to run into the speaker. The Fender FR-10/12 & Line 6 Powercab are good examples.

Recommended Amp Settings

The following amp settings are based on photos gathered from live performances or from photos of Gotch's social media. Every amp will slightly differ based on your guitar or playing style, so you may need to tweak with your settings to find the right blend.
My personal advice is to not put the gain too high and to start with getting the treble and bass settings where you feel comfortable, before tweaking the mids. The P-90s have a strong midrange attack, so bear that in mind as well.
Gotch's Vibro-King and Super-Sonic
Fender '65 Twin Custom 15:
(Plugged into Vibrato 1) Vol: 3, Treble: 3.5-4, Mid: 6.5, Bass: 3.5
Fender Super-Sonic 60 Head:
Channel 1: Vol: 3.5, Treble: 4-4.5, Bass: 5
Channel 2: Vintage setting ON, Gain 1: 4, Gain 2: 0, Treble: 5-5.5, Bass: 4.5-5, Mid: 5.5, Vol: 5.5-6
Fender Vibro-King Custom (as cabinet):
Plug into the speaker input at the back of the amp, with FAT switch on.
Fender Vibro-King Custom (as amplifier):
(FAT ON) Vol: 3, Treble: 4.5, Bass: 4, Mid: 5.5 (Based on Eizo Sakushin Shu Vol.6 settings)
OR
(FAT ON) Vol: 4.5 Treble: 4 Bass: 5 Mid: 4.5
Shinos & L Rocket Head:
Gain: 7, Treble: 8, Bass: 3, Reverb: 0, Master: 7

Conclusion

I hope this has been helpful for you guys, as it has been on my bucket list for some time! Please provide some feedback as it is always appreciated and if you would like more details about the effect settings let me know.
[Update] I have now written a post on Kita's rig and Yamada's rig, which you can read below:
ASIAN KUNG-FU GENERATION Sound Like Part 2: Kita : AsianKungFuGeneration (reddit.com)
ASIAN KUNG-FU GENERATION Sound Like Part 3: Yamada : AsianKungFuGeneration (reddit.com)
submitted by DANJCOLEMAN1991 to AsianKungFuGeneration [link] [comments]


2024.05.14 17:53 Aniform I just want some advice on my choices in terms of candle vessel and wicks and I just need a sanity check.

I'm just struggling to weigh out what would be the best choices for me. My entire brand is sort of a witchy vibe, with candle names that might be like "Mystic Cauldron" or something like that. So, I've taken great care to try and create a theme and choose fragrances that fit. I had planned on my candles being black with a black label with white font. I've gone through a lot of vessels, but what I've so far settled on is these style https://cdn11.bigcommerce.com/s-znjh1s2dil/images/stencil/960w/products/192/410/10-oz-black-candle-jar-glossy__69548.1708615374.jpg?c=1
Now, here's where I'm sort of running through it all in my mind. I'm offering a 8oz and 10oz candle and currently the 10oz candle comes with a bamboo lid, which of course adds to the COGS, but where I'm pricing that candle, it works out fine. I'd very much like a lid for the 8oz candles too, but with the lid added to it, suddenly the 8oz is too costly for the customer in my opinion. But, I keep looking at the similar 8oz offering in clear and the price is so ideal that if it were clear, I could get a lid AND still be under the price point I'd like. I just don't know how I feel about my all black label against clear glass. (Obviously that would be white wax and a black label.) And, here's the thing, I keep hearing from people who have yet to see the black candle vessel with the black label, but when I tell people about it, they often say, "black on black? I think it'd be more of a contrast if it were a black label on clear glass." And, that has me second guessing myself as well. I just decided to print up my label and put it on my black glass and I think it looks fine. There's a border around the outside edge and then the text.
Ultimately, my main concern is regarding clear glass. I just don't think the theme works well with clear glass, even though, omg, the price point of clear glass is beyond ideal. But, I look at other folks using amber apothecary jars and while I like those, I feel like they're more common. Even at one of the craft fairs I intend to go to, there's a seller there who is using them. I don't want to have customers see their amber jars and then see me with the same, just a different label. I feel like the black ones set me apart. And considering the witchy themes, black makes sense to me.
The next thing is, the wicks. I love the look of the wood wicks. I think they fit my theme well, they certainly can elevate the look of the candle. But, that said, they are pricier, I mean, I can get the wood wicks from Makesy + shipping = 43c per wick. Versus I buy cotton wicks from CandleScience + shipping = 11c per wick. That brings down my COGS so well. I'm still in testing phases and if you had asked me last night, I'd have said, screw wood wicks, I'll do cotton! But that was because in multiple tests I've had, the wood wicks are so temperamental to get going, if you don't trim just right, it's a pain. It's a pain to get lit, even if you follow best practices. And yet, once it's lit that first time, every time I reignite them, they work beautifully. I just don't know if I'm comfortable selling them when customers may not read directions or care for their wicks. I know prior to getting into candles, when I was just a consumer, I would literally light my candles with no wick trimming, burn them for 10hrs a day, and then light them again without any wick care whatsoever. It seems like a big ask to get customers to care for finicky wood wicks.
Anyway, I just have no one else to bounce things off of and would really like for some opinions.
submitted by Aniform to candlemaking [link] [comments]


2024.05.14 17:53 shaneka69 CANCER ZODIAC - UNEXPECTED INCOME! TAROT READING MAY 2024

CANCER ZODIAC TAROT READING - UNEXPECTED INCOME MAY 2024

https://www.youtube.com/watch?v=cJ5mIkLhCyY
cancer zodiac
cancer zodiac dates
10 things about cancer zodiac
cancer zodiac traits
cancer zodiac personality
cancer zodiac symbol
cancer zodiac month
cancer zodiac tattoo
cancer zodiac characteristics
cancer zodiac facts
cancer zodiac sign
cancer zodiac animal
cancer zodiac and capricorn
cancer zodiac art
cancer zodiac aesthetic
cancer zodiac air sign
cancer zodiac astrology
cancer zodiac attributes
cancer zodiac and scorpio
cancer zodiac and aries
cancer zodiac and aquarius
about cancer zodiac sign
all about cancer zodiac
are cancer zodiac dangerous
about cancer zodiac sign girl
age of cancer zodiac
attributes of cancer zodiac sign
after cancer zodiac
animal for cancer zodiac sign
anime characters cancer zodiac
aries and cancer zodiac sign compatibility
cancer zodiac birthday
cancer zodiac bad traits
cancer zodiac birthstone
cancer zodiac best match
cancer zodiac birth dates
cancer zodiac body part
cancer zodiac background
cancer zodiac bracelet
cancer zodiac best friends
cancer zodiac baby girl
best crystals for cancer zodiac
bad things about cancer zodiac
boy cancer zodiac
best match for cancer zodiac
birthday wishes for cancer zodiac
best color for cancer zodiac
best job for cancer zodiac
best stone for cancer zodiac
birthstone for cancer zodiac
bracelet for cancer zodiac
cancer zodiac compatibility
cancer zodiac color
cancer zodiac celebrities
cancer zodiac constellation
cancer zodiac crystals
cancer zodiac color palette
cancer zodiac characteristics female
cancer zodiac compatibility chart
cancer zodiac chinese
cancer zodiac sign dates
cancer zodiac dates range
cancer zodiac description
cancer zodiac days
cancer zodiac demon
cancer zodiac drawing
cancer zodiac daily
cancer zodiac dates 2024
cancer zodiac dogs
cancer zodiac dark side
definition of cancer zodiac sign
dates for cancer zodiac sign
dark side of cancer zodiac signs
dragon cancer zodiac
different types of cancer zodiac
demon cancer zodiac
does cancer zodiac have anger issues
description of cancer zodiac sign
double cancer zodiac
diamond for cancer zodiac
cancer zodiac element
cancer zodiac emoji
cancer zodiac enemies
cancer zodiac explained
cancer zodiac earrings
cancer zodiac energy
cancer zodiac ear piercing
cancer zodiac eyes
cancer zodiac español
cancer zodiac emotionally manipulative
everything about cancer zodiac
evolved cancer zodiac
element of cancer zodiac
evil cancer zodiac
enemy of cancer zodiac
emerald for cancer zodiac
easy cancer zodiac drawing
emotional cancer zodiac
explain cancer zodiac sign
everything you need to know about cancer zodiac
cancer zodiac flower
cancer zodiac flower tattoo
cancer zodiac for today
cancer zodiac female
cancer zodiac favorite color
cancer zodiac famous people
cancer zodiac fire sign
cancer zodiac friends
cancer zodiac facts male
facts about cancer zodiac sign
facts about cancer zodiac woman
fun facts about cancer zodiac
famous cancer zodiac
flower for cancer zodiac
facts about cancer zodiac man
features of cancer zodiac sign
female cancer zodiac sign
friends of cancer zodiac
funny cancer zodiac quotes
cancer zodiac girl
cancer zodiac gemstone
cancer zodiac greek god
cancer zodiac god
cancer zodiac goddess
cancer zodiac gif
cancer zodiac gem
cancer zodiac good and bad traits
cancer zodiac good in bed
cancer zodiac gifts
good things about cancer zodiac
geek bar cancer zodiac flavor
gemstone for cancer zodiac
girl cancer zodiac
gifts for cancer zodiac man
gifts for cancer zodiac woman
gemstone for cancer zodiac sign
girly cancer zodiac tattoo
god of cancer zodiac
gem for cancer zodiac
cancer zodiac horoscope today
cancer zodiac horoscope
cancer zodiac health problems
cancer zodiac horoscope 2024
cancer zodiac history
cancer zodiac house
cancer zodiac hand tattoo
cancer zodiac hair color
cancer zodiac hoodie
cancer zodiac humor
how rare is cancer zodiac sign
happy birthday cancer zodiac
how is cancer zodiac sign
how dangerous is cancer zodiac
how to be friends with a cancer zodiac
how will cancer zodiac die
how to deal with cancer zodiac sign
healing crystals for cancer zodiac
habits of cancer zodiac
herbs for cancer zodiac
cancer zodiac in hindi
cancer zodiac in chinese
cancer zodiac images
cancer zodiac in telugu
cancer zodiac info
cancer zodiac in spanish
cancer zodiac is what month
cancer zodiac in relationships
cancer zodiac information
cancer zodiac in 2024
is cancer zodiac dangerous
interesting facts about cancer zodiac
is cancer zodiac rare
information about cancer zodiac sign
is cancer zodiac rich or poor
instagram bio for cancer zodiac
images of cancer zodiac sign
is cancer zodiac sign lucky
indian celebrities with cancer zodiac sign
is cancer zodiac a water sign
cancer zodiac jewelry
cancer zodiac jobs
cancer zodiac july
cancer zodiac june
cancer zodiac january 2024
cancer zodiac june 21
cancer zodiac japanese
cancer zodiac july 22
cancer zodiac june 27
cancer zodiac july 16
july cancer zodiac
jobs for cancer zodiac
june cancer zodiac sign
july cancer zodiac traits
jewelry for cancer zodiac
june cancer zodiac personality
june cancer zodiac traits
june vs july cancer zodiac
july birthday cancer zodiac
jade for cancer zodiac
cancer zodiac kids
cancer zodiac keywords
cancer zodiac keychain
cancer zodiac kpop idols
cancer zodiac killers
cancer zodiac karma
cancer zodiac know for
cancer zodiac keyboard symbol
cancer zodiac child
cancer zodiac knight
kpop idols cancer zodiac
kpop idols who have cancer zodiac sign
korean actors cancer zodiac
korean celebrities with cancer zodiac sign
katangian ng cancer zodiac
karaang napta cancer zodiac sign
karma cancer zodiac
what kind of person is cancer zodiac sign
things to know about cancer zodiac
everything to know about cancer zodiac
cancer zodiac lucky numbers
cancer zodiac love
cancer zodiac logo
cancer zodiac love language
cancer zodiac lucky colors
cancer zodiac love compatibility
cancer zodiac libra
cancer zodiac lips
cancer zodiac least compatibility
cancer zodiac leo
lucky stone for cancer zodiac sign
logo cancer zodiac
leo and cancer zodiac sign
lucky color for cancer zodiac
lucky wallpaper for cancer zodiac
lucky number for cancer zodiac sign
lunar eclipse effect on cancer zodiac
libra and cancer zodiac sign compatibility
last day of cancer zodiac
love life of cancer zodiac sign
cancer zodiac meaning
cancer zodiac men
cancer zodiac memes
cancer zodiac match
cancer zodiac month dates
cancer zodiac moon sign
cancer zodiac moon
cancer zodiac meaning male
cancer zodiac meaning female
meaning of cancer zodiac sign
male cancer zodiac
meaningful cancer zodiac tattoo
more about cancer zodiac sign
month of cancer zodiac sign
moonstone for cancer zodiac
month of cancer zodiac
male cancer zodiac tattoo
match for cancer zodiac
mlbb cancer zodiac skin
cancer zodiac necklace
cancer zodiac negative traits
cancer zodiac number
cancer zodiac names
cancer zodiac nails
cancer zodiac nail designs
cancer zodiac nicknames
cancer zodiac necklace gold
cancer zodiac neck tattoo
cancer zodiac necklace silver
nicknames for cancer zodiac
names for cancer zodiac girl
nature of cancer zodiac sign
names for cancer zodiac boy
negatives of cancer zodiac
nature of cancer zodiac
number for cancer zodiac
nba players cancer zodiac
names related to cancer zodiac
next to cancer zodiac
cancer zodiac outfits
cancer zodiac origin
cancer zodiac opposite
cancer zodiac opposite sign
cancer zodiac overview
cancer zodiac of the day
cancer zodiac oc
cancer zodiac origin story
cancer zodiac occupations
cancer zodiac other names
opposite of cancer zodiac
one word to describe cancer zodiac
other names for cancer zodiac
outfits for cancer zodiac sign
opal for cancer zodiac
one piece cancer zodiac
october cancer zodiac
onyx for cancer zodiac
another word for cancer zodiac
ox cancer zodiac
cancer zodiac personality traits
cancer zodiac planet
cancer zodiac personality female
cancer zodiac personality male
cancer zodiac pictures
cancer zodiac powers
cancer zodiac pros and cons
cancer zodiac pendant
cancer zodiac power color
personality of cancer zodiac sign
picture of cancer zodiac sign
pros and cons of cancer zodiac
pictures of cancer zodiac sign girl
planet for cancer zodiac
pisces and cancer zodiac sign
power of cancer zodiac sign
pearl for cancer zodiac
peacock cancer zodiac
perfect match for cancer zodiac sign
cancer zodiac quotes
cancer zodiac qualities
cancer zodiac quotes funny
cancer zodiac quiz
cancer zodiac questions
cancer zodiac quote of the day
cancer zodiac quiet
cancer zodiac quiz buzzfeed
cancer zodiac quora
cancer zodiac queen
qualities of cancer zodiac sign
qualities of a cancer zodiac
quotes about cancer zodiac
questions to ask a cancer zodiac
quotes for cancer zodiac sign
quiet cancer zodiac
questions for cancer zodiac
questions to ask a cancer zodiac sign
quiz for cancer zodiac
quora cancer zodiac
cancer zodiac reading
cancer zodiac red flags
cancer zodiac reading today
cancer zodiac ruling planet
cancer zodiac rising sign
cancer zodiac relationship
cancer zodiac reddit
cancer zodiac ring
cancer zodiac range
cancer zodiac rappers
ring for cancer zodiac
ruby for cancer zodiac
rabbit cancer zodiac
red flag cancer zodiac
rappers that are cancer zodiac sign
real cancer zodiac facts
rat cancer zodiac
ruling planet of cancer zodiac sign
random facts about cancer zodiac
cancer zodiac sign traits
cancer zodiac sign meaning
cancer zodiac sign month
cancer zodiac stone
cancer zodiac soulmate
cancer zodiac sign compatibility
cancer zodiac sign tattoo
sign of cancer zodiac
stones for cancer zodiac
symbol for cancer zodiac
stone for cancer zodiac sign
symbol of cancer zodiac sign
scary facts about cancer zodiac
serial killers with cancer zodiac sign
cancer zodiac tattoo ideas
cancer zodiac today
cancer zodiac tattoos for females
cancer zodiac traits female
cancer zodiac traits male
cancer zodiac tattoos for guys
cancer zodiac tarot card
cancer zodiac type
traits of cancer zodiac
things about cancer zodiac sign
tattoo cancer zodiac
types of cancer zodiac
tattoo ideas for cancer zodiac
the meaning of cancer zodiac sign
tattoo cancer zodiac sign
today cancer zodiac
today cancer zodiac sign
today's cancer zodiac horoscope
cancer zodiac urban dictionary
cancer zodiac usernames
cancer zodiac upset
cancer zodiac usa today
cancer zodiac usernames for instagram
cancer zodiac unlucky numbers
cancer zodiac unlucky color
cancer zodiac urdu
cancer zodiac unique facts
cancer zodiac unlucky
unique cancer zodiac tattoos
unique cancer zodiac tattoos for females
ugali ng cancer zodiac sign
understanding cancer zodiac
username for cancer zodiac
urban dictionary cancer zodiac sign
unhealthy cancer zodiac
usa today cancer zodiac
unknown facts about cancer zodiac
unlucky colour for cancer zodiac
cancer zodiac virgo
cancer zodiac vape
cancer zodiac vibes
cancer zodiac videos
cancer zodiac vs scorpio
cancer zodiac vs leo
cancer zodiac venus
cancer zodiac vector
cancer zodiac vs gemini
cancer zodiac vindictive
virgo and cancer zodiac sign
vans cancer zodiac
virgo and cancer zodiac
villains cancer zodiac
vintage cancer zodiac
vintage cancer zodiac charm
venus in cancer zodiac
van cleef zodiac pendant cancer
cancer zodiac in vietnamese
cancer zodiac water sign
cancer zodiac weakness
cancer zodiac woman
cancer zodiac wallpaper
cancer zodiac what month
cancer zodiac water or fire
cancer zodiac worst match
cancer zodiac worst traits
cancer zodiac when mad
cancer zodiac wallpaper aesthetic
what is a cancer zodiac
what month is cancer zodiac sign
what month is cancer zodiac
what color is cancer zodiac
weakness of cancer zodiac
what are the traits of a cancer zodiac sign
what is the meaning of cancer zodiac sign
woman cancer zodiac
what is a cancer zodiac animal
what is good about cancer zodiac sign
cancer x zodiac
zodiac cancer x gemini
astrology cancer x capricorn
cancer zodiac letters
cancer x
cancer x cancer zodiac compatibility
cancer x cancer zodiac
zodiak taurus x cancer
what sign are cancer
x cancer
cancer zodiac year 2024
cancer zodiac yin yang
cancer zodiac year
cancer zodiac yin or yang
cancer zodiac yesterday
cancer zodiac year of dragon
what are cancer zodiac signs
year 2024 for cancer zodiac
yin yang cancer zodiac
year of the dragon for cancer zodiac sign
year of cancer zodiac
youtubers with cancer zodiac
year 2023 for cancer zodiac sign
year of the dragon for cancer zodiac
what year is cancer zodiac sign
what does it mean if you are a cancer zodiac
how to know if your a cancer zodiac sign
cancer astrology zone
cancer zodiac pisces zodiac
why are zodiac cancers so dangerous
cancer about zodiac
cancer zodiac in chinese zodiac
cancer zodiac zodiac
cancer sheep zodiac
zodiac cancer characteristics
zodiac cancer celebrities
zodiac cancer child
zodiac cancer chart
cancer horoscope 0800
cancer zodiac july 07
horoscope cancer 09 juin 2023
are cancers good for cancers
are cancers lucky
cancer sun 0 degrees
cancer 0 degrees
what are cancers sign
why are cancers called cancer
why is cancer called cancer zodiac
what represents cancer zodiac
0 degree cancer astrology
0 degree cancer
0 cancer
cancer zodiac 15 year cycle
cancer zodiac 10 things
cancer zodiac 10
cancer zodiac 18k
cancer zodiac 15th birthday
cancer 101 zodiac
zodiac cancer 16
cancer horoscope 19 march 2024
cancer horoscope 13 december 2023
cancer horoscope 11 march 2024
10 bad things about cancer zodiac
10 things about cancer zodiac male
10 things about cancer zodiac female
100 facts about cancer zodiac
10 facts about cancer zodiac
10 good things about cancer zodiac
10 interesting facts about cancer zodiac
10 facts about cancer zodiac sign
14k gold cancer zodiac necklace
cancer zodiac 2024
cancer zodiac 2024 prediction
cancer zodiac 2023
cancer zodiac 2025
cancer zodiac 2024 january
cancer zodiac 2024 career
cancer zodiac 2023 predictions
cancer zodiac 2024 in hindi
cancer zodiac 2024 march
cancer zodiac 2023 horoscope
2024 for cancer zodiac
2 types of cancer zodiac
2025 for cancer zodiac
20 facts about cancer zodiac
2026 for cancer zodiac
2023 for cancer zodiac
2023 cancer zodiac predictions
2024 prediction for cancer zodiac
2024 lucky color for cancer zodiac sign
2024 color of the year for cancer zodiac sign
cancer zodiac 3 stages
cancer zodiac 3 types
cancer zodiac 3 signs
cancer 3 zodiac
cancer horoscope 31 january 2024
cancer horoscope 30 march 2024
cancer horoscope 31 july 2023
cancer horoscope 30 march 2023
cancer horoscope 30 august 2023
cancer horoscope 30 november 2023
3 types of cancer zodiac
3 stages of cancer zodiac
3 words to describe cancer zodiac
3 facts about cancer zodiac
3 different types of cancer zodiac
3d cancer zodiac sign
3 fun facts about cancer zodiac
august 31 zodiac sign compatibility with cancer
cancer june 30 zodiac sign
cancer zodiac june 30
cancer horoscope 4 march 2024
cancer horoscope 4 april 2024
cancer horoscope 4 may 2023
cancer horoscope 4 january 2024
cancer horoscope 4 october 2023
cancer horoscope 4 april 2023
cancer horoscope 4 september 2023
cancer horoscope 4th december 2023
cancer horoscope 4 july 2023
cancer horoscope 4 june 2023
4 types of cancer zodiac
cancer zodiac wallpaper 4k
cancer zodiac july 4
zodiac sign of cancer 4 letters
what do cancer zodiac sign mean
cancer zodiac rules
4 cancers
zodiac cancer types
cancer horoscope 5 march 2024
cancer horoscope 5 april 2024
cancer horoscope 5 october 2023
cancer horoscope 5 april 2023
cancer horoscope 5 june 2023
cancer horoscope 5 july 2023
cancer horoscope 5 january 2024
cancer horoscope 5 may 2023
cancer horoscope 5 february 2024
cancer horoscope 5 december 2023
5 facts about cancer zodiac
50 cent is a cancer zodiac
50 cent zodiac sign cancer
cancer 5th house zodiac
cancer zodiac sign july 5
cancer zodiac july 5
june 5 zodiac sign cancer
5 cancers
cancer zodiac 69
cancer zodiac 69 tattoo
cancer zodiac 69 meaning
cancer horoscope 6 march 2024
cancer horoscope 6 july 2023
cancer horoscope 6 april 2023
cancer horoscope 6 december 2023
cancer horoscope 6 october 2023
cancer horoscope 6 june 2023
cancer horoscope 6 september 2023
69 cancer zodiac
meaning of cancer zodiac sign 69
cancer zodiac july 6
what does the 69 mean for cancer
cancer born on july 6
cancer big 6 astrology
69 cancer sign
6 cancer causing foods
cancer horoscope 7 march 2024
cancer horoscope 7 may 2023
cancer horoscope 7 september 2023
cancer horoscope 7 july 2023
cancer horoscope 7 june 2023
cancer horoscope 7th may 2023
cancer horoscope 7 november 2023
cancer horoscope 7 august 2023
cancer horoscope 7 april 2023
cancer horoscope 7 february 2024
cancer zodiac july 7
cancer horoscope 8 march 2024
cancer horoscope 8 january 2024
cancer horoscope 8 may 2023
cancer horoscope 8 september 2023
cancer horoscope 8 june 2023
cancer horoscope 8 april 2023
cancer horoscope 8 august 2023
cancer horoscope 8 december 2023
cancer horoscope 8 november 2023
cancer horoscope 8th march 2024
july 8th cancer zodiac
cancer zodiac july 8
signo zodiacal cancer julio 8
what flower represents cancer zodiac
why cancer is dangerous zodiac
what gifts do cancers like
cancer 8h
cancer horoscope 9 june 2023
cancer horoscope 9 may 2023
cancer horoscope 9 march 2024
cancer horoscope 9 january 2024
cancer horoscope 9 april 2023
cancer horoscope 9 october 2023
cancer horoscope 9 september 2023
cancer horoscope 9 november 2023
cancer horoscope 9 august 2023
cancer horoscope 9th april 2023
9 cancer zodiac sign
july 9 zodiac sign cancer
cancer zodiac july 9
what do cancer look like zodiac
what does cancer hate zodiac
9 cancer symptoms
what cancer zodiac sign
what cancer zodiac sign means
submitted by shaneka69 to mytarotreadings [link] [comments]


2024.05.14 17:50 GiversBot /u/JustSayingLucas [NO LONGER NEEDED] was deleted from /r/SimpleLoans on 2024-05-14 (t3_1c0ieaf up 34.22 days)

JustSayingLucas deleted from /SimpleLoans

Quick search

Title

[REQ] (65€) - (#MG, NRW, Germany) Repay, 80€ on April 1,2024) PayPal

Post contents

Hey, I am new to this subreddit and I hope I won’t do anything wrong. I’m requesting the first time, only for Internet Bill and food for the rest of the month. I had dental surgery’s, which took all my savings. I’ll get loan on 1st April and pay it back the same day.
Thank you for your time, god bless you.
submitted by GiversBot to borrowdeletes [link] [comments]


2024.05.14 17:47 ultrasuperman1001 LPT: If you have a Windows computer that has error messages, corruption, etc, you can reinstall Windows without loosing your files and programs

Microsoft allows you to download an ISO image of Windows 10 and Windows 11. Once the ISO is downloaded you can open the file and run the setup.exe. During the install just make sure at the end you have it selected to "keep files and settings", it will take 1-2 hours to install but if you are getting error messages or just Windows is running weird this should fix your computer.
NOTE: this won't speed up your computer or fix hardware issues
submitted by ultrasuperman1001 to LifeProTips [link] [comments]


2024.05.14 17:47 Evening_Tackle8738 Mitad de medicamento

Hola tengo una duda alguien de aquĂ­ ah tomado la mitad de tradea lp de 20 mg sabe si el efecto duran las 10 horas o se cortas a la mitad o se vuelve de 10 no me han explicado muy bien de antemano gracias
submitted by Evening_Tackle8738 to TDAH_Mexico [link] [comments]


2024.05.14 17:47 Comfortable-Carry563 Is God trying to take me out ? Lol JK but I definitely feel like it sometimes

I have migraines with aura, and I also get tension headaches. I also suffer from CVS AKA cyclic vomiting syndrome. Sometimes, a wonderful ( Obviously sarcasm) combination of both , called a mixed tension migraine with aura.
I do take rizatriptan if it's only a Migraine with aura . I also have promethazine oral and suppositories if I'm also having nausea and vomiting, or if I'm in a cycle of my CVS. But I also have fiorcet with codeine and 5 mg Valium that I take if I'm having a tension Migraine or a delightful ( Once again, sarcasm.) Mixed tension Migraine with aura. As well as numerous other health issues to the point I'm almost always in pain.
I am blessed to have an absolutely amazing primary care dr who also suffers from mixed tension migraines, so he knows exactly what I'm going through. So, I'm able to get my desperately needed medications from him instead of pain management or a neurologist.
But , in all honesty, I am blessed because I have amazing, i.e., very expensive, private family insurance. I pay a ton for it every month , so I'm sure this helps ! It is an absolute necessity for my child and I to have very good health insurance due to my health history.
I have a history of ovarian and cervical cancer. DVT blood clots, ( which I currently have 3 in my left arm, diagnosed after extensive imaging less than 11 days ago . Which they're guessing this time , that they're from a combo of laparoscopic surgery, plus my blood clotting disorder) last time I had 2 DVT blood clots , 1 in my arm , 1 in my leg from they're guessing , a combo of my blood clotting disorder plus IVF medications .
This led to pulmonary embolism twice in 2021, ( while undergoing IVF, thankfully, before my FET ) 1x before being in the hospital and then again while in the hospital.
I also unfortunately have 47 different severe allergies , some to food , medications, and different environmental factors , think animal dander, pollen, bee stings etc ( most of which are anaphylactic reactions), a rare blood clotting disorder which led to 11 miscarriages and 3 late term losses. As well as adenomyosis, endometriosis, severe stomach bleeding, uterine fibroids, Nonneoplastic polyps in my colon, diverticulitis, obviously migraines with aura and mixed tension migraines, tension headaches, CVS AKA cyclic vomiting syndrome, severe insomnia , anxiety. ( which , duh, look at my health history)
I was also in a devastating car wreck when I was 7, which left me in a coma for 13 months . I've had surgery on both shoulders twice, 4 times on my right ankle, and numerous other surgeries.
I also , after having an emergency c section due to a placental abruption at 31 weeks with my son . I then ended up having severe postpartum hemorrhage and sepsis 7 days later due to the on call dr leaving a piece of my placenta inside me ! ( I had to be admitted to the hospital , thank goodness it was the same hospital that my son had been transferred to because they had a level 4 NICU . The hemorrhage also resulted in me having to have blood and iron infusions numerous times . I also have the BRCA Gene 1 & 2 , an immediate family history of colon cancer and breast cancer, as well as AML AKA acute myeloid leukemia. Heart disease and numerous others.
I once semi jokingly said to my PCP ( primary care provideDr), do you ever get the feeling that God is trying to take you out ? Because it feels like that to me, lol . Being the absolutely amazing Dr that he is , he said , he's not trying to take you out , he's just showing/proving (to) you how strong and resilient you are. He has amazing things for you in the future ❀ Sorry this was so long ! I didn't realize how long it was going to be !
submitted by Comfortable-Carry563 to ChronicPain [link] [comments]


2024.05.14 17:46 User20242024 Problem with Firefox - how to shut down unresponsive Firefox?

Firstly, I think that Firefox is best browser I can use, but I do have one problem with it. It becomes unresponsive if I open some web sites with too much data, like HD images, HD videos, etc. Even if I scroll down in Facebook too far Firefox becomes unresponsive.
How to solve this problem? I want either to stop Firefox to become unresponsive or to find way to shut it down faster when it becomes unresponsive. I can shut it down from Task manager (it is Windows 10 PC), but problem is that when Firefox becomes unresponsive my computer also becomes very slow and I have to wait several minutes for Task manager to open. I want faster solution that this. And is there some solution in Firefox settings to set an option that good and fast performance is priority instead of opening and showing every data from opened web sites?
Also, I do have bad graphic card and I do not want to change it soon, so I need solutions that do not include my graphic card. Any help?
submitted by User20242024 to firefox [link] [comments]


2024.05.14 17:44 ComfortableMoment682 I am close to losing my corporate job due to chronic pain. How can I protect myself?

I have been dealing with chronic, migrating joint pain for the past 6 years. Within the past 12 months, it has ramped up and moved down into my lower back and SI joints. I took 10 weeks of medical leave last November from my corporate job to try and sort it out because I was in alot of pain which was causing massive anxiety. Unfortunately, during my leave, doctors ran basic tests and said I was fine and put me on anxiety meds.
I've been back at work since February and things continued to deteriorate with my back. I have been sucking it up and pushing through the pain because I fear losing my job. Unfortunately, this weekend, I woke up in a level 9/10 pain, passed out from it, and could not support my upper body weight. Despite this, I still waddled my way into work yesterday and had to take breaks where I had to lie down flat in the bathroom and stretch my SI joints. Its pathetic and embarrassing.
I saw my doctor yesterday, and she is finally taking it seriously and is concerned that something is wrong with my SI joints causing them to be extremely inflamed. My lower back is swollen as well. She gave me a steroid shot (did nothing at all) and has now ordered imaging and autoimmune testing. She has also referred me to an orthopedic surgeon and rheumatologist.
I am happy things are being taken seriously, but at this point - my boss has lost all sympathy and understanding for my health problems and he freaks out anytime I need to leave work early for appointments or if I need to work from home because of pain.
I get his frustration, I will admit that at least once a week, I need to either leave early for apts or wfh due to pain. However, I have never missed a deadline and continue to provide amazing work. I also push through more than I dont and he doesnt see that. I've never once been reprimanded for work-related issues - only the needing to wfh or the appointments, citing that "Others start to get jealous that I'm able to leave early and wfh but they can't". He retaliates by giving me attitude, interrupting me in meetings, and not giving me work or work that is way below my skill level.
I have been trying to find a new job, but the insurance here is good and I need it to resolve these issues hopefully. I am also a single mom, so just up and quitting isn't an option. I'm not sure how to protect my job or if it's even possible to do so. I'm not trying to freak out, but it's becoming harder and harder to take care of myself and I don't have anyone to lean on or help me. I cannot afford for these issues to get to a point where I am unable to be independent.
I am curious if anyone else here has experienced discrimination at work due to chronic pain, or has lost a job because of it. What happened and how did you handle it?
I do have FMLA, but that only covers me for 12 weeks and I've already wasted 10 on medical leave, leaving me with two weeks of FMLA left until November 2024. I'm not sure what my options are moving forward...Do I talk to HR? (I know they are there to protect themselves not me) Is there anything else I can do to protect myself and my job?
I'm stuck between a rock and a hard place here. I've reached the limit where I can no longer push through the pain. I also have to get this imaging and further testing done ASAP, but the places that do the imagine are only open during the same times I work and I live 45 min away from where my job is located - going there on lunch breaks isn't an option.
When dealing with chronic pain, how do you put yourself and your health first when you have a kid to support and are doing it all alone?
Looking for any advice, personal anecdotes, words of encouragement, success stories - anything. I keep feeling so guilty like I am letting people down by being in pain, but it’s obvious now that the pain is real and it's gotten to a really bad point.
submitted by ComfortableMoment682 to ChronicPain [link] [comments]


2024.05.14 17:39 SwordMaster67757 Rare image of this game deciding whether to give me a full loadout and shockwaves and put me in a bot lobby or give me 10 bandages + 40 light bullets and put me in a real game

Rare image of this game deciding whether to give me a full loadout and shockwaves and put me in a bot lobby or give me 10 bandages + 40 light bullets and put me in a real game
My rng is consistently awful and I would never be able to tell you why
submitted by SwordMaster67757 to FortNiteBR [link] [comments]


2024.05.14 17:37 ZebraTricky Stacking Setting Appropriate Jumpchain

Here we go with another couple of questions.
My current look for a first jump after a stacked Generic First/First Virgin is Lucy, but I kind of want to stack a couple of jumps on that seeing as Lucy only covers a couple of days.
I was looking to add Generic Military with Generic First Person Shooter as that would end up being several years of service, leading into Investigation Jumpchain as police work after military service is a good lifepath.
You could probably double stack Generic Military and Investigator with 80's Action Movies depending on how things went and how masochistic you feel.
That would let me take my 10 years here and use the productively, also it gives me some actual military training that isn't fiat gifted, that means during gauntlets I will still have that knowledge and skill.
I currently have 6 Cyberpunk jumps.
2 EdgeRunners
First
Second
2 CyberPunk 2077
First
Second
Generic CyberPunk (I know it doesn't have any cyberwear, but the rest have enough)
World Of CyberSluts
Generic CyberPunk and CyberSluts as an overarching cover the whole thing.
Then run both EdgeRunners Jump concurrently, following through into both the CyberPunk 2077 concurrently.
What is the normal stance on running jumps concurrently, running one after another or sliding them in as a crossover?
submitted by ZebraTricky to JumpChain [link] [comments]


2024.05.14 17:37 EconomistConfident21 Error 384

Spoke to IRS this am. My taxes were filed 4/10 and immediately got error 384. She said to allow 10 weeks.
Anyone know what error 384 is?
submitted by EconomistConfident21 to taxrefundhelp [link] [comments]


2024.05.14 17:36 alekseybusygin Please help identify aviation headsets manufacturer logo from X-Men: First Class

Please help identify aviation headsets manufacturer logo from X-Men: First Class
Hi. This is my first post, sorry for any mistakes.
I’m putting together a collection of logos from movies (medium/@alekseybusygin). Please help me identify the logo of the aviation headsets manufacturer that appears in the scene with the Beast in X-Jet cabin from 2011 movie “X-Men: First Class.”
01:37:10
Zooming
Stylization of the film’s setting as the 60s implies brands of that time, but after searching in Google Images, I found several similar (but not identical) winged logos by ASA, Ragged and Pilot.
01:35:35
Zooming
Thanks everyone in advance for your time.
submitted by alekseybusygin to HelpMeFind [link] [comments]


2024.05.14 17:36 AgreeableAd9816 I don’t feel like I have adequate emotional depth and empathy

I had social anxiety up until 4 years ago due to bullying and body image issues. I had a comfortable upbringing, which was rather sheltered. I’m a single child so my parents were and are overprotective. For some reason I don’t feel happiness easily, my default settings seem anger, broodiness, doubt towards and myself.
I have always found it difficult to associate with people, what they feel. For example about 6 years ago my friend showed me a new bracelet she bought expecting me to give a reaction. I just said “oh”, then she had to tell me that I was supposed to say it looks pretty or something in such a situation.
Whatever empathy I’ve learned has been over the past 3 years that too because I was forced to do so when someone I considered my only friend up and left because of my own sabotaging behaviour. I have made a few friends since then, my social life is better but I still feel this sense of disconnect with everything. My internship in medicine opened my eyes to the world and other’s suffering but even now I have to put a lot of effort to communicate and make others comfortable. I feel utterly exhausted later.
Now that I think back to my childhood I remember the good and the bad. My mother was extremely unhappy with her life, my father though good on paper is not good at showing affection. She halted her career progression to appease my father and grandmother , to take care of me. Her career is stagnant though she’s extremely intelligent.
My mother used to say things like “Don’t try to talk, you won’t know what to speak about. I know I can’t expect much from you. I’m disappointed in you, you are not fun to talk to.” All of this inspite of me being an obedient child, who was always appreciated at school for academics. Up until 10 years of age she used to help me study and hit me when I used to do something wrong. It also didn’t help that my parents fought a lot, it didn’t set a good example as to how I should communicate with others.As a result I didn’t communicate unless absolutely necessary at home up until 3 years ago.
My mother used to be affectionate at other times and really strived to make me nice meals and take me on vacations. My father too is very protective of me. I feel like I’m recalling the past because my mother recently asked me not to wear a particular set of clothes again while exercising because someone had commented on me being fat while wearing it. I don’t like that she wants me to take into consideration a stranger’s unsolicited opinion. Mind you I always dress conservatively, mostly in loose fitting clothes. She still says some mean things like “You are stupid”. I literally have to scream to get her attention.To top it all off she still says things like “Why can’t you be happy, you have everything in life “. I really want to move away for residency.
I feel like crying if I think of all this, I keep praying to God to make me feel different. To make me feel like a real human being and not a shell or some kind of android learning to self programme emotions. I was recently watching kimono mom videos and was crying seeing the kind of gentle parenting some children are afforded. I really wish to be a more gentle, happy, fulfilled person.
submitted by AgreeableAd9816 to TrueOffMyChest [link] [comments]


http://swiebodzin.info