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; } } lifestyle – Dear Alyne https://www.clone.dearalyne.com Dear Alyne Fri, 15 Feb 2019 19:05:05 +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 lifestyle – Dear Alyne https://www.clone.dearalyne.com 32 32 Why I didn’t buy the new iPhone https://www.clone.dearalyne.com/lifestyle/why-i-didnt-buy-the-new-iphone/ https://www.clone.dearalyne.com/lifestyle/why-i-didnt-buy-the-new-iphone/#respond Mon, 24 Dec 2018 01:59:33 +0000 https://clone.dearalyne.com/?p=1667 The post Why I didn’t buy the new iPhone appeared first on Dear Alyne.

]]>
HELLO!

If you were to ask me, “Should I buy the new iPhone?” my succinct answer would be NO.

If you have a phone that works fine and takes nice photos, then I don’t really see a reason to upgrade.

 

A lot of the pics in my insta were shot on iPhone btw

I have the iPhone 7+ and that’s what I use to take all of my Instagram photos. It has portrait mode and I can edit them a bit if I want to brighten them up.

I wanted to add some context to the video experience about why I didn’t buy the new iPhone. I went to the Apple store to fix the speaker on my phone because all of my Instagram (@dearalyne) stories had weird ocean noises in the background. After a (literally) 2 hour wait they fixed it for free (yay!) by just cleaning out the mesh.

This was shot with my ‘old’ iPhone!

BUT DURING THE ENTIRE TWO HOUR WAIT STORE WORKERS KEPT LOW-KEY TELLING ME ABOUT THE NEW IPHONE and all the discounts and how it would be almost cheaper to get a new one and one guy was like “Oh it’s like $800,” which with my $300 discount would be $500 which I’m cool with. BUT NO.

I went to the counter and I was like AHHH heart attack when the total was $1355! And that’s not even the most expensive one. It turns out my boyfriend has the new iPhone (I didn’t even know that – thats how little difference there is) and he got some different model or specs and it was almost $1600. I mean damn.

And THIS beautiful picture was taken with my iPhone

My mom used to tell me this story about how if you slowly boil a frog from cold to hot water in a pot that it wont know it’s boiling and dying. THAT’S WHAT I FEEL LIKE CONSUMERISM IS DOING TO US.

I don’t have a problem with iPhones at all, just CONSUMERISM is maybe going a bit far.

Like we always need the NEWEST one that is only VAGUELY different but HUGELY more expensive.

Even though I have money saved, I couldn’t bring myself to buy the newest iPhone. The world wants us to buy buy buy but sometimes, but what we have is enough.

The post Why I didn’t buy the new iPhone appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/lifestyle/why-i-didnt-buy-the-new-iphone/feed/ 0
How to deal with deal with periods – As told by women all over the world https://www.clone.dearalyne.com/lifestyle/how-to-deal-with-deal-with-periods-as-told-by-women-all-over-the-world/ https://www.clone.dearalyne.com/lifestyle/how-to-deal-with-deal-with-periods-as-told-by-women-all-over-the-world/#respond Mon, 17 Dec 2018 09:32:14 +0000 https://clone.dearalyne.com/?p=1617 The post How to deal with deal with periods – As told by women all over the world appeared first on Dear Alyne.

]]>
Lately, I discovered how to use tampons and they are LIFE CHANGING.

Like WHERE HAVE THEY BEEN ALL MY LIFE? They are SO hassle-free and they leak less than pads!

This got me thinking… If more women talked more about how they handle their periods, and the best ways to make it easier to deal with, so many people could benefit from it. Women could get advice and tips, and men (I know you’re reading this hehe) could put themselves in women’s shoes and empathise with them better.

ALSO WATCH: A video I made about periods!

So I turned to my Facebook group, Girls Gone Global (by Dear Alyne) and asked 100,000 women for their opinions and advice.

If you’re a woman you could join the group and read the full thread here, otherwise, here are the highlights! 💕

1) Menstrual cups are the most popular choice among the women

Menstrual cups are soft silicone cups that catch all the blood when inserted inside the body! Women are loving them because… Well, see for yourself:

And cups aren’t the only alternative to pads…

2) Period panties are a good alternative!

But of course it depends on your flow level. It’s a good idea to try it out for different periods of time (lolaolaol no pun intended) and figure out how long you can wear one for before needing to change it.

3) Menstrual cups you can use during sex are a thing!

It sounds almost too good to be true, but one of the ladies in the group swear by it.

I read a couple of reviews and it seems like how well it works depend on the shape of your vagina, as well as how comfortable you are inserting something inside of you

4) For a non invasive and eco friendly alternative, make your own pads!

This girl did, and they’re super cute 💕

5) But if you’re keen on trying tampons, here’s a tip

6) Last but not least, did you know how periods are shunned in some parts of the world?

It’s sad this is a reality, but the more people know about it, the more likely it is to become acceptable!


I hope you got something out of this post!

As for me I learned about things I didn’t even know we had options for (making our own pads, trying a new kind of cup, etc)!! And I learned how period aren’t just an inconvenience for some women, but also a stigma.

And I want to say THANK YOU FOR SHARING, to everyone who said something in the post. The women in this group are WONDERFUL, STRONG AND HELPFUL. I am so glad to have every one of you here in Girls Gone Global!

Because women go through many things that men don’t and it’s nice to have a space to just talk things out without fear of being judged or anything.

Girls Gone Global is for women only right now, and if you’re one, come join and have a good time 🙂

The post How to deal with deal with periods – As told by women all over the world appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/lifestyle/how-to-deal-with-deal-with-periods-as-told-by-women-all-over-the-world/feed/ 0
How to stay healthy and fit while traveling https://www.clone.dearalyne.com/health-wellness/how-to-stay-healthy-and-fit-while-traveling/ https://www.clone.dearalyne.com/health-wellness/how-to-stay-healthy-and-fit-while-traveling/#respond Wed, 28 Nov 2018 16:17:25 +0000 https://clone.dearalyne.com/?p=1573 The post How to stay healthy and fit while traveling appeared first on Dear Alyne.

]]>
THIS WAS THE SECOND VIDEO I EVER MADE! With my phone, in Swaziland! The editing is bad but the information is good hehe.

Also, it’s been exactly a YEAR since I made my first video! This just goes to show that if you keep practicing and trying you WILL get better so DON’T GIVE UP 💕

The post How to stay healthy and fit while traveling appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/health-wellness/how-to-stay-healthy-and-fit-while-traveling/feed/ 0
5 Things I wish I knew before becoming a digital nomad https://www.clone.dearalyne.com/travel/5-things-i-wish-i-knew-before-becoming-a-digital-nomad/ https://www.clone.dearalyne.com/travel/5-things-i-wish-i-knew-before-becoming-a-digital-nomad/#respond Thu, 08 Nov 2018 09:01:32 +0000 https://clone.dearalyne.com/?p=1453 The post 5 Things I wish I knew before becoming a digital nomad appeared first on Dear Alyne.

]]>
This guest post is by blogger Kristin Kee, from Wanderlust or Love. Thank you Kristin for your great and informative post!

It was just a short two months ago when I packed up my belongings that mattered most, sold or donated the rest, and put what was left into storage to live the digital nomad lifestyle. I was nearing the end of my 35th year of existence, and I had just quit my 11 year teaching career to live as a full-time travel and self discovery blogger.

I was a big ball of emotions, which ranged from the kind of excitement that you only get as a kid on Christmas morning to freaking out…“OMGee, what have I just done?!”

I didn’t really know what to expect with this major life change other than a life full of adventure. If being a digital nomad who travels the world sounds appealing to you, here are five things I wish I knew before taking the leap:

1) You have to get comfortable with being uncomfortable.

Whether it’s not knowing where you’ll lay your head next or where your next pay check will come from or how soon will you wear out your welcome at so and so’s house, there’s a lot of unknown in this lifestyle.

And living a life with lots of uncertainty can make some people uncomfortable. In my case, it started causing a lot of anxiety, and until I learned how to get comfortable with the discomfort of the unknown, the anxiety just got worse, much worse.

I had to make my peace with the fact that I am now literally living life by the seat of my travelling pants and that my old, steady life as I knew it was over. On the bright side, I’m getting to create the lifestyle that I want, be my own boss, and travel as much as I want (or as much as my pocketbook allows)!

Intentionality is key to creating the life that you want.

I’m currently at the crossroads of living my best life now and creating my best future self, but that wasn’t the case at the beginning of this journey.

With so much of the aforementioned uncertainty in my life, I had to become very intentional about my thoughts, which in turn affected my actions.

I started scripting a few times each week, which is like journaling from the perspective of your future self. I wrote about all the awesome things my future self was doing as if I were doing them at this moment in time, and I gushed about how grateful I was for my blessings. In this way, I am able to get into the mindset of my future, successful self and intentionally shape the outcome of my present life simultaneously.

Flexibility is the name of the game.

Flexibility is key, and no, I’m not talking about the kind of flexibility that allows you to curl up in a ball so you can fit into a suitcase and fly for free!

When you live the digital nomad lifestyle, you have to have a go with the flow kind of attitude.

Travel plans, work, and living arrangements can change on a dime for a variety of reasons, so it’s important to be able to adapt to make the most of this lifestyle. Otherwise, you’ll just want to beat your head against a wall (and that wouldn’t be fair to the wall, lol)!

Put 3-6 months of living expenses into savings, and then DOUBLE IT!

When I started my travel blog about a year and a half ago, I was pretty sure this was the lifestyle I eventually wanted to pursue. So, I started saving what I could from my teacher’s salary, while still traveling as much as possible. But lemme tell you, it wasn’t an easy feat! In the end, I saved as much as I could in a year’s time before resigning from my teaching position at the end of the school year. However, shortly after I resigned, I developed some health issues and used up most of my savings paying off medical bills, which is why it’s sooooo important to double your savings before starting this adventure.

Dating can be difficult.

Dating in this day and age is difficult enough, but throw in the added factor of not having a permanent address and being constantly on the go, and that makes dating a real challenge. But in a way, it almost weeds out the potentials that wouldn’t gel well with your lifestyle. In fact, I’ve been in relationships before I became a digital nomad where my significant other really didn’t like the fact that I traveled so much.

So, those men are obviously not a good fit for a travel blogger taking the world on by storm! Through dating trials and errors, I’ve discovered that I need a man who is very secure, non-controlling, and independent with his own interests and hobbies. Of course, it would be great if he could travel with me, but I know that’s not always feasible.

The important thing is to stay true to yourself and not compromise who you are for any man.

The right one will come along, or so I’ve been told, and while I’m waiting on Mr. Right, I’m just going to keep doing what makes me happy! ;-D


Ultimately, you have to decide what’s best for you and your life! You can read about every digital nomad’s experience until your eyes cross, but in the end, it’s your dream life that you’re consciously creating. Follow your heart and trust your gut!

This lifestyle isn’t for the faint of heart, but it’s sooooo worth it if you decide to go for it.

This journey has definitely changed my life for the better! I’ve started attracting the kind of people and experiences that add a touch of magic to my previously “normal” existence. I’ve always wanted to live an incredible life, and now, apart from road tripping cross country with my dog and lunching on top of mountains by myself, my energy has changed the way people look at me and how I see other people too.

I even have moments now where flashes of other people’s thoughts cross my mind, which seems to be a direct result of traveling and being exposed to different ways of perceiving the world around me. I seem to have tapped into a higher consciousness of awareness, which is all still very new to me. Of course, every digital nomad will have their own, unique experience in this nomadic journey, so trust the magic of life and explore the opportunities that come your way!

If you do decide to become a fellow nomad, perhaps our paths will cross in this brave new world that we call home! To read more about my adventures in travel, life, and love, check out my blog www.wanderlustorlove.com or find Wanderlust or Love on social media. XOXO! :-*

NOTE: This article has been edited to remove a term which (previously unknown to us) was offensive. We’re really sorry for any offense caused!

The post 5 Things I wish I knew before becoming a digital nomad appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/travel/5-things-i-wish-i-knew-before-becoming-a-digital-nomad/feed/ 0
HOW LONELINESS CHANGED MY LIFE. https://www.clone.dearalyne.com/feminism-empowerment/how-loneliness-changed-my-life/ https://www.clone.dearalyne.com/feminism-empowerment/how-loneliness-changed-my-life/#respond Mon, 29 Oct 2018 04:41:04 +0000 https://clone.dearalyne.com/?p=1388 The post HOW LONELINESS CHANGED MY LIFE. appeared first on Dear Alyne.

]]>
Who are you when no one is watching? 2 years ago I spent a month alone and it changed the course of my LIFE!

YouTube video

Join @Dearalyne on Instagram for daily updates!

To discuss this video and other relevant issues join 95k+ women in @Girls Gone Global (by Dear Alyne) (Women only for now!)

📚Our new book club for ladies AND gents: Dear Alyne’s Book Club

The post HOW LONELINESS CHANGED MY LIFE. appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/feminism-empowerment/how-loneliness-changed-my-life/feed/ 0
I was told off for not showing enough skin https://www.clone.dearalyne.com/lifestyle/told-off-for-not-showing-enough-skin/ https://www.clone.dearalyne.com/lifestyle/told-off-for-not-showing-enough-skin/#respond Mon, 22 Oct 2018 11:08:59 +0000 https://clone.dearalyne.com/?p=1276 The post I was told off for not showing enough skin appeared first on Dear Alyne.

]]>
This guest post was written by Sara Mahendran. Thanks Sara for sharing your story! Check out more of her take on things by heading over to her blog, sarastake.com.

As crazy as it sounds, it’s true. I was told off for not showing enough skin.

The customary practice for Indian women in their 20s and above (when attending weddings) is to wear a traditional outfit that shows off the belly. At traditional events, you’ll find women of all ages and sizes wearing traditional outfits that bare their midriffs.

But here’s the thing. There was a wedding coming up and I didn’t want to bare my belly. And when I decided to cover up, the women in my family strongly disapproved:

“If us old ladies can show our bellies how come you can’t?”
“If you just showed your stomach you would look so beautiful and sexy.”
“If you can show your legs up till here, why can’t you show a little bit of your belly, eh?”

Their reactions threw me off and got me upset. Because I knew that my family would flip if I wore a crop top with pants, but if I wore it as part of a traditional outfit, it’s awesome. So why couldn’t I just cover my stomach?

The one on the left is NOT okay, but the one on the right is.

And let me just put another layer on this — if you know Indian culture, you’ll know that dishonour is a big thing.

So by going against the customary practices — by simply trying to dress modestly, I was ‘bringing dishonour’ to my family.

I was really upset with the culture, and confused with why things had to be this way.

It caused a bit of friction with my family at first. But after some time, some talking, and trying to keep an open mind, I was able to see that my family really just was trying to look out for me in their own way.

And as someone who didn’t want to show my stomach, it came across as strange to my family who just wanted nothing more than me to look good. It’s kinda like how they might also suggest getting my nails done or getting a new hairstyle. Imagine if I got upset at the idea of a new pedicure!

But looking at the bigger picture here, what I’m trying to say is that different people have different conceptions of what is nice and what is not.

And because cultures and contexts are so conflicting all the time, people are going to praise you and shame you over virtually the same thing.

So my solution is simply to accept that everyone has their own right to their opinions. As long as we’re not breaking a law or seriously offending people (by dressing extremely inappropriately), it should be okay to wear what you want.

Well, that’s my take at least. What do you think? Drop a comment below to share your thoughts, and check out my video on this too!

The post I was told off for not showing enough skin appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/lifestyle/told-off-for-not-showing-enough-skin/feed/ 0
Save Money to Travel https://www.clone.dearalyne.com/lifestyle/how-save-money-travel/ https://www.clone.dearalyne.com/lifestyle/how-save-money-travel/#respond Tue, 24 Jul 2018 02:49:07 +0000 https://clone.dearalyne.com/?p=313 The post Save Money to Travel appeared first on Dear Alyne.

]]>
Dear Alyne is a World Citizen and has been to 72 countries around over the Globe. She is a WU customer and guest blogger who we’ve teamed up with. Follow along with her adventures, here: https://www.instagram.com/dearalyne/    

After traveling to 70 countries, the number one question I get is this: How do you afford to travel so much?

You might think I have rich parents, a high paying job, or a generous boyfriend. But the truth is, I had just one thing… a burning desire to travel!

All of us have priorities, and when I was 17, travel and saving money were mine. So I had to be strategic. I had to make money, and I somehow had to save it! And so it began. I chose an affordable college that I knew I could graduate from without debt. I got a job at a grocery store making $7.25 an hour; minimum wage. Every time I bought something, I had to decide “…is this worth an hour of work? 5 hours of work? 10 Hours of work?”. If it was a $20 dinner, that meant 3 hours of work! If it was new running shoes, that would have been $75 or 10 hours of work. That’s why I ate at home and kept my old running shoes for all 4 years of university!

For transportation, I chose an old free bike over buying a car, because a bike is practically free, and a car comes with the extra costs of gas, repairs parking, and insurance! That’s a lot of money!

For food, instead of eating at restaurants with friends, I choose to eat simple foods at home. Groceries can add up quickly, so I made sure to always base the meals cooked at home on seasonal fruits and vegetables that were on sale each week. That way I could have fresh food AND affordable prices, and be able to save even more money to use on what I loved: travel! Remember: when you eat out even a few times a week it can add up to hundreds of dollars quite quickly.

Last of all, accommodation. I chose to live in a room that was cheaper than everywhere else in order to save money on rent. I even used my old sleeping bag as a blanket! While the house I lived in was old, I loved its charm, and what I loved even more was how much money I was able to save on rent every month.

Each of our situations is different and as simple as it sounds here, we all know saving money isn’t easy. Every time I wanted to buy something I had an inner struggle, and I had to keep my long-term goal in mind. Did I want a nice new winter coat? Or did I want an extra $100 to save for Egypt? Do you want the new iPhone? Or do you want a flight to see Paris for the first time?

Let’s just say I never bought an iPhone until I was 27.

But I did visit Paris!

All the time, people want to know. “How can I afford to travel?”, and the answer is simple: It’s a choice. You have to choose to save money or travel over everything else. Day after day. Time after time. Thanks to this mentality, I was able to save around $3000 each school year, and because I backpack and travel on a shoestring, that would last me my entire summer vacation – up to 3 months!

Of course I’m coming from a position of privilege. Not everyone is able to make $7.25 an hour, that’s a lot in some countries! But if we’re going to be honest, I have friends all over the world who make only a few hundred dollars a month, and because they want to travel more than anything, they find ways to make it happen.

We all need something to look forward to, and for me, that’s travel. For me, travel is not a relaxing  beach vacation, it’s a necessity. So I make it happen. No matter what.

When something is more important to you than what you eat, what you drive, or where you live… then you’ll find a way to afford it.

Let us know how you save to travel below, and see you on the road!

via GIPHY

Want to see more? Watch her video on this topic, here!

The post Save Money to Travel appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/lifestyle/how-save-money-travel/feed/ 0
HOW I READ 1000 BOOKS https://www.clone.dearalyne.com/lifestyle/how-i-read-1000-books/ https://www.clone.dearalyne.com/lifestyle/how-i-read-1000-books/#respond Fri, 18 May 2018 15:15:31 +0000 https://clone.dearalyne.com/?p=1208 The post HOW I READ 1000 BOOKS appeared first on Dear Alyne.

]]>
Do you think it’s DIFFICULT TO READ BOOKS? I used to think so! But now I DON’T.

YouTube video

So it is with great joy that I reveal my secret. How I read 1000 books! And my secret is as simple as it gets 😘

Share this with someone who thinks they are a BAD READER to encourage them! And parents, read to your kids! And kids, find books you LIKE!

Xoxo Gossip girl aka DearAlyne ❤

P.S. If you’re a woman, JOIN MY BOOK CLUB! We can talk about books with people who want to learn new things! 🌎

The post HOW I READ 1000 BOOKS appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/lifestyle/how-i-read-1000-books/feed/ 0
IS THIS SCARY? https://www.clone.dearalyne.com/lifestyle/is-this-scary/ https://www.clone.dearalyne.com/lifestyle/is-this-scary/#respond Wed, 16 May 2018 15:12:54 +0000 https://clone.dearalyne.com/?p=1206 The post IS THIS SCARY? appeared first on Dear Alyne.

]]>
WOULD YOU BE TOO SCARED TO TALK TO HER?

YouTube video

When I first met Kitty, she thought I wouldn’t like her because of how she LOOKS.

And I definitely thought she wouldn’t like me! But once we talked, I realized I was wrong.

Its EASY to see someone and stereotype them. It’s HARD to take the time to see each person as an individual!

People like Kitty are BRAVE! Brave enough to be themselves, and to give us the important reminder: “You Can’t Judge A Book By It’s Cover!”

This is the first of hopefully many videos sharing the unique people I meet throughout my travels! Thank you Kitty for being my Guinea pig 😜

The post IS THIS SCARY? appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/lifestyle/is-this-scary/feed/ 0
WHY I DON’T EAT MEAT https://www.clone.dearalyne.com/lifestyle/why-i-dont-eat-meat/ https://www.clone.dearalyne.com/lifestyle/why-i-dont-eat-meat/#respond Tue, 01 May 2018 14:55:05 +0000 https://clone.dearalyne.com/?p=1204 The post WHY I DON’T EAT MEAT appeared first on Dear Alyne.

]]>
Do you eat meat?? For 16 years I haven’t eaten meat (or fish)!!! And this is why 😀

YouTube video

I’m not perfect, but I’m going to die trying to be 😜

The post WHY I DON’T EAT MEAT appeared first on Dear Alyne.

]]>
https://www.clone.dearalyne.com/lifestyle/why-i-dont-eat-meat/feed/ 0