\" 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'); } politics – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Thu, 29 Jun 2023 10:09:20 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Half my staff work from home, admits Mel Stride https://cbomo.com/dwp-civil-servants-pandemic-office-working-mel-stride-home/ https://cbomo.com/dwp-civil-servants-pandemic-office-working-mel-stride-home/#respond Thu, 29 Jun 2023 10:09:20 +0000 https://cbomo.com/dwp-civil-servants-pandemic-office-working-mel-stride-home/ [ad_1]

Only a half of staff at the Department for Work and Pensions (DWP) are in the office “on any one day”, its minister has revealed.

Mel Stride, the Work and Pensions Secretary, told LBC he is not happy about the fact that, on average, just 50 per cent of civil servants are at their desks on average.

He said he is pushing for staff to stop working from home.

Ministers have struggled to get staff back to the office since the Covid pandemic broke out three years ago.

Asked what the percentage was for staff who are in the office at the DWP, Mr Stride said: “It is around 50 per cent on any one day.”

Asked if he was happy with that, the Cabinet minister said: “No. I am working to have that figure increase and it has actually increased from where it was when I first joined the department.”

Mr Stride said office attendance was “down at nearer 40 per cent” when he took on the job in October 2022.

Asked if he had a target, he said: “I don’t know that I have an over-the-organisation goal because we have got 90,000 people and some people have to be in work, of course, every single day, work coaches are there to have face-to-face meetings in job centres with clients, there are other areas where working from home works much more effectively.

“But I do want to see that number go up and that is something that I, and I know fellow ministers, are also working on.”

Breakdown in services

Earlier this month, Sir Jacob Rees-Mogg said grieving families are being stung by inheritance tax penalties because of probate delays caused by incompetent civil servants working from home.

The former business secretary said it was wrong that families were penalised for being unable to pay tax bills on time because they were forced to wait months for probate.

He said: “It is clearly wrong for the state to impose penalties on taxpayers when the reason for the delays is the incompetence of a government department.

“There are very high levels of working from home and this has created the backlog. The civil servants need to get back into the office to deal with it.

“The Government should be paying compensation for these delays rather than the HMRC penalising people who are unable to pay on time.”

[ad_2]

Source link

]]>
https://cbomo.com/dwp-civil-servants-pandemic-office-working-mel-stride-home/feed/ 0
Albania grapples with gender equality at home, work, politics – EURACTIV.com https://cbomo.com/albania-grapples-with-gender-equality-at-home-work-politics/ https://cbomo.com/albania-grapples-with-gender-equality-at-home-work-politics/#respond Thu, 04 May 2023 09:23:48 +0000 https://cbomo.com/albania-grapples-with-gender-equality-at-home-work-politics/ [ad_1]

Albanian women spend 25 years of their life raising children and carrying out unpaid work such as caring for family members and carrying out domestic chores, according to new data from the World Bank.

This high level of burden leads to women being less engaged in the labour market, which in turn hurts family income and the level of poverty. If this burden were shared equally between other family members, in particular the husband, family income would be higher due to salary and higher pensions, the recently published report found.

Women are left carrying the lion’s share of domestic duties, particularly in rural areas where more than 40% of Albania’s population lives and where poverty is higher.

Data processed by Exit in 2020 found that Albanian women spend around 22% of their day carrying out unpaid work, compared to just 3.47%, or 43 minutes for men.

If we consider that the average employed Albanian works a 47-hour week, this corresponds to women working at least 40 hours a month – almost an entire working week – for free.

In EU countries, women spend around 4.5 hours daily on unpaid work against 2.5 hours for men. In Albania, this rises to over 6.5 hours for women and falls to less than an hour for their male family members.

While there are no gender gaps in educational attainment in Albania, with women often outperforming men academically, women have a lower labour force participation rate. Data from the UN office in Albania found that 72.1% of women participate in work, compared to 88.3% of men – a discrepancy of 16.2%, which is considered significant.

As per the findings of the Global Gender Gap Report 2020, it will take just shy of 100 years for equality to be attained at the current pace.

But there is another prominent issue caused by the imbalance in gender roles and opportunities.

Albania ranks first in the world for the percentage of women ministers in government, as 12 of 18 are women ministers and 42nd regarding women deputies in the assembly.

But representation at the local level is concerning. In the 2019 local elections, women won 44% of municipal council seats and only eight out of 61 municipalities, just 13%.

UN Permanent Coordinator for Albania Fiona McCluney called on political parties to continue promoting the representation of women at the local level and strictly implement the gender quota of 50% for candidate lists for members of municipal councils.

In particular, the UN called for an increase in the number of women candidates for the post of mayor. However, only 15 of the 144 candidates for the post of mayor (10.4%) are women[3], a lower figure compared to the percentage of women candidates in the local elections of 2019.

Prime Minister Edi Rama said during a recent podcast that attempts at implementing gender quotas at the local level had been made, but in some areas, there are simply not enough women willing, or able, to stand for public office.

(Alice Taylor | Exit.al)

Read more with EURACTIV



[ad_2]

Source link

]]>
https://cbomo.com/albania-grapples-with-gender-equality-at-home-work-politics/feed/ 0
Office politics are just as toxic in the work-from-home era https://cbomo.com/office-politics-toxic-work-from-home-era/ https://cbomo.com/office-politics-toxic-work-from-home-era/#respond Fri, 28 Apr 2023 16:45:17 +0000 https://cbomo.com/office-politics-toxic-work-from-home-era/ [ad_1]

Rumour spreading, excessive flattery toward bosses most common upsetting behaviours workers witnessed

Article content

The gossip. The suck-up. The bully.

Advertisement 2

Article content

Workplaces have been home to these toxic personalities since the beginning of work, and a new survey has found the problem persists in the hybrid world in which employees can be in-person or virtual. About half the 800 United States workers surveyed say the negative effects of office politics have stayed the same in the COVID era, while another 25 per cent say they expect the disruptive behaviour to get worse before it gets better.

Article content

“Work is different today, so office politics is emerging in different ways,” said Dana Sumpter, an associate professor of organization theory and management at Pepperdine University’s Graziadio Business School, who co-authored the research. “When you’re working remotely, it’s more difficult to get quality time with managers. So people might resort to sucking up to get that attention.”

Article content

Advertisement 3

Article content

More than one-third of the surveyed workers said rumour spreading and excessive flattery toward bosses were the most common upsetting behaviours they witnessed, followed by blame-gaming, backstabbing and credit snatching. Rounding out the list were bullying and sabotaging. Half of those polled said they felt pressured to engage in such behaviours, and one in four has quit a job over it.

While it’s not entirely clear how the shift to more hybrid workplaces will affect the prevalence and impact of office politics for the long term, it’s obvious that one doesn’t need to be in an office to engage in office politics.

Office suck-ups, popularized by television characters like Dwight Schrute in The Office and Tom Wambsgans in Succession, typically take their cues from those in charge. And in a virtual setting, they may be even more inclined to engage in the behaviour to make sure they’re getting noticed by bosses, according to Sumpter.

Advertisement 4

Article content

“When one person does it and gets rewarded, others see that’s what they have to do to get ahead,” Sumpter said. “It’s contagious, and organizations suffer.”  Some employees won’t put up with it. Two in five workers said office politics caused them to consider leaving their organization, and 25 per cent actually left because of it — with women more likely than men to have quit. That’s because women and under-represented groups benefit less from office politics, as they typically have less authority. “This is about power,” Sumpter said. “You are more subject to these games if you have less power.”

Managers need to call this stuff out

Dana Sumpter

But not everyone sees office politics as inherently bad, the survey found. Spreading rumours could be reframed as making sure everyone is aware of what’s going on behind the scenes. Sucking up is just a social convention to smooth all the complex interactions that are part of any workday.

Advertisement 5

Article content

The research from Sumpter and her colleague Kurt Motamedi is the latest in a long line of scholarly looks at office politics. Organizations are inherently political arenas, academics have found, so the use of persuasion, manipulation and negotiation can be just as important as intelligence, ambition and hard work. Those skilled in office politics tend to get ahead in organizations, but that individual success can come at a cost to colleagues and to the reputation of the firm. More than nine out of ten workers polled by the Pepperdine researchers said too much office politics can cause ethical issues and a toxic workplace, along with potential legal problems.

  1. Mark Zuckerberg, chief executive of Meta, said he would spend half of 2021 and 2022 working from home.

    How the great work-from-home experiment fell apart in big tech

  2. PSAC president Chris Aylward, right, and PSAC members on strike at a rally on Parliament Hill in Ottawa, on April 26.

    PSAC strike: Why work from home is a sticking point in negotiations

  3. Globally, the average office worker has 153 per cent more meetings now than at the start of the pandemic.

    Tyranny of office meeting: How meeting bloat killing productivity

Still, gossip mongers and suck-ups won’t go away unless managers remove the incentives to such behaviour, while rewarding positive actions like collaboration. “Managers need to call this stuff out,” Sumpter said. “But we all have to work together to encourage the right social behaviours.”

Bloomberg.com

Comments

Postmedia is committed to maintaining a lively but civil forum for discussion and encourage all readers to share their views on our articles. Comments may take up to an hour for moderation before appearing on the site. We ask you to keep your comments relevant and respectful. We have enabled email notifications—you will now receive an email if you receive a reply to your comment, there is an update to a comment thread you follow or if a user you follow comments. Visit our Community Guidelines for more information and details on how to adjust your email settings.

Join the Conversation

[ad_2]

Source link

]]>
https://cbomo.com/office-politics-toxic-work-from-home-era/feed/ 0
Remote Workers Still Face Confusing Tax Rules https://cbomo.com/remote-workers-state-tax-rules-e9840c6e/ https://cbomo.com/remote-workers-state-tax-rules-e9840c6e/#respond Sat, 08 Apr 2023 21:00:41 +0000 https://cbomo.com/remote-workers-state-tax-rules-e9840c6e/ [ad_1]

It has been three years since workers started telecommuting in vast numbers, but state tax laws still haven’t adapted to the new remote-work paradigm and individual taxpayers are paying the price with exasperating state tax-filing procedures. 

Many taxpayers who work remotely in a different state than their employer’s must prepare multiple state 2022 tax returns and account for precisely how many days they worked in the company office versus locales in other states—whether at home, at a vacation house, at the in-laws, or elsewhere. 

[ad_2]

Source link

]]>
https://cbomo.com/remote-workers-state-tax-rules-e9840c6e/feed/ 0
NYS Senate GOP will need Democrat permission to attend session remotely https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/ https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/#respond Fri, 10 Mar 2023 04:58:05 +0000 https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/ [ad_1]

ALBANY – State lawmakers are already the highest-paid legislators in the country at $142,000 per year – and now they can work from home, too.

Under new legislative rules approved Thursday, Democratic leaders can now determine what qualifies as “extraordinary circumstances” that would let state Senators and Assembly members attend sessions by video rather than showing up in the state Capitol.

The move left Republican state senators crying foul because state Senate Majority Leader Andrea Stewart-Cousins (D-Yonkers) will get to decide who gets the remote-work permission slips among GOP and Democratic members alike.

“I think its really quite petty that they treat us like children,” state Sen. Anthony Palumbo (R-Brentwood) told The Post.

The situation is much different in the lower house where Assembly Speaker Carl Heastie (D-Bronx) and Minority Leader William Barclay (R-Fulton) will respectively call the shots for their own conference members, according to their plans for implementing the new rules.


Andrea Stewart-Cousins with a trademark scarf speaking at a podium inside a wood paneled room
State senators will need permission from Majority Leader Andrea Stewart-Cousins in order to attend future sessions by video.
Hans Pennink

Palumbo said he worried how a Democratic state senator could hypothetically head on an “emergency vacation to Hawaii” while Republican senators struggle to get approval to attend sessions remotely.

“It’s quite petty and outrageous to not just allow the leaders from each party to make the calls,” Palumbo said.

A quorum of members in both houses will have to be physically present in the state Senate and Assembly chambers to allow vote-by-video attendance for others “in extraordinary circumstances or any other significant or unexpected factor or event,” according to the legislative language.


Carl Heastie and William Barclay shaking hands in the Assembly chambers
Assembly Speaker Carl Heastie and Minority Leader William Barclay will have responsibility for members of their respective conferences who want to attend remotely.
AP

Some Republicans find the change particularly ill-timed considering how colleagues made themselves the highest-paid legislators in the nation after giving themselves a $32,000 pay raise in a December special session.

“It’s horrible,” state Sen. George Borello (R-Jamestown) said. “They want this elected position to become a $142,000 no-show job.”

But Democrats argue Stewart-Cousins – a spokesman did not provide comment Thursday – will be judicious in making decisions on what situations are extraordinary enough for her to allow a senator to attend sessions by video.


State senators from both parties will need permission from Stewart-Cousins to attend session remotely rather than showing up at the state Capitol in Albany.
Hans Pennink

“Each house has its own procedures. The majority leader always has final say, even on excusals currently. That’s always the way it’s been going back to before we held the majority,” State Senate Deputy Majority Leader Michael Gianaris (D-Queens) said.

Republicans are needlessly fretting about Stewart-Cousins favoring fellow Democrats in the future, according to Gianaris.

“In practice, there’s deference to the minority leader for their conference so it’s unlikely this will ever be an issue,” he added.

Democrats note that other public bodies allow members to attend by video following the passage of a state law last year – an idea backed by the good government group Reinvent Albany at a legislative hearing last week.


Robert Ortt at a press conference in a hallway with other Republican senators and reporters standing around him
State Senate Minority Leader Robert Ortt will not have the authority to let Republican senators attend session by video – unlike his GOP counterpart in the Assembly.
Hans Pennink

Still, some Republican senators remain suspicious that Democrats will leverage the situation to their advantage considering the vagueness of the rule language – as well as past power plays from across the aisle that include packing a key committee with opponents of centrist court nominee Hector LaSalle.

“Democrats get to define what “extraordinary circumstances” are and have a history of using remote session to literally mute Republican voices,” state Sen. Mark Walczyk (R-North Country) said.

[ad_2]

Source link

]]>
https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/feed/ 0
WFH Federal Employees Have Republicans, Some Dems Demanding Return to Office https://cbomo.com/wfh-federal-employees-have-republicans-some-dems-demanding-return-to-office/ https://cbomo.com/wfh-federal-employees-have-republicans-some-dems-demanding-return-to-office/#respond Thu, 09 Mar 2023 13:41:47 +0000 https://cbomo.com/wfh-federal-employees-have-republicans-some-dems-demanding-return-to-office/ [ad_1]

Pedestrians are sparse on downtown Washington’s once-bustling sidewalks. Storefronts are papered over with for-lease signs and light streams through vacant floors of glass office towers.

The capital city’s main business district has long relied on the steady work of governing to survive economic downturns. Now it remains strangely desolate and depopulated long after pandemic lockdowns ended.

[ad_2]

Source link

]]>
https://cbomo.com/wfh-federal-employees-have-republicans-some-dems-demanding-return-to-office/feed/ 0