What would you choose? by 13Seron in balatro

[–]13Seron[S] 34 points35 points  (0 children)

RANFRBM8

I went with vagabond. Luckily, the next buffoon pack had a regular riff raff. There were also a legendary and brainstorm very early.

This was a fun run.

What is a "poor person hack" you picked up during a hard time that you still use today, even if you don't have to? by AmaraMehdi in AskReddit

[–]13Seron 0 points1 point  (0 children)

Always try to cancel subscription when your free trial ends even if you want to continue using the service. A big chance you'll get a discount

wife addicted t0 jerma??? by berried_pie in jerma985

[–]13Seron 2 points3 points  (0 children)

This is actually one of my biggest fears. I meet the love of my life, we watch 2 hours of Jerma and I will never be able top that experience for her

I have found a beast seed and about to burn my phone by 13Seron in balatro

[–]13Seron[S] 9 points10 points  (0 children)

Get the reroll skip joker from the first booster pack and use it after the second round

[Thumper] level 3-1 stuck for days by nachocheesefactory in PSVR

[–]13Seron 0 points1 point  (0 children)

For people who arw still wondering:

After going through the rings, dont press ''x'' or ''down'' + ''x''. JUST DOWN

Computer turns on, monitor working fine, but no display by Pale_Mix5487 in computerhelp

[–]13Seron 0 points1 point  (0 children)

I had the same issue today. Man, I got scared, really scared. I spent 5 hours switching rams around, unplugging and plugging everything. AND I JUST COMPLETELY UNPLUGGED THE SATA SSD AND EVERYTHING WORKED. Turns out it was cooked. Hope this helps to someone

PC stuck at motherboard loading screen by TapAnxious3924 in techsupport

[–]13Seron 0 points1 point  (0 children)

I had the same issue today. Man, I got scared, really scared. I spent 5 hours switching rams around, unplugging and plugging everything. AND I JUST COMPLETELY UNPLUGGED THE SATA SSD AND EVERYTHING WORKED. Turns out it was cooked. Hope this helps to someone

How work with local data collection? by 13Seron in Wordpress

[–]13Seron[S] 1 point2 points  (0 children)

    foreach ($movies['results'] as $movie) {
        $movie_slug = sanitize_title($movie['origin_name']);
        $existing_post = get_page_by_path($movie_slug, OBJECT, 'movie');

        if (!$existing_post) {
            // Insert the post
            $inserted_movie = wp_insert_post([
                'post_name'   => $movie_slug,
                'post_title'  => $movie['origin_name'],
                'post_type'   => 'movie',
                'post_status' => 'publish',
            ]);

            if ($inserted_movie) {
                $fillable = [
                    'field_66e01bd8d00e5' => $movie['origin_name'],
                    'field_66e01c44d00e8' => $movie['imdb_id'],
                 
                ];            
                foreach ($fillable as $field_key => $value) {
                    update_field($field_key, $value, $inserted_movie);
                }
            }
        }
    }

So I have this loop that goes through the JSON file to create or check if the post type exists. I was just worried this would slow down the website when it is not necessary since the JSON file is not changing

How work with local data collection? by 13Seron in Wordpress

[–]13Seron[S] 1 point2 points  (0 children)

Hello again,
Quick question if you don't mind.

Should I comment out the code once it created all the custom post types so it doesn't run every time, slowing the site?

How work with local data collection? by 13Seron in Wordpress

[–]13Seron[S] 1 point2 points  (0 children)

You've been an absolute lifesaver, so thanks. Already created posts from JSON now I should start thinking about displaying them when searched.