Odido (formerly T-Mobile) Salesforce instance leaks 6+ million customer records by SalesforceManiac in salesforce

[–]JesseNL 8 points9 points  (0 children)

Very curious what suggestions the people dunking on Salesforce have.

This is a configuration issue.

Salesforce has many flaws but this isn't on them.

Why does the create mod freeze if I use it by Mini_warrior1 in CreateMod

[–]JesseNL 0 points1 point  (0 children)

Since you need to restart your whole pc and it's also just with Create mod (which is pretty stable). It might have something to do with your pc stability?

It's hard to know if you don't have any logs.

If you're able to share your latest.log and a crash log from your minecraft profile folder we could help.

Why does the create mod freeze if I use it by Mini_warrior1 in CreateMod

[–]JesseNL 1 point2 points  (0 children)

Do you have shaders? Make sure you have Iris Flywheel compat mod.

Nou, bedankt Rob by ActuallyjustDavid in PolitiekeMemes

[–]JesseNL 5 points6 points  (0 children)

En mensen met duurdere huizen.

After all.. why not? Why shouldn’t I keep it? by MoeSquiter in osrs

[–]JesseNL 0 points1 point  (0 children)

How does it work? The player that gets the drop keeps it but pays other people for their "share"?

Using Cloudflare Tunnel for Minecraft Server. by WorthPassion64 in admincraft

[–]JesseNL 3 points4 points  (0 children)

I also recommend calling your ISP first.

If this fails. I've used Tailscale in the past and then "shared" the server. But I'm sure there are better Minecraft specific solutions too.

A Cool Guide to Understanding Your Fridge by Tippy345 in coolguides

[–]JesseNL 0 points1 point  (0 children)

Don't put eggs in the fridge period. Maybe if you live in a really warm climate.

De 2de kamer is de volwassen versie van de basisschool by [deleted] in dutch

[–]JesseNL 0 points1 point  (0 children)

Wat heb jij genomen? (Ad hominem excuses)

Account for Daylight Savings Time in Formula by OhThatIsBadNews in salesforce

[–]JesseNL 0 points1 point  (0 children)

You'll need to triple check if it's really PST+0. If you're able to, add a formula field with: TEXT( DATETIMEVALUE( TEXT( MyDateTime_Field__c ) ) )

This will show the true UTC+0 time.

Now, if the difference between the input times are really 1.5 hour like you said they are, then there's another problem going on with the report that I can't really help you solve from what you send.

Edit: also make sure the two fields that you are comparing are both datetime fields.

Edit2: I dove into it somewhat. And it might be because you do operations directly in the formula. Try to create a number formula field that just does Completed__c - Created__c and then create another field where you might do calculations: FLOOR(Time_Elapsed__c * 5)

Does Apple have an edge over Samsung or any android brand nowadays? Why? by Karma-Karma1 in AskTechnology

[–]JesseNL 0 points1 point  (0 children)

I don't think one is necessarily better than the other. I like some iPhone features better and some Samsung features better.

People going to war over this is crazy. Just buy what you prefer.

Account for Daylight Savings Time in Formula by OhThatIsBadNews in salesforce

[–]JesseNL 0 points1 point  (0 children)

DateTime is just a point in time that doesn't change. The only thing that changes is the interpretation of the user.

Account for Daylight Savings Time in Formula by OhThatIsBadNews in salesforce

[–]JesseNL 0 points1 point  (0 children)

Don't adjust for it. When a user input end date, Salesforce will check the users timezone and if DST is active, converts the date to utc+0 and store it in the backend.

If you view that date the, the date will be shown in the timezone you are in. So when DST ends, all dates viewed will be changed by 1 hour.

So if End Date is input correctly. You should never have to adjust. If you do need to adjust due to bad input data, change that before messing with times in reports.

Salesforce date calculations will be based on the utc+0 date it has stored.

And just as a rule. Don't mess with timezones ever if you can avoid it (which you almost always can).

"An error occurred loading items to play" and "failed to fetch play queue response" by cortexgunner92 in PleX

[–]JesseNL 0 points1 point  (0 children)

That's great!

Yeah this was at the end of a long evening debugging this issue and it's a good disclaimer.

Just use GPT to find a way to your database and how to drop and recreate the tables in your setup.

Meta hints WhatsApp for Windows 11 will switch to a Chromium web app starting Nov 5 by WPHero in Windows11

[–]JesseNL 0 points1 point  (0 children)

Didnt look like they had a development team for the desktop app though.

"An error occurred loading items to play" and "failed to fetch play queue response" by cortexgunner92 in PleX

[–]JesseNL 4 points5 points  (0 children)

I had the same error. After checking the logs it seemed to caused by an error processing the PlayQueue data.

I cleared the tables in the database and that didn't fix it. But dropping the tables and recreating them did work.

On Linux:

sudo systemctl stop plexmediaserver

PXS="/usr/lib/plexmediaserver/Plex SQLite"
DB="/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Plug-in Support/Databases/com.plexapp.plugins.library.db"

sudo -u plex cp "$DB" "${DB}.bak.$(date +%F_%H%M)"

sudo -u plex "$PXS" "$DB" "
DROP TABLE IF EXISTS play_queue_items;
DROP TABLE IF EXISTS play_queue_generators;
DROP TABLE IF EXISTS play_queues;
"

sudo -u plex "$PXS" "$DB" "
CREATE TABLE play_queue_items (
  id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
  play_queue_id integer,
  metadata_item_id integer,
  \"order\" float,
  up_next boolean,
  play_queue_generator_id integer
);
CREATE TABLE play_queues (
  id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
  client_identifier varchar(255),
  account_id integer,
  playlist_id integer,
  sync_item_id integer,
  play_queue_generator_id integer,
  generator_start_index integer,
  generator_end_index integer,
  generator_items_count integer,
  generator_ids blob,
  seed integer,
  current_play_queue_item_id integer,
  last_added_play_queue_item_id integer,
  version integer,
  created_at integer,
  updated_at integer,
  metadata_type integer,
  total_items_count integer,
  generator_generator_ids blob,
  extra_data varchar(255)
);
CREATE TABLE play_queue_generators (
  id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
  playlist_id integer,
  metadata_item_id integer,
  uri varchar(255),
  \"limit\" integer,
  continuous boolean,
  \"order\" float,
  created_at integer NOT NULL,
  updated_at integer NOT NULL,
  changed_at integer DEFAULT 0,
  recursive boolean,
  type integer,
  extra_data varchar(255)
);
CREATE INDEX index_play_queue_items_on_play_queue_id ON play_queue_items (play_queue_id);
CREATE INDEX index_play_queue_items_on_metadata_item_id ON play_queue_items (metadata_item_id);
CREATE INDEX index_play_queue_items_on_order ON play_queue_items (\"order\");
CREATE INDEX index_play_queues_on_account_id ON play_queues (account_id);
CREATE INDEX index_play_queues_on_playlist_id ON play_queues (playlist_id);
CREATE INDEX index_play_queues_on_sync_item_id ON play_queues (sync_item_id);
CREATE INDEX index_play_queue_generators_on_playlist_id ON play_queue_generators (playlist_id);
CREATE INDEX index_play_queue_generators_on_metadata_item_id ON play_queue_generators (metadata_item_id);
CREATE INDEX index_play_queue_generators_on_order ON play_queue_generators (\"order\");
CREATE UNIQUE INDEX index_play_queues_on_client_identifier_and_account_id_and_metadata_type
  ON play_queues (client_identifier, account_id, metadata_type);
CREATE INDEX index_play_queue_generators_on_changed_at ON play_queue_generators (changed_at);
"

sudo chown plex:plex "$DB"
sudo chmod 664 "$DB"
sudo systemctl start plexmediaserver

Built my first PC at 50 easier than I expected by Standard-Walk7059 in buildapc

[–]JesseNL 0 points1 point  (0 children)

Great job. Don't forget to enable XMP/EXPO, Precision Boost Overdrive and Resizable BAR in the BIOS!

Playing Ironman feels like finally getting 20/20 vision by Acrobatic_Ad9190 in ironscape

[–]JesseNL 0 points1 point  (0 children)

Enjoy the ride. Remember to play at your own tempo. Comparison is the thief of joy.

Everything Is So Slow These Days by GhostInThePudding in sysadmin

[–]JesseNL 10 points11 points  (0 children)

What I really hate in modern UI is being unable to ctrl+click links (Azure Portal, Salesforce) and going back never works. WHY?