Skip to content

Instantly share code, notes, and snippets.

@oddjar
oddjar / gist:be7e2705b13654edcb4301da7ca671ca
Last active March 14, 2023 19:56
GPT-4 Rewrites The Thing
INT. ANTARCTIC RESEARCH STATION - NIGHT
The station is in ruins, flames consume the once-thriving research facility. Snow and wind whip through the shattered remains. McReady and Childs, both battered and exhausted, find themselves face-to-face in the heart of the inferno.
McREADY
(weakly)
Hey, Childs... You ain't lookin' so good.
Childs just grunts, barely able to muster a response.
@oddjar
oddjar / gist:bd4afd8726d8c1ca1231a3198575d5c0
Created March 14, 2023 19:16
True Detective via GPT-4
(Setting: A ColdStone Creamery. Rust and Martin sit at a table, each with an ice cream cone in hand.)
Martin: (licking his ice cream cone) You know, Rust, sometimes it's nice to just enjoy the little things in life. Like a good ice cream cone.
Rust: (staring blankly) Temporary pleasures. That's all they are.
Martin: (sighs) Come on, man. Can't you just enjoy something without bringing the weight of the world down on it?
Rust: (takes a small bite of his ice cream, then continues) Kierkegaard believed that personal commitment was the key to finding meaning in life, but he was wrong. Commitment is just an illusion we use to distract ourselves from the fact that life is inherently meaningless.
<?php
/*
Plugin Name: Big Daddy Media
Description: Deletes images older than one year from the media library.
Version: 1.0
Author: Your Name
*/
/*
generated by ChatGPT
<?php
/*
Plugin Name: Delete all comments
Description: A custom plugin for deleting all comments from a WordPress site.
Version: 1.0
Author: Your Name
*/
/*
ChatGPT prompt:
<?php
/*
Plugin Name: My Great Plugin
Description: A custom plugin for WordPress.
Version: 1.0
Author: Your Name
*/
/*
@oddjar
oddjar / gist:5476e8ef81c83b4a4111983012fa4296
Created October 8, 2021 04:54
Hide error messages on your WordPress site
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', false);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors', 0);
@oddjar
oddjar / gist:a8e89ce866108fe3b43979a1fdc878bc
Created October 6, 2021 19:04
Turn off marketing messages and upsell spam in Jetpack
add_filter( 'jetpack_just_in_time_msgs', '_return_false' );