Book reports templates

RocketBookTemplates

2021.06.01 20:55 oktyabyr RocketBookTemplates

A place to get your custom RocketBook templates
[link]


2008.03.04 17:07 LaTeX

[link]


2011.12.10 09:21 Stencil Templates

Stencil Templates is a home and archive for the digital copies of stencils. We seek to produce and catalog all stencil templates in the world in one easily searchable place. We have two rules: follow the tag system and be excellent to each other.
[link]


2024.05.14 12:26 Ibishek No clock enables for URAM pipeline registers?

Hi,
I'm trying to infer a URAM cascade memory from my code, which should be simple dual port, have clock enable (needs to support backpressure) and have output register pipeline to reduce the critical path. I've taken the Xilinx code templates for simple dual port URAM (which do not have a clock enable) and added the clock enable but synthesis reports that no pipeline registers can be absorbed. If I remove the clock enable, the pipeline registers are absorbed without an issue.
At first I thought that maybe the clock enables are not a supported feature but Xilinx documentation mentions ports OREG_CE_B/A as ' output pipeline register CLK enable' so that gave me some hope.
Anyways, I was not able to find any resources describing how to write the code so that the desired URAM is inferred, does anyone know how to do this? Code for my URAM is as follows:
//Port declarations etc.
(\ ram_style = "ultra" *)* logic [DATA_IN_WDT-1:0] mem[ (1< logic [DATA_IN_WDT-1:0] memreg; logic [DATA_IN_WDT-1:0] mem_pipe_stage[PIPE_OUT_CNT-1:0]; logic en_pipe_reg[PIPE_OUT_CNT:0]; always_ff @(posedge clk) begin : uram_mem_proc //write first if(rd_en & clk_en) begin if(wr_en) mem[wr_addr] <= data_in; memreg <= mem[rd_addr]; end end //pipelined enable signal always_ff @ (posedge clk) begin : en_pipe_reg_proc if(clk_en) begin en_pipe_reg[0] <= rd_en & clk_en; for (int i = 0; i < PIPE_OUT_CNT; i++) en_pipe_reg[i+1] <= en_pipe_reg[i]; end end //initial RAM output register always_ff @ (posedge clk) begin: init_mem_pipe_stage_proc if (en_pipe_reg[0]) mem_pipe_stage [0] <= memreg; end //RAM output pipeline always_ff @ (posedge clk) begin : mem_pipe_stage_proc for (int i = 0; i < PIPE_OUT_CNT-1; i++) if (en_pipe_reg[i+1]) mem_pipe_stage[i+1] <= mem_pipe_stage[i]; end //final output register always_ff @ (posedge clk) begin : fin_mem_pipe_stage_proc if(!rst_n) begin data_out <= '0; end if(clk_en) begin if(en_pipe_reg[PIPE_OUT_CNT]) data_out <= mem_pipe_stage[PIPE_OUT_CNT-1]; end end
So basically the clock enable is on the enable register pipeline and on the final register output. I've also tried adding it to the data register pipeline but it did not work either.
I guess directly inserting the URAM primitive is also an option but I'd like to make this inference template work.
Thanks!
submitted by Ibishek to FPGA [link] [comments]


2024.05.14 12:21 rweninger Nextcloud Upgrade fron chart version 1.6.61 to 2.0.5 failed

I am not sure if I want to solve this issue actually, I just want to vent.
iX, what do you think yourself when you print out this error message to a "customer"?
I mean your installation of Kubernetes on a single host is crap and using helm charts that utterly break in an atomic chain reaction that way doesnt make it trustworthy. I am on the way to migrate nextcloud away again from TrueNAS to a docker host and just use TrueNAS as storage.
I dont care about sensible data down there, at the time of posting, this system isnt running anymore. Sorry if I annoy somebody.
[EFAULT] Failed to upgrade App: WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: /etc/ranchek3s/k3s.yaml Error: UPGRADE FAILED: execution error at (nextcloud/templates/common.yaml:38:4): Chart - Values contain an error that may be a result of merging. Values containing the error: Error: 'error converting YAML to JSON: yaml: invalid leading UTF-8 octet' TZ: UTC bashImage: pullPolicy: IfNotPresent repository: bash tag: 4.4.23 configmap: nextcloud-config: data: limitrequestbody.conf: LimitRequestBody 3221225472 occ: - #!/bin/bash uid="$(id -u)" gid="$(id -g)" if [ "$uid" = '0' ]; then user='www-data' group='www-data' else user="$uid" group="$gid" fi run_as() { if [ "$(id -u)" = 0 ]; then su -p "$user" -s /bin/bash -c 'php /vawww/html/occ "$@"' - "$@" else /bin/bash -c 'php /vawww/html/occ "$@"' - "$@" fi } run_as "$@" opcache.ini: opcache.memory_consumption=128 php.ini: max_execution_time=30 enabled: true nginx: data: nginx.conf: - events {} http { server { listen 9002 ssl http2; listen [::]:9002 ssl http2; # Redirect HTTP to HTTPS error_page 497 301 =307 https://$host$request_uri; ssl_certificate '/etc/nginx-certs/public.crt'; ssl_certificate_key '/etc/nginx-certs/private.key'; client_max_body_size 3G; add_header Strict-Transport-Security "max-age=15552000; includeSubDomains; preload" always; location = /robots.txt { allow all; log_not_found off; access_log off; } location = /.well-known/carddav { return 301 $scheme://$host/remote.php/dav; } location = /.well-known/caldav { return 301 $scheme://$host/remote.php/dav; } location / { proxy_pass http://nextcloud:80; proxy_http_version 1.1; proxy_cache_bypass $http_upgrade; proxy_request_buffering off; # Proxy headers proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Port 443; # Proxy timeouts proxy_connect_timeout 60s; proxy_send_timeout 60s; proxy_read_timeout 60s; } } } enabled: true fallbackDefaults: accessModes: - ReadWriteOnce persistenceType: emptyDir probeTimeouts: liveness: failureThreshold: 5 initialDelaySeconds: 10 periodSeconds: 10 successThreshold: 1 timeoutSeconds: 5 readiness: failureThreshold: 5 initialDelaySeconds: 10 periodSeconds: 10 successThreshold: 2 timeoutSeconds: 5 startup: failureThreshold: 60 initialDelaySeconds: 10 periodSeconds: 5 successThreshold: 1 timeoutSeconds: 2 probeType: http pvcRetain: false pvcSize: 1Gi serviceProtocol: tcp serviceType: ClusterIP storageClass: "" global: annotations: {} ixChartContext: addNvidiaRuntimeClass: false hasNFSCSI: true hasSMBCSI: true isInstall: false isStopped: false isUpdate: false isUpgrade: true kubernetes_config: cluster_cidr: 172.16.0.0/16 cluster_dns_ip: 172.17.0.10 service_cidr: 172.17.0.0/16 nfsProvisioner: nfs.csi.k8s.io nvidiaRuntimeClassName: nvidia operation: UPGRADE smbProvisioner: smb.csi.k8s.io storageClassName: ix-storage-class-nextcloud upgradeMetadata: newChartVersion: 2.0.5 oldChartVersion: 1.6.61 preUpgradeRevision: 89 labels: {} minNodePort: 9000 image: pullPolicy: IfNotPresent repository: nextcloud tag: 29.0.0 imagePullSecret: [] ixCertificateAuthorities: {} ixCertificates: "1": CA_type_existing: false CA_type_intermediate: false CA_type_internal: false CSR: null DN: /C=US/O=iXsystems/CN=localhost/emailAddress=info@ixsystems.com/ST=Tennessee/L=Maryville/subjectAltName=DNS:localhost can_be_revoked: false cert_type: CERTIFICATE cert_type_CSR: false cert_type_existing: true cert_type_internal: false certificate: -----BEGIN CERTIFICATE----- MIIDrTCCApWgAwIBAgIEHHHd+zANBgkqhkiG9w0BAQsFADCBgDELMAkGA1UEBhMC VVMxEjAQBgNVBAoMCWlYc3lzdGVtczESMBAGA1UEAwwJbG9jYWxob3N0MSEwHwYJ KoZIhvcNAQkBFhJpbmZvQGl4c3lzdGVtcy5jb20xEjAQBgNVBAgMCVRlbm5lc3Nl ZTESMBAGA1UEBwwJTWFyeXZpbGxlMB4XDTIzMTIxNjA3MDUwOVoXDTI1MDExNjA3 MDUwOVowgYAxCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlpWHN5c3RlbXMxEjAQBgNV BAMMCWxvY2FsaG9zdDEhMB8GCSqGSIb3DQEJARYSaW5mb0BpeHN5c3RlbXMuY29t MRIwEAYDVQQIDAlUZW5uZXNzZWUxEjAQBgNVBAcMCU1hcnl2aWxsZTCCASIwDQYJ KoZIhvcNAQEBBQADggEPADCCAQoCggEBAKPRN3n5ngKFrHQ12gKCmLEN85If6B3E KEo4nvTkTIWLzXZcTGxlJ9kGr9bt0V8cvEInZnOCnyY74lzKlMhZv1R58nfBmz5a gpV6scHXZVghGhGsjtP7/H4PRMUbzM9MawET8+Au8grjAodUkz6Jskcwhgg9EVS5 UQPTDkxXJYFRUN1XhJOR4tqsrHFrI25oUF6Gms9Wp1aq0mJXh+FIGAyELqpdk/Q8 N1Rjn3t4m2Ub+OPmBLwHOncIqz2PHVgL574bT/q+Lc3Mi/gQsfNi6VN7UkNTQ5Q2 uOhrcw4gtjn41v0j7k9CsUvPK8zfCizQHgBx6Ih33Z850pHUQyNuwjECAwEAAaMt MCswFAYDVR0RBA0wC4IJbG9jYWxob3N0MBMGA1UdJQQMMAoGCCsGAQUFBwMBMA0G CSqGSIb3DQEBCwUAA4IBAQAQG2KsF6ki8dooaaM+32APHJp38LEmLNIMdnIlCHPw RnQ+4I8ssEPKk3czIzOlOe6R3V71GWg1JlGEuUD6M3rPbzSfWzv0kdji/qgzUId1 oh9vEao+ndPijYpDi6CUcBADuzilcygSBl05j6RlS2Uv8+tNIjxTKrDegyaEtC3W RoVqON0vhDSKJ3OsOKR2g5uFfs/uHxBvskkChdGn/1aRz+DdHCYVOEavnQylXPBk xzWQDVt6+6mAhejGGkkGsIG1QY7pFpQPA9UWeY/C/3/QdSl01GgfpyWNsfE+Wu1b IS3wxfWfuiMiDbUElqjDqiy623peeVFXrWlTV4G4yBG/ -----END CERTIFICATE----- certificate_path: /etc/certificates/truenas_default.crt chain: false chain_list: - -----BEGIN CERTIFICATE----- MIIDrTCCApWgAwIBAgIEHHHd+zANBgkqhkiG9w0BAQsFADCBgDELMAkGA1UEBhMC VVMxEjAQBgNVBAoMCWlYc3lzdGVtczESMBAGA1UEAwwJbG9jYWxob3N0MSEwHwYJ KoZIhvcNAQkBFhJpbmZvQGl4c3lzdGVtcy5jb20xEjAQBgNVBAgMCVRlbm5lc3Nl ZTESMBAGA1UEBwwJTWFyeXZpbGxlMB4XDTIzMTIxNjA3MDUwOVoXDTI1MDExNjA3 MDUwOVowgYAxCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlpWHN5c3RlbXMxEjAQBgNV BAMMCWxvY2FsaG9zdDEhMB8GCSqGSIb3DQEJARYSaW5mb0BpeHN5c3RlbXMuY29t MRIwEAYDVQQIDAlUZW5uZXNzZWUxEjAQBgNVBAcMCU1hcnl2aWxsZTCCASIwDQYJ KoZIhvcNAQEBBQADggEPADCCAQoCggEBAKPRN3n5ngKFrHQ12gKCmLEN85If6B3E KEo4nvTkTIWLzXZcTGxlJ9kGr9bt0V8cvEInZnOCnyY74lzKlMhZv1R58nfBmz5a gpV6scHXZVghGhGsjtP7/H4PRMUbzM9MawET8+Au8grjAodUkz6Jskcwhgg9EVS5 UQPTDkxXJYFRUN1XhJOR4tqsrHFrI25oUF6Gms9Wp1aq0mJXh+FIGAyELqpdk/Q8 N1Rjn3t4m2Ub+OPmBLwHOncIqz2PHVgL574bT/q+Lc3Mi/gQsfNi6VN7UkNTQ5Q2 uOhrcw4gtjn41v0j7k9CsUvPK8zfCizQHgBx6Ih33Z850pHUQyNuwjECAwEAAaMt MCswFAYDVR0RBA0wC4IJbG9jYWxob3N0MBMGA1UdJQQMMAoGCCsGAQUFBwMBMA0G CSqGSIb3DQEBCwUAA4IBAQAQG2KsF6ki8dooaaM+32APHJp38LEmLNIMdnIlCHPw RnQ+4I8ssEPKk3czIzOlOe6R3V71GWg1JlGEuUD6M3rPbzSfWzv0kdji/qgzUId1 oh9vEao+ndPijYpDi6CUcBADuzilcygSBl05j6RlS2Uv8+tNIjxTKrDegyaEtC3W RoVqON0vhDSKJ3OsOKR2g5uFfs/uHxBvskkChdGn/1aRz+DdHCYVOEavnQylXPBk xzWQDVt6+6mAhejGGkkGsIG1QY7pFpQPA9UWeY/C/3/QdSl01GgfpyWNsfE+Wu1b IS3wxfWfuiMiDbUElqjDqiy623peeVFXrWlTV4G4yBG/ -----END CERTIFICATE----- city: Maryville common: localhost country: US csr_path: /etc/certificates/truenas_default.csr digest_algorithm: SHA256 email: info@ixsystems.com expired: false extensions: ExtendedKeyUsage: TLS Web Server Authentication SubjectAltName: DNS:localhost fingerprint: 8E:68:9D:0A:7D:A6:41:11:59:B0:0C:01:8C:AC:C4:F4:DB:F9:6B:2C from: Sat Dec 16 08:05:09 2023 id: 1 internal: "NO" issuer: external key_length: 2048 key_type: RSA lifetime: 397 name: truenas_default organization: iXsystems organizational_unit: null parsed: true privatekey: -----BEGIN PRIVATE KEY----- MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCj0Td5+Z4Chax0 NdoCgpixDfOSH+gdxChKOJ705EyFi812XExsZSfZBq/W7dFfHLxCJ2Zzgp8mO+Jc ypTIWb9UefJ3wZs+WoKVerHB12VYIRoRrI7T+/x+D0TFG8zPTGsBE/PgLvIK4wKH VJM+ibJHMIYIPRFUuVED0w5MVyWBUVDdV4STkeLarKxxayNuaFBehprPVqdWqtJi V4fhSBgMhC6qXZP0PDdUY597eJtlG/jj5gS8Bzp3CKs9jx1YC+e+G0/6vi3NzIv4 ELHzYulTe1JDU0OUNrjoa3MOILY5+Nb9I+5PQrFLzyvM3wos0B4AceiId92fOdKR 1EMjbsIxAgMBAAECggEAS/Su51RxCjRWwM9TVUSebcHNRNyccGjKUZetRFkyjd1D l/S1zrCcaElscJh2MsaNF5NTMo3HIyAzFdksYTUTvKSKYzKWu7OVxp9MGle3+sPm ZXmABBRbf0uvFEGOljOVjbtloXXC7n9RZdQ2LZIE4nNCQkGmboU6Zi6O+6CQmEOQ 9iyYJ8NyXtjDT2sVOpysAj3ga6tdtSosG7SQuo41t20mw6hbl08LhQP9LfZJyKCR 0x1cYny+XHifB6JQAt8crzHYpKaJc2tZd4dXJ1xDnm2Aa/Au5uEA01P/L3hf41sI cUmBhVf1z5m9yBsyaZnW6LzaR5tQwpnPWPEcNfuwLQKBgQDM1o8vwKCo435shpGE zCdqbvK4+J0XYmbgEwHId8xr9rzZ852lAhs6VO2WQQVMGUoWRaH44B3z1Jv9N5Qa 4RUwnTb1MERfzEjRwUuIWjtz34yAXko0iU3M0FYpIxDuKVJNOEO1Doey0lTUcIYQ sfRUVxxJZ3hpDo7RhPSZpwyBtwKBgQDMu8PFVQ5XRb90qaGqg+ACaXMfHXfuWzuJ UqgyNrvF6wqd9Z0Nn299m7EonE6qJftUqlqHC62OCBfqRBNkwOw40s7ORZvqUCkP 7WsWuJu4HqhS2we8yKRuqj520VP537ZeqnK64mDxDKBvL9ttCujbxy01WFWcdwkO sSAViAK7VwKBgQCAeNG1kYsyYfyY9I2wTJssFgoGGWftkroTL9iecwSzcj1gNXta Usfg/gNFieJYqEPfVC0Sev5OP7rWRlWNxj4UD4a4oV1A+E9zv1gwXOeM9ViZ6omA Cd3R55kik+u6dBA6fl9433Qco+6wjyKGthYYD8qd/1d2DLtmjY0cEbm2YQKBgH4/ Zuifm5lLhFVPaUa5zYAPQJM2W8da8OqsUtWsFLxmRQTE+ZT19Q1S3br6MDQR+drq tapDFEHaUcz/L6pYoRIlRKvEFvI1fiy5Lekz66ptFUUKlcnfPC6VwrEIQi16u33C w77ka/0Y2THXJAsoyBEG0KTtlNVIPgiWRv+gAHc/AoGATOlO6ZVhf0vWPIKBhajM ijWTNIX/iCNOheJEjLEPksG4LVpU16OphZL2m0nIyOryQ0Fmt7GHUfl3CXFhTH/P G47PzH+mLCQLp5TUIeNRQWScWNGGsf9J+MtwpxHMzUymDJySR4aot0bH3fge0MO1 QccFxNbLODRmJuYbSQB1HZQ= -----END PRIVATE KEY----- privatekey_path: /etc/certificates/truenas_default.key revoked: false revoked_date: null root_path: /etc/certificates san: - DNS:localhost serial: 477224443 signedby: null state: Tennessee subject_name_hash: 3193428416 type: 8 until: Thu Jan 16 08:05:09 2025 ixChartContext: addNvidiaRuntimeClass: false hasNFSCSI: true hasSMBCSI: true isInstall: false isStopped: false isUpdate: false isUpgrade: true kubernetes_config: cluster_cidr: 172.16.0.0/16 cluster_dns_ip: 172.17.0.10 service_cidr: 172.17.0.0/16 nfsProvisioner: nfs.csi.k8s.io nvidiaRuntimeClassName: nvidia operation: UPGRADE smbProvisioner: smb.csi.k8s.io storageClassName: ix-storage-class-nextcloud upgradeMetadata: newChartVersion: 2.0.5 oldChartVersion: 1.6.61 preUpgradeRevision: 89 ixExternalInterfacesConfiguration: [] ixExternalInterfacesConfigurationNames: [] ixVolumes: - hostPath: /mnt/Camelot/ix-applications/releases/nextcloud/volumes/ix_volumes/ix-postgres_backups mariadbImage: pullPolicy: IfNotPresent repository: mariadb tag: 10.6.14 ncConfig: additionalEnvs: [] adminPassword: d3k@M%YRBRcj adminUser: admin commands: [] cron: enabled: false schedule: '*/15 * * * *' dataDir: /vawww/html/data host: charon.weninger.local maxExecutionTime: 30 maxUploadLimit: 3 opCacheMemoryConsumption: 128 phpMemoryLimit: 512 ncDbHost: nextcloud-postgres ncDbName: nextcloud ncDbPass: XvgIoT84hMmNDlH ncDbUser: ��-��� ncNetwork: certificateID: 1 nginx: externalAccessPort: 443 proxyTimeouts: 60 useDifferentAccessPort: false webPort: 9002 ncPostgresImage: pullPolicy: IfNotPresent repository: postgres tag: "13.1" ncStorage: additionalStorages: [] data: hostPathConfig: aclEnable: false hostPath: /mnt/Camelot/Applications/Nextcloud/ncdata ixVolumeConfig: datasetName: data type: hostPath html: hostPathConfig: aclEnable: false hostPath: /mnt/Camelot/Applications/Nextcloud/ncdata ixVolumeConfig: datasetName: html type: hostPath isDataInTheSameVolume: true migrationFixed: true pgBackup: ixVolumeConfig: aclEnable: false datasetName: ix-postgres_backups type: ixVolume pgData: hostPathConfig: aclEnable: false hostPath: /mnt/Camelot/Applications/Nextcloud/pgdata ixVolumeConfig: datasetName: pgData type: hostPath nginxImage: pullPolicy: IfNotPresent repository: nginx tag: 1.25.4 notes: custom: ## Database You can connect to the database using the pgAdmin App from the catalog
Database Details
- Database: \{{ .Values.ncDbName }}` - Username: `{{ .Values.ncDbUser }}` - Password: `{{ .Values.ncDbPass }}` - Host: `{{ .Values.ncDbHost }}.{{ .Release.Namespace }}.svc.cluster.local` - Port: `5432``
{{- $_ := unset .Values "ncDbUser" }} {{- $_ := unset .Values "ncDbName" }} {{- $_ := unset .Values "ncDbPass" }} {{- $_ := unset .Values "ncDbHost" }} Note: Nextcloud will create an additional new user and password for the admin user on first startup. You can find those credentials in the \/vawww/html/config/config.php` file inside the container. footer: # Documentation Documentation for this app can be found at https://www.truenas.com/docs. # Bug reports If you find a bug in this app, please file an issue at https://ixsystems.atlassian.net header: # Welcome to TrueNAS SCALE Thank you for installing {{ .Chart.Annotations.title }} App. persistence: config: datasetName: null domain: null enabled: true hostPath: /mnt/Camelot/Applications/Nextcloud/ncdata medium: null password: null readOnly: false server: null share: null size: null targetSelector: nextcloud: nextcloud: mountPath: /vawww/html/config subPath: config nextcloud-cron: nextcloud-cron: mountPath: /vawww/html/config subPath: config type: hostPath username: null customapps: datasetName: null domain: null enabled: true hostPath: /mnt/Camelot/Applications/Nextcloud/ncdata medium: null password: null readOnly: false server: null share: null size: null targetSelector: nextcloud: nextcloud: mountPath: /vawww/html/customapps subPath: custom_apps nextcloud-cron: nextcloud-cron: mountPath: /vawww/html/custom_apps subPath: custom_apps type: hostPath username: null data: datasetName: null domain: null enabled: true hostPath: /mnt/Camelot/Applications/Nextcloud/ncdata medium: null password: null readOnly: false server: null share: null size: null targetSelector: nextcloud: nextcloud: mountPath: /vawww/html/data subPath: data nextcloud-cron: nextcloud-cron: mountPath: /vawww/html/data subPath: data type: hostPath username: null html: datasetName: null domain: null enabled: true hostPath: /mnt/Camelot/Applications/Nextcloud/ncdata medium: null password: null readOnly: false server: null share: null size: null targetSelector: nextcloud: nextcloud: mountPath: /vawww/html subPath: html nextcloud-cron: nextcloud-cron: mountPath: /vawww/html subPath: html postgresbackup: postgresbackup: mountPath: /nc-config type: hostPath username: null nc-config-limreqbody: defaultMode: "0755" enabled: true objectName: nextcloud-config targetSelector: nextcloud: nextcloud: mountPath: /etc/apache2/conf-enabled/limitrequestbody.conf subPath: limitrequestbody.conf type: configmap nc-config-opcache: defaultMode: "0755" enabled: true objectName: nextcloud-config targetSelector: nextcloud: nextcloud: mountPath: /uslocal/etc/php/conf.d/opcache-z-99.ini subPath: opcache.ini type: configmap nc-config-php: defaultMode: "0755" enabled: true objectName: nextcloud-config targetSelector: nextcloud: nextcloud: mountPath: /uslocal/etc/php/conf.d/nextcloud-z-99.ini subPath: php.ini type: configmap nc-occ: defaultMode: "0755" enabled: true objectName: nextcloud-config targetSelector: nextcloud: nextcloud: mountPath: /usbin/occ subPath: occ type: configmap nginx-cert: defaultMode: "0600" enabled: true items: - key: tls.key path: private.key - key: tls.crt path: public.crt objectName: nextcloud-cert targetSelector: nginx: nginx: mountPath: /etc/nginx-certs readOnly: true type: secret nginx-conf: defaultMode: "0600" enabled: true items: - key: nginx.conf path: nginx.conf objectName: nginx targetSelector: nginx: nginx: mountPath: /etc/nginx readOnly: true type: configmap postgresbackup: datasetName: ix-postgres_backups domain: null enabled: true hostPath: null medium: null password: null readOnly: false server: null share: null size: null targetSelector: postgresbackup: permissions: mountPath: /mnt/directories/postgres_backup postgresbackup: mountPath: /postgres_backup type: ixVolume username: null postgresdata: datasetName: null domain: null enabled: true hostPath: /mnt/Camelot/Applications/Nextcloud/pgdata medium: null password: null readOnly: false server: null share: null size: null targetSelector: postgres: permissions: mountPath: /mnt/directories/postgres_data postgres: mountPath: /valib/postgresql/data type: hostPath username: null themes: datasetName: null domain: null enabled: true hostPath: /mnt/Camelot/Applications/Nextcloud/ncdata medium: null password: null readOnly: false server: null share: null size: null targetSelector: nextcloud: nextcloud: mountPath: /vawww/html/themes subPath: themes nextcloud-cron: nextcloud-cron: mountPath: /vawww/html/themes subPath: themes type: hostPath username: null tmp: enabled: true targetSelector: nextcloud: nextcloud: mountPath: /tmp type: emptyDir podOptions: automountServiceAccountToken: false dnsConfig: options: [] dnsPolicy: ClusterFirst enableServiceLinks: false hostAliases: [] hostNetwork: false restartPolicy: Always runtimeClassName: "" terminationGracePeriodSeconds: 30 tolerations: [] portal: {} postgresImage: pullPolicy: IfNotPresent repository: postgres tag: "15.2" rbac: {} redisImage: pullPolicy: IfNotPresent repository: bitnami/redis tag: 7.0.11 release_name: nextcloud resources: NVIDIA_CAPS: - all limits: cpu: 4000m memory: 8Gi requests: cpu: 10m memory: 50Mi scaleCertificate: nextcloud-cert: enabled: true id: 1 scaleExternalInterface: [] scaleGPU: [] secret: {} securityContext: container: PUID: 568 UMASK: "002" allowPrivilegeEscalation: false capabilities: add: [] drop: - ALL privileged: false readOnlyRootFilesystem: true runAsGroup: 568 runAsNonRoot: true runAsUser: 568 seccompProfile: type: RuntimeDefault pod: fsGroup: 568 fsGroupChangePolicy: OnRootMismatch supplementalGroups: [] sysctls: [] service: nextcloud: enabled: true ports: webui: enabled: true port: 80 primary: true targetPort: 80 targetSelector: nextcloud primary: true targetSelector: nextcloud type: ClusterIP nextcloud-nginx: enabled: true ports: webui-tls: enabled: true nodePort: 9002 port: 9002 targetPort: 9002 targetSelector: nginx targetSelector: nginx type: NodePort postgres: enabled: true ports: postgres: enabled: true port: 5432 primary: true targetPort: 5432 targetSelector: postgres targetSelector: postgres type: ClusterIP redis: enabled: true ports: redis: enabled: true port: 6379 primary: true targetPort: 6379 targetSelector: redis targetSelector: redis type: ClusterIP serviceAccount: {} workload: nextcloud: enabled: true podSpec: containers: nextcloud: enabled: true envFrom: - secretRef: name: nextcloud-creds imageSelector: image lifecycle: postStart: command: - /bin/sh - -c - echo "Installing ..." apt update && apt install -y --no-install-recommends \ echo "Failed to install binary/binaries..." echo "Finished." type: exec primary: true probes: liveness: enabled: true httpHeaders: Host: localhost path: /status.php port: 80 type: http readiness: enabled: true httpHeaders: Host: localhost path: /status.php port: 80 type: http startup: enabled: true httpHeaders: Host: localhost path: /status.php port: 80 type: http securityContext: capabilities: add: - CHOWN - DAC_OVERRIDE - FOWNER - NET_BIND_SERVICE - NET_RAW - SETGID - SETUID readOnlyRootFilesystem: false runAsGroup: 0 runAsNonRoot: false runAsUser: 0 hostNetwork: false initContainers: postgres-wait: args: - -c - echo "Waiting for postgres to be ready" until pg_isready -h ${POSTGRES_HOST} -U ${POSTGRES_USER} -d ${POSTGRES_DB}; do sleep 2 done command: bash enabled: true envFrom: - secretRef: name: postgres-creds imageSelector: postgresImage resources: limits: cpu: 500m memory: 256Mi type: init redis-wait: args: - -c - - echo "Waiting for redis to be ready" until redis-cli -h "$REDIS_HOST" -a "$REDIS_PASSWORD" -p ${REDIS_PORT_NUMBER:-6379} ping grep -q PONG; do echo "Waiting for redis to be ready. Sleeping 2 seconds..." sleep 2 done echo "Redis is ready!" command: bash enabled: true envFrom: - secretRef: name: redis-creds imageSelector: redisImage resources: limits: cpu: 500m memory: 256Mi type: init securityContext: fsGroup: 33 primary: true type: Deployment nginx: enabled: true podSpec: containers: nginx: enabled: true imageSelector: nginxImage primary: true probes: liveness: enabled: true httpHeaders: Host: localhost path: /status.php port: 9002 type: https readiness: enabled: true httpHeaders: Host: localhost path: /status.php port: 9002 type: https startup: enabled: true httpHeaders: Host: localhost path: /status.php port: 9002 type: https securityContext: capabilities: add: - CHOWN - DAC_OVERRIDE - FOWNER - NET_BIND_SERVICE - NET_RAW - SETGID - SETUID readOnlyRootFilesystem: false runAsGroup: 0 runAsNonRoot: false runAsUser: 0 hostNetwork: false initContainers: 01-wait-server: args: - -c - - echo "Waiting for [http://nextcloud:80]"; until wget --spider --quiet --timeout=3 --tries=1 http://nextcloud:80/status.php; do echo "Waiting for [http://nextcloud:80]"; sleep 2; done echo "Nextcloud is up: http://nextcloud:80"; command: - bash enabled: true imageSelector: bashImage type: init type: Deployment postgres: enabled: true podSpec: containers: postgres: enabled: true envFrom: - secretRef: name: postgres-creds imageSelector: ncPostgresImage primary: true probes: liveness: command: - sh - -c - until pg_isready -U ${POSTGRES_USER} -h localhost; do sleep 2; done enabled: true type: exec readiness: command: - sh - -c - until pg_isready -U ${POSTGRES_USER} -h localhost; do sleep 2; done enabled: true type: exec startup: command: - sh - -c - until pg_isready -U ${POSTGRES_USER} -h localhost; do sleep 2; done enabled: true type: exec resources: limits: cpu: 4000m memory: 8Gi securityContext: readOnlyRootFilesystem: false runAsGroup: 999 runAsUser: 999 initContainers: permissions: args: - -c - "for dir in /mnt/directories/; do\n if [ ! -d \"$dir\" ]; then\n echo \"[$dir] is not a directory, skipping\"\n continue\n fi\n\n echo \"Current Ownership and Permissions on [\"$dir\"]:\"\n echo \"chown: $(stat -c \"%u %g\" \"$dir\")\"\n echo \"chmod: $(stat -c \"%a\" \"$dir\")\" \n fix_owner=\"true\"\n fix_perms=\"true\"\n\n\n if [ \"$fix_owner\" = \"true\" ]; then\n echo \"Changing ownership to 999:999 on: [\"$dir\"]\"\n \ chown -R 999:999 \"$dir\"\n echo \"Finished changing ownership\"\n \ echo \"Ownership after changes:\"\n stat -c \"%u %g\" \"$dir\"\n \ fi\ndone\n" command: bash enabled: true imageSelector: bashImage resources: limits: cpu: 1000m memory: 512Mi securityContext: capabilities: add: - CHOWN readOnlyRootFilesystem: false runAsGroup: 0 runAsNonRoot: false runAsUser: 0 type: install type: Deployment postgresbackup: annotations: helm.sh/hook: pre-upgrade helm.sh/hook-delete-policy: hook-succeeded helm.sh/hook-weight: "1" enabled: true podSpec: containers: postgresbackup: command: - sh - -c - echo 'Fetching password from config.php' # sed removes ' , => spaces and db from the string POSTGRES_USER=$(cat /nc-config/config/config.php grep 'dbuser' sed "s/dbuser ',=>//g") POSTGRES_PASSWORD=$(cat /nc-config/config/config.php grep 'dbpassword' sed "s/dbpassword ',=>//g") POSTGRES_DB=$(cat /nc-config/config/config.php grep 'dbname' sed "s/dbname ',=>//g") [ -n "$POSTGRES_USER" ] && [ -n "$POSTGRES_PASSWORD" ] && [ -n "$POSTGRES_DB" ] && echo 'User, Database and password fetched from config.php' until pg_isready -U ${POSTGRES_USER} -h ${POSTGRES_HOST}; do sleep 2; done echo "Creating backup of ${POSTGRES_DB} database" pg_dump --dbname=${POSTGRES_URL} --file /postgres_backup/${POSTGRES_DB}$(date +%Y-%m-%d_%H-%M-%S).sql echo "Failed to create backup" echo "Backup finished" enabled: true envFrom: - secretRef: name: postgres-backup-creds imageSelector: ncPostgresImage primary: true probes: liveness: enabled: false readiness: enabled: false startup: enabled: false resources: limits: cpu: 2000m memory: 2Gi securityContext: readOnlyRootFilesystem: false runAsGroup: 999 runAsUser: 999 initContainers: permissions: args: - -c - "for dir in /mnt/directories/*; do\n if [ ! -d \"$dir\" ]; then\n echo \"[$dir] is not a directory, skipping\"\n continue\n fi\n\n echo \"Current Ownership and Permissions on [\"$dir\"]:\"\n echo \"chown: $(stat -c \"%u %g\" \"$dir\")\"\n echo \"chmod: $(stat -c \"%a\" \"$dir\")\" \n if [ $(stat -c %u \"$dir\") -eq 999 ] && [ $(stat -c %g \"$dir\") -eq 999 ]; then\n echo \"Ownership is correct. Skipping...\"\n fix_owner=\"false\"\n \ else\n echo \"Ownership is incorrect. Fixing...\"\n fix_owner=\"true\"\n \ fi\n\n\n if [ \"$fix_owner\" = \"true\" ]; then\n echo \"Changing ownership to 999:999 on: [\"$dir\"]\"\n chown -R 999:999 \"$dir\"\n \ echo \"Finished changing ownership\"\n echo \"Ownership after changes:\"\n \ stat -c \"%u %g\" \"$dir\"\n fi\ndone" command: bash enabled: true imageSelector: bashImage resources: limits: cpu: 1000m memory: 512Mi securityContext: capabilities: add: - CHOWN readOnlyRootFilesystem: false runAsGroup: 0 runAsNonRoot: false runAsUser: 0 type: init restartPolicy: Never securityContext: fsGroup: "33" type: Job redis: enabled: true podSpec: containers: redis: enabled: true envFrom: - secretRef: name: redis-creds imageSelector: redisImage primary: true probes: liveness: command: - /bin/sh - -c - redis-cli -a "$REDIS_PASSWORD" -p ${REDIS_PORT_NUMBER:-6379} ping grep -q PONG enabled: true type: exec readiness: command: - /bin/sh - -c - redis-cli -a "$REDIS_PASSWORD" -p ${REDIS_PORT_NUMBER:-6379} ping grep -q PONG enabled: true type: exec startup: command: - /bin/sh - -c - redis-cli -a "$REDIS_PASSWORD" -p ${REDIS_PORT_NUMBER:-6379} ping grep -q PONG enabled: true type: exec resources: limits: cpu: 4000m memory: 8Gi securityContext: readOnlyRootFilesystem: false runAsGroup: 0 runAsNonRoot: false runAsUser: 1001 securityContext: fsGroup: 1001 type: Deployment See error above values.`
submitted by rweninger to truenas [link] [comments]


2024.05.14 12:00 AutoModerator Daily Newbie Thread

Whatever you want to know about flipping, no matter the question, ask here. Even if it's been covered 1,000 times before. Doesn't matter if you're new or old. If you stop learning things, you're probably on your way out.
-If you're completely new to flipping, I highly recommend checking out our Noob Guide for some basic information about flipping to get you started!
-If you're wondering about how to start selling your thrift finds online, check out this Complete Beginner's Guide to Ebay
-If you're wondering about how to start sending and selling books through Amazon check out this Beginner's guide to flipping books with FBA
-If you're wondering about what kind of stuff our members buy & sell, check out our previous Weekly Haul and Flip of The Week threads.
This is an extremely newb-friendly thread. As such, any rudeness is to be reported.
submitted by AutoModerator to Flipping [link] [comments]


2024.05.14 11:56 Yurii_S_Kh Thousands Gather at a Monastery in Montenegro to Honor Saint Basil of Ostrog

Thousands Gather at a Monastery in Montenegro to Honor Saint Basil of Ostrog
https://preview.redd.it/vpechxvz5d0d1.png?width=858&format=png&auto=webp&s=aa5fd56c0c116235b350840cefc243d7b420765b
On May 12th, Montenegro observed the Feast Day of Saint Basil of Ostrog, a prominent figure of the 17th century and one of the most revered saints of the Serbian Orthodox Church. Thousands of believers converged at the Ostrog Monastery to participate in a cross procession and solemn services, as reported by mitropolja.com.
In the morning, the Hierarchical Divine Liturgy in the square in front of the main cathedral of the monastery was led by Metropolitan of Montenegro and the Littoral, Ioannikios, together with numerous hierarchs of the Montenegrin Metropolis.
After the liturgy, Metropolitan Ioannikios addressed the faithful with pastoral words, congratulating them on the feast day and especially noting that many of those gathered had walked to the monastery, covering distances of tens and even hundreds of kilometers. The Ostrog Monastery is located in the northwest part of Montenegro, near the town of Nikšić. Pilgrims from Banja Luka, Herzegovina, and Romania participated in the festivities.
Metropolitan Ioannikios reminded those assembled of the service of Saint Basil of Ostrog and his historical significance. He emphasized that Saint Basil, during the Turkish conquest in the 17th century, became as unifying a figure for the Serbian people as Saint Sava, the founder of the Serbian Church.
"Saint Basil of Ostrog followed Christ on a thorny and narrow path. Throughout his earthly life, he bore the cross of the Lord while also carrying the burden of his people. But God, out of love for Him, the Church, and his people, bestowed upon him such grace that he could not only preach the Gospel and be a witness to Christ here on earth but also perform miracles: comforting the unfortunate, healing the sick, and demonstrating the power of holy Orthodox faith," said Metropolitan of Montenegro and the Littoral.
Saint Basil of Ostrog is one of the most well-known and revered historical figures in Montenegro. It is believed that thanks to his efforts, the Orthodox faith was preserved in Montenegro during the Ottoman rule.
Born in Herzegovina, Saint Basil took monastic vows as a young man and served for a long time in the Tvrdos Monastery. As an archimandrite of the Tvrdos Monastery, he visited Russia, bringing back books, church utensils, and funds for the construction of churches. He was ordained as a bishop by the Serbian Patriarch Paisius and became the Metropolitan of Trebinje. Later, when the bishop of the neighboring Zahumlje Diocese was killed by the Ottomans, the two dioceses were merged under Saint Basil's leadership, and he had to move from Tvrdos to Nikšić. According to legend, when the Turks persecuted the local population, Saint Basil personally went from house to house, urging people to preserve the Orthodox faith and not to submit to the conquerors. At the same time, he continued to support his people with prayers and assistance to the sick and needy, as well as in the construction of churches.
Turkish oppression forced Saint Basil to leave his residence near Nikšić and settle in the Ostrog Monastery, protected from Herzegovinians by the Montenegrin fortress of Pandurica. In Ostrog, Saint Basil, along with other ascetics, restored the Church of the Entrance of the Most Holy Theotokos into the Temple and built the Church of the Holy Cross. Through his efforts, the Ostrog Cave became a true monastery. There, he spent the last years of his life in prayer. According to legend, after the saint's death, a vine grew from the rock near his cell.
submitted by Yurii_S_Kh to SophiaWisdomOfGod [link] [comments]


2024.05.14 11:55 Academic_Fly_561 Confidence in Islam or Christianity as successors to Judaism is unfounded, as history shows no anticipation or expectation of Judaism being succeeded by another religion.

I have read all of the arguments supporting the legitimacy of Christianity and Islam. I am not here to deny these arguments nor claim that I'm certain Islam/Christianity are false, however the bottom line is when putting all of the supporting evidence together we still need to go back and ask the simple question:
"Is all of this evidence enough for me to confidently say that Judaism was indeed succeeded by Islam/Christianity - so much so that I am willing to alter my entire life because I believe so strongly about that it succeeded Judaism"
Personally, I cannot logically understand how any believers in Christianity/Islam can say this so confidently. The bottom line is that before these religions came about there seems to be no indication amongst Jews that they were expecting Judaism to be succeeded by another religion. If this was the case then they wouldn't have had any issue with Christianity and Islam since it was part of Gods plan, and they are followers of God at their core.
And I will reiterate, I understand that Christians/Muslims often point to certain verses in the Bible/Scriptures supporting their claim of succession (e.g. Isaiah 53, Deuteronomy 18, etc.), but the bottom line is that there are multiple ways to understand these verses and in particular the Jewish interpretation in defense is also just as logical as the Christian and Muslim interpretation.
If so then how can you as a Muslim or Christian be so confident about the legitimacy of your religion?
NOTE: In anticipation of people answering me that there was such and such miracle that occurred and this is overwhelming evidence for the legitimacy of Christianity/Islam I am providing below the reasons why they don't hold much weight in my eyes when attempting to answer my core question above:
1) Perfectness of Quran - I can take a children's book and explain it in a way that logically sounds like its a perfect text straight from Gods mouth. (anything in this world can be flipped on its head to sound logical)
2) Miracles Performed - Personally I assign a believability score to information based on the number people claiming to have seen something firsthand (e.g. I often don't assign a high believability score to news events even if many people are echoing/repeating the news, so long that the source of the initial news was from a single reportejournalist). There is basis to claim that the source of the news for some of the miracles was a single source. Putting that aside though, even if Jesus/Mohammed did perform miracles I still think its a fairly big jump to say that they can now be believed in their claims of a successor religion given that the Torah outlines very clearly that performing miracles does not give one the credibility to change the Torah. Although one can argue the text should be interpreted differently nevertheless going back to what I mentioned earlier, the Jewish interpretation is also logical.
submitted by Academic_Fly_561 to DebateReligion [link] [comments]


2024.05.14 11:47 Academic_Fly_561 How can you be so confident that Islam or Christianity are successors of Judaism if in prior history there seems to be nobody that knew/expected Judaism to be succeeded by another religion?

I have read all of the arguments supporting the legitimacy of Christianity and Islam. I am not here to deny these arguments nor claim that I'm certain Islam/Christianity are false, however the bottom line is when putting all of the supporting evidence together we still need to go back and ask the simple question:
"Is all of this evidence enough for me to confidently say that Judaism was indeed succeeded by Islam/Christianity - so much so that I am willing to alter my entire life because I believe so strongly about that it succeeded Judaism"
Personally, I cannot logically understand how any believers in Christianity/Islam can say this so confidently. The bottom line is that before these religions came about there seems to be no indication amongst Jews that they were expecting Judaism to be succeeded by another religion. If this was the case then they wouldn't have had any issue with Christianity and Islam since it was part of Gods plan, and they are followers of God at their core.
And I will reiterate, I understand that Christians/Muslims often point to certain verses in the Bible/Scriptures supporting their claim of succession (e.g. Isaiah 53, Deuteronomy 18, etc.), but the bottom line is that there are multiple ways to understand these verses and in particular the Jewish interpretation in defense is also just as logical as the Christian and Muslim interpretation.
If so then how can you as a Muslim or Christian be so confident about the legitimacy of your religion?
NOTE: In anticipation of people answering me that there was such and such miracle that occurred and this is overwhelming evidence for the legitimacy of Christianity/Islam I am providing below the reasons why they don't hold much weight in my eyes when attempting to answer my core question above:
1) Perfectness of Quran - I can take a children's book and explain it in a way that logically sounds like its a perfect text straight from Gods mouth. (anything in this world can be flipped on its head to sound logical)
2) Miracles Performed - Personally I assign a believability score to information based on the number people claiming to have seen something firsthand (e.g. I often don't assign a high believability score to news events even if many people are echoing/repeating the news, so long that the source of the initial news was from a single reportejournalist). There is basis to claim that the source of the news for some of the miracles was a single source. Putting that aside though, even if Jesus/Mohammed did perform miracles I still think its a fairly big jump to say that they can now be believed in their claims of a successor religion given that the Torah outlines very clearly that performing miracles does not give one the credibility to change the Torah. Although one can argue the text should be interpreted differently nevertheless going back to what I mentioned earlier, the Jewish interpretation is also logical.
submitted by Academic_Fly_561 to Christianity [link] [comments]


2024.05.14 11:43 Academic_Fly_561 How can you be so confident that Islam or Christianity are successors of Judaism if in prior history there seems to be nobody that knew/expected Judaism to be succeeded by another religion?

I have read all of the arguments supporting the legitimacy of Christianity and Islam. I am not here to deny these arguments nor claim that I'm certain Islam/Christianity are false, however the bottom line is when putting all of the supporting evidence together we still need to go back and ask the simple question:
"Is all of this evidence enough for me to confidently say that Judaism was indeed succeeded by Islam/Christianity - so much so that I am willing to alter my entire life because I believe so strongly about that it succeeded Judaism"
Personally, I cannot logically understand how any believers in Christianity/Islam can say this so confidently. The bottom line is that before these religions came about there seems to be no indication amongst Jews that they were expecting Judaism to be succeeded by another religion. If this was the case then they wouldn't have had any issue with Christianity and Islam since it was part of Gods plan, and they are followers of God at their core.
And I will reiterate, I understand that Christians/Muslims often point to certain verses in the Bible/Scriptures supporting their claim of succession (e.g. Isaiah 53, Deuteronomy 18, etc.), but the bottom line is that there are multiple ways to understand these verses and in particular the Jewish interpretation in defense is also just as logical as the Christian and Muslim interpretation.
If so then how can you as a Muslim or Christian be so confident about the legitimacy of your religion?
NOTE: In anticipation of people answering me that there was such and such miracle that occurred and this is overwhelming evidence for the legitimacy of Christianity/Islam I am providing below the reasons why they don't hold much weight in my eyes when attempting to answer my core question above:
1) Perfectness of Quran - I can take a children's book and explain it in a way that logically sounds like its a perfect text straight from Gods mouth. (anything in this world can be flipped on its head to sound logical)
2) Miracles Performed - Personally I assign a believability score to information based on the number people claiming to have seen something firsthand (e.g. I often don't assign a high believability score to news events even if many people are echoing/repeating the news, so long that the source of the initial news was from a single reportejournalist). There is basis to claim that the source of the news for some of the miracles was a single source. Putting that aside though, even if Jesus/Mohammed did perform miracles I still think its a fairly big jump to say that they can now be believed in their claims of a successor religion given that the Torah outlines very clearly that performing miracles does not give one the credibility to change the Torah. Although one can argue the text should be interpreted differently nevertheless going back to what I mentioned earlier, the Jewish interpretation is also logical.
submitted by Academic_Fly_561 to islam [link] [comments]


2024.05.14 11:32 shaneka69 Get A Tarot Reading Today! ALL READINGS SENT SAME DAY THEY ARE BOOKED

Tarot Reader since 2017 who has fully mastered in depth readings to bring true insight to the energies and circumstances you are dealing with, with the use of Oracle and Astrology as well. Shaneka's Services And Contact Linktree
get a tarot reading
how often should you get a tarot reading
should i get a tarot reading
is it good to get a tarot reading
how much does it cost to get a tarot reading
how often should i get a tarot reading
best time to get a tarot reading
reasons to get a tarot reading
where can i get a tarot reading
why you should get a tarot reading
get a tarot reading online
getting a tarot reading in a dream
how to get the tarot card at arasaka tower
how to get the tarot card above misty
what age can you get a tarot reading
how to ask for a tarot reading
ways to do a tarot reading
how to get tarot reading
what to do if you get a bad tarot reading
what to know before getting a tarot reading
what to expect when getting a tarot reading
get a tarot reading for free
a tarot reader
is it bad to get a tarot card reading
when you get a bad tarot reading
best tarot cards to get in a love reading
can you get a bad tarot reading
how to get a better tarot reading
can you get a tarot reading online
where can i get a tarot card reading
can i get a free tarot reading online
how often should you get a tarot card reading
get a tarot card reading
worst cards to get in a tarot reading
what do you get from a tarot reading
i got a tarot card reading
i want a tarot reading
i need a tarot reading
how to get a free tarot reading
what is a general tarot reading
when should i get a tarot reading
how long should a tarot reading be
how to get a tarot reading
how many times can you get a tarot reading
how to get the most out of a tarot reading
how to get a good tarot reading
is it safe to get a tarot reading
when is the best time to get a tarot reading
why get a tarot reading
learn tarot reading near me
what happens when you get a tarot reading
where to get a tarot reading near me
get a card reader natwest
buy tarot card near me
when not to get a tarot reading
what to get a tarot reading on
buy tarot card online
quick tarot reading
questions to ask when getting a tarot reading
questions for a tarot reading
should you get a tarot reading
getting a tarot reading
what to do when you get tarot cards
get a reading with theresa caputo
where to get a tarot reading
x tarot reversed
z tarot
1 tarot card reading
2 tarot card reading
2 card tarot reading free
2 card tarot spreads
3 tarot reading
3 card reading tarot free
3 card tarot reading new age store
3 card tarot reading questions
4 card tarot reading free
4 tarot card reading
4 tarot card reading meaning
5 card tarot reading free
5 card reading tarot
6 card tarot reading free
how to read a 6 card tarot spread
6 card reading tarot
6 card relationship tarot spread
7 tarot reading
7 card tarot reading free
7 card tarot reading free online
8 card tarot reading
8 card spread tarot reading
9 card tarot reading
how to read a 9 card tarot spread
psychic reading
psychic reading near me
psychic reading free
psychic reading online
free psychic reading by date of birth and time
psychic reading free love
psychic reading cards
psychic readings by danielle
psychic readings by alicia
psychic reading meaning
eva tarot psychic reading
rebecca's psychic reading ted lasso
free psychic reading app
psychic reading ai
psychic reading apple pay
psychic reading banner
bali psychic reading
bobby brown psychic reading
benefits of psychic reading
bts psychic reading
birth chart psychic reading
best psychic reading
psychic reading cards meaning
psychic reading cards deck
daily psychic reading free
dallas psychic reading nyc
david schultz psychic reading
dark psychic reading
dangers of psychic reading
psychic reading elijah vue
psychic readings near me
psychic reading near me open now
elijah vue psychic reading
empress chain spiritual psychic reading
ethical psychic reading
email free psychic reading
experienced psychic reading
elsa psychic reading
psychic reading for taurus
psychic reading for today
psychic reading for riley strain
psychic reading for 2024
psychic reading free by date of birth
psychic reading flyers
psychic reading for aries
psychic reading for elijah vue
free psychic reading for love
free psychic reading cards
free psychic reading for leo
fertility psychic reading free
free psychic reading for virgo
free psychic reading for libra
free psychic reading for cancer
free psychic reading for taurus
psychic reading generator
psychic reading gif
psychic reading german
psychic reading gold creek
gemini psychic reading
gretchen fleming psychic reading
ghost psychic reading
goddess elite psychic reading
kelsey grammer psychic reading
sal governale psychic reading
psychic reading hannah mount sinai
psychic reading hoodie xplr
headache after psychic reading
horoscope psychic reading
howard stern sal psychic reading
henry cavill psychic reading
hand psychic reading
psychic reading in st louis mo
psychic reading in weymouth
impractical jokers psychic reading episode
i get a free psychic reading
i free psychic reading
psychic reading jobs online
psychic reading joslin smith
psychic reader joyce
psychic reader jerry
tarot reading jobs
tarot reading jakarta
tarot reading jobs from home
tarot reading jobs near me
tarot reading journal
tarot reading jobs remote
jungkook psychic reading
joslin smith psychic reading
january psychic reading
jade psychic and tarot reading cape town
kate middleton psychic reading youtube
kyle psychic reading
kim porter psychic reading
kim's psychic reading room
kris jenner psychic reading
kim kardashian psychic reading
kpop psychic reading
kelsey psychic reading
princess kate psychic reading
psychic reading lounge reviews
psychic reading ltd
love psychic reading free
libra psychic reading
leo psychic reading
love psychic reading free by date of birth
live psychic reading free online
love psychic reading online
leo psychic reading today
psychic reading meaning in hindi
psychic reading malaysia
psychic reading malvern
psychic reading meaning in hindi with example
morgan nick psychic reading
matthew perry psychic reading
my psychic reading today
psychic reading near scarborough
nebula psychic reading
nebula astrology and psychic reading
turkish coffee psychic reading near me
yes or no psychic reading
psychic reading online free
psychic reading online cards
psychic reading on riley strain
psychic reading on elijah vue
psychic reading on samantha murphy
online psychic reading manchester
old port maine psychic reading
online psychic reading
psychic reading pathfinder
psychic reading pismo beach photos
psychic reading pismo beach reviews
psychic reading princess kate
psychic reading quiz
tarot reading questions
tarot reading quotes
tarot reading questions about love
tarot reading quiz
spiritual reading quotes
tarot reading questions about career
tarot reading questions about life
tarot reading queen of cups
tarot reading quezon city
question psychic reading
relationship psychic reading questions
que significa psychic reading
que es psychic reading
psychic reading riley strain
psychic reading royal family
relationship psychic reading free
rebecca welton psychic reading
ryan shtuka psychic reading
random psychic reading
rose renee psychic reading
cameron robbins psychic reading
psychic reading spotify
psychic reading shirt
psychic reading shreveport
psychic reading today
psychic reading tube top
psychic reading template
turkish coffee psychic reading
ted lasso rebecca psychic reading
tarot psychic reading near me
tea leaf psychic reading
today's psychic reading
turkish coffee psychic reading nyc
true love psychic reading
tiktok psychic reading
taurus psychic reading
psychic reading ubud
tarot reading ubud
tarot reading using playing cards
tarot reading uk free
tarot reading upside down cards
tarot reading uluwatu
spiritual reading ubud
tarot reading unique
tarot reading utah
tarot reading udemy
unintentional psychic reading
online psychic reading us
psychic reader reading uk
psychic reading in urdu
virgo psychic reading
valentine psychic reading
vicki psychic reading
vivid psychic reading
vampire psychic reading
psychic reading with playing cards
what is psychic reading
xplr psychic reading hoodie
x-men psychics
x and y psychic pokemon
x psychopath reader
psychic reading yes or no
tarot reading yes or no
tarot reading youtube
tarot reading yes or no accurate
tarot reading youtube channels
tarot reading yes or no in hindi
tarot reading yes or no horoscope
tarot reading yourself
tarot reading yellow springs
yellow pages psychic reading
can you share your psychic reading
psychic reading 100
psychic reading 101
tarot reading 100 accurate
tarot reading 10 card spread
tarot reading 101
tarot reading 1 card
tarot reading 10 cards
tarot reading 111
tarot reading 10 of cups
tarot reading 1111
1.99 for 10 minutes psychic reading
10 minute psychic reading for $1
2024 psychic reading
psychic number 2 meaning
2 of pentacles psychic revelation
2 of wands psychic revelation
2 swords psychic revelation
tarot reading 3 card spread
tarot reading 3 cards
tarot reading 3 of cups
tarot reading 333
tarot reading 3 kings
tarot reading 31st
tarot reading $35
psychic number 3 meaning
flight 370 psychic reading
3 of swords psychic revelation
3 of pentacles psychic revelation
3 of wands psychic revelation
43551 psychic reading
4 psychic number
4 swords psychic revelation
4 of pentacles psychic revelation
tarot reading 5 card spread
tarot reading 5 of cups
psychic empath 5 books in 1
tarot reading 6 cards
tarot reading 6 of swords
tarot reading 6 of cups
psychic revelation 6 of wands
tarot reading 7
tarot reading 7 card spread
tarot reading 7 of cups
tarot reading 7 of swords
tarot reading 77084
psychic readings 90
tarot reading 9 card spread
tarot reading 94538
submitted by shaneka69 to mytarotreadings [link] [comments]


2024.05.14 11:20 WolfMaster1997 My systematic approach to high-value B2B lead and deal generation / GTM.

In this post I want to break down how I think about and how I build custom B2B lead gen eco-systems that are designed to engage a cold prospect, educate and help them to then turn into $XX,XXX deals.
I'll share the metrics and best practices from my own experiences from working with around 20 b2b companies with varying deal sizes, starting from $5k marketing packages, to $90k/yr fintech solutions and $200k software dev & IT deals. If you don't agree with my approach, that's fine, there's multiple ways to skin a cat.
Fundamentals are mostly the same and we can split it in 3 main parts.
  1. Traffic acquisition
  2. Nurture & education mechanism
  3. Conversion mechanism.
Where most businesses go wrong is that they try to sell their expensive service to a cold prospect.
That might look like cold emailing and cold "linkedining" (new term) prospects an offer or asking if they're interested in this and that, on the spot.
This is not a good approach for one simple reason - no one want's to be sold to. Not to say that this direct approach doesn't work, for some it works good enough to stay afloat, but it's not something you can use to drive real, inbound interest in your services. Selling to prospects that you get on a sales call from 1 email or DM is extremely hard since you have to do the heavy lifting to educate them on the call and then you also have to sell them.
My goal is to turn this dynamic on it's head. Yes, we want to reach out to cold prospects. Yes, we want to run ads. But not to sell immediately. Rather, we're inviting and getting those prospects into our ecosystem where if they go through your educational materials like reports, case studies, how-to's AND have a real pain, they will come to you to solve it.
Let's break it down.
Traffic acquisition.
There's 2 channels I use to acquire traffic. Sometimes I use both, sometimes one or the other. For the most part that depends on the TAM and what we're selling.
1 - Paid ads (LI and META) are great if you need volume and your deal size varies between $5k - $20k. If you get it right, it's a system that scales easily so you can control demand and growth fairly easily too. It's also very quick and easy to troubleshoot since you can change a variable and see the result in next 3 days.
The ultimate goal of paid ads is to get as many people in your funnel as possible. The only logical way to do it is using lead magnets. Industry specific reports with unique insights that only your ICP would care about, easy-to-code tools that only your ICP would find useful (calculators work great for me), guides and courses made to solve a very specific problem, you get the picture.
We're giving away this free value in exchange for their email address. I can already hear people yelling "But giving away stuff for free only attracts freebie seekers" That's because you don't have a mechanism in place to convert that opt-in into a deal. (I'll go into in the next sections)
To make a great lead magnet I follow this mantra:
  1. Has to be industry and role specific
  2. Has to solve 1 painful problem for the lead
  3. No surface-level, bait-and-switch teasing BS. (using lead magnet as a sales page is a big no-no)
Lead magnet is your chance to build rapport, show your competence and build good will by actually helping your prospects before you ever speak with them. USE IT WISELY. I see many businesses only tease the solution. My advice - give away all your secrets. If you're vague, your leads will think that your approach is basic and you won't capture the interest.
For us, around 20% of lead magnet leads opt-in into the next step of the funnel where we ask much more details. Company name, website, name, phone, etc, etc.
Do this step right and you'll get leads from your ICP opting into your funnel in droves, for cheap.
One little hack I do whenever I launch lead magnet campaigns is create 5-10 lead magnet ideas, create the ads and the landing pages, but don't create the lead magnet itself. Then run ads to those 5-10 lead magnets and see what your cost per lead is AND see what quality leads you attract. My baseline KPI's are sub $15 CPL on the initial launch and 3 out of 10 leads be real, actual companies that fit the ICP.
If you hit that initially, you can reiterate on the ads and the LP and get your CPL way lower.
2 - Cold outreach (LI and email) is great if you're after high ticket or enterprise level deals.
Cold outreach is great for huge target markets and/or very high value accounts. You won't reach Elon Mush through ads, but you could through cold outreach.
Instead of blanket-spamming 10k leads that might or might not need our service we do this.
  1. Score companies based on fit (we use AI for this on scale by giving it bad fit examples, medium fit examples and great fit examples while also describing why each is bad, medium or great. Then we ask to output a score from 1-10)
  2. For companies that score 7 or higher, look at buying signals. Recent hires, open positions, growth or decline, recent funding, featured in news (why featured in news?) and, of course, technographics.
  3. Companies that display positive signals AND are a fit based on scoring, we send a personalized message automatically.
90% of this happens automatically at this point, but don't get confused - it's not AI copy that gets sent out. We have a general template and framework that we base our messages upon and AI fills in the blanks. All that is based on what information we find on the companies and what state they're currently in.
"Hey Adam, saw that Houberz is looking for an engineer with deep understanding of X. I know first hand how hard it is to fill such roles.
I have a case study on how we did Y using X technology, thought you might be interested in giving it a quick read before you pull someone onboard."
This is the general gist of it. Combine it with reaching out to leads that are likely in-market and you'll average 15% reply rates. Blast 10k emails to random list and you'll get 0.5% - 1% reply rates.
That is how we get qualified traffic on the front end.
This is how we convert it into deals.
1.1 - Paid
Once you have people claiming your lead magnet, the magic happens on the thank you page. I've seen many people just have a generic thank you page that does not prompt the next action.
Wasted digital real estate.
Instead of leaving it blank, we either have a call booking page where we pitch a non-sales call that would help fix the lead a specific problem or a signup page for a live workshop.
2nd has higher opt-in rate, but has longer time-to-deal, 1st gives you 1-1 time with high value prospects, but is more expensive..
Ideally, run both. Best of both worlds.
On top of that, when someone opts in and claims your lead magnets, you can then email them on a regular basis as part of your newsletter which gives you another channel to nurture leads and throw offers their way.
2.1 - Cold outreach
As soon as you receive a positive response to your lead magnet offer, you send it over, find that person on LI and connect (so you have another channel and they see that you're a real human) then ask if they're struggling with a specific problem that your service can fix.
If they do, great, share more case studies, share how they could solve the problem themselves and then soft-pitch a meeting in which you propose to "continue the conversation"
For cold, each convo will be different so you will have to come up with helpful and relevant email responses on the fly.
Remember speed-to-lead. The faster you answer, the higher the chance of you pushing the lead to the next step of your funnel.
So do you need both of these acquisition channels? Do you also need to post on Linkedin and dance on Tiktok?
Depends on your business. Generally, the more eyes you have on you, the more deals you'll close. These two channels are foundation for myself and any business I consult, but to supplement that and build credibility, we're also heavily investing in LI organic.
Why? People who watch your ads and engage with your emails will check out your LI eventually. If it's barren, you won't leave an impression. If it's packed with valuable, funny, insightful and humanizing posts, not only your leads will connect with you, but they'll feel compelled to engage.
So it's not one system or another - it's all of them working in cohesion.
Thanks for coming to my ted talk.
submitted by WolfMaster1997 to Entrepreneur [link] [comments]


2024.05.14 11:12 Bianca_Raven_Black How to Start a Business – A Guide From an Established Entrepreneur

For the past few years, I've been on a wild ride, starting (and successfully running) 8 different businesses. Along the way, I've devoured countless books, experimented like crazy, and even cracked the $1.5 million yearly revenue mark. Not too shabby, right?
But the most valuable lessons haven't come from textbooks - it's the trenches, the hustle, the real-world experience that truly equips you. That's why I'm here - to share the no-BS knowledge I've gained to help you start your business and avoid the pitfalls I stumbled into.
TL;DR: If you’ve got your business plan ready, and are ready to officially launch your business, Tailor Brands can help you with business registration, branding, and getting your website up and running.

Step 1 - Pick a Business Idea

Let's ditch the "follow your passion" cliche for a sec. Sure, loving what you do is important, but a successful business also needs two ingredients: profitability, and skills.
Think about it: being passionate about music is awesome, but if singing isn't your forte, building a music career might be tough. Same goes for that handmade soap dream in a town saturated with sudsy shops. Competition is fierce, so replicating what others already do is a challenge.
Finding Your Business Niche:
  • What are your passions and pet peeves? Can you create a solution that makes life easier for people who share your frustrations?
  • What are you naturally good at? What do people seek your advice on?
  • Imagine a 5-minute speech on any topic. What would you talk about?
  • What have you always wanted to do but lacked the resources?
These can all lead to a golden business concept. Even if you have a starting point, these questions can help you refine and solidify it. Remember, your idea doesn't have to revolutionize the world. Improving on existing products or creating digital products with minimal overhead are great options too!
Choosing Your Business Model:
Before diving in, consider these factors:
  • Funding: How much dough do you have to invest?
  • Time Commitment: Can you be a full-time entrepreneur, or will this be a side hustle?
  • Work Location: Do you dream of a home office, or is a dedicated workspace your jam?
  • Interests and Skills: What sparks your passion and what are you naturally good at?
  • Scalability: Do you want a slow and steady growth, or an explosive launch?
  • Support System: Who's got your back as you launch your venture?
  • Partnerships: Are you a lone wolf, or a team player?
  • Franchise Opportunities: Does a pre-established system appeal to you?

Step 2 - Research the Market

If the market research says your product is everywhere, you gotta niche down. Take cleaning services for example. Forget general cleaning - maybe you specialize in pet messes or tackling garage nightmares. See where I'm going?

Step 3 - Get your Business Plan Ready

Having a business plan shows you've got a thought-out strategy, not a guessing game. Planning helps you spot potential problems before you invest a ton of time and money. And it can help you track your progress and make sure you're on the right path.
What to Include:
  • Executive Summary
  • Company Description
  • Market Analysis
  • Organization & Structure
  • Mission & Goals
  • Products or Services
  • Marketing Plan
  • Financial Plan
It doesn’t have to be a 50-page book. Just having these important sections defined will give you a great business plan.

Step 4 - Choose Your Business Structure

Choosing a business structure depends on how much paperwork you want to deal with, how much personal liability you want to risk, and how you plan to grow your business.
Here's a quick breakdown:
  • LLC: Easy to set up, limited liability protection, but more paperwork than a sole proprietorship.
  • LLP: Similar to LLC but for licensed professionals, easy to form, limited liability protection, but partners are liable for malpractice.
  • Sole Proprietorship: Easiest to form, full control, but owner is personally liable for all debts.
  • Corporation: Limited liability protection, complex to set up, double taxation (can be a plus in some situations).
Services like Tailor Brands or Northwest Registered Agent will do a great job to get your business registered officially.

Step 5 - Register Your Business and Get Licenses

  • Pick a Business Name: Make it catchy and unique, and check for domain name and trademark availability.
  • Register Your Business & Get an EIN: File with your state and get a registered agent. You'll also need an EIN (Employer Identification Number) from the IRS for most businesses.
  • Licenses & Permits: Research the licenses and permits required for your specific industry and location. This might involve your local government or an attorney.

Step 6 - Plan Out Financials

  • Bank Account: Open a separate account for your business to keep finances organized.
  • Bookkeeping: Decide on software or hire a bookkeeper to track income, expenses, and generate reports.
  • Break-Even Point: Figure out how many sales you need to cover your costs (fixed costs + variable costs).
That’s about it. I could go more in-depth with scaling and growing your business but let’s leave that for another day. Before I end this post, I just want to add some personal tips that I’ve learned the hard way.
Focus on your strengths and delegate the rest. You can't be an expert in everything, so find reliable freelancers or agencies to handle tasks outside your skillset. This will free up your time to focus on what you do best and avoid burnout.
Embrace the launch and learn as you go. Don't wait until everything is perfect before you start. Launch your business and iterate based on customer feedback. The most valuable lessons often come from making mistakes and adapting.
Outsource for efficiency and expertise. Find trusted partners to handle tasks like accounting, marketing, and content creation. This allows you to access specialized skills without the overhead of hiring full-time employees.
Aim for premium value. Consider setting higher prices in your market. This can lead to better profit margins and a more manageable client base, as high-value clients often require less hand-holding.
Pay yourself first. Don't wait for the "right time" to take a salary. Make your business profitable from the start and ensure you're financially rewarded for your efforts.
Build a sustainable business. Prioritize creating a system that doesn't require excessive working hours. Your business should support your lifestyle, not the other way around.
submitted by Bianca_Raven_Black to llc [link] [comments]


2024.05.14 10:52 Only-Cat-7260 Looking for: Finance & Admin Exec, We are based at Jaya One, PJ.

Name of Company: Driven Communications Sdn Bhd
Role: Finance & Admin Executive
Remuneration: RM4k - RM5k
Requirements:
  • Candidate must possess at least a Bachelor’s Degree, Post Graduate Diploma, Professional Degree in Finance/Accountancy/Banking or equivalent
  • At least 3 years of working experience in the related field is required for this position
  • Good working knowledge of Malaysia’s GST and accounting practices
  • Working knowledge of Microsoft Office, and also comfortable to work with Online Accounting Systems (in this case, Quickbooks)
  • Written and spoken proficiency in English and Bahasa Malaysia. Any other languages are a plus but not necessary
  • Must possess own transportation and be a Malaysian citizen
  • Proactive, meticulous, independent and resourceful
  • Able to work independently or in a team and under pressure
  • Full time positions only.
Job Description
  • To handle the full set of accounts for Driven and all her departments, via the online, GST-compliant accounting software (Quickbooks)
  • To ensure that all book keeping and record keeping are up to date in the abovementioned accounting system
  • To be in charge of operational accounting and finance tasks including:
invoicing, vendor payments, payroll, taxation & employee deductibles
  • Prepare and ensure timely completion of month end closing and reporting for the Company.
  • Liaise with stakeholders, external auditors, tax consultants, company secretary, and other regulatory bodies
  • Interpret the company's financial results to management and recommend improvement activities
  • Ensure that sufficient funds are available to meet ongoing operational and capital investment requirements
  • Handle other daily accounting activities and any ad hoc duties assigned from time to time
  • Will be in charge of general office operations and administration tasks
Note: Yearly accounts and taxation documentation will be done by external party. Candidate will need to alias with the external parties on a regular basis to ensure all records are up to date so that the yearly process can be executed smoothly.
submitted by Only-Cat-7260 to FreeAdvertisingArea [link] [comments]


2024.05.14 10:52 Only-Cat-7260 Looking for: Finance & Admin Exec, We are based at Jaya One, PJ.

Name of Company: Driven Communications Sdn Bhd
Role: Finance & Admin Executive
Remuneration: RM4k - RM5k
Requirements:
  • Candidate must possess at least a Bachelor’s Degree, Post Graduate Diploma, Professional Degree in Finance/Accountancy/Banking or equivalent
  • At least 3 years of working experience in the related field is required for this position
  • Good working knowledge of Malaysia’s GST and accounting practices
  • Working knowledge of Microsoft Office, and also comfortable to work with Online Accounting Systems (in this case, Quickbooks)
  • Written and spoken proficiency in English and Bahasa Malaysia. Any other languages are a plus but not necessary
  • Must possess own transportation and be a Malaysian citizen
  • Proactive, meticulous, independent and resourceful
  • Able to work independently or in a team and under pressure
  • Full time positions only.
Job Description
  • To handle the full set of accounts for Driven and all her departments, via the online, GST-compliant accounting software (Quickbooks)
  • To ensure that all book keeping and record keeping are up to date in the abovementioned accounting system
  • To be in charge of operational accounting and finance tasks including:
invoicing, vendor payments, payroll, taxation & employee deductibles
  • Prepare and ensure timely completion of month end closing and reporting for the Company.
  • Liaise with stakeholders, external auditors, tax consultants, company secretary, and other regulatory bodies
  • Interpret the company's financial results to management and recommend improvement activities
  • Ensure that sufficient funds are available to meet ongoing operational and capital investment requirements
  • Handle other daily accounting activities and any ad hoc duties assigned from time to time
  • Will be in charge of general office operations and administration tasks
Note: Yearly accounts and taxation documentation will be done by external party. Candidate will need to alias with the external parties on a regular basis to ensure all records are up to date so that the yearly process can be executed smoothly.
submitted by Only-Cat-7260 to u/Only-Cat-7260 [link] [comments]


2024.05.14 10:51 mtufekyapan Marketing Guide For Shopify

Marketing is one of the most crucial operation for a Shopify store. There are lot’s of tactics Marketing is one of the most crucial operation for a Shopify store. There are lot’s of tactics to grow quickly and none of them not working. Well, if you looking for a way to create solid marketing plan, then this guide is for you. In this guide you’ll learn
  • Definition of Marketing
  • Market Research, Competitor Analysis and Defining Your Target Market
  • Brand Identity and How to Create Your Branding
  • Go-to-Market Strategy and Defining Your Marketing Strategy
  • Inbound and Outbound Marketing Channels
  • Marketing Plan Template
  • FAQs

Definition of Marketing

American Marketing Association defines marketing as activity, set of institutions, and processes for creating, communicating, delivering, and exchanging offerings that have value for customers, clients, partners, and society at large. Source
What do you see here?
  1. Marketing is not about activities, it contains activities, set of institutions and process.
  2. Function of marketing is not generating sales. It’s creating, communicating, delivering and exchanging offerings that has value.
  3. In this post we’ll focus on Shopify stores marketing. However in the big picture marketing has not limited with companies. Marketing can be done within organization or society.
Let’s summarize what marketing definition for a Shopify store. Marketing will create, communicate, deliver and exchange offers that have value for customers. As you can see main subject in here is customers. Because of this, I’ll put customers as the center of this guide. Everything we’ll do has to something with them.

Market Research, Competitor Analysis and Defining Your Target Market

This is a practical guide for marketing so I want to continue with a hypothetical Shopify stores for each steps.
Let’s say we have a Shopify store that has some high-end, organic baby clothes targeting new parents.

Market Research

How can we do the market research?
Let’s say you have a new Shopify store that has less than 500 order per month. You can hire expensive agencies, expensive experts to research the market, create market reports for you, etc. Even if you do that, I highly suspicious if it helps you.
However you can talk with your new-parent friends. Ask them about how do they decide to buy baby clothes? What they are looking for before completing their purchases? Do they get any expert opinion before making buying decision? How do they search online and what they want to see? Is there any great YouTube channels about this.
Don’t have any friends? Checkout your friends not a new-parents but parents and ask similar questions to them. If you also don’t have them, try to make new born friends. I know how hard it is but let’s be honest here. If you don’t know anybody in your target audience, how do you manage to get know them? All of the successful stores I saw they have direct relationship with their target audience.
When you make your research with real people, then you can extend your project to online. Try to search as they do. What do you find? Deep in dive and take your notes.

Competitor Analysis

When you done this market research, you’ll also see there are some other brands. This is a huge subject but let’s call these brands as competitor for now.
Now it’s time to analyze them.
  1. Checkout their branding strategy.
  2. What are their value propositions?
  3. What is hot about them? Return guarantee, free shipping etc.
  4. What is not hot about them? Poor product or store design, low UX on the website, etc.
  5. What people think about them? Google reviews, Trust pilot reviews, product reviews on the store.
  6. Are there any partnership or influencer program they’re running?
  7. What is their Google/YouTube campaign strategy? Check it here.
  8. What is their Facebook/Instagram campaign strategy? Check it here.
Create a spreadsheet with all of this information. We’ll use this when working on positioning and marketing strategy.

Define Your Target Market

What do you say about our target market? Can all of new parents be our target market?
Nope, it can’t. You need to deep dive into your market and find a sub-segment, a niche that will need your products much better than anybody else and afford it easily.
This is what I called ideal customer profile (ICP). Check out what is ideal customer profile and how to create your ideal customer profile posts to learn more about the concept.
For our hypothetical store, ICP can be something like this;
Demographics
  • Age: 25-45 years old
  • Gender: Primarily women, but also some men
  • Education: College degree or higher
  • Income: $75,000+ per household
  • Location: Urban areas
  • Occupation: Professionals, entrepreneurs, stay-at-home parents
Psychographics
  • Values: Health, wellness, sustainability, social responsibility
  • Lifestyle: Active, eco-conscious, family-oriented
  • Interests: Organic food, natural products, children’s activities
  • Media consumption: Social media, parenting blogs, magazines
  • Shopping habits: Researches purchases thoroughly, values quality over price
Pain Points
  • Concerns about harmful chemicals in baby clothes
  • Difficulty finding stylish and affordable organic baby clothes
  • Wants to make sustainable choices for their children
Needs
  • High-quality, organic baby clothes that are safe and healthy for their children
  • Unique and stylish designs that make their children look and feel good
  • A brand that shares their values and commitment to sustainability
Buying Behaviors
  • Researches products online before making a purchase
  • Reads reviews and testimonials from other parents
  • Shops at specialty stores and online retailers
  • Willing to pay a premium for quality and sustainability
After creating ICP, it’s important to spend some time on empathy map. Don’t forget to check it, too.
Now we know our baby clothes Shopify store market, customer’s buying process and our ideal customer profile.

Brand Identity and How to Create Your Branding

I’ll follow the American Marketing Association (AMA) in here too.
First look at brand definition. AMA defines brand as “any distinctive feature like a name, term, design, or symbol that identifies goods or services”.
Branding is for creating and managing your brand’s identity. It involves your mission, values, culture and public image.
I’m not an expert on brand, but I know how branding can be effective for your conversions and performance. Here are some checklist for you.
  1. Design consistency is the key. Your visual identity should be consistent across social media, Shopify store, emails, product detail pages, etc.
  2. Copy consistency is the key. Your communication style should be consistent across social media, Shopify store, emails, product detail pages, etc.
  3. Experience consistency is the key. Let’s say your brand looks like a high-end brand and when a new visitor visit your store first they see is an annoying popup saying want to get 10% OFF. This is simply how to destroy your brand.
  4. Craft a story and stick to it. What makes you create this brand? Faces behind the brand. This is a huge leverage for creating trust and building bonds.

Go-to-Market Strategy and Defining Your Marketing Strategy

So far we identified our target market and ideal customer profile. Check out competitors and creates the branding for our store.
Now it’s time to work on go-to-market strategy and crafting our marketing strategy.

Go-to-Market Strategy

Let’s say you recently launched your Shopify store or add a new line of products.
You need a plan to introduce your store or new products to the market. This is what we called go-to-market(GTM) strategy.
Main goal of the GTM is letting people know that there is a new brand or product line. It’s similar to launch marketing. Key message here is there is a new products/brand launched and it offer the best for you. Give it a try, you’ll love it.
All of your messages and communication should be parallel to this process.
Our focus is convincing people to try our products/brand. So I always offer a special campaign just for the launch to give people to a reason to try your products/brand.
For our hypothetical Shopify store we can run a special campaign for launch like;
  • Free shipping until X date.
  • 5 different boy and girl bundle with 40% OFF to try our products.

Marketing Strategy

This is your plan of actions to sell or advertise your products. Now we can talk about selling part of the marketing.
Let’s say you have GREAT advertising creatives and a huge budget and just spending it. Don’t wait to crack the code and having lot’s of sales.
Your marketing strategy should be follow sales funnel. If you don’t have a high-converting sales funnel, you can’t expect people to buy from you. Check out How to Build High Converting Sales Funnel For Shopify post.
AIDA Sales Funnel Framework
Now we can continue with our hypothetical store example. We’re selling high-end, organic baby clothes on our store. We crafted our ICP, empathy map, work on branding and created our story.

Example Marketing Strategy

First step we’ll work on attention step. Our focus is getting attention of our target market attention.
We can create a educative e-book like “7 Harmful Chemicals Commonly Used in Baby Clothes and How to Avoid Them” and run some campaigns targeted new parents on social network (Facebook, Instagram or YouTube)
This ads will land on a landing page that gives brief information about why we should pay attention to chemicals in baby clothes for our little ones and make a promise like “I spend my last 5 years about researching chemicals on baby clothes and prepare this book for you and your little one”. Also there can be a quick video about our story explaining our expertise in this field and why we’re building this brand.
We can ask for their email address to share the book with them. When they enter their email address, we’ll send them this ebook.
After first email with the ebook, we can send a few more emails with easy to digest information about chemicals.
This will create an expertise image on our target customers and start to create a bond with them. Not a bad start, right?
At the same time we can use this content on our social media, right? Quick videos, infographics and posts about the chemicals in the baby clothes.
After getting a few thousands subscribers we can organize a webinar to answer questions. This will also a great content for re-used social media content and creating trust and expert image.
Then we can share a time-limited promotion with this people for a bundle. Like we’re running a campaign and these 5 chemical free baby clothes bundles 10% discounted until next week!
We can send emails about it and use this campaign for remarketing for only people who show interest in our e-book and webinar.
This is a very brief template of marketing plan.
Now let’s take a look at more common one.
  • Post product photos on social media with lot’s of hashtags
  • Run a Meta campaign without any targeting, land people on product detail page
  • Give them WELCOME10 discount if they enter their email address
  • Send them 15 emails in the next 5 days to maximize your sales.
It’s time for you. Which one do you want to choose? All of the experts recommending this without even asking who are your customers. Can you believe it?
Don’t forget that marketing strategy is not a hope. It’s a well documented plan of actions designed for turning strangers into customers.

Inbound and Outbound Marketing Channels

Inside the marketing strategy, channels plays a vital role. There are lot’s of ways to group channels. I’ll use most basic one.
Inbound Marketing Channels: With the inbound marketing your customers will find you and start the interaction. Most common channel for inbound marketing is organic search engine optimization.
After creating high quality content, when customers search something online, they can see your articles and first interaction happens.
Outbound Marketing Channels: With the outbound marketing you reach out to customers. Facebook/Instagram/YouTube ads, influencer marketing, display ads, podcast ads can be count in this category.
As you can imagine inbound marketing channels takes lot’s of efforts and time however over the time you’ll have organic marketing channel and it brings you customer without needing any budget.
Outbound marketing channels generally works with advertisement models and you need budgets to run these channels.
Most of time I recommend to start with outbound marketing channels and then invest inbound marketing channels overtime. Don’t forget to check Mastering Paid Ads For Shopify post.
Succesful marketing plans should be supported by high converting growth and conversion plans. Don’t forget to check Growth Guide For Shopify and Conversion Optimization Guide For Shopify too.
to grow quickly and none of them not working. Well, if you looking for a way to create solid marketing plan, then this guide is for you. In this guide you’ll learn
  • Definition of Marketing
  • Market Research, Competitor Analysis and Defining Your Target Market
  • Brand Identity and How to Create Your Branding
  • Go-to-Market Strategy and Defining Your Marketing Strategy
  • Inbound and Outbound Marketing Channels
  • Marketing Plan Template
  • FAQs

Definition of Marketing

American Marketing Association defines marketing as activity, set of institutions, and processes for creating, communicating, delivering, and exchanging offerings that have value for customers, clients, partners, and society at large. Source
What do you see here?
  1. Marketing is not about activities, it contains activities, set of institutions and process.
  2. Function of marketing is not generating sales. It’s creating, communicating, delivering and exchanging offerings that has value.
  3. In this post we’ll focus on Shopify stores marketing. However in the big picture marketing has not limited with companies. Marketing can be done within organization or society.
Let’s summarize what marketing definition for a Shopify store. Marketing will create, communicate, deliver and exchange offers that have value for customers. As you can see main subject in here is customers. Because of this, I’ll put customers as the center of this guide. Everything we’ll do has to something with them.

Market Research, Competitor Analysis and Defining Your Target Market

This is a practical guide for marketing so I want to continue with a hypothetical Shopify stores for each steps.
Let’s say we have a Shopify store that has some high-end, organic baby clothes targeting new parents.

Market Research

How can we do the market research?
Let’s say you have a new Shopify store that has less than 500 order per month. You can hire expensive agencies, expensive experts to research the market, create market reports for you, etc. Even if you do that, I highly suspicious if it helps you.
However you can talk with your new-parent friends. Ask them about how do they decide to buy baby clothes? What they are looking for before completing their purchases? Do they get any expert opinion before making buying decision? How do they search online and what they want to see? Is there any great YouTube channels about this.
Don’t have any friends? Checkout your friends not a new-parents but parents and ask similar questions to them. If you also don’t have them, try to make new born friends. I know how hard it is but let’s be honest here. If you don’t know anybody in your target audience, how do you manage to get know them? All of the successful stores I saw they have direct relationship with their target audience.
When you make your research with real people, then you can extend your project to online. Try to search as they do. What do you find? Deep in dive and take your notes.

Competitor Analysis

When you done this market research, you’ll also see there are some other brands. This is a huge subject but let’s call these brands as competitor for now.
Now it’s time to analyze them.
  1. Checkout their branding strategy.
  2. What are their value propositions?
  3. What is hot about them? Return guarantee, free shipping etc.
  4. What is not hot about them? Poor product or store design, low UX on the website, etc.
  5. What people think about them? Google reviews, Trust pilot reviews, product reviews on the store.
  6. Are there any partnership or influencer program they’re running?
  7. What is their Google/YouTube campaign strategy? Check it here.
  8. What is their Facebook/Instagram campaign strategy? Check it here.
Create a spreadsheet with all of this information. We’ll use this when working on positioning and marketing strategy.

Define Your Target Market

What do you say about our target market? Can all of new parents be our target market?
Nope, it can’t. You need to deep dive into your market and find a sub-segment, a niche that will need your products much better than anybody else and afford it easily.
This is what I called ideal customer profile (ICP). Check out what is ideal customer profile and how to create your ideal customer profile posts to learn more about the concept.
For our hypothetical store, ICP can be something like this;
Demographics
  • Age: 25-45 years old
  • Gender: Primarily women, but also some men
  • Education: College degree or higher
  • Income: $75,000+ per household
  • Location: Urban areas
  • Occupation: Professionals, entrepreneurs, stay-at-home parents
Psychographics
  • Values: Health, wellness, sustainability, social responsibility
  • Lifestyle: Active, eco-conscious, family-oriented
  • Interests: Organic food, natural products, children’s activities
  • Media consumption: Social media, parenting blogs, magazines
  • Shopping habits: Researches purchases thoroughly, values quality over price
Pain Points
  • Concerns about harmful chemicals in baby clothes
  • Difficulty finding stylish and affordable organic baby clothes
  • Wants to make sustainable choices for their children
Needs
  • High-quality, organic baby clothes that are safe and healthy for their children
  • Unique and stylish designs that make their children look and feel good
  • A brand that shares their values and commitment to sustainability
Buying Behaviors
  • Researches products online before making a purchase
  • Reads reviews and testimonials from other parents
  • Shops at specialty stores and online retailers
  • Willing to pay a premium for quality and sustainability
After creating ICP, it’s important to spend some time on empathy map. Don’t forget to check it, too.
Now we know our baby clothes Shopify store market, customer’s buying process and our ideal customer profile.

Brand Identity and How to Create Your Branding

I’ll follow the American Marketing Association (AMA) in here too.
First look at brand definition. AMA defines brand as “any distinctive feature like a name, term, design, or symbol that identifies goods or services”.
Branding is for creating and managing your brand’s identity. It involves your mission, values, culture and public image.
I’m not an expert on brand, but I know how branding can be effective for your conversions and performance. Here are some checklist for you.
  1. Design consistency is the key. Your visual identity should be consistent across social media, Shopify store, emails, product detail pages, etc.
  2. Copy consistency is the key. Your communication style should be consistent across social media, Shopify store, emails, product detail pages, etc.
  3. Experience consistency is the key. Let’s say your brand looks like a high-end brand and when a new visitor visit your store first they see is an annoying popup saying want to get 10% OFF. This is simply how to destroy your brand.
  4. Craft a story and stick to it. What makes you create this brand? Faces behind the brand. This is a huge leverage for creating trust and building bonds.

Go-to-Market Strategy and Defining Your Marketing Strategy

So far we identified our target market and ideal customer profile. Check out competitors and creates the branding for our store.
Now it’s time to work on go-to-market strategy and crafting our marketing strategy.

Go-to-Market Strategy

Let’s say you recently launched your Shopify store or add a new line of products.
You need a plan to introduce your store or new products to the market. This is what we called go-to-market(GTM) strategy.
Main goal of the GTM is letting people know that there is a new brand or product line. It’s similar to launch marketing. Key message here is there is a new products/brand launched and it offer the best for you. Give it a try, you’ll love it.
All of your messages and communication should be parallel to this process.
Our focus is convincing people to try our products/brand. So I always offer a special campaign just for the launch to give people to a reason to try your products/brand.
For our hypothetical Shopify store we can run a special campaign for launch like;
  • Free shipping until X date.
  • 5 different boy and girl bundle with 40% OFF to try our products.

Marketing Strategy

This is your plan of actions to sell or advertise your products. Now we can talk about selling part of the marketing.
Let’s say you have GREAT advertising creatives and a huge budget and just spending it. Don’t wait to crack the code and having lot’s of sales.
Your marketing strategy should be follow sales funnel. If you don’t have a high-converting sales funnel, you can’t expect people to buy from you. Check out How to Build High Converting Sales Funnel For Shopify post.
This article first published at MarketingLib.
Don't forget to check Growth Suite on Shopify App Store.
submitted by mtufekyapan to GrowthSuite [link] [comments]


2024.05.14 10:35 Fun-Maintenance-6583 What ive gathered so far.

What ive gathered so far.
I dont think this is all a coincidence. Caviar Kaspia- resturant at the Mark, and the logo was posted by EbonyPrince(EP). The app developer for Caviar Kaspia makes apps for secret clubs around the world, including the Embassy, and the Aman club(EP said Drake started going there after the incident) The Peoplevine (started 2013) founder John Terzian has been photographed with Drake multiple times. EP also references The Mark Hotel vs Theodore Weinstraub multiple times. The Mark accused the 19 year old of starting a smear campaign, paying people to protests out front accusing the hotel of being involved with Epstein. (The Mark was also listed in Epsteins black book on page 92) When Weinstraub was asked by a New York Post reporter “are you happy your storys on the front page” Weinstraub said “Thats not the full story the full story will eventually come out, I cant comment on the situation right now”. Drake is also listed as a witness in a case involving Weinstraub.
https://iapps.courts.state.ny.us/fbem/DocumentDisplayServlet?documentId=Whuxu1lEwI4LpVrGSKu1sA==&system=prod
Outside of that one of the companies tied to Drake (Omerta) has a number on the site that is the same number as 9lokkNine. And Drakes media company Dreamcrew, the owner David Bolno was found with a model/mistress dead in his house of an overdose apparently.
submitted by Fun-Maintenance-6583 to ScaryKenny [link] [comments]


2024.05.14 10:32 shaneka69 Get A Tarot Reading Today! ALL READINGS SENT SAME DAY THEY ARE BOOKED

Tarot Reader since 2017 who has fully mastered in depth readings to bring true insight to the energies and circumstances you are dealing with, with the use of Oracle and Astrology as well. Shaneka's Services And Contact Linktree
get a tarot reading
how often should you get a tarot reading
should i get a tarot reading
is it good to get a tarot reading
how much does it cost to get a tarot reading
how often should i get a tarot reading
best time to get a tarot reading
reasons to get a tarot reading
where can i get a tarot reading
why you should get a tarot reading
get a tarot reading online
getting a tarot reading in a dream
how to get the tarot card at arasaka tower
how to get the tarot card above misty
what age can you get a tarot reading
how to ask for a tarot reading
ways to do a tarot reading
how to get tarot reading
what to do if you get a bad tarot reading
what to know before getting a tarot reading
what to expect when getting a tarot reading
get a tarot reading for free
a tarot reader
is it bad to get a tarot card reading
when you get a bad tarot reading
best tarot cards to get in a love reading
can you get a bad tarot reading
how to get a better tarot reading
can you get a tarot reading online
where can i get a tarot card reading
can i get a free tarot reading online
how often should you get a tarot card reading
get a tarot card reading
worst cards to get in a tarot reading
what do you get from a tarot reading
i got a tarot card reading
i want a tarot reading
i need a tarot reading
how to get a free tarot reading
what is a general tarot reading
when should i get a tarot reading
how long should a tarot reading be
how to get a tarot reading
how many times can you get a tarot reading
how to get the most out of a tarot reading
how to get a good tarot reading
is it safe to get a tarot reading
when is the best time to get a tarot reading
why get a tarot reading
learn tarot reading near me
what happens when you get a tarot reading
where to get a tarot reading near me
get a card reader natwest
buy tarot card near me
when not to get a tarot reading
what to get a tarot reading on
buy tarot card online
quick tarot reading
questions to ask when getting a tarot reading
questions for a tarot reading
should you get a tarot reading
getting a tarot reading
what to do when you get tarot cards
get a reading with theresa caputo
where to get a tarot reading
x tarot reversed
z tarot
1 tarot card reading
2 tarot card reading
2 card tarot reading free
2 card tarot spreads
3 tarot reading
3 card reading tarot free
3 card tarot reading new age store
3 card tarot reading questions
4 card tarot reading free
4 tarot card reading
4 tarot card reading meaning
5 card tarot reading free
5 card reading tarot
6 card tarot reading free
how to read a 6 card tarot spread
6 card reading tarot
6 card relationship tarot spread
7 tarot reading
7 card tarot reading free
7 card tarot reading free online
8 card tarot reading
8 card spread tarot reading
9 card tarot reading
how to read a 9 card tarot spread
psychic reading
psychic reading near me
psychic reading free
psychic reading online
free psychic reading by date of birth and time
psychic reading free love
psychic reading cards
psychic readings by danielle
psychic readings by alicia
psychic reading meaning
eva tarot psychic reading
rebecca's psychic reading ted lasso
free psychic reading app
psychic reading ai
psychic reading apple pay
psychic reading banner
bali psychic reading
bobby brown psychic reading
benefits of psychic reading
bts psychic reading
birth chart psychic reading
best psychic reading
psychic reading cards meaning
psychic reading cards deck
daily psychic reading free
dallas psychic reading nyc
david schultz psychic reading
dark psychic reading
dangers of psychic reading
psychic reading elijah vue
psychic readings near me
psychic reading near me open now
elijah vue psychic reading
empress chain spiritual psychic reading
ethical psychic reading
email free psychic reading
experienced psychic reading
elsa psychic reading
psychic reading for taurus
psychic reading for today
psychic reading for riley strain
psychic reading for 2024
psychic reading free by date of birth
psychic reading flyers
psychic reading for aries
psychic reading for elijah vue
free psychic reading for love
free psychic reading cards
free psychic reading for leo
fertility psychic reading free
free psychic reading for virgo
free psychic reading for libra
free psychic reading for cancer
free psychic reading for taurus
psychic reading generator
psychic reading gif
psychic reading german
psychic reading gold creek
gemini psychic reading
gretchen fleming psychic reading
ghost psychic reading
goddess elite psychic reading
kelsey grammer psychic reading
sal governale psychic reading
psychic reading hannah mount sinai
psychic reading hoodie xplr
headache after psychic reading
horoscope psychic reading
howard stern sal psychic reading
henry cavill psychic reading
hand psychic reading
psychic reading in st louis mo
psychic reading in weymouth
impractical jokers psychic reading episode
i get a free psychic reading
i free psychic reading
psychic reading jobs online
psychic reading joslin smith
psychic reader joyce
psychic reader jerry
tarot reading jobs
tarot reading jakarta
tarot reading jobs from home
tarot reading jobs near me
tarot reading journal
tarot reading jobs remote
jungkook psychic reading
joslin smith psychic reading
january psychic reading
jade psychic and tarot reading cape town
kate middleton psychic reading youtube
kyle psychic reading
kim porter psychic reading
kim's psychic reading room
kris jenner psychic reading
kim kardashian psychic reading
kpop psychic reading
kelsey psychic reading
princess kate psychic reading
psychic reading lounge reviews
psychic reading ltd
love psychic reading free
libra psychic reading
leo psychic reading
love psychic reading free by date of birth
live psychic reading free online
love psychic reading online
leo psychic reading today
psychic reading meaning in hindi
psychic reading malaysia
psychic reading malvern
psychic reading meaning in hindi with example
morgan nick psychic reading
matthew perry psychic reading
my psychic reading today
psychic reading near scarborough
nebula psychic reading
nebula astrology and psychic reading
turkish coffee psychic reading near me
yes or no psychic reading
psychic reading online free
psychic reading online cards
psychic reading on riley strain
psychic reading on elijah vue
psychic reading on samantha murphy
online psychic reading manchester
old port maine psychic reading
online psychic reading
psychic reading pathfinder
psychic reading pismo beach photos
psychic reading pismo beach reviews
psychic reading princess kate
psychic reading quiz
tarot reading questions
tarot reading quotes
tarot reading questions about love
tarot reading quiz
spiritual reading quotes
tarot reading questions about career
tarot reading questions about life
tarot reading queen of cups
tarot reading quezon city
question psychic reading
relationship psychic reading questions
que significa psychic reading
que es psychic reading
psychic reading riley strain
psychic reading royal family
relationship psychic reading free
rebecca welton psychic reading
ryan shtuka psychic reading
random psychic reading
rose renee psychic reading
cameron robbins psychic reading
psychic reading spotify
psychic reading shirt
psychic reading shreveport
psychic reading today
psychic reading tube top
psychic reading template
turkish coffee psychic reading
ted lasso rebecca psychic reading
tarot psychic reading near me
tea leaf psychic reading
today's psychic reading
turkish coffee psychic reading nyc
true love psychic reading
tiktok psychic reading
taurus psychic reading
psychic reading ubud
tarot reading ubud
tarot reading using playing cards
tarot reading uk free
tarot reading upside down cards
tarot reading uluwatu
spiritual reading ubud
tarot reading unique
tarot reading utah
tarot reading udemy
unintentional psychic reading
online psychic reading us
psychic reader reading uk
psychic reading in urdu
virgo psychic reading
valentine psychic reading
vicki psychic reading
vivid psychic reading
vampire psychic reading
psychic reading with playing cards
what is psychic reading
xplr psychic reading hoodie
x-men psychics
x and y psychic pokemon
x psychopath reader
psychic reading yes or no
tarot reading yes or no
tarot reading youtube
tarot reading yes or no accurate
tarot reading youtube channels
tarot reading yes or no in hindi
tarot reading yes or no horoscope
tarot reading yourself
tarot reading yellow springs
yellow pages psychic reading
can you share your psychic reading
psychic reading 100
psychic reading 101
tarot reading 100 accurate
tarot reading 10 card spread
tarot reading 101
tarot reading 1 card
tarot reading 10 cards
tarot reading 111
tarot reading 10 of cups
tarot reading 1111
1.99 for 10 minutes psychic reading
10 minute psychic reading for $1
2024 psychic reading
psychic number 2 meaning
2 of pentacles psychic revelation
2 of wands psychic revelation
2 swords psychic revelation
tarot reading 3 card spread
tarot reading 3 cards
tarot reading 3 of cups
tarot reading 333
tarot reading 3 kings
tarot reading 31st
tarot reading $35
psychic number 3 meaning
flight 370 psychic reading
3 of swords psychic revelation
3 of pentacles psychic revelation
3 of wands psychic revelation
43551 psychic reading
4 psychic number
4 swords psychic revelation
4 of pentacles psychic revelation
tarot reading 5 card spread
tarot reading 5 of cups
psychic empath 5 books in 1
tarot reading 6 cards
tarot reading 6 of swords
tarot reading 6 of cups
psychic revelation 6 of wands
tarot reading 7
tarot reading 7 card spread
tarot reading 7 of cups
tarot reading 7 of swords
tarot reading 77084
psychic readings 90
tarot reading 9 card spread
tarot reading 94538
submitted by shaneka69 to mytarotreadings [link] [comments]


2024.05.14 09:43 Consistent_You_5056 Inconsistent You.

"The Never i give"
…I'll refer you to a thousand stories, "you are not alone", never left without an act, as solitary stone… No singularly, deter fairly, from negates divide… No shutters tremble, blinded stumbles, windows never hide… No rise too high, below too low, that someone else has had… an unoriginal event, our templates interact… Our eyes unique in craving, seek, each situation latches… the difference is, our common peeks, relate our lives, attaches… through our happenings among, and tongues that lash in fear… Never has an eye succumbed, a single lonely tear… The muddles cap, a start and end, we'd never justify -that we could be, the only one's ascending through a lie… I'll never tell you who to be, what to say, or do… could never be a masochistic, using who is You.
A poem by Aaron...
... starting to amalgam a book of poetry...
Opinions???
submitted by Consistent_You_5056 to u/Consistent_You_5056 [link] [comments]


2024.05.14 09:43 most_tired-anon are video-lessons a valid form of teaching?

note; not own video lesson, as in copy paste from youtube hahaha. (jhs)
tl;dr: title
EDIT: who can i report this to? close niya adviser namin, this is an intern from pamantasad ng lungsod ng [redacted]
in your opinion, is it okay to give students a video-lesson and then quiz agad next face-to-face? kasi we experienced that. to think na science hs pa kami, we expect a higher caliber of teaching. we have teachers na natapos yung seven weeks of lesson in a really short time-span, pero yung isa nagpa-video lesson lang, no recapitulation, no concept map, no summarizing or whatever, then she pressures us to get a high score.
yung ibang nasa quiz nya wala sa video lesson na pinrovide nya, and the video lesson doesn't align with the book. tapos may naka-lagay pa sa mga quiz nya "Awa nalang di maka-sagot dito", she also says stuff like "Sige, wag pa kayo manood ng video lesson para lalo bumaba grades nyo."
alam ko gipit sila sa oras, pero is that still valid when other teachers can discuss in shorter timeframes? yung e.sci namin nagpapavideo lesson pero at least she expounds more on what she discussed in the video.
masyado ba kami nagdedemand na i-discuss at least a little bit before magpaquiz, i get spoonfeeding na rin yung video lesson at a certain extent, pero may video lesson nga, wala naman sa video lesson yung laman ng quiz
submitted by most_tired-anon to studentsph [link] [comments]


2024.05.14 09:32 shaneka69 Get A Tarot Reading Today! ALL READINGS SENT SAME DAY THEY ARE BOOKED

Tarot Reader since 2017 who has fully mastered in depth readings to bring true insight to the energies and circumstances you are dealing with, with the use of Oracle and Astrology as well. Shaneka's Services And Contact Linktree
get a tarot reading
how often should you get a tarot reading
should i get a tarot reading
is it good to get a tarot reading
how much does it cost to get a tarot reading
how often should i get a tarot reading
best time to get a tarot reading
reasons to get a tarot reading
where can i get a tarot reading
why you should get a tarot reading
get a tarot reading online
getting a tarot reading in a dream
how to get the tarot card at arasaka tower
how to get the tarot card above misty
what age can you get a tarot reading
how to ask for a tarot reading
ways to do a tarot reading
how to get tarot reading
what to do if you get a bad tarot reading
what to know before getting a tarot reading
what to expect when getting a tarot reading
get a tarot reading for free
a tarot reader
is it bad to get a tarot card reading
when you get a bad tarot reading
best tarot cards to get in a love reading
can you get a bad tarot reading
how to get a better tarot reading
can you get a tarot reading online
where can i get a tarot card reading
can i get a free tarot reading online
how often should you get a tarot card reading
get a tarot card reading
worst cards to get in a tarot reading
what do you get from a tarot reading
i got a tarot card reading
i want a tarot reading
i need a tarot reading
how to get a free tarot reading
what is a general tarot reading
when should i get a tarot reading
how long should a tarot reading be
how to get a tarot reading
how many times can you get a tarot reading
how to get the most out of a tarot reading
how to get a good tarot reading
is it safe to get a tarot reading
when is the best time to get a tarot reading
why get a tarot reading
learn tarot reading near me
what happens when you get a tarot reading
where to get a tarot reading near me
get a card reader natwest
buy tarot card near me
when not to get a tarot reading
what to get a tarot reading on
buy tarot card online
quick tarot reading
questions to ask when getting a tarot reading
questions for a tarot reading
should you get a tarot reading
getting a tarot reading
what to do when you get tarot cards
get a reading with theresa caputo
where to get a tarot reading
x tarot reversed
z tarot
1 tarot card reading
2 tarot card reading
2 card tarot reading free
2 card tarot spreads
3 tarot reading
3 card reading tarot free
3 card tarot reading new age store
3 card tarot reading questions
4 card tarot reading free
4 tarot card reading
4 tarot card reading meaning
5 card tarot reading free
5 card reading tarot
6 card tarot reading free
how to read a 6 card tarot spread
6 card reading tarot
6 card relationship tarot spread
7 tarot reading
7 card tarot reading free
7 card tarot reading free online
8 card tarot reading
8 card spread tarot reading
9 card tarot reading
how to read a 9 card tarot spread
psychic reading
psychic reading near me
psychic reading free
psychic reading online
free psychic reading by date of birth and time
psychic reading free love
psychic reading cards
psychic readings by danielle
psychic readings by alicia
psychic reading meaning
eva tarot psychic reading
rebecca's psychic reading ted lasso
free psychic reading app
psychic reading ai
psychic reading apple pay
psychic reading banner
bali psychic reading
bobby brown psychic reading
benefits of psychic reading
bts psychic reading
birth chart psychic reading
best psychic reading
psychic reading cards meaning
psychic reading cards deck
daily psychic reading free
dallas psychic reading nyc
david schultz psychic reading
dark psychic reading
dangers of psychic reading
psychic reading elijah vue
psychic readings near me
psychic reading near me open now
elijah vue psychic reading
empress chain spiritual psychic reading
ethical psychic reading
email free psychic reading
experienced psychic reading
elsa psychic reading
psychic reading for taurus
psychic reading for today
psychic reading for riley strain
psychic reading for 2024
psychic reading free by date of birth
psychic reading flyers
psychic reading for aries
psychic reading for elijah vue
free psychic reading for love
free psychic reading cards
free psychic reading for leo
fertility psychic reading free
free psychic reading for virgo
free psychic reading for libra
free psychic reading for cancer
free psychic reading for taurus
psychic reading generator
psychic reading gif
psychic reading german
psychic reading gold creek
gemini psychic reading
gretchen fleming psychic reading
ghost psychic reading
goddess elite psychic reading
kelsey grammer psychic reading
sal governale psychic reading
psychic reading hannah mount sinai
psychic reading hoodie xplr
headache after psychic reading
horoscope psychic reading
howard stern sal psychic reading
henry cavill psychic reading
hand psychic reading
psychic reading in st louis mo
psychic reading in weymouth
impractical jokers psychic reading episode
i get a free psychic reading
i free psychic reading
psychic reading jobs online
psychic reading joslin smith
psychic reader joyce
psychic reader jerry
tarot reading jobs
tarot reading jakarta
tarot reading jobs from home
tarot reading jobs near me
tarot reading journal
tarot reading jobs remote
jungkook psychic reading
joslin smith psychic reading
january psychic reading
jade psychic and tarot reading cape town
kate middleton psychic reading youtube
kyle psychic reading
kim porter psychic reading
kim's psychic reading room
kris jenner psychic reading
kim kardashian psychic reading
kpop psychic reading
kelsey psychic reading
princess kate psychic reading
psychic reading lounge reviews
psychic reading ltd
love psychic reading free
libra psychic reading
leo psychic reading
love psychic reading free by date of birth
live psychic reading free online
love psychic reading online
leo psychic reading today
psychic reading meaning in hindi
psychic reading malaysia
psychic reading malvern
psychic reading meaning in hindi with example
morgan nick psychic reading
matthew perry psychic reading
my psychic reading today
psychic reading near scarborough
nebula psychic reading
nebula astrology and psychic reading
turkish coffee psychic reading near me
yes or no psychic reading
psychic reading online free
psychic reading online cards
psychic reading on riley strain
psychic reading on elijah vue
psychic reading on samantha murphy
online psychic reading manchester
old port maine psychic reading
online psychic reading
psychic reading pathfinder
psychic reading pismo beach photos
psychic reading pismo beach reviews
psychic reading princess kate
psychic reading quiz
tarot reading questions
tarot reading quotes
tarot reading questions about love
tarot reading quiz
spiritual reading quotes
tarot reading questions about career
tarot reading questions about life
tarot reading queen of cups
tarot reading quezon city
question psychic reading
relationship psychic reading questions
que significa psychic reading
que es psychic reading
psychic reading riley strain
psychic reading royal family
relationship psychic reading free
rebecca welton psychic reading
ryan shtuka psychic reading
random psychic reading
rose renee psychic reading
cameron robbins psychic reading
psychic reading spotify
psychic reading shirt
psychic reading shreveport
psychic reading today
psychic reading tube top
psychic reading template
turkish coffee psychic reading
ted lasso rebecca psychic reading
tarot psychic reading near me
tea leaf psychic reading
today's psychic reading
turkish coffee psychic reading nyc
true love psychic reading
tiktok psychic reading
taurus psychic reading
psychic reading ubud
tarot reading ubud
tarot reading using playing cards
tarot reading uk free
tarot reading upside down cards
tarot reading uluwatu
spiritual reading ubud
tarot reading unique
tarot reading utah
tarot reading udemy
unintentional psychic reading
online psychic reading us
psychic reader reading uk
psychic reading in urdu
virgo psychic reading
valentine psychic reading
vicki psychic reading
vivid psychic reading
vampire psychic reading
psychic reading with playing cards
what is psychic reading
xplr psychic reading hoodie
x-men psychics
x and y psychic pokemon
x psychopath reader
psychic reading yes or no
tarot reading yes or no
tarot reading youtube
tarot reading yes or no accurate
tarot reading youtube channels
tarot reading yes or no in hindi
tarot reading yes or no horoscope
tarot reading yourself
tarot reading yellow springs
yellow pages psychic reading
can you share your psychic reading
psychic reading 100
psychic reading 101
tarot reading 100 accurate
tarot reading 10 card spread
tarot reading 101
tarot reading 1 card
tarot reading 10 cards
tarot reading 111
tarot reading 10 of cups
tarot reading 1111
1.99 for 10 minutes psychic reading
10 minute psychic reading for $1
2024 psychic reading
psychic number 2 meaning
2 of pentacles psychic revelation
2 of wands psychic revelation
2 swords psychic revelation
tarot reading 3 card spread
tarot reading 3 cards
tarot reading 3 of cups
tarot reading 333
tarot reading 3 kings
tarot reading 31st
tarot reading $35
psychic number 3 meaning
flight 370 psychic reading
3 of swords psychic revelation
3 of pentacles psychic revelation
3 of wands psychic revelation
43551 psychic reading
4 psychic number
4 swords psychic revelation
4 of pentacles psychic revelation
tarot reading 5 card spread
tarot reading 5 of cups
psychic empath 5 books in 1
tarot reading 6 cards
tarot reading 6 of swords
tarot reading 6 of cups
psychic revelation 6 of wands
tarot reading 7
tarot reading 7 card spread
tarot reading 7 of cups
tarot reading 7 of swords
tarot reading 77084
psychic readings 90
tarot reading 9 card spread
tarot reading 94538
submitted by shaneka69 to mytarotreadings [link] [comments]


2024.05.14 09:27 HaletaleInc How Property Management Software Transformed These Rental Businesses

In the dynamic world of rental businesses, staying ahead of the curve is crucial. Property management software rental has emerged as a game-changer, streamlining operations and enhancing tenant interactions. But how exactly has this technology transformed the industry? Let’s dive into real-world examples and uncover the benefits and efficiencies gained through this innovative tool.

Introduction

Imagine managing a rental property using just a ledger book, a stack of paper files, and your memory. It sounds almost primitive in today's digital age, right? Property management software is like the smartphone of rental management—once you have it, you can't imagine life without it.

The Challenges of Traditional Management

Traditional property management often involves cumbersome processes that can be time-consuming and error-prone. Tracking payments, maintenance requests, and tenant inquiries manually not only leaves room for errors but also eats up valuable time.

What is Property Management Software?

Property management software is a digital platform that automates and streamlines the administrative and operational tasks of managing rental properties. This software ensures that everything from tenant screening to lease termination is handled efficiently and effectively.

Case Study: Efficiency in Action

Let’s consider the transformation of Cityscape Rentals. Before implementing property management software, the company struggled with delayed rent payments and inefficient maintenance scheduling. Now, automated reminders and easy online payment options have nearly eliminated late payments, and maintenance tickets are addressed promptly.

Financial Management and Reporting

With property management software, rental businesses gain insights into their financial health through detailed analytics and reporting features. This allows for better budgeting and financial planning.

Maintenance and Operations

The software offers features like automated maintenance scheduling, which helps in timely maintenance, ensuring tenant satisfaction and extending the lifespan of property assets.

Tenant Communication and Satisfaction

Enhanced communication features in the software allow for real-time updates and notifications to tenants, which significantly improves tenant satisfaction and retention.

Security and Compliance

Staying compliant with housing laws and regulations is simplified with property management software, which can update its features in accordance with changing laws.

Integrations and Scalability

Modern property management software often integrates with other tools such as accounting software, payment gateways, and more, making it a scalable solution that grows with your business.

Case Study: Enhanced Tenant Experience

At Lakeview Apartments, the introduction of property management software has transformed the tenant experience. Online lease applications, digital lease signing, and a tenant portal for communication and payment have streamlined the entire tenant lifecycle.

Cost Savings and ROI

The initial investment in property management software is quickly offset by the savings from more efficient operations and the avoidance of costly errors and disputes.

Implementing the Software

Implementing property management software requires careful planning and training but is generally straightforward with the support from reputable software providers.

Future of Rental Management Software

As technology advances, so too will property management software, with potential future features like AI-driven analytics and enhanced virtual reality property tours.

Conclusion

The transformation brought about by property management software in the rental business sector is profound. By automating day-to-day tasks, enhancing tenant communication, and ensuring compliance, these tools allow businesses to focus on growth and customer satisfaction.
submitted by HaletaleInc to u/HaletaleInc [link] [comments]


2024.05.14 09:08 ClayKavalier Ned Grabavoy's Track Record

Many people are calling for Ned's head lately.
I don't think he's been perfect. He has a positive reputation around the league at least as a person and businessperson. That doesn't mean he's a good scout.
I think it's important to separate hirings into categories one would attribute to the owner, the coach, or the general manager, even though it is reportedly a collaborative process and Paulson has to sign off on everything. It is also essential to note that different coaches have different systems, styles, strategies, and tactics. Players identified as having the skills, disposition, mentality, etc. for particular purposes under a particular coach may not work as well in different circumstances. For example, I'll suggest that having a slow right centerback isn't as much of a problem with a right fullback who can track back, central midfielders who can help cover, and an offense that defends higher, doesn't turn the ball over so often, and is effective in attack. Also, given the relatively sudden and unexpected departures of Porter and Wilkinson, and the transition periods between coaches and scouting/technical staff, it's important to note that there were times when there weren't people in particular roles and the styles, tactics, strategies, philosophies, etc. weren't clear or changed.
While I have no proof and Ned has expressed his enthusiasm for and confidence in Neville, I very much feel like Phil is Paulson's guy. It was said that he had a rapport with Paulson. I don't expect Ned to say anything publicly that isn't supportive. Maybe he actually believed Neville was the best candidate and maybe he still believes he's a good coach.
Using Wikipedia, I documented which players signed with the club or had their contracts extended while Ned was in different roles.
When he was promoted to Technical Director, he was specifically credited with scouting specific players. He's also credited with finalizing the deal with Evander in late 2022, after GW was fired but before he was officially GM. The rumor is that the deal was going to fall apart before Ned took over negotiations. I've italicized those players that Ned might have been involved in scouting, recruiting, signing, or extending who are still on the team. I've also indicated when I think it's pretty clear when a player was brought in by a coach because of some past association. I may be wrong about some and may have missed some. I know there is incomplete information but I only tried so hard. There are also situations where the player was technically signed to an extension in one year but it was effectively for the next season. The distinction between preseason and summer transfer window signings isn't always obvious. Also, many of these players were scouted for some time before a decision was made to sign them and an opportunity presented itself. For example, Wilkinson talked about wanting Lucas Melano for some time. I think Porter was big on him too. We had our eyes on Yimmi Chara for a long time too. Considering that, I'm not inclined to credit Ned with 2017 signings at all, and don't think he had much to do with the renewal or financial decisions until 2023.
Director of Scouting and Recruitment - November 2016
2017 Season
Signings
  • Andres Flores - Gio
  • Modou Jadama
Extensions/Renewals
  • Jeff Attinella
  • Kendall McIntosh
  • Zark Valentin - Porter
  • Dairon Asprilla
  • Jack Barmby
  • Bill Tuiloma
2018 Season
Signings
  • Julio Cascante
  • Foster Langsdorf
  • Eryk Williamson
  • Jorge Villafaña - Returned. Originally signed as a Porter player.
  • Steve Clark
  • Andy Polo - Ned is credited with scouting him. GW took credit for his extension.
  • Cristhian Paredes - Ned is credited with scouting him.
  • Samuel Armenteros
  • Tomás Conechny
Extensions/Renewals
  • Zerek Valentin
  • Jeremy Ebobisse
  • Modou Jadama
  • Bill Tuiloma
  • Foster Langsdorf
  • Kendall McIntosh
Technical Director - December 2018
2019 Season
Signings
  • Marvin Loría - Ned is credited with scouting him.
  • Renzo Zambrano - Ned is credited with scouting him.
  • Claude Dielna - Ned is credited with scouting him.
  • Aljaz Ivavic
  • Brian Fernandez
  • Jorge Moreira
Extensions/Renewals
  • Sebastian Blanco
  • Diego Valeri
  • Bill Tuiloma
  • Steve Clark
  • Jeremy Ebobisse
2020 Season
Signings
  • Yimmi Chara
  • Blake Bodily
  • Jaroslaw Niezgoda
  • Chris Duvall
  • Pablo Bonilla
  • Zac McGraw
  • Felipe Mora
  • Dario Zuparic
Extensions/Renewals
  • Dairon Asprilla
2021 Season
Signings
  • Larrys Mabiala
  • Santiago Moreno
2022 Season
Signings
  • Justin Vom Steeg
  • David Ayala
  • Justin Rasmussen
  • Diego Gutierrez
  • Claudio Bravo
  • Juan David Mosquera
Extensions/Renewals
  • Felipe Mora
  • Zac McGraw
  • Diego Chara
  • Cristhian Paredes
General Manager - December 2023
October 2022 - GW Fired
2023 Season
Signings
  • Evander - Neville said that he had wanted Evander at Miami.
  • Miguel Araujo
  • Antony
  • Eric Miller
  • Frank Boli
Extensions/Renewals
  • Nathan Fogaça
2024 Season
Signings
  • Kamal Miller - Neville guy
  • James Pantemis - Neville guy
  • Trey Muse - Neville guy?
  • Maxime Crepeau - Neville guy
  • Jonathan Rodriguez
Extensions/Renewals
  • Juan David Mosquera
  • Santiago Moreno
  • Eric Miller
Do we blame these guys going forward?
Jack Dodd - Technical Director - April 2023
  • Former Director of Scouting for Toronto and a scout for Liverpool and Crystal Palace
Nacho Leblic - Director of Scouting - February 2024
With all of this info, I think we can blame Ned in whole or in part for the following current players being signed and / or having their contracts renewed:
  1. Rodriguez
  2. Evander
  3. Loría
  4. Williamson
  5. Moreno
  6. Mosquera
  7. McGraw
  8. Eric Miller
  9. Fogaça
  10. Antony
  11. Mora
  12. Diego Chara
  13. Araujo
  14. Paredes
  15. Ayala
  16. Mabiala
  17. Asprilla
  18. Kamal Miller
  19. Muse
  20. Crepeau
  21. Pantemis
  22. Sulte
  23. Zuparic
  24. Ikoba
  25. Bravo
Gee, that's the entire roster. Realistically though, I'm only crediting him for 2023 and maybe Rodriguez. He wasn't really GM until Evander at the end of 2022. GW, Paulson, Porter, Gio, and Neville all have had input and in many cases more authority in decision-making up to that point.
Which players came and went under Ned's watch should we not have signed or not let go?
And which players who are still on the roster just objectively suck and aren't MLS-level players? As starters or depth? Who doesn't even have any potential? Who has aged out? Who is good but doesn't fit the system? Who doesn't fit Neville's system but fit Gio's? Note: this is all in MLS-level terms.
  1. Rodriguez was great but is now just good and arguably doesn't fit the system. He's a second striker but we only play with one forward. I don't think the 4-4-2 we tried against Seattle was a good idea. Obviously, it didn't work. Maybe a diamond of Evander, Chara, Ayala, and Paredes. We'd need more defense to cover for Mosquera getting forward and Moreno tucking in. But I digress...
  2. Evander is good but poorly utilized and inconsistent. He plays to the level of his teammates. He's not a leader. Could he be great? Probably not as a 10. He's got flashes though, so I hope I'm wrong.
  3. Loría in my eyes isn't MLS level and hit his ceiling. I'll accept arguments that he's a good sub for the money.
  4. Williamson is good but oft-injured, and inconsistently plays to the level of his teammates.
  5. Moreno is inconsistent, sometimes played out of position, doesn't fit the system, but has potential. He takes chances, which I respect, but maybe doesn't have the best judgement. Maybe he can learn. I hope so. He tries. He's good. He could be great. He probably shouldn't be the starter all the time.
  6. Mosquera is a good winger but terrible fullback. Or maybe he's a good wingback but terrible fullback, depending on how you define the roles. Maybe he has potential. I increasingly doubt it. He doesn't seem to have the mentality for it. He's Alvas Powell 2.0. I'd love to be wrong. He tried last match. If he becomes a good fullback he'll be great overall.
  7. McGraw is good but terrible in the system, especially when Mosquera doesn't track back. He's just too slow and sometimes has poor judgement.
  8. Eric Miller is good as a sub right fullback and decent as a sub left fullback.
  9. Fogaça isn't good and has no potential. I'd love to be wrong. I like his workrate but he's not MLS quality and never will be.
  10. Antony is good, not great, and maybe has potential. His first touch is garbage, he's one-footed, and he doesn't make smart runs. He fast though. I don't think he can succeed on a shitty team like ours because he won't see the ball enough. Ideally, he'd understudy to a great winger and learn from them.
  11. Mora is surprisingly good. He's opportunistic. He's a leader. He's committed. He puts in effort. I still don't think he's a DP and I'd kind of prefer he was a subto an even better forward but it's hard to argue with success.
  12. Diego Chara. He's still very good. People who say he's lost a step are confusing his inability to cover everybody else's mistakes, and his own occasional lapses, with having lost it. He's barely lost anything. He'd look better on a team that wasn't absolute ass. It's sad for him.
  13. Araujo. I think he's good but just too slow for this system. His passing is good and he's good with the ball at his feet. His positioning and judgement seem fine, generally. I'd bet he'd look better on a better team too. I could say the same for some former centerbacks as well.
  14. Paredes. He's good. He's developed and grown on me. He's pretty consistent and generally puts in effort. He rarely pisses me off. I'd hoped he'd develop into a 6 but that's apparently not to be. I think he's hit his ceiling. He's a great rotator or sub. Not a star.
  15. Ayala. He's good. Could become great if he can stay healthy and get more development. I'm worried about his injury history. He's a bit small and can get pushed around a bit.
  16. Mabiala. He's just too old and slow now. Good dude. Maybe his last extension was too long. I think the tactics are especially bad for him but he wasn't good enough last season either. Father Time just caught up faster than we expected.
  17. Asprilla. Is he good? I don't think he really is. But his moments of sheer genius, his workrate, and his heart make him great. As a sub. Flare counts for a lot. I love it when Asprilla dazzles.
  18. Kamal Miller. He's good but too slow for the system.
  19. Muse. No idea man.
  20. Crepeau. He's great but we sure haven't given him a chance to be great for us yet.
  21. Pantemis. He's good and could be great.
  22. Sulte. I've only ever seen him be awful. I wish him the best but have no reason for optimism, especially since Muse came on.
  23. Zuparic. He's the best player in the league, obviously. He's good. Maybe he was great once. He's not good enough for the system at least. If Neville ever substantively changes tactics I think he could be solid for us again. Seems like his attitude may be a problem though. Who knows what to believe?
  24. Ikoba. Absolute mystery to me. I assume the worst from context clues. Wish him the best. I think he, Sulte, and all who came before underscore how wretched our academy system is. Who do we blame for that? Does it matter? I think it does. I'd love to develop cheap players we could sell to reinvest in the club.
  25. Bravo. He's great. He could be brilliant. He makes the occasional mistake but that's the price of greatness. He takes risks. He's a fighter too. Love this dude but he still gets underrated and shit on. We're so much better with him on the team. How often do we have good fullbacks, especially a left back. Him, Moreira, and Villafaña are kind of it, right? Farfan showed promise but bringing Jorge back stunted his prospects with us?
I think we are less than the sum of our parts. I don't think too many of our players are scrubs. We have too much invested in central midfield, centerback, and keeper. Central midfield was complicated by injuries and Chara's insane longevity. Our poor DP signings hurt our ability to move on from them in terms of timing and money. Ivacic was still on the books well into the last transfer window. Mabiala is taking up roster and cap space. Zuparic is questionable. McGraw and Araujo just don't seem to be good fits for the system that Neville is trying to implement. Kamal Miller isn't either but Neville doesn't realize that. I'll suggest that Mosquera not defending hurt the CBs last season too, along with the missing attacking DPs.
I don't know what we can realistically do about our problems near-term. I don't think Nevilleball works even with a right fullback who can defend and faster centerbacks. That would help. But the lack of off-the-ball movement, lack of ball progression through midfield, lack of creative runs, poor passing, low pressure, shitty zonal marking on set piece defending, not closing passing lanes, not stepping to the ball; not making incisive, line-splitting passes; not communicating, poor rotations, not making the final pass or taking shots in the box, passing back all the time, slow build-up, not covering the far post, injuries... It's a lot. Some of these problems predate Neville, so he ought to have accounted for them and adjusted accordingly. The FO has denied lack of talent is a problem. That leaves coaching and attitude or mentality. Attitude and mentality often come back to coaching IMHO.
submitted by ClayKavalier to timbers [link] [comments]


2024.05.14 09:02 sassiesgirl American Airlines has the worst Customer Service, Policies, Organizational skill

When: Sunday 5-12-2024
Where: O’Hare International Airport, American Airlines
Items Lost and/or stolen:
1. Remarkable 2, The paper Tablet
2. Marker Plus w/ Tablet
3. Remarkable 2 folio case
On 5-11-2024, I flew American Airline from North Carolina to Chicago Ohara International airport. The plane sat right off the runway for about an hour, the plane had no gate to park. Most of the passengers missed their connecting flight. I missed my connection to Portland OR by minutes. I was rebooked for a flight for the next day to Portland via Dallas Tx On Sunday 5-12-2024 at 2:40pm. When boarding the plane, we had to check in our carry-on bag because it was full (I had my work laptop and new Remarkable 2 tablet in my carry-on). We started to taxi out to the runway, then stopped. After about 40 minutes, the pilot came on the speaker and said there would be a delay of about ½ hour to an hour. He then came on to the speaker and said that they were now saying it would be 1-3 hours and he had decided to deplane. The flight was then cancelled. I could not get my carry-on, because it would be going to Dallas and then Portland once a flight went out. I was able to book another flight to Portland 6 hours later. When I landed, I was able to get my check in bag, it had arrived the day before, but the carry-on that I did not want to check in was not there. It would be there in about an hour. So, I waited. By this time, I had spent about 2days or about 30 hours in the airports (they did give me a $12.00 food voucher- you cannot even get a sandwich for that price). I was so exhausted I grabbed my baggage when it got there, and we drove another hour to Salem. By this time, I had been travelling and in airports since Saturday morning at 9:00am and it was now after Midnight Sunday night /Monday morning. I was able to get home about 2:30am.
I slept for a couple of hours and when I opened my carry-on the laptop was in there, but the tablet was gone. I had just bought it just over a month ago and all together had spent $444.99.
I have tried filing a claim, you cannot do that w/o filing a missing baggage report. My bag is not missing. My tablet is. You cannot file a claim w/o original receipt within 24 hours. There is no one to whom you can talk. No one to help you. The one gal I managed to get ahold of was customer service but not for complaints or baggage problems. Her comment to me was “there are over 44 million customers a day with problems, you think we want talk to all of them”. That is what American Airlines thinks of their customers.
I knew my tablet was in the bag when they made me check my bag. They should be held liable. For as long as they held onto the luggage, anyone could have opened it up and took it. I am hoping I am wrong, and it is in the airport somewhere. Chicago, Portland, or Dallas. I feel like I will never see it again.
I know this, I will never fly AA again. They have terrible service, there planes are not in very good shape, just an all-around bad experience. I heard a lot of passengers complain about the airline. No one had anything good to say about them.
How many people has this happened to? Can they just get away with stealing and ripping people off? Making people’s lives miserable by having one of the most unorganized people and baggage and fight handling systems in the world.
Is there a chance a class action lawsuit could be filed? I am sorry I cannot just let them take $500 from me; I work too hard for my money. I feel like they have robbed me.
submitted by sassiesgirl to travel [link] [comments]


2024.05.14 09:01 AutoModerator May 14, 2024 Daily Training Log & Simple Questions

submitted by AutoModerator to 531Discussion [link] [comments]


http://swiebodzin.info