type-sharetwitter-text-before']); } else { $twitter_share_text_before = ""; } if(!empty($layer['settings']['link-type-sharetwitter-text-after'])){ $twitter_share_text_after = str_replace(array("%title%","%excerpt%"), array($title,$excerpt), $layer['settings']['link-type-sharetwitter-text-after']); } else { $twitter_share_text_after = ""; } $twitter_share_text = $twitter_share_text_before.$twitter_share_url.$twitter_share_text_after; $text = ''.$text.''; break; case 'likepost': if(!empty($this->post['ID'])) $text = ''.$text.''; //javascript-link else $text = ''; break; } if($link_to !== 'none') $do_display = true; //set back to true if a link is set on layer $text = trim($text); //check for special styling coming from post option and set css to the queue if(isset($layer['id'])) $this->set_meta_element_changes($layer['id'], $unique_class); $post_class = (!isset($post['ID'])) ? '' : ' eg-post-'.$post['ID']; if($base->text_has_certain_tag($text, 'a') && !$do_ignore_styles){ //check if a tag exists, if yes, class will be set to a tags and not the wrapping div, also the div will receive the position and other stylings // && @$layer['settings']['source'] !== 'text' if($is_woo_cats && strpos($text, 'class="') !== false || $is_woo_button || $is_filter_cat && strpos($text, 'class="') !== false){ //add to the classes instead of creating own class attribute if it is woocommerce cats AND a class can be found $text = str_replace('class="', 'class="'.$unique_class.$post_class.$lb_class.' ', $text); }elseif($is_html_source && strpos($text, 'class="') !== false){ $text = str_replace('', '', $text); //moved to more global css generation process @version: 2.0 //$this->add_css_wrap[$unique_class]['a']['display'] = $do_display; //do_display defines if we should write display: block; //$this->add_css_wrap[$unique_class]['a']['full'] = $do_full; //do full styles (for categories and tags separator) $unique_class .= '-a'; } if($do_ignore_styles) $unique_class = 'eg-'.esc_attr($this->handle).'-nostyle-element-'.$layer['id']; //replace all the normal shortcodes if(function_exists('qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')){ //use qTranslate $text = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($text); }elseif(function_exists('ppqtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')){ //use qTranslate plus $text = ppqtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($text); }elseif(function_exists('qtranxf_useCurrentLanguageIfNotFoundUseDefaultLanguage')){ //use qTranslate X $text = qtranxf_useCurrentLanguageIfNotFoundUseDefaultLanguage($text); } $text = do_shortcode($text); if($special_item == 'true' && $special_item_type == 'line-break'){ //line break element echo ' '."\n"; }elseif(trim($text) !== ''){ //}elseif(!empty($text)){ $use_tag = $base->getVar($layer['settings'], 'tag-type', 'div'); echo ' <'.$use_tag.' class="esg-'.$class.$post_class.$video_play.$ajax_class.' '.$hideunderClass.$unique_class.$transition.'"'.$ajax_attr.$transition_split.$delay.$hideunderHTML; echo ($demo == 'custom') ? $demo_element_type : ''; echo $data_transition_transition . '>'; echo $text; echo ''."\n"; } } /** * Retrieve the value of post elements */ public function get_post_value($handle, $separator, $function, $meta, $catmax = '-1', $taxonomy = ""){ $base = new Essential_Grid_Base(); $text = ''; /* 2.1.5 category max option */ $adjustMax = false; if( in_array( $handle, array( 'cat_list','tag_list','taxonomy') ) ) { if(!empty($catmax) && $catmax !== '-1' && is_numeric($catmax) && intval($catmax) > 0) { $catmax = intval($catmax); $adjustMax = true; } } switch($handle){ //Post elements case 'post_id': $text = $base->getVar($this->post, 'ID', ''); break; case 'post_url': $post_id = $base->getVar($this->post, 'ID', ''); $text = get_permalink($post_id); break; case 'title': $text = $base->getVar($this->post, 'post_title', ''); break; case 'caption': case 'excerpt': $text = trim($base->getVar($this->post, 'post_excerpt')); if(empty($text)){ //strip essential grid shortcode here $text = do_shortcode($base->strip_essential_shortcode($base->getVar($this->post, 'post_content'))); $text = preg_replace("/]*>(.*?)<\\/style>/s", "", $text); $text = preg_replace("/]*>(.*?)<\\/script>/s", "", $text); } $text = strip_tags($text); //,"

" break; case 'meta': $m = new Essential_Grid_Meta(); $text = $m->get_meta_value_by_handle($base->getVar($this->post, 'ID', ''),$meta); break; case 'likespost': $post_id = $base->getVar($this->post, 'ID', ''); if(!empty($post_id)){ $count = get_post_meta($post_id, "eg_votes_count", 0); if(!$count) $count[0] = 0; if(is_array($count)){ $text = ''.$count[0].''; } } else{ $text = ''; } break; case 'alias': $text = $base->getVar($this->post, 'post_name'); break; case 'content': $text = apply_filters('the_content', $base->getVar($this->post, 'post_content')); break; case 'link': $text = get_permalink($base->getVar($this->post, 'ID', '')); break; case 'date': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = $base->convert_post_date($postDate); break; case 'date_day': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('dd',strtotime($postDate)); break; case 'date_month': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('m',strtotime($postDate)); break; case 'date_month_abbr': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('M',strtotime($postDate)); break; case 'date_year': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('Y',strtotime($postDate)); break; case 'date_year_abbr': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('y',strtotime($postDate)); break; case 'date_modified': $dateModified = $base->getVar($this->post, "post_modified"); $text = $base->convert_post_date($dateModified); break; case 'author_name': $authorID = $base->getVar($this->post, 'post_author'); $text = get_the_author_meta('display_name', $authorID); break; case 'author_posts': $authorID = $base->getVar($this->post, 'post_author'); $text = get_author_posts_url($authorID ); break; case 'author_profile': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_the_author_meta('url', $authorID); break; case 'author_avatar_32': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 32); break; case 'author_avatar_64': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 64); break; case 'author_avatar_96': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 96); break; case 'author_avatar_512': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 512); break; case 'num_comments': $text = $base->getVar($this->post, 'comment_count'); break; case 'cat_list': $use_taxonomies = false; $postCatsIDs = $base->getVar($this->post, 'post_category'); if(empty($postCatsIDs) && isset($this->post['post_type'])){ $postCatsIDs = array(); $obj = get_object_taxonomies($this->post['post_type']); if(!empty($obj) && is_array($obj)){ foreach($obj as $tax){ if($tax == 'post_tag') continue; $use_taxonomies[] = $tax; $new_terms = get_the_terms($base->getVar($this->post, 'ID', ''), $tax); if(is_array($new_terms) && !empty($new_terms)){ foreach($new_terms as $term){ $postCatsIDs[$term->term_id] = $term->term_id; } } } } } /* 2.1.5 category max option */ if($adjustMax && is_array($postCatsIDs)) $postCatsIDs = array_slice($postCatsIDs, 0, $catmax, true); $text = $base->get_categories_html_list($postCatsIDs, $function, $separator, $use_taxonomies); break; case 'tag_list': if(!$adjustMax) { $text = $base->get_tags_html_list($base->getVar($this->post, 'ID', ''), $separator, $function); } else { $text = $base->get_tags_html_list($base->getVar($this->post, 'ID', ''), $separator, $function, $catmax); } break; case 'taxonomy': if(!$adjustMax) { $text = $base->get_tax_html_list($base->getVar($this->post, 'ID', ''), $taxonomy, $separator, $function); } else { $text = $base->get_tax_html_list($base->getVar($this->post, 'ID', ''), $taxonomy, $separator, $function, $catmax); } break; /* case 'iframe': print '

HELLO!

'; die(); break; */ default: $text = apply_filters('essgrid_post_meta_content', $text, $handle, $base->getVar($this->post, 'ID', ''), $this->post); break; } return $text; } /** * Retrieve the value of post elements */ public function get_custom_element_value($handle, $separator, $meta = ''){ $base = new Essential_Grid_Base(); $m = new Essential_Grid_Meta(); $text = ''; $text = $base->getVar($this->layer_values, $handle, ''); if($text == '' && $meta != '') $text = $base->getVar($this->layer_values, $meta, ''); if(intval($text) > 0){ //we may be an image from the metas $custom_meta = $m->get_all_meta(false); if(!empty($custom_meta)){ foreach($custom_meta as $cmeta){ if($cmeta['handle'] == $handle){ if($cmeta['type'] == 'image'){ $img = wp_get_attachment_image_src($text, $this->media_sources_type); if($img !== false){ $text = $img[0]; //replace with URL } } break; } } } } return $text; } /** * Retrieve the value of event elements */ public function get_event_manager_value($handle){ $base = new Essential_Grid_Base(); $text = ''; switch($handle){ //check for event manager case 'event_start_date': break; case 'event_end_date': break; case 'event_start_time': break; case 'event_end_time': break; case 'event_event_id': break; case 'event_location_name': break; case 'event_location_slug': break; case 'event_location_address': break; case 'event_location_town': break; case 'event_location_state': break; case 'event_location_postcode': break; case 'event_location_region': break; case 'event_location_country': break; } return $text; } /** * Retrieve the value of woocommerce elements */ public function get_woocommerce_value($meta, $separator, $catmax = false){ $text = ''; if(isset($this->post['ID'])){ if(Essential_Grid_Woocommerce::is_woo_exists()){ $base = new Essential_Grid_Base(); $m = new Essential_Grid_Meta(); /* 2.1.5 category max option */ $adjustMax = false; if($meta === 'wc_categories') { if(!empty($catmax) && $catmax !== '-1' && is_numeric($catmax) && intval($catmax) > 0) { $catmax = intval($catmax); $adjustMax = true; } } if($adjustMax) { $text = Essential_Grid_Woocommerce::get_value_by_meta($this->post['ID'], $meta, $separator, $catmax); } else { $text = Essential_Grid_Woocommerce::get_value_by_meta($this->post['ID'], $meta, $separator); } } } return $text; } } Career & Talent – Dear Alyne https://www.clone.dearalyne.com Dear Alyne Tue, 21 Jan 2020 05:56:57 +0000 en-US hourly 1 https://wordpress.org/?v=5.2.20 https://www.clone.dearalyne.com/wp-content/uploads/2018/08/cropped-favicon-32x32.png Career & Talent – Dear Alyne https://www.clone.dearalyne.com 32 32 My experience with Travel Insurance (The Best AND Cheapest Travel Insurance?) https://www.clone.dearalyne.com/travel/whats-the-best-and-cheapest-travel-insurance/ https://www.clone.dearalyne.com/travel/whats-the-best-and-cheapest-travel-insurance/#respond Fri, 10 May 2019 05:33:30 +0000 https://clone.dearalyne.com/?p=2063 The post My experience with Travel Insurance (The Best AND Cheapest Travel Insurance?) appeared first on Dear Alyne.

]]>
Hey Everyone! It’sa me! Alyne! What follows is my personal experience with the cheapest travel insurance that I’ve seen. It’s called Safety Wing. I work with them, but when I filed my claim it was completely anonymous, they treated me like a normal customer. I’m currently filing 2 more claims so I’ll update on how those go as well.  Always do your own research and make the best choice for you! Remember travel insurance isn’t meant to be PRIMARY INSURANCE. SO they almost (or never) cover things like cancer etc. Make sure your home insurance covers that.

Past topics you’ve asked me to cover include How to find the best places to stay when you travel and How to Stay Healthy and fit while traveling.

But today we tackle a VERY common question in my inbox.

Turns out, all of you want the cheapest travel insurance! I get messages from you on Instagram every day asking “Alyne, which travel insurance do you use!?” 

If you know me, you know I’ve been on the road (or rather…in the air) for 3 years now. BUT I NEVER HAD TRAVELERS INSURANCE. And I knew I wanted the cheapest travel insurance, too. Because I really hoped to never have to use it, so I didn’t want to waste hundreds of dollars a month on something I wasn’t planning to use much. I wanted it as a “just in case”.

Three reasons I never got travel insurance:

1.) Because.

I. 

Am. 

Cheap. 😂

2.)  I kinda hoped/thought I was maybe insured (lolol).
Until age 26 I was under my Moms insurance in the US so I kinda hoped it would have covered me abroad (I have no idea if it did, and I was lucky I never got injured!).

3.) I’ve never actually BELIEVED in insurance. I mean, I believed that they try to rip you off and find every possible loophole to NEVER PAY OUT.  Call me pessimistic if you will, but I’ve heard one too many stories of someone who thought they were insured but their insurance found a loophole to not payout. FOOL ME ONCE SHAME ON ME.

I kept thinking “I should get travel insurance” but I didn’t have the energy to research it and didn’t trust anyone. Then I heard about Safety Wing! I knew someone who worked there personally so I trusted it more, and asked lots of questions and decided to try. It’s not meant to be primary insurance, but it’s pretty dang good travel insurance for like LITERALLY $1.30 A DAY.

Why I call Safety Wing, “The Best and Cheapest Travel Insurance”:

1.) I can sign up during my trip. Most companies only cover you if you sign up before a trip while still in your home country. This obviously doesnt work for me as I travel full time. There is no “home country” that I leave and return to.

2.) Home country coverage: The US has some of the most expensive health care on earth. A tiny injury there will cost THOUSANDS. Almost no travel insurance covers me in my home country. But this one does. yass queen.

3.) CHEAP AF: $37 a month. Do you understand how amazing that is? But…does cheap mean low quality? Nope. Safety wing is backed by Tokyo Marine, one of the best and biggest insurance agencies out there. IDK how its so cheap but I think it’s bc it’s a new company so jump on it now amigos. Also probably cheap bc most users will be young without health issues.

4.) Low YEARLY deductible. Some deductibles are PER CLAIM. But here it’s PER CYCLE. So if you sign up for 1 year, your deductible of $250 lasts the whole year. So if I submit 5 claims of $200 each. I get back $750. Pretty cool.

5.) Designed with Digital Nomads in mind. DIGITAL NOMADS ARE THE FUTURE! I’m glad the world is preparing for it!

BUT…DOES IT WORK???

YES!

DETAILED ANSWER:
Yes. I submitted a claim like a normal person and within 30 days got a check in the mail back. It was easy to submit the claim too. I’ve had other insurance where it was such a pain to fill out the paperwork that I just gave up and didn’t ask for my money back. I’m SO RELIEVED to have found travel insurance that actually works. I’m going to submit 2 more claims this week and will keep you updated to see how those go but SO FAR SO GOOD! And it’s definitely the cheapest travel insurance I’ve found with a good value. Let me know if I’m wrong!

MAKE SURE YOU DO YOUR OWN RESEARCH!! This is just my experience and what I choose to use.

Here’s the link if you want to research Safety Wing  (always research!!).

Happy searching and good luck!! Hope this helps 🙂 And if you know other great companies or have questions share your experiences below!

 

XxAlyne

 

 

The post My experience with Travel Insurance (The Best AND Cheapest Travel Insurance?) appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/travel/whats-the-best-and-cheapest-travel-insurance/feed/ 0
Dear Alyne’s tribute to Nas Daily (for Day 1000) https://www.clone.dearalyne.com/career-talent/dear-alynes-tribute-to-nas-daily-for-day-1000/ https://www.clone.dearalyne.com/career-talent/dear-alynes-tribute-to-nas-daily-for-day-1000/#respond Tue, 08 Jan 2019 00:10:28 +0000 https://clone.dearalyne.com/?p=1816 The post Dear Alyne’s tribute to Nas Daily (for Day 1000) appeared first on Dear Alyne.

]]>

This is a small SURPRISEEEE video I made for Nuseir to “interrupt” his Day 1000 event.

When I asked him what he wanted as a gift for day 1000 he said “A VIDEO!” And A video for me means WEEKS OF WORK because I am slow hehe. So I opted for a simple video that shows us people that we will want to remember for the rest of our lives. People who made some of your favorite Nas Daily Episodes possible.

What most people see is THE END PRODUCT. What they don’t see are the HOURS AND HOURS daily of angst and work and mental anguish that is put into the 1 minute (and longer) videos. As Nas said during his presentation at Day 1000 and in a clip in this video, “I do not recommend making Daily Videos.” 

I think the people in this video represent each of us, and what Nas Daily did for us. 

With this surprise video I wanted to show him how impactful his videos really are, and to bring his viewers together, I wanted to remind him of how many people around the world have been changed because of him.  His videos have made so many people feel like part of something and showed us the world. Thank you Nuseir from all of us – you have changed the world and more importantly, you have showed US how to change the world 💕

A little BTS (Behind the scenes!): To make the surprise video I messaged people who helped us all around the world, had them send us video and had my friend Sara cut it together so that Nas wouldnt catch me editing! (Thanks Sara!)

Check out Nas’ 1000th video if you haven’t seen it yet and remember to join our group Girls Gone Global (by Dear Alyne), where we discuss women’s issues. (Women only, for now!)

The post Dear Alyne’s tribute to Nas Daily (for Day 1000) appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/dear-alynes-tribute-to-nas-daily-for-day-1000/feed/ 0
I am poor, but I found a way to become a researcher https://www.clone.dearalyne.com/career-talent/i-am-poor-but-i-found-a-way-to-become-a-researcher/ https://www.clone.dearalyne.com/career-talent/i-am-poor-but-i-found-a-way-to-become-a-researcher/#respond Sun, 09 Dec 2018 14:38:04 +0000 https://clone.dearalyne.com/?p=1603 The post I am poor, but I found a way to become a researcher appeared first on Dear Alyne.

]]>
Topic: Career Tuesday

I’m Ciara Mae B. Eom, a 21 year old Filipina. I’m an Aquaculture Science Researcher by profession. I’m not here to brag about what I’ve got right now because I haven’t actually achieved anything aside from being a researcher at this young age.

I’m here to give an inspiration to all girls and show that poverty is not always an obstacle when it comes to finishing studying and being able to pursue your dreams.

I was born in a low profile family and was raised by a single mom. I wasn’t handed a college education but with full perseverance I didn’t let it hinder me, and I pursued my education myself.

I worked several part time jobs. I worked at night and would go directly to school in the morning during my first year in college. It was tough and at times frustrating but I pursued my education got myself several scholarships. I walked to school every morning and afternoon alone but all of these struggles had been surpassed by a single diploma.

All the while I thought that a single diploma was all worth it, but now as I am engaged in a job,

I find that no diploma nor any recognition can surpass the beauty which can be taught by experience alone.

I am thankful and consider myself blessed because I survived 5 tough years in college.

I would like to remind everybody that as every single day passes by do not be afraid to explore and venture. I’m excited for what is in store for me!

And I would like to thank every girl involved here for the inspiration you give me daily. 

Join the discussion by commenting on this post in Girls Gone Global (by Dear Alyne!). It’s for women only!

The post I am poor, but I found a way to become a researcher appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/i-am-poor-but-i-found-a-way-to-become-a-researcher/feed/ 0
I followed my passion of studying at 39 – GGG https://www.clone.dearalyne.com/career-talent/i-followed-my-passion-of-studying-at-39-ggg/ https://www.clone.dearalyne.com/career-talent/i-followed-my-passion-of-studying-at-39-ggg/#respond Sat, 08 Dec 2018 03:18:15 +0000 https://clone.dearalyne.com/?p=1581 The post I followed my passion of studying at 39 – GGG appeared first on Dear Alyne.

]]>
 

Open Topic MONDAY!!!! – Don’t give up

I am Aliya Patel, a blessed mother of two and extrovert by nature.

At present I am 39, got married at early age of 18 to a civil engineer. I have a son who is going to be 20 and daughter who is 19.

I am from INDIA and since my kids are grown up pursuing their higher education overseas, after giving 20 years of my life to this family I thought of completing my OWN education. I am now an undergraduate.

I have always been passionate about studies and wanted to pursue something but could not. When I shared this with my daughter she encouraged me to complete my graduation now and keep going ahead with whatever I want to do.

So at present I am completing my graduation and also I am training myself to be an educational career counsellor. I’m doing an online course from UCLA, training myself in public speaking and some basic human behavioral skills and also doing a sociology course where I can get connected with the younger generation and support them for making decisions and can learn a lot from these millennials. 

I miss my kids a lot and I enjoy the company of these youngsters as I don’t like to be with my extended family – because like everyone else I have suffered a lot and was even being abused by them.

I have started all this in August 2018 and I feel I am blessed as over these 20 years, I was unaware of the outside world. But now I have a group of friends (you girls at GGG) with whom I can really talk to as professionals. We are an inspiration to one another. We women are born for something great which needs to be honored, and respected… SO HEY GIRLS!!!!!! KEEP GOING… LOVE YOU ALLL!!!!!

To join the community discussion or write a post of your own to over 100,000 women, join Girls Gone Global (by Dear Alyne), for women only.

The post I followed my passion of studying at 39 – GGG appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/i-followed-my-passion-of-studying-at-39-ggg/feed/ 0
Dear Alyne’s job list (BOOK MARK THIS!) https://www.clone.dearalyne.com/career-talent/job-list/ https://www.clone.dearalyne.com/career-talent/job-list/#respond Wed, 05 Dec 2018 07:40:53 +0000 https://clone.dearalyne.com/?p=1595 The post Dear Alyne’s job list (BOOK MARK THIS!) appeared first on Dear Alyne.

]]>
BOOK MARK THIS if you want an amazing job! Check back frequently and apply first! 

NEW LISTING: Travel for free with Dear Alyne (videographer – APPLY HERE)

Dear Alyne is searching for a videographer

Dear Alyne is searching for a videographer! APPLY HERE.

Join me on upcoming trips: Examples: Bangladesh, Bhutan, Bali. All of your expenses and travel will be covered. Let’s build a relationship and see if we can create a long term work partnership!

NEW LISTING: COPYWRITER FOR NAS DAILY (remote job)

Nas daily hiring copywriter
Nas daily hiring copywriter

This is a REMOTE POSITION.

We’re looking for an experienced copywriter/SCRIPT WRITER for NAS DAILY to write Facebook Video Ad Scripts 🙂

Your scripts should be to the point and be CONVERSION ORIENTED.
Every word counts!

The videos will be short, 30 seconds to 2 minutes.

Videos are either “talking head” — or some just B-roll text with overlays like “NowThis” or other viral video agencies.

If you don’t understand what that means, this job is probably not for you.

Experience with video scripts is NON-NEGOTIABLE; this is not an “I think I could do it if I only tried my very best!” type of project.

SOME OTHER DETAILS YOU SHOULD BE AWARE OF:

+ We’ve never worked with outside copywriters before.
You would need to be able to lead us through your process (and help them make their own stronger where you can), manage expectations, and stand up for yourself.

+ Our team of four shoots and edits in-house; we usually do everything (script included) in A SINGLE DAY — so expect to move fast.

+ The right applicant is conversion-oriented, knows the Facebook platform, and MUST have written video scripts before. If any of the above does NOT apply to you, DO NOT APPLY.

IF YOU ARE INTERESTED AND QUALIFIED, HERE IS WHAT TO DO:

Email dearalyne@gmail.com with all of the following…

+ Your name
+ A COMPELLING summary of your experience (why YOU?)
+ A RELEVANT sample of your work (or better yet, several)
+ Your availability
+ Consider sending a VIDEO pitch (use Loom)

(P.S. Thanks Joel Klottke for helping us write the job description).
________________________________________________________________________
Galton Voysey is looking for a Right-Hand to our CEO William Wolfram.

This is a company Nas Daily has worked with before, check out the video HERE

Our company just won the Great Place to work competition for Greater China and is one the fastest growing companies in Hong Kong.

The duties among other things are:
– Reading and replying to emails on behalf our CEO
– Managing our CEO’s schedule
– Transiting to and from work in private car with CEO going through the upcoming day and the previous days key take-aways
– Recruiting and interviewing talent
– Acting as the Chief of Staff between CEO and teams
– Filling in for CEO when CEO is on vacation
– Organizing and setting up company events
– Building strategy both long term and short term
– Following up with leaders in our company and managing teams
– Setting goals and objectives for teams and the company
– Finding, reminding and sending gifts to key partners
– Acting as a sounding board for CEO ranging from personal matters to managing talent to strategy and vision

The compensation is highly competitive with full healthcare coverage, 20 paid holidays, unlimited education budget and other benefits that can be learned about on our website https://www.galtonvoysey.com

The biggest benefit however is learning how to run a company of our size ($40M+ USD in revenue this year, growing 100% a year), meeting the most interesting business leaders through our partners, etc. and unlimited career opportunity in the years to come.

We intend to make the hiring within the next 2 weeks!

Let me know if you are interested in the role by sending me an email at marine.antikainen@galtonvoysey.com

 DREAM JOB! Travel full time with P.S. I’m On My Way!

 

P.S. I'm on my way is hiring a full time travel assistant!
P.S. I’m on my way is hiring a full time travel assistant!

Alyne says: Trisha is one of my favorite bloggers on earth and this is a dream job!! Learn from the best and get paid and travel!? Amazing! 

Join P.S. I’m On My Way’s Team!
⠀⠀
I have a small team at the moment and I’m always looking for more people as we grow. Check this list from time to time and see if anything below fits you. Please only apply if you are qualified.
⠀⠀
I’M LOOKING FOR AN ASSISTANT WHO CAN TRAVEL WITH ME STARTING MARCH 2019. THIS IS NOT A REMOTE POSITION.
⠀⠀
– Willing to travel 6-8 months without going home (starting March 2019)
– Must know how to travel backpacking style and can adapt to any living conditions
– Willing to learn new cultures as we are going to be with local families
– Not a picky eater. The person I am looking for should not have a dietary requirement
– Strangely independent. Here at P.S. I’m On My Way, we are all very independent and can go our own way
– Fearless as fck.
– Good writing and communication skills required
– Basic photo and video editing (not required but a huge plus!)
– Must know how to take videos and pictures (basic) and/or willing to learn how to
– Social media knowledge required
A bit of basic graphic design (not required but a huge plus!)
– Can work with minimal supervision
⠀⠀
THIS IS A PAID JOB WITH REGULAR INCOME. Travel perks included, of course! If traveling the world is the kind of job you want, check how to apply in the link on my bio! Good luck!

1.) 2-3 POSITIONS in MARKETING AND SALES FOR ACANELA (TRAVEL COMPANY)

acanela expeditions is hiring

WE’RE HIRING! We’ve had a stellar year this past year and we’re looking to bring on some additional talent! As many of you know my company Acanela Expeditions focuses on boutique travel experiences in international destinations around the world. We’re looking for part-time / full time sales, operations, & marketing talent to join our team!

The position(s) would be on-site with members of our Lehi, UT group. Sometimes the role will operate remotely when circumstances allow / dictate. we are looking to hire 2-3 people. Please let me know if you’re interested or know anyone who might be! If you do, please have them reach out to operations@acanela.com or via Facebook – thanks everyone! 🙂

Marketing & Partnerships Description:

As a part of the marketing team you will be responsible to organize (create and edit) email, blog, and website content – assisting our team in reaching out to companies who will help promote our trips & content.

*Detail oriented with great writing skills; preferably some editing background (email, blog, website, itineraries, etc…)

*Call and email brands about existing and new partnership opportunities

*Manage (and grow) our social media platforms and the associated content

Sales & Operations Description:

As part of the operations & sales team (client success team) you will be an integral part of our sales process – helping to contact people who have inquired about international trips, and working with our team to assemble the pieces of the trip together.

*Respond to email & phone booking inquiries about various Acanela destinations

*Call customers who have submitted booking inquiries

*Coordinate with our in-country team to organize various portions of the trip experience

*Travel experience is a plus but not necessary (we will provide training)

*Outgoing and energetic

*Able to think on your feet and problem solve

*Good listening / phone skills

*Ability to effectively multi-task

www.acanela.com

 TEAM NAS DAILY!!!  (2 POSITIONS) – JOBS FILLED

dear alyne nas daily and agon hare

I’m looking to add two people to the team. If you are THE BEST at what you do, please see below.

1. Team Assistant: I’m looking for a right hand man/woman. Someone to be available 24/7 to book flights or hotels, respond to emails, sales outreach, manage projects, manage teams, be a logistic wizard, and to love what they do. This position is open to anyone from anywhere in the world and the pay is 50% above market rate. So whatever the average salary, I’ll pay 50% more.

It’s a very tough job. You need to be on your feet all the time. The job includes a lot of not fun stuff like excel work and really fun stuff like travel and working with the team offline. We work 24/7 and we expect all of our teammates to do so well.

2. Designer: make us look pretty. This is a part-time position. But I need someone to make everything they touch pretty. Job includes: re-designing powerpoints, word docs, stickers, tshirts, website. Whatever needs to look pretty, they can do it. This is not 24/7 – this is more like 10 hours per week. Please only apply if you do this professionally. I am not interested in beginner stage at this point.

If you want to apply, please message helpnasdaily@gmail.com with a clear title as to what position you’re applying for. Make sure to send work experiences. Unfortunately, emails just expressing interest in travel / Nas Daily will not qualify. You need to be a pro. I look forward to working with you!! If you know any friends, feel free to tag them as well!

That’s 1 minute, see you soon!

3.) SNAPCHAT JOURNALIST (FOR HASHTAG OUR STORIES)

 

Hashtag our stories is hiring
HIRING: highly creative journalist for our daily Snapchat show.

 

At Hashtag Our Stories (HOS) we’re exploring the world through people’s perspectives.

Can you turn user-generated content (UGC) into professional quality journalism? As a curation partner with Snapchat, we can search through billions of Snaps from around the world to create amazing stories. Using only UGC, what video stories would you tell this week?

Send five (5) story ideas to info@hashtagourstories.com or pitch in the comments.

Tips:
-We love stories which challenge a prejudice or highlight solutions.
-Use Snap Maps and Instagram Stories to find videos and voices
-Our target audience are Americans aged 17-19.
-Stories should respond to current themes and trends. Why now?
-Btw, this position requires you to work remotely.

Goodluck!

4.) Writing Mentors!

PenMen is a digital writing agency that is looking for freelance writers from all industries.

Who can apply:
– Any professional from any field, as long as you have a flair in writing. You could be an IT professional or fashion designer. It doesn’t matter, as long as you can write!

How to apply:
– Send two of your best writing samples to Aradhita at penmendesk@gmail.com.

What is the pay:
– $11/USD per hour

This job listing is by Aradhita Saraf. Feel free to drop her any questions at penmendesk@gmail.com.

5) Work at one of the best hostels in Israel

This job posting is by Dear Alyne. Send your resume to jobs@abrahamhostels.com

Abraham Hostel is my FAVOURITE hostel in all of Israel and it’s the BEST, we always stay there!!!

The team is great and friendly and I think you would love working there, so go check out their vacancies on Abraham Hostels site. #AlyneApproved

Right now, there are positions for cooks, general managers, reception staff, and more.

The post Dear Alyne’s job list (BOOK MARK THIS!) appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/job-list/feed/ 0
My life changed, and a big reason is Girls Gone Global – GGG (Part 3/3) https://www.clone.dearalyne.com/feminism-empowerment/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-part-3-3/ https://www.clone.dearalyne.com/feminism-empowerment/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-part-3-3/#respond Mon, 26 Nov 2018 15:28:01 +0000 https://clone.dearalyne.com/?p=1570 The post My life changed, and a big reason is Girls Gone Global – GGG (Part 3/3) appeared first on Dear Alyne.

]]>
This is the final post in a series of posts by Tamara, a Girls Gone Global member. Tamara had confided in the members of the group at one of her low points in life, and she received tons of support along the way, which helped her turn her life around.

Part 3: I’m finally on the right track of life, and it’s thanks to you girls

November 11th, 2018

Living in Singapore has been one of the happiest times of my life. I want to thank, yes, once again, all the GGG ladies for their incredible support. Especially my friend Kai, who I met through the group, who gave me the tools to start my life in Singapore as a waitress with a place to stay for about ten days.

I am happy.

At the end of my first trimester, I finished with all A’s in my courses! I have many close friends who care for me, we have a lot of fun going out, talking, or playing, as well as studying and supporting each other. I have an incredible paid internship on a topic that I care about with a friendly, smart, and understanding boss. I also met Alyne, Nas, and Agon, which made my year! I also met GGG’s Singaporean group, who are a bunch of strong and amazing women. And three days ago the Dean from my school contacted me to offer me to work for him as a part time student research assistant! How did this even happen!?

I am beyond grateful! My life has been turned around in less than a year from nothing to everything that I could have ever dreamt of! Even when this master’s degree ends, now I know what I have to do, and I have all of these people surrounding me that I can count on (and they on me). I will keep working hard, taking advantage of all opportunities that are presented to me.

Thank you Alyne, because Girls Gone Global has impacted my life in ways I could not have imagined.

To all ladies out there still struggling. Just keep trying. Do not feel afraid to ask for help. I promise it gets better.

Check out the first and second posts if you have not read them yet.

Join our Facebook group Girls Gone Global (for women only) to share your own story and meet many other awesome women!

The post My life changed, and a big reason is Girls Gone Global – GGG (Part 3/3) appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/feminism-empowerment/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-part-3-3/feed/ 0
My life changed, and a big reason is Girls Gone Global – GGG (2/3) https://www.clone.dearalyne.com/career-talent/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-2-3/ https://www.clone.dearalyne.com/career-talent/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-2-3/#respond Sun, 25 Nov 2018 06:20:04 +0000 https://clone.dearalyne.com/?p=1563 The post My life changed, and a big reason is Girls Gone Global – GGG (2/3) appeared first on Dear Alyne.

]]>
This is the second post in a series of posts by Tamara, a Girls Gone Global member. This story follows how Tamara’s life started changing ever since she joined Girls Gone Global and had a support group of women to keep her going.

Part 2: My turning point in life

June 5th, 2018

I wanted to let you know, following on my last post, that I GOT ACCEPTED TO THE MASTER’S DEGREE!

First of all, I want to thank every single woman who took the time to message me with advice, wished me nice thoughts, gave me strength, and empathised with my situation.

I was driving from a long day at the internship, almost home, when I heard my phone’s email notification sound. I glanced quickly and saw the university’s I applied to name. My heart raced as I carefully parked my mom’s car. I immediately ran into the living room yelling at the top of my lungs to my parents “The results are in!”

I opened the email, took a couple of minutes to open up, my heart beating fast and I read “We are pleased to inform you…” Tears flowed out of my eyes like rivers going down my cheeks while laughing uncontrollably like crazy. I hugged both of my parents and I called some of my loved ones to give them the great news. And now finally, after a year of being lost, insecure, unsure and disappointed with myself, finally, I feel at peace.

Everything fell into place. I had, once again, a path to follow. A passion for what I will be doing. I felt valuable again.

To be honest, I hate to admit that this was the turning point that made me believe in myself again, that helped me see I am valuable and that I have potential. I should have never forgotten this in the first place, no matter the circumstances. We are all valuable, and we should never let ourselves forget that. That is something that GGG group has helped me realize.

I just want to say thank you to all the amazing GGG girls. Your comments were absolutely important and helped me remember who I was.

The next step: Unfortunately, I did not get a scholarship. I will be applying for a loan, which is a little scary, but I believe it is worth it.

I will be studying International Political Economy in Nanyang’s Technological University’s Rajaratnam School of International Studies (RSIS) in Singapore. Despite this being so different from my undergraduate degree, I plan to put all my effort to excel and take advantage of this unparalleled opportunity. Singapore is also one of the only three city-states in the world with so much potential and influence, and I just cannot believe that I will be living there for at least a year! I need to be there in July, just one month from now so I need to be quick.

Now I am a step closer to fulfilling my dreams, and I love every single girl in Girls Gone Global and I am, again, forever grateful for your comments, the group, and your lives… From the bottom of my heart, you are all amazing and remember I am here as a friend to anyone who would like to talk, meet, ask, or anything else.

Check out the first post in this series if you haven’t already, and read the third part here!

Join our Facebook group Girls Gone Global (for women only) to share your own story and meet many other awesome women!

The post My life changed, and a big reason is Girls Gone Global – GGG (2/3) appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-2-3/feed/ 0
My life changed, and a big reason is Girls Gone Global – GGG (1/3) https://www.clone.dearalyne.com/career-talent/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-1-3/ https://www.clone.dearalyne.com/career-talent/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-1-3/#respond Fri, 23 Nov 2018 18:05:52 +0000 https://clone.dearalyne.com/?p=1556 The post My life changed, and a big reason is Girls Gone Global – GGG (1/3) appeared first on Dear Alyne.

]]>
This is the first post in a series of posts by Tamara, a Girls Gone Global member. Tamara confided in the members of the group at one of her low points in life, and she received tons of support along the way.

Part 1: Feeling lost without a career or direction in life

May 29th, 2018.

Hello everyone!

I am Tamara and I am 24 years old. I am very happy that Girls Gone Global group exists, and I will pour all my love into it. Thank you Alyne for creating this group!

I will just jump right into it. I graduated exactly a year ago and I have not been able to get a job despite over 30 interviews with really great companies. I know everyone goes through something like this, I don’t know why I am going through this. Especially because I have really tried hard. Even before graduating, I kept focusing on what my next steps would be, but I achieved nothing.

What frustrates me the most is that I might have studied the wrong major for me (business).  I know it is a useful skill to have and a great backup plan, and there are a lot of career options. But I feel so lost.

I didn’t know if I should at first, but after being encouraged by brave ladies in this group, I decided to spend all my savings to a last-minute trip to Southeast Asia last January.

I just wanted to leave everything behind for at least a short period of time, which resulted in almost two months of backpacking.

In a temple in Bangkok, I met someone my age working in the United Nations – that’s my dream job, and I was awestruck to have met someone working there. After some talking, I asked how he got in, and he told me about his master’s degree on International Studies in one of the most important universities in Asia, Nanyang Technological University (NTU). With his help, I applied there as well.

After waiting for 6 months they will let me know this May if I am accepted or not! I am incredibly passionate about this topic, International Relations, but I feel like I know nothing at all, so I have been reading and reading for now. I even finished an introduction textbook. It is one of the top programmes, so it is not easy to be accepted. Even if I get accepted, I might only be able to attend if I get one of the several scholarships I applied to…

Hopefully I will be able to enjoy this new path and find myself in it, but currently, it has been very hard. I studied in another city and now I came back to my parent’s home in a place where I barely know anyone. I do not go out. I barely talk to anyone. I just started a non-paid internship – for resume experience. I feel pressure from far away friends and from my relatives. The more time that passes the less hope I have that my life will change course. I do not really know what I am doing. If I do not get this master’s degree, I will just have to continue trying.

I have always said that I wanted my career to be first. That as a woman, I never wanted my life to depend on my parents or husband, if I happen to marry. But now, I literally have no career and I just feel so lost.  

I am currently living in Arizona, but I was fortunate enough to travel while growing up. I was born in Spain, moved to Chile, then moved to Mexico, and now I live here. I consider myself Mexican as my parents are. I love food, traveling, reading, learning, and video/photo editing.  

Check out the second post in the series here!

The post My life changed, and a big reason is Girls Gone Global – GGG (1/3) appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/my-life-changed-and-a-big-reason-is-girls-gone-global-ggg-1-3/feed/ 0
GGG – I achieved my dream of dancing professionally https://www.clone.dearalyne.com/career-talent/ggg-i-achieved-my-dream-of-dancing-professionally/ https://www.clone.dearalyne.com/career-talent/ggg-i-achieved-my-dream-of-dancing-professionally/#respond Fri, 02 Nov 2018 08:55:26 +0000 https://clone.dearalyne.com/?p=1410 The post GGG – I achieved my dream of dancing professionally appeared first on Dear Alyne.

]]>
Topic: Feminist Friday

I’ve never thought that at the age of 30 I would be able to dance passionately like this. When I was younger, I loved dancing so much, but, somehow I never capture myself becoming a professional dancer: insecurity, uncertainty and lots of other reasons. I think I wouldn’t be good enough for this. So life has turned me to be a digital marketer which I love too. Nevertheless, that passion for dancing stays the same in my heart.

At the beginning of 2018, I met a friend (Tanya) in The Hague, Netherlands where I live at this moment. As her dream is to open a dance studio, together we’ve gradually built up a small passionate dance community in the city. Our goal with this studio is to empower other women around us through the love for dancing. Looking at all the girls coming to our dance classes, I feel nothing but extremely happy. It’s incredible to see them getting more confident, sexier, and happier in the dance class.

I really believe “When women support each other, incredible things happen ❤

And it’s just like the purpose of our group Girls Gone Global. Happy Friday everyone!!!

The post GGG – I achieved my dream of dancing professionally appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/ggg-i-achieved-my-dream-of-dancing-professionally/feed/ 0
10 Business tips you should know https://www.clone.dearalyne.com/career-talent/business-tips-you-should-know/ https://www.clone.dearalyne.com/career-talent/business-tips-you-should-know/#respond Mon, 22 Oct 2018 06:59:18 +0000 https://clone.dearalyne.com/?p=1288 The post 10 Business tips you should know appeared first on Dear Alyne.

]]>
This post is by Kylie Chenn. She is amazing and has come a long way, so I asked her to share her best business tips with us.

Hi! My name is Kylie. (I am Alyne’s friend that you may recognize from The Pink Tax video.) I founded a travel company when I was 20 years old, still a university student, and had no money in the bank!

My company now takes 1000+ people on trips around the world each year, and has doubled in revenue each year for the past 3 years. CRRRRAAAZZZYY! I have learned A LOT about EVERYTHING to do and NOT to do in business and Alyne has asked me to share some of those learnings with you here! So here they are!

My Top 10 Business Tips:

1) Remember and understand WHY you started the business and that will keep you going in hard times!

2) Keep it simple & don’t wait until your product is perfect to start; Find a way to earn money while you build.

3) Count the costs & be aware where you are spending money (you can always find creative ways to spend less).

4) Set up a website or social page, learn how to write (or find people who write), and provide great content!

5) Go to events, speak up, & don’t be afraid to share what you are doing! My first customers came from personal conversations!

6) Focus on building your team & invest time in empowering people who can help your business grow.

7) Listen to your customers (or audience), the best business validation comes from making sales!

8) Trust your gut – and believe that you know best!

9) Build up a community around you! This could be a Facebook group (such as GGG), events, meet-ups, etc…

10) Don’t be afraid to share your personal story & create connections. We all like hearing about the challenges, successes, and learnings others have gone through!

Building a business, creating a community, and following your dream is incredibly difficult. However, there will always be people willing to help you along the way. These tips were things that friends, family, mentors, business partners, and even customers shared with me and have helped propel what I’m doing to the next level – and I hope that they can help you too!

See the original post and join the discussion on Girls Gone Global!

The post 10 Business tips you should know appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/career-talent/business-tips-you-should-know/feed/ 0