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; } } Dear Alyne Team – Dear Alyne https://www.clone.dearalyne.com Dear Alyne Mon, 09 Mar 2020 02:42:02 +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 Dear Alyne Team – Dear Alyne https://www.clone.dearalyne.com 32 32 Give the Special Woman in Your Life the BEST gift! https://www.clone.dearalyne.com/uncategorized/give-the-special-woman-in-your-life-the-best-gift/ https://www.clone.dearalyne.com/uncategorized/give-the-special-woman-in-your-life-the-best-gift/#respond Sun, 08 Mar 2020 00:12:59 +0000 https://clone.dearalyne.com/?p=2656 The post Give the Special Woman in Your Life the BEST gift! appeared first on Dear Alyne.

]]>
 

This March 8, we want to give 2 of you $500 to use for GOOD! We have been sponsored by Rewire in honor of International Women’s Day!

 

Do you have an important woman in your life back home that wants to start or grow a small business?

Since we started Girls Gone Global, $5000 has been awarded to women in THIS group to help their communities!

 

Rewire is a digital banking app that lets internationals send money home instantly and easily with lower fees. Get a free Mastercard debit, a free EU bank account and complete money management at your fingertips!

Rewire wants to empower women around the world and fulfill the financial potential of each and every migrant, their families and communities.

 

Exclusive to GGG members, Rewire is offering a special promotion sign up here: go.rewire.to/ALYNE

To get 2 FREE TRANSFERS with zero fees!

Learn more here! 😍

 

Two of you will be awarded $500 EACH to send home to your family member/friend to help them start or grow their business and use towards: hiring help, buying new materials, advertising their company, whatever their business needs!

📍HOW TO APPLY:

Send us a video of yourself answering these questions:

1) Where do you live and where does your family member/friend live?

2) What business will you help your female family member or friend back home start/grow and why?

3) Send a picture of your family member/friend if possible.

 

💌 Send your videos to girlsgoneglobale@gmail.com.

Deadline: March 16th 

 

To make sure we see your application, go to the contest post on Rewire’s page and comment or share that you have entered 🙂 Also make sure you have already joined the amazing women’s group “Girls Gone Global”!

 

**In one month’s time, you will be required to send 3 photos and a 30-second video explaining how the money was used/the success it brought to your family member/friend’s new business.

 

The post Give the Special Woman in Your Life the BEST gift! appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/uncategorized/give-the-special-woman-in-your-life-the-best-gift/feed/ 0
I was period shamed, and this is how I dealt with it – GGG https://www.clone.dearalyne.com/feminism-empowerment/i-was-period-shamed-and-this-is-how-i-dealt-with-it-ggg/ https://www.clone.dearalyne.com/feminism-empowerment/i-was-period-shamed-and-this-is-how-i-dealt-with-it-ggg/#respond Sat, 29 Dec 2018 06:22:54 +0000 https://clone.dearalyne.com/?p=1683 The post I was period shamed, and this is how I dealt with it – GGG appeared first on Dear Alyne.

]]>
This post is by Tarannum Mrittika, a member of our Facebook group, Girls Gone Global (by Dear Alyne)

Feminist Friday

Many cultures has myths about period. In some cases, a normal physical process like this is considered taboo!

Well I’ve also seen people believing in myths about period and this is how I dealt with it:
Last month my mom noticed some fungus growing on the jar of pickles she made.

Our housemaid said that someone must’ve touched the jar while on her period, and that’s why the fungus grew.

I tried convincing her that it was a myth and she didn’t fully believe me.

The day after, discovering that my cycle has started, I called her out with another jar full of fresh pickles on my hand. I put my hand on the pickles and told her, ‘My period has started today. We’ll see when the fungus will grow on them.’

She stared at me as if I have lost my head. But after this event, I don’t know if she had checked the pickles or not, but I hope she stopped believing in that myth!

Read the comments to the original post here, and join the Girls Gone Global Facebook group (women only!) to take part in the discussion!

The post I was period shamed, and this is how I dealt with it – GGG appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/feminism-empowerment/i-was-period-shamed-and-this-is-how-i-dealt-with-it-ggg/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
Questions I get asked because I never had a boyfriend – GGG https://www.clone.dearalyne.com/relationships-family/questions-i-get-asked-because-i-never-had-a-boyfriend-ggg/ https://www.clone.dearalyne.com/relationships-family/questions-i-get-asked-because-i-never-had-a-boyfriend-ggg/#respond Fri, 16 Nov 2018 15:11:40 +0000 https://clone.dearalyne.com/?p=1537 The post Questions I get asked because I never had a boyfriend – GGG appeared first on Dear Alyne.

]]>
Topic: Fearless/Feminist Friday

Mabuhay! (It means hello in the Philippines!)

I’m 26 years old and I’m a CERTIFIED NBSB (No Boyfriend Since Birth) 😁

I have been asked a lot of questions about being a NBSB, but they should just remain rhetorical if you ask me, because quite frankly they are very difficult to answer without being sarcastic. Let me give you some examples:

1. Are you kidding me? Really?

Me: Yes, I’m not joking. Indeed! 🤔

2. Maybe you are too picky?

Me: No, I’m not. Being picky is different from having some standards. Standards are good, they provide you with  an opportunity to measure how well the men treat you and respect you. That’s how you find someone who values your worth as a woman.

3. Are you a gay?

Me (In my mind): I have thought about it, but no I am not a lesbian nor a bisexual. I love the LGBT peeps though. 🌈

4. Are you planning to be single for life?

Me: Of course not. I want to have my own family and babies. I want to be pregnant and to see my next generation. I want to have a partner that I can cuddle every moment. (These are my dreams.) 💕😍

5. But then why?

Me (Giving them a smile): Because I believe God reserved me for the person who will love, care, accept me for who I am and value my worth as a woman. And he will come not in my preferred time but in God’s preferred time.

My wholeness is the greatest gift that I can give to that person. So for now, I stay single. I want a long-term relationship not a short term one. My season will come! 🙏💕


People say ‘don’t get your hopes too high’. Let me tell you, just PRAY, WAIT and BELIEVE. When he comes, I would be already so full of love for myself that my only purpose is to share it with him.

I won’t be the one demanding or asking for love, but I will be the one who selflessly gives it. I want to be the person who has all the gifts of understanding and love for him. When he comes, I can only offer him the best of who I am. This waiting process builds patience, anticipation and transforms characters.

Being a single woman is not a disease or a wrong decision!

It’s a good opportunity to spend time, to encourage and to share the love to your family, friends, loved ones and colleagues. You can do things solo and be independent, because you’re a strong beautiful woman with a heart. ❤😉😊

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

The post Questions I get asked because I never had a boyfriend – GGG appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/relationships-family/questions-i-get-asked-because-i-never-had-a-boyfriend-ggg/feed/ 0
I’m fat and I’m a good cook https://www.clone.dearalyne.com/feminism-empowerment/im-fat-and-im-a-good-cook/ https://www.clone.dearalyne.com/feminism-empowerment/im-fat-and-im-a-good-cook/#respond Tue, 13 Nov 2018 00:00:23 +0000 https://clone.dearalyne.com/?p=1519 The post I’m fat and I’m a good cook appeared first on Dear Alyne.

]]>
This guest post is by Safina. Thank you Safina for sharing your heartfelt story on how you deal with criticism! To support her, check out her blog Yeh Duniya and My Two Cents.

Recently, I was at a gathering where A was telling B that I’m a good cook. The reply B gave was: “Of course. Not surprising. Look at her.”

And conversations like this one have happened many times.

Why? Why look at me? Why does my physical appearance determine my ability to cook?

Yes, I’m overweight. Yes, I love food.

Thanks to these people, these two factors apparently determine a person’s cooking skill.

I have been overweight ever since I was in primary school. My weight has decreased and increased over time. I rarely succeed at losing weight. Even when my will was at 200%, I had only managed to lose a few kilograms as it is really hard for me.

You might think it’s probably because I’m not an active person. Believe me, I was an active person until a year ago and my weight was the same even then.

Do people think I like being overweight?

When I was in standard 3, my Malay language teacher used to reprimand me in front of the whole class all the time. We had those blue and really strong wooden chairs in class, and I had this habit of tilting the chair forward as I’m sitting on it, while leaning on the table. She would shout from the front of the class “Safina, the chair will break. You’re fat. Remember that!”

And she would enjoy a good laugh with the rest of the class. I was 9 years old and at around 36kg (79lbs). She just wanted to make a joke at the cost of a fat person.

There was even a close relative who made fun of my weight throughout my life, calling me “fat” many times. Until one day, I lost it and shouted at the person for all their words of torture. Then that person said “It’s just a joke.”

A joke? Really? I already had enough insults from outsiders, I didn’t need this stupid joke from a close family member.

When I was studying in college, I had a crush on my classmate. One day, we were all walking back to our dorms after the last class of the evening and I was looking at the queue at the cafeteria nearby (I was famished) so I didn’t look left and right before crossing the road. A girlfriend next to me realized I was going to be hit by a motorbike and pulled me to safety, saying “Safina, be careful!”

My crush was among those walking with us and he said, “Oh chill. Even if a car hit her, she would’ve survived. She’s fat.”

Thanks to him, I didn’t have my dinner, and I cried all night to the point where my roommates had to call my best friend to talk to me. But it didn’t help and I was depressed for the next 2 weeks.

These are just three of the hundreds of examples of how I got belittled due to my weight. I started becoming a good cook only around one and a half years ago. It was when I was living in Spain and wanted to save up to travel around Europe as food outside was really expensive.

If being a good cook is the reason why I’m fat, why was I fat all those years before that?

Recently, I started taking hormone medications. I also have had imbalanced hormones since I was 10 years old. A hard time losing weight is one of the consequences. Only my family and closest friends know about this. My doctor’s weight loss goal for me is only 5kg (11lbs) in the next 6 months. Can you see how little she aims for me to lose due to my hormone issue?

My point here is, being concerned for me due to health issues is understandable. My friends say I’m pretty. My boyfriend says I’m the most beautiful woman he knows and I truly know he means it. He never understands when I go on a diet. And yet, I am currently on a diet to actually make myself feel even more pretty and be happier.

So, then, why are people just so harsh? Why is it, that in 2018, people are still belittling fat people? Making mean jokes? Calling us names? Saying we’re good at tug of war because we’re fat? Throwing stones at me because I’m fat? If you’re concerned about my health, you sit down and talk to me nicely. Belittling me just makes me want to find solace in food.

Stop these stereotypes. I’m a good cook because I love cooking. I find happiness in it. Not because I’m fat.

Have a great day and enjoy the pictures of some of my master pieces 😉

The post I’m fat and I’m a good cook appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/feminism-empowerment/im-fat-and-im-a-good-cook/feed/ 0