\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } Q&A: Ro Khanna’s Plan to Forestall Collapses Like Silicon Valley Financial institution – Bedworthjobcentre

Q&A: Ro Khanna’s Plan to Forestall Collapses Like Silicon Valley Financial institution

Ro Khanna understood the gravity of Silicon Valley Financial institution’s collapse faster than most. 

Tech leaders have been lighting up the Silicon Valley congressman’s telephone the night time earlier than the shutdown, and his expertise working within the Obama administration’s Commerce Division advised him swift motion can be wanted. 

Hours after the federal authorities took management of the financial institution, Khanna organized a city corridor and reached out to the White Home and Treasury Division to verify depositors can be made complete. That advocacy preceded the federal authorities asserting it might defend all deposits. Regardless of President Biden’s assurances, many startups and reasonably priced housing nonprofits nonetheless face uncertainty.

In hopes of addressing these anxieties, Khanna hosted a roundtable Saturday at his district workplace in Santa Clara with a number of entrepreneurs and nonprofit leaders. The purpose was to place a face on the disaster and present how Silicon Valley Financial institution’s collapse has actual penalties for individuals who don’t have nine-figure financial institution accounts.

The Customary sat down for an unique interview with Khanna following his occasion to get his candid evaluation of the disaster and what motion he’s taking. The interview has been edited for readability and brevity.

The Customary: I’m curious while you realized, ‘Uh oh, one thing’s actually unsuitable.’

Khanna: Thursday night time (March 9). I began getting calls from numerous constituents, numerous tech leaders saying, ‘There’s a disaster coming. It’s in your district. You want to be on prime of this.’

Have been you in D.C. on the time?

I used to be in D.C., yeah. I used to be voting. After which it’s Friday—I imply, my telephone blew up. In all probability a thousand texts, calls. ‘What’s happening? You’re going to have a regional banking collapse. Hundreds of Valley firms are in danger. Your complete innovation pipeline is in danger. Workers aren’t going to receives a commission.’ And I organized a city corridor. At 4 o’clock I mentioned to my crew on Friday, ‘Let’s simply get the angle of some individuals and our constituents.’ We despatched out a blast e mail for a webinar—600 individuals joined the decision at 7:30 with three-and-a-half-hours discover. We stayed on the telephone for 3 hours, 600 individuals, 70 to 80 questions, simply assuring those that we have been going to take motion.

You mentioned one thing that was fascinating within the roundtable the place you talked about your colleagues in Congress considering everybody round here’s a millionaire driving, like, a Tesla or a Maserati. And, clearly, there’s each type of particular person right here. Having labored within the Commerce Division, what goes by your thoughts while you hear individuals say, ‘Let Silicon Valley Financial institution fail,’ and the type of repercussions that might have occurred?

It’s a reminder why we’d like the federal government. In the end, individuals within the personal sector have a accountability to their shareholders and to earnings. Now, I’m all for accountable capitalism and a capitalism with ethics. And one would hope that individuals within the personal sector would care in regards to the penalties to their workers and the results to society. However that’s not their incentive. The federal government is the one place which has a authorized, ethical, moral obligation to take care of individuals, and that may be a reminder of why libertarianism would not work. You want a task for the federal government to come back in in these kind of conditions, to guard the people who find themselves going to get damage. Our job is to face up for individuals on the very time that a number of the finance of us are saying, ‘Let the financial institution fail.’

I used to be speaking to a buddy who works in banking and he mentioned one thing like, ‘That is actually dangerous, and if it’s not dealt with by Monday we might have a serious disaster on our arms.’ However he additionally mentioned this isn’t Financial institution of America—if Financial institution of America have been to fail, you wouldn’t actually fear about cash. You’d fear about having a handgun at dwelling as a result of individuals can be rioting within the streets and breaking into properties. Being an financial coverage professional, are you able to clarify simply the variations once we discuss in regards to the too-big-to-fail type of banks and Silicon Valley Financial institution?

Financial institution of America has thousands and thousands of accounts of Individuals, most of them underneath $250,000. You’re speaking about actually everybody’s retirement, everybody’s financial savings, everybody’s school financial savings accounts, the cash they’re utilizing to pay their mortgages and lease. You’d wipe out thousands and thousands of working-class and middle-class households, which we’d by no means permit, nor can we permit as a authorities, which is why now we have insured individuals as much as $250,000. You wouldn’t have had that type of disaster if Silicon Valley Financial institution had collapsed and the depositors weren’t totally lined, however you’d have had 1000’s of companies go underneath. You’d have had many individuals not make their payroll. And what you’d most have triggered is a transfer for individuals pulling out their cash from regional banks and shifting it into the 4 massive banks. And also you don’t need 4 banks banking for all of America.

The function I performed—I feel the federal government would have gotten there anyway by Monday night to ensure the depositors. However they have been first going to do this thought of giving 50% advance deposits. And as your pal identified, that, I feel, would have actually triggered panic and will have led to all of those firms and depositors pulling cash out of regional banks, not simply right here however across the nation and consolidating into JP Morgan, Financial institution of America, Wells Fargo and Citi. And I pushed the Secretary [of the Treasury Janet Yellen], on Face the Nation on Sunday morning to say, ‘No, it’s not sufficient to only have superior deposits. It’s not sufficient simply to assist with non permanent payroll. We have to guard the account and have individuals have full entry on Monday morning.’ And I feel because of all of the conversations I had with the White Home and definitely the looks on Face the Nation in addition to different individuals’s advocacy, we received the secretary there by Sunday earlier than the Asian markets opened. And the timing was vital. The 24 hours made a giant distinction. 

You additionally mentioned one thing actually fascinating within the roundtable, which was you had leaders of Silicon Valley Financial institution in your workplace lobbying for the deregulation. 

Again in 2017-18. Whether or not they have been in my workplace or a telephone name, I can’t bear in mind, however I bear in mind having conversations with them. I imply, I knew them. Clearly, you don’t get elected to symbolize this space with out figuring out the leaders of the large financial institution within the space.

Do you assume there ought to have been extra apparent warning indicators? As a result of one factor is all people knew the rates of interest have been altering and but they continued to make these investments.

I do assume that there ought to have been extra accountable monetary administration. I feel what occurred is the financial institution received carried away on taking pointless threat. So, in the event you’re in a long-term bond, you get the next rate of interest than in the event you’re on a short-term bond. They usually took all this cash that was partly a results of this stimulus, partly a results of COVID and everybody going digital, so Silicon Valley was flush with sources. They’d huge account deposits they usually took all of it and mentioned, ‘Properly, we wish the 4% curiosity versus the two% curiosity, and that was greed. And they need to have hedged, particularly with the rates of interest going up. And that failure to hedge, I feel, was only a resolution of greed. And the large banks would by no means have executed it due to Dodd-Frank and the regulation. That was not simply an error of judgment the place you make a name and on reflection it seems prefer it was a foul name, however on the time it regarded cheap. This was a name that most individuals in banking would have realized was a foul name. What they did can be like in the event you’re by yourself 30-yard line and it is fourth-and-20 and also you don’t punt, proper? I imply, it is not Monday morning quarterbacking. It’s a fairly dangerous guess. And they need to have identified higher. And that’s why we’d like a greater regulatory framework.

I had one entrepreneur in tech inform me it was simply identified: You get a startup, you get your funding, you spend money on Silicon Valley Financial institution. They mentioned it’s simply typical Silicon Valley groupthink.

Yeah, it’s such as you go to Wilson Sonsini or Fenwick & West to your lawyer and also you go to Silicon Valley Financial institution to your banker. Yeah, it’s an ecosystem.

What do you see going ahead for tech, whether or not or not it’s startups or, say, A.I.? How do you assume this impacts the panorama going ahead for say the subsequent yr or two?

It’s a tricky time for the Valley with increased rates of interest, with the shock this places into the system, which goes to make capital more durable to amass. And with the type of layoffs that we’ve been seeing. In excessive rates of interest, tech doesn’t do as properly as a result of tech is a elementary guess on the longer term. And excessive ra
tes of interest imply that you simply’re diminishing the longer term worth of cash. That mentioned, I’m nonetheless extremely bullish on Silicon Valley as a result of, in the end, it’s in regards to the underlying expertise. And in the event you take a look at the large advances we’re making in A.I. proper now, and the businesses on A.I., you take a look at the advances we’re making in local weather tech and also you take a look at the advances that stay in biotech, the basic expertise right here is fairly extraordinary.

Rep. Ro Khanna, center, hosted a panel dialogue Saturday at his district workplace in Santa Clara that featured (from left): Andrea Osgood, Senior VP of Eden Housing; Austin Sendek, co-founder and CEO of Aionics; Marie Bernard, govt director of Sunnyvale Neighborhood Companies; and Nico Pinkowski, CEO of Nitricity. | Josh Koehn/The Customary

You talked about a invoice you’re engaged on with a Republican colleague within the Senate. Lots of people don’t assume the GOP actually will get what this disaster is about and has used, as they are saying, the B-word, bailout, which you have been very clear that this isn’t that. Are you able to inform possibly a bit bit extra about what you plan to do?

There are two efforts which are wanted. One is strengthening laws and resisting deregulation. That’s going to be more durable to get Republicans on board. The second effort is defending neighborhood banks, and numerous Republicans come from locations which have very proud regional neighborhood banks. And meaning defending the depositors in these banks. As a result of to your level, in the event you put your cash in Financial institution of America, everybody is aware of we’re not going to let that go down. How do you’ve got that assure for the neighborhood banks? Properly, I’m engaged on some type of payment for these banks to be paying right into a fund with the big deposit holders, cost a payment in order that we are able to assure these bigger deposits in these neighborhood banks. And there’s numerous Republican openness to defending regional and neighborhood banks. It’s according to their view of Federalism, it’s according to their view of supporting rural America and small cities.

That’s bold going into the 2024 elections subsequent yr.

I feel ’24 can be nearly inconceivable to get it by. I’m hoping in ’23.

Josh Koehn may be reached at [email protected]




Posted

in

by