\" 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'); } Switching – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Sat, 04 Mar 2023 16:38:02 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 6 techniques for switching off your mind https://cbomo.com/6-techniques-for-switching-off-your-mind/ https://cbomo.com/6-techniques-for-switching-off-your-mind/#respond Sat, 04 Mar 2023 16:38:02 +0000 https://cbomo.com/6-techniques-for-switching-off-your-mind/ [ad_1]

What comes to mind when you think about the word ‘rest’? For many of us, it’s time spent lounging in a big, cosy bed or curled up under a blanket on the sofa. The difference between rest and activity is almost always conceived as physical, defining rest as a moment when our body is allowed to be still and supported.

But physical rest, while important, is far from the only kind of rest our bodies need. Our minds need rest too – and while watching TV may feel like a nice way to unwind, there are many active things we can do to help our minds sit back and recharge.

So, to help you switch off and get the mental rest you deserve, we asked a range of mental health and wellness experts to share their top tips. From vagal breathing to using your senses, here’s what they had to say.  

1. 3-step breathing

This really simple technique from meditation teacher and slow living advocate Chloë Webster uses a combination of breathwork and mindfulness to release tension from the body and mind to feel fully relaxed.

“A lot of my meditation teaching is based on being in the present moment, probably the easiest way to allow the mind to rest,” she says. “A really easy 30-second reset I like to do involves taking three gentle deep breaths. On each breath, you release tension from a different part of the upper body – first the forehead, then the jaw and then gently dropping the shoulders down.

“It takes your nervous system out of the fight-flight-freeze state and kicks starts the parasympathetic system (the rest and digest part of our nervous system), sending a signal to the brain that all is well and you can relax.”

2. Get your hands dirty

Mental rest doesn’t just involve traditionally relaxing activities such as meditation and breathwork, it can also include active activities, like gardening. 

Gardening is fabulous at helping your mind to rest,” explains mindful gardening coach Kendall Platt, who helps women use gardening to improve their wellbeing. “This is because the often repetitive actions (such as sowing seeds and weeding) are a form of active rest: your mind stays just active enough to complete the task but not so active that it feels stressed.”

3. Tap into your senses

When your mind is especially busy, it’s easy to get caught up in your head and forget what’s going on IRL. Tapping into your senses is a great way to reverse this, because it helps you get out of your head and pay more attention to the world around you.

“Stimulate your senses through smells that you find appealing, colours that you find calming or textures that you find encompassing,” recommends the psychologist Anna Sergent. “Listening to music is also a good way to switch off, especially calming music that does not bring back memories and can help you keep your mind at peace.”

A woman breathing in deep
Breathing and other mindfulness-based activities are great ways to switch off your mind.

4. Practice vagal breathing

Your vagus nerve (the longest cranial nerve in the body) plays a role in a long list of vital processes, but it’s particularly powerful when it comes to helping us switch off. This technique by meditation teacher and psychologist Katie Mantwa George helps to stimulate the nerve for increased relaxation. 

“Vagal breathing immediately puts your mind (and body) at rest,” she explains. “The vagus nerve is directly connected to your brain, heart and lungs and when practising simple vagal breathing you stimulate the vagus nerve, which induces relaxation in your thoughts and mind.”

To give it a go, simply follow these four steps:

  • Sit quietly with eyes closed
  • Gently breathe in for the count of four
  • Breathe out to the count of four and pause for one count
  • Repeat for five minutes

5. Schedule in ‘worry time’

If you want to invite more mental rest into your life on a regular basis, setting aside ‘worry time’ could be a good place to start.

Ivana Poku, a maternal mental health advocate, award-winning coach and author of Motherhood – The Unspoken, explains: “The idea of ‘worry time’ is setting aside 10-15 minutes every day where you do nothing but worry. Then, whenever you find yourself worried or overthinking outside of that time, you tell yourself: ‘I will worry about it during worry time’.

“Doing this allows your mind to rest during the day as you do not repress your thoughts and worries; instead, you give them space. Furthermore, worrying for only 15 minutes per day, rather than worrying and overthinking in short bursts throughout the day, significantly compresses the overall time we spend worrying, which then positively impacts our wellbeing.” 

6. Practise EFT

EFT, or emotional freedom technique, is a technique that involves acupressure ‘tapping’ and affirmations to interrupt negative thought patterns in the brain. It’s been shown to help people deal with things such as anxiety and trauma, and it’s a great way to tap into what’s going on in your mind, according to mindset transformation coach Karen Deulofeu.

“EFT is amazing for so many things,” she says. “It’s based on acupressure points around the face and upper body, tapping on the end points of energy meridians situated just beneath the surface of the skin (but it’s not woo-woo!). EFT helps the brain to process things differently and therefore relieve stressors. It works instantly but the results are lasting.”

For more information on using EFT to help your mind rest, you can check out our guide.

[ad_2]

Source link

]]>
https://cbomo.com/6-techniques-for-switching-off-your-mind/feed/ 0
25 Companies Switching to Permanent Remote Work-From-Home Jobs https://cbomo.com/25-companies-switching-to-permanent-remote-work-from-home-jobs/ https://cbomo.com/25-companies-switching-to-permanent-remote-work-from-home-jobs/#respond Tue, 21 Feb 2023 17:49:14 +0000 https://cbomo.com/25-companies-switching-to-permanent-remote-work-from-home-jobs/ [ad_1]

Happy woman working from home
fizkes / Shutterstock.com

The transition to working from home has been fast and furious for a lot of organizations over the past few years.

Many companies have learned that permanent remote work is the future of work—pandemic or not.

Below are 25 companies that have switched to being remote for the long-term, along with some of their recent remote opportunities that have been posted to the FlexJobs directory.

1. 3M

3M sign
Ken Wolter / Shutterstock.com

Once known as the Minnesota Mining and Manufacturing Co., 3M works with clients in health care, consumer products, automotive, manufacturing, electronics, and safety industries.

Remote work plans: The Work Your Way plan lets employees create a work schedule that helps them do their best work from wherever they want, whenever they want.

Recent remote job openings:

  • Global Integrated Marketing Lead
  • Dangerous Goods Analyst
  • Principal Biostatistician

2. Airbnb

Airbnb logo on a smartphone screen
AngieYeoh / Shutterstock.com

Airbnb was formed to connect people looking to rent out their extra spaces with travelers seeking clean, comfortable, and safe accommodations. Airbnb listings include traditional and nontraditional dwellings around the world, from vacation rentals to bed-and-breakfasts and even treehouses and castles.

Remote work plans: Airbnb has stated that it will allow its employees to work from anywhere permanently in a bid to further improve flexibility.

Recent remote job openings:

  • iOS Software Engineer, User Interface Systems
  • Staff Software Engineer, Experimentation
  • Group Creative Director, Copywriting and Marketing Communications

3. Aquent

Woman working in a home office
Dragon Images / Shutterstock.com

Aquent is a multinational staffing and recruiting agency that places design and marketing professionals in permanent and contract roles in areas like marketing, graphic design, and information technology.

Remote work plans: Aquent is permanently converting to remote work and will keep a small percentage of its office space for large meetings or special projects and clients.

Recent remote job openings:

  • Production Designer
  • Program Manager
  • Marketing Coordinator – Social Media, Digital Marketing and Events

4. Atlassian

Happy man working from home
Hananeko_Studio / Shutterstock.com

Founded in 2002, Atlassian is a publicly-traded computer software business specializing in collaboration, development, and issue-tracking software for teams.

Remote work plans: Atlassian employees can work from home permanently.

Recent remote job openings:

  • Senior Content Designer
  • Lead Product Designer – Accessibility
  • Senior Online Marketing Manager, Search

5. AWeber Communications

Happy remote worker
fizkes / Shutterstock.com

AWeber is a software company that helps small businesses simplify email marketing.

Remote work plans: AWeber Communications employees can work from home permanently.

Recent remote job openings:

  • Director of Accounting
  • Recruiter

6. Blackbaud

remote worker coffee zoom video conference
Roman Samborskyi / Shutterstock.com

Blackbaud provides nonprofit organizations with technology solutions to assist with fundraising, relationship management, financial management, education administration, website management, direct marketing, ticketing, prospect research, consulting, and training.

Remote work plans: Blackbaud has officially transitioned to a remote-first workforce approach, stating that it is focused on “building a connected, engaged culture regardless of where [its] people are geographically located.”

Recent remote job openings:

  • Internal Audit, Senior Manager
  • Finance Business Partner
  • Financial Analyst, Senior

7. Coinbase

Coinbase Logo
Nadezda Murmakova / Shutterstock.com

Founded in 2012, Coinbase is a digital currency exchange dedicated to creating an open and global financial system. Traders, merchants, and consumers use the platform to buy and sell cryptocurrencies.

Remote work plans: Coinbase has switched to a “remote-first” work basis.

Recent remote job openings:

  • Institutional Operations Analyst – EMEA
  • Finance Manager – Germany
  • Push Payments Analyst, Payments Risk Operations

8. Dropbox

Dropbox logo on phone
Primakov / Shutterstock.com

Dropbox helps people and companies keep files in sync and share and collaborate on projects anytime and anywhere.

Remote work plans: Dropbox will let all employees work from home permanently. Existing office space will become Dropbox Studios, where people can work in person.

Recent remote job openings:

  • Associate Employment Counsel
  • Senior Jira Administrator
  • Talent Community Marketing Manager

9. GoTo Technologies

Virtual business meeting
Rido / Shutterstock.com

GoTo Technologies (formerly LogMeIn) is a software company offering an all-in-one solution for business communications and IT support to help businesses stay connected to customers and employees.

Remote work plans: GoTo Technologies is moving to a remote-centric workplace model. Some will work remotely 100% of the time, while others will have a hybrid schedule. A small percentage of employees will be in the office four to five days per week.

Recent remote job openings:

10. HubSpot

HubSpot
4H4 Photography / Shutterstock.com

HubSpot is an inbound marketing and sales platform. The company’s products help businesses manage website content, publish social media, grow their blog, and more.

Remote work plans: HubSpot is adopting a hybrid model. Employees can work in an office two or more days per week, or they can work from home a majority of the time.

Recent remote job openings:

  • User Experience Designer, Marketing
  • Vice President, Marketing Analytics and Insights
  • Principal Data Scientist

11. Instacart

Instacart
JHVEPhoto / Shutterstock.com

Founded in 2012, Instacart offers on-demand food and grocery delivery across the United States.

Remote work plans: Instacart has introduced a “Flex First” policy through which it “provides employees the autonomy to live anywhere within the country they’re based, while participating in regular in-person gatherings.”

Recent remote job openings:

  • Senior Associate, Business Operations – Verticals
  • Senior Data Scientist
  • Strategic Finance Manager – Sales and Marketing

12. Lyft

Happy driver
AJR_photo / Shutterstock.com

Lyft is an app that promotes ride-sharing by connecting people who need rides with independent drivers.

Remote work plans: Lyft has a “fully flexible” workplace that lets staff choose where to live and work.

Recent remote job openings:

  • Software Engineer, Developer Advocate, Minsk
  • Backend Software Engineer
  • Learning Experience Designer

13. Meta Platforms

Meta headquarters -- Menlo Park, California
askarim / Shutterstock.com

Meta Platforms (parent company of Facebook) is building technologies designed to help people find communities, grow businesses, and connect. Meta believes connection is evolving and is on a mission to evolve with it.

The company is working to build “the next evolution in social technology” and operates platforms like Facebook, Instagram, and WhatsApp.

Remote work plans: Anyone whose job can be performed remotely can request permanent remote work.

Recent remote job openings:

  • Director, People Service Delivery
  • Software Engineer – Sensor Research
  • Channel Marketing Manager

14. Okta

happy remote worker
fizkes / Shutterstock.com

A publicly-traded software company, Okta provides enterprises with identity management solutions and assists clients in modernizing their IT, building customer experiences, and preventing data breaches.

Remote work plans: Okta is moving to permanent remote work for most of its employees.

Recent remote job openings:

  • Benefits Specialist, Global Benefits
  • Finance Manager, Corporate Financial Planning and Analysis

15. Reddit

Reddit
Ink Drop / Shutterstock.com

Reddit is an online platform that unites people with similar interests. These connected communities talk and share information about their passions.

Remote work plans: Reddit is allowing employees to choose permanent remote work, with options for in-office work in a casual environment.

Recent remote job openings:

  • Senior Software Engineer, Ads, Ad Formats
  • Senior Software Engineer, Ads – Server Platform
  • Data Science Manager, Ads Machine Learning

16. SAP

SAP
nitpicker / Shutterstock.com

SAP provides real-time data processing solutions for clients in over 180 countries. The company’s services include application platform and infrastructure, IT and data management, and security software.

Remote work plans: SAP is adopting a 100% flexible, trust-based work model.

Recent remote job openings:

  • DevOps Engineer
  • Technical Product Owner – Platform Group
  • Cybersecurity Games and Simulation Developer

17. Shopify

Shopify Company Logo
Paul McKinnon / Shutterstock.com

Shopify is an ecommerce company that has developed a multichannel, cloud-based commerce platform to help small and midsized companies design, organize, and manage stores across a variety of sales channels.

Remote work plans: Shopify has established a “Digital by Design environment,” allowing employees to work from anywhere.

Recent remote job openings:

  • Staff Production Engineer

18. Skillshare

Skillshare Website
Postmodern Studio / Shutterstock.com

Skillshare is an online learning community founded to help close the professional skills gap by providing everyone with access to high-quality learning.

Remote work plans: Skillshare employees can choose to work fully remote.

Recent remote job openings:

  • Associate Social Community Manager
  • Head of Data and Insights

19. Snowflake Inc.

Man typing on laptop
By GaudiLab / Shutterstock.com

A cloud-data warehousing company, Snowflake Inc. strives to change traditional perspectives on data warehousing by providing solutions that are targeted at solving data analytics challenges.

Remote work plans: Snowflake no longer has a corporate headquarters and now has a globally distributed workforce.

Recent remote job openings:

  • Solutions Architect
  • Educational Services Project Manager

20. SoFi – Social Finance

Remote worker on phone and laptop
Syda Productions / Shutterstock.com

SoFi, short for Social Finance, is a FinTech company that provides refinancing options, personal loans, life insurance, student loans, investments, and mortgages.

Remote work plans: SoFi is enabling employees to “work with their leaders/managers to determine the best place for each individual to work from.”

Recent remote job openings:

  • Interactive Project Manager
  • Interactive Copywriter
  • Loan Originator Assistant

21. Spotify

Spotify phone earbuds
Primakov / Shutterstock.com

A Swedish company, Spotify provides music, comedy, podcast, and streaming services. Users can play music directly from the cloud instead of downloading it to their devices.

Remote work plans: Spotify employees can work from anywhere.

Recent remote job openings:

  • Senior Design Manager – Core Experience
  • Data Science Lead, Creator Marketing
  • Compensation Partner

22. Square Inc.

Customer service
Antonio Guillem / Shutterstock.com

Square began as a small credit card-reading application and now provides merchants with the ability to manage point-of-sale systems, accept credit card payments, and sell online.

Remote work plans: Many Square Inc. employees can work from home permanently.

Recent remote job openings:

  • Customer Support Specialist
  • Finance and Strategy Manager, International Marketing

23. Upwork

Older woman working remotely
DisobeyArt / Shutterstock.com

Upwork is the world’s largest freelance marketplace, offering 2,500 skill categories with 10 million registered freelancers and 4 million registered client companies.

Remote work plans: Upwork has adopted a remote-first model, with remote work being the default for all employees.

Recent remote job openings:

  • Enterprise Employment Attorney
  • Senior Manager – Social Media
  • Director of Marketing Technology

24. Vista

A Black woman works remotely on a laptop computer
GaudiLab / Shutterstock.com

Vista partners with millions of small businesses to help them achieve success with design and marketing options for digital and physical assets.

Remote work plans: Vista is now fully remote.

Recent remote job openings:

  • Product Manager
  • Lead Analyst
  • Lead User Experience Content Designer, Commerce

25. VMware

VMware logo
Michael Vi / Shutterstock.com

VMware is a software company working to enable digital innovation and enterprise control for businesses as a premier provider of multi-cloud solutions for all apps.

Remote work plans: VMware is giving its staff the choice to “work permanently remote, flexible or near a VMware office, or from a VMware office full-time.”

Recent remote job openings:

  • Director, WW Go To Market Plays
  • Product Line Marketing Manager – Commercialization
  • Senior Consultant, Federal

[ad_2]

Source link

]]>
https://cbomo.com/25-companies-switching-to-permanent-remote-work-from-home-jobs/feed/ 0