native Routing in React Native with Jake Murzy By reactjsnews.com Published On :: Wed, 28 Sep 2016 17:00:00 +0000 Jake Murzy has been hard at work creating a new navigational library for React Native over the last couple of months. While React JS has the benefit of the highly-regarded React Router, such a comprehensive routing solution doesn’t exist yet in the React Native community. In fact, React Native’s routing landscape has been in constant upheaval for the last year. The library itself has official three ‘navigators’ for handling decision making on which components to show the user, including ‘NavigatorIOS’, ‘Navigator’, and - more recently - ‘NavigatorExperimental’. The open source community likewise has the packages ‘React Native Router Flux’, ‘React Native Router Native’, and ‘React Native Redux Router’, which of which are in various states of completion, or, more commonly, disrepair. Jake Murzy has been hard at work creating a new navigational library for React Native over the last couple of months. While React JS has the benefit of the highly-regarded React Router, such a comprehensive routing solution doesn’t exist yet in the React Native community. In fact, React Native’s routing landscape has been in constant upheaval for the last year. The library itself has official three ‘navigators’ for handling decision making on which components to show the user, including ‘NavigatorIOS’, ‘Navigator’, and - more recently - ‘NavigatorExperimental’. The open source community likewise has the packages ‘React Native Router Flux’, ‘React Native Router Native’, and ‘React Native Redux Router’, which of which are in various states of completion, or, more commonly, disrepair. React Router Native appears to focus on matching the API of the immensely popular React Router package, even going as far as introducing the concept of a URL into React Native, which bucks the notion that only web applications need or deserve a URL. Today Jake is going to share some of his thoughts about his new library. Q: Hi Jake! The React Native library contains several navigation solutions and the surrounding ecosystem has multiple routing libraries. What made you decide to make your own? Hey! Thanks for reaching out. I’ve been eagerly watching what’s happening with navigation on React Native for a while. Until very recently, the whole Navigation scene in React Native was a mess. Navigator was being deprecated in favor of NavigationExperimental and NavigationExperimental wasn’t ready for prime time. My team was just starting a new project so I tried quite a few of the available solutions. Having successfully used React Router on the web, we were looking for a similar solution. Unfortunately, React Router did not support React Native, and other solutions we found were either very unstable, had a hard time keeping up with upstream changes on each release or the quality of code was quite poor. NavigationExperimental did most of what we wanted but it was a bit too low level so often times we found ourselves writing navigation related code and you can imagine how this gets tedious fast. The low level nature of NavigationExperimental is really by design to allow abstractions to be built up in higher layers. So to finally answer your question, the project came directly out of my frustration trying to make navigation work on React Native as good as React Router did on the web. Q: What is the strength of your routing system? Is there any type of app that would be a perfect fit with React Router Native? Conversely, is there any type of app that wouldn’t be a good fit with the library? The use cases for React Router Native is pretty much the same as NavigationExperimental—which is the only supported navigation library by the React Native team. React Router Native is a very thin layer on top of NavigationExperimental that offers React Router’s mental model in a native app. Under the hood, it uses React Router for routing and NavigationExperimental for rendering user components. This is a very powerful combination that makes URLs possible on mobile. Most apps do not have deep-linking capabilities because implementing it for each screen in your app is a challenging task. Even within apps, users are often forced to take screenshots to share information. And for many, it’s vital that their apps support deep-linking. For example, Yelp goes as far to show a share prompt when users take screenshots of business listings. React Router Native enables developers to implement deep-linking in their apps without putting forth much effort. This can pave the way for a more connected app ecosystem. That being said, we’re still in the early days of React Native figuring out the right abstractions. Navigation on mobile is a challenging task, and having different flavors is only healthier as the community weighs the pros and cons of each approach rather than second guessing best-practices. So I’m hoping to get the community involved to shape the direction of the project. Q: Is React Router Native designed to be used with any of the official Navigation components written by the React Native team? Absolutely. One of the primary goals of the project is that we follow React’s “learn once, write anywhere” principle. So you can use the community maintained components, interpolators and pan responders from React Native, and everything is highly customizable if you need instruct NavigationExperimental to do fancy transition animations, etc. Q: The React Router team has somewhat famously rewritten their API several times in the last two years, each time introducing several breaking changes. Do you hope to keep your library at parity with React Router, breaking changes and all? Case in point, the V4 release of React Router will introduce an all-new API. React Router v4 is a complete rewrite. There was a lot of head-scratching on Twitter over the entire new set of breaking changes. Many people thought v4 should at best have been released under a different name. I’m not sure if I agree with that sentiment though, I understand where it is coming from. React Router v4 is a preview release, and in my opinion, it’s really hard to argue against replacing a foreign API with simple React components. I do hope to keep the library at parity with React Router, and to be honest, v4’s new everything-is-a-component approach makes the integration even easier. So over the next few weeks I’ll be working on v4 support. Q: If you were new to React Native, which routing solution would you use? Why? This is a hard one to answer. Eric Vicenti has done a great job on NavigationExperimental and most of the issues have been sorted out by the community over the last few months. So if you’re familiar with Redux concepts and comfortable writing your own reducers to manage navigation state, NavigationExperimental is a great choice. One that I’m surprised you didn’t mention that deserves more attention is ExNavigation—another fairly new addition to the brewery. It also uses NavigationExperimental and is maintained by Adam Miskiewicz, Brent Vatne and other awesome members of the Exponent community. It feels a bit tied to the Exponent platform, but runs perfectly fine on React Native and is open source. So you’ve got that. Finally, If you’re just getting started with React Native and all you need is to be able to click a button and have it transition to a different scene but you don’t want it to get in your way when you need to reach in and apply complex navigational patterns, I strongly recommend you take React Router Native for a spin. Full Article
native Native's Exponent with Charlie Cheever By reactjsnews.com Published On :: Tue, 22 Nov 2016 17:00:00 +0000 React Native continues on a development spree in late 2016. With an ambitious two-week release cycle, the framework makes rapid progress towards feature and performance parity with its native Android and iOS equivalents. At the same time, these quick release periods frequently introduce breaking changes, difficulty with setup, and challenges with basic configuration. Enter Exponent, a tool that promises easier setup, development, and deployment of React Native applications. Rather than being a replacement for React Native, as it is sometimes confused, Exponent augments React Native by dramatically simplifying the development and deployment processes. Whereas basic setup with an Android environment to develop with React Native can take over an hour by hand, even for experienced engineers, Exponent shortens the time to start to “Hello World” to a handful of minutes. React Native continues on a development spree in late 2016. With an ambitious two-week release cycle, the framework makes rapid progress towards feature and performance parity with its native Android and iOS equivalents. At the same time, these quick release periods frequently introduce breaking changes, difficulty with setup, and challenges with basic configuration. Enter Exponent, a tool that promises easier setup, development, and deployment of React Native applications. Rather than being a replacement for React Native, as it is sometimes confused, Exponent augments React Native by dramatically simplifying the development and deployment processes. Whereas basic setup with an Android environment to develop with React Native can take over an hour by hand, even for experienced engineers, Exponent shortens the time to start to “Hello World” to a handful of minutes. Exponent’s prime feature is revealed as it’s namesake IDE. The Exponent IDE is development platform for not only developing apps to test in their respective environment simulators, but also simplifies testing them on real devices. One of the cofounders of Exponent, Charlie Cheever, agreed to answer a few questions about Exponent and its purpose in the community. Hi, Charlie. Congrats on the release of Exponent! One of the toughest aspects of Exponent is understanding what its purpose is. What is the primary goal of Exponent? Thanks :) Before I worked on mobile software, I spent about 15 years making websites. When I started working on the Quora iPhone app and Android app, it felt like time traveling back to 1993. So many things to worry about that have nothing to do with the product you want to build. One thing we’re trying to do with Exponent is making it as easy to develop native mobile apps as it is to make websites, or even easier! I think about how I learned to build software as a kid–making games on my TI-85 and making Hypercard stacks–and I want to make it so that the middle school kids of today can make cool stuff for themselves and their friends. Basic environment setup of the iOS and Android simulators for developing React Native apps is commonly cited as a headache by new developers. What does Exponent do to alleviate this pain? The biggest thing that Exponent does is take care of everything related to native code for you. So you don’t need to know Swift/Obj-C/Java or even have Xcode or Android Studio to be able to write React Native apps. You write just JavaScript and Exponent has everything else already setup for you. Since you don’t write any native code with Exponent, just JavaScript, Exponent has a lot of the most popular native modules built in. Native maps, push notifications, Facebook and Google login, camera and camera roll access, contacts, TouchID, and a native video player are all included among other things. We’re always adding more of these as well. We just added full OpenGL support last week and did a game jam and made some mini games with it and are adding sound soon. We sometimes talk about Exponent as being like Rails for React Native. You could write a website in Ruby on your own. but Rails sets up a bunch of sensible things right off that bat that work together in a coherent way and we kind of do the same thing for React Native. Exponent includes instant app updating as a default, so you can deploy new code and assets with one command in seconds, even faster than most websites can be deployed. Even after getting set up with the Android and iOS simulators, testing a React Native app on a real phone can still be a challenge. How does Exponent make it easier to share apps in progress with would-be users? You can actually open any Exponent project that you’re working on in our development app right away. When you develop with Exponent, you get a URL for your project, and you can open that URL on any phone with the Exponent developer app which you can download from the iOS App Store or Google Play Store. You don’t need to jack your phone into your computer–just open the URL. Another really cool thing about this is that, if you’re working with someone else, you can just send them the URL and they can open it on their phone as well, even if they are halfway around the world. We’ve done a bunch of work to make this pretty nice, like having console.log work even if the phone running your code isn’t plugged into your computer. And you can, of course, open your project on the iOS Simulator or an Android Emulator as well if you prefer. I know you mentioned a lot of people have trouble getting React Native setup on Android especially. With Exponent, every project works on both iOS and Android from the start and you never have to deal with Android Studio, so the process of getting going is much easier. What type, or genre, of application would be a good fit with React Native and Exponent? I would actually use React Native for almost any mobile app at this point. Doing development the traditional way (writing Swift/Java/Obj-C code) is just too hard to iterate on when you consider the slowness of the code-compile-copy-run loop and the fact that you have to write your app twice (and then keep it in sync!). The other thing that is an absolutely huge deal here but is sometimes overlooked is the layout engine. It’s much easier to build and change a layout in React Native’s Flexbox than any of the UI libraries that I’ve seen for Java/Swift/Obj-C. And if you need to do something really intense, like Snapchat live video filters, you can just write your own code as a native module and write the rest of your app in JS. I would use Exponent for anything I could because it just saves a lot of time and headaches since you don’t need to deal with Android Studio or Xcode. Some people don’t know that you can turn an Exponent project into an app store app for iOS or for Android with just one command. In general, Exponent will work for you in pretty much every case where just having a mobile website is one of the things that you’re considering. The features are pretty equivalent except that Exponent apps feel like native apps and mobile apps still feel like mobile web apps. The main reason not to use Exponent is if you have some custom native code that you need that isn’t included with Exponent. The most common reasons that people can’t use Exponent are if they need use Bluetooth or HealthKit or something else low level that isn’t built in to Exponent; or if they need to integrate into an existing project (though we are working right now on a solution that will let you do this). The exception to all this is games. If you are making a mobile game, Unity is probably the best choice for you. But we did add OpenGL support to Exponent recently and had a game jam and I was surprised at how good some of the entries were, so I think that might change. TL;DR: For apps that aren’t games, always use React Native (if you need to do something super custom, just do it as a native module). If you can, use Exponent (you can most of the time but check our docs to make sure we’re not missing anything you need). One aspect of React Native that seems to be undergoing constant flux is its solution for navigation. Between the built in Navigators and open source solutions, do you have any thoughts on an ideal solution for navigation? Short version: I think you should use Ex-Navigation that Adam Miskiewicz (skevy) and Brent Vatne on our team wrote. Skevy in particular has been thinking about navigation in mobile apps and React Native for a long time. Using Ex-Navigation is definitely a better idea than Navigator or NavigatorIOS. To make things confusing, there is also NavigatorExperimental (yes, that’s different from Ex-Navigation) and ExNavigator (which was made by James Ide and Ex-Navigation is based on). The good news is that everyone working on these problems got together and decided to merge them all together. I don’t know how long that is going to take but it will probably be released sometime in the next few months under the name React Navigation, and that should unify everyone’s efforts! There is also this other school of thought where some people like to use the platform-specific native code for navigation which is the approach that the Wix Navigator uses. I have a strong personal view that its preferable to write UI components like this in JS because I actually think you want your app to be the same across iOS and Android (they are both just black rectangles with touch screens!) and JS tends to make your code more composable and customizable. Use Ex-Navigation and keep an eye out for React Navigation! Use JS instead of native for this UI code! Given the increasingly fast development and deployment times, handling API setup for dealing with data is becoming a large obstacle to React Native apps. Do you have any thoughts about the use of Backend-As-A-Service solutions like Firebase compared to rolling your own API with Node/Express, Rails, or similar? I don’t have a strongly held view on this right now. There are so many solutions that fit the use cases of people with different needs. We’re seeing things getting easier and easier in every direction that you look. If you want to write your own code and you’re using JS, you can use something like Zeit’s new now stuff to deploy essentially instantly. If you want a more general purpose solution, Heroku is also really easy. And then of course there is AWS and Google Cloud, etc. It’s trivially easy for React Native apps to communicate with essentially any backend that uses HTTP/JSON since fetch and JSON.parse are built-in. If you don’t want to write any code, it seems like Firebase has become the most popular solution since Parse announced its shutdown. One nice thing about Firebase is that you can use their hosted database stuff with React Native using just JS, which means it works just fine with Exponent. Someone wrote up a guide to how to do this here: https://gist.github.com/sushiisumii/d2fd4ae45498592810390b3e05313e5c Longer term, it seems like something like GraphQL/Relay should become really popular, but that stuff is too hard to setup and use still to be mainstream just yet. I’m not sure whether it will be GraphQL/Relay maturing and getting revised that wins or something else that is slightly different and easy to think about as a developer that comes and beats it, but directionally, it’s definitely right. We built something like this at Quora and it saved a ton of development time. I would just use whatever you are most comfortable with – almost anything will work! React Native is really similar to the the web in terms of its client capabilities and so I would just think about a React Native or Exponent app as being mostly like a website. Full Article
native Component Kits for React Native By reactjsnews.com Published On :: Tue, 07 Mar 2017 17:00:00 +0000 You won’t find as many styling solutions for React Native as you will for React JS. This stems from two simple realities: React Native is a much smaller target for component libraries than traditional CSS frameworks. In other words, Bootstrap CSS can be used with any web framework, whereas component libraries for React Native only work with…you guessed it…React Native. Customizing React Native styling isn’t the easiest thing in the world. Many apps demand custom styling, which makes component kits not too useful. In addition, it is challenging to customize each and every component, as the flexibility that you gain with traditional CSS on the web doesn’t carry over easily to component libraries. With that said, here are a few options. You won’t find as many styling solutions for React Native as you will for React JS. This stems from two simple realities: React Native is a much smaller target for component libraries than traditional CSS frameworks. In other words, Bootstrap CSS can be used with any web framework, whereas component libraries for React Native only work with…you guessed it…React Native. Customizing React Native styling isn’t the easiest thing in the world. Many apps demand custom styling, which makes component kits not too useful. In addition, it is challenging to customize each and every component, as the flexibility that you gain with traditional CSS on the web doesn’t carry over easily to component libraries. With that said, here are a few options. NativeBase - Essential cross-platform UI components for React Native A huge collection of components, most of which look quite nice. That’s the plus side. The down side is that some of the components are somewhat buggy. No offense to the library authors, its just the state of the library - it needs a bit of work. For example, here’s an issue I opened a few days ago when I discovered the swipe deck component crashed when only a single data element was provided: DeskSwiper throws on single element lists · Issue #562 · GeekyAnts/NativeBase. The authors fixed it up awfully fast, but, hey, that’s a bug that seems like it could have been caught earlier. React Native Elements - react-native-community/react-native-elements This is my personal favorite. The styling is generally platform agnostic; it won’t look out of place using it on either Android or iOS. Each component has simple customization, the docs are solid, and it comes with a good set of icons. This is a no-brainer. React Native Material Design - react-native-material-design/react-native-material-design Another solid choice, but mostly only useful for Android. Again, its a bit unsettling to see material design - traditionally a stable of Android devices - on iOS. Besides that, the docs are still a work in progress, as evidenced by the lack of docs for nearly half of the components. Nonetheless, if you’re looking for a material design solution, this is better than nothing. It is also worth noting that the project looks generally unmaintained. React Native Material Kit - xinthink/react-native-material-kit Another material design solution, but much better maintained than React Native Material Design. This one has the added benefit of a nicer customization API for creating your own custom components - see the docs on this. It also has some more dynamic components like progress bars and sliders, which you may not see on other frameworks. Anything that helps save you time to build your app is always a solid benefit. Do Your Own Styling! If none of these choices float your boat, you can always learn how to style components from scratch yourself. I have a course on Udemy that will teach you how to make perfectly reusable components for your own projects. Check it out here: The Complete React Native and Redux Course - Udemy Full Article
native Helming the alternative poster movement By www.mid-day.com Published On :: 02 Apr 2017 05:01:19 GMT Raj Khatri at his Malad home. Pic/NIMESHâÂÂÂÂDAVE As a teen studying at a Khandala boarding school, Raj Khatri was an ardent fan of Hardy Boys. Every week, he’d head to the school library to pick up a copy from the limited edition series, The Hardy Boys Casefiles, that explored mature, espionage-based themes. But he never read a single one. "It was to gaze lovingly at the cover," he laughs. "If you remember, the cover always carried an action shot. Sometimes, it was of a car chase or a person fleeing an explosion or a man hanging precariously from a bridge. They [covers] had a dynamic, kinetic energy that I loved." He would then return to the dorm, sit with a paper and recreate the cover of the week in his notebook. Khatri, now 35, continues to nurture his fascination with pop art and posters. He spends hours recreating posters of iconic Hollywood films and television shows, presenting his own unique interpretation. Spearheading the alternative movie poster movement in India, now a global phenomenon, Khatri creates re-imagined posters using bold brushstrokes and vibrant colours. Kill Bill, The Dark Knight and The Matrix have all got a cover each. "What artists usually do is take one object from the film and create a poster around it. I decided to make posters that look like abstract paintings, but when you place the movie’s name below them, you get the message." Most Hollywood films, he explains, have a thematic colour palette. "Uma Thurman’s yellow costume became synonymous with Kill Bill. I watched it and made notes of all the focal elements in the film," he says, adding that he makes posters keeping a film’s fans in mind. "For instance, in the 2014 film, Night Crawler, there’s an iconic red car that the protagonist drives. You’ll get the poster only if you’ve watched the film." It was on an impulse, that he decided to upload the posters on social media in 2010, not realising they would get him recognition. The artworks later landed him a chance to exhibit his work at a Los Angeles exhibition in 2014. The following year, he launched his first minimal series posters — a take off from alternative posters that instantly went viral. As creative head with a city-based ad firm, Khatri is also the man behind original posters for Hindi cinema projects Neerja, Phantom, Kahaani 2 and Bang Bang. "Of course, I love the process of digitally creating movie posters, but more often than not, there’s a filter between what I conceive and what is released. It’s not entirely indigenous because there are so many people involved and they all have an input to offer. After a point, fatigue develops," he says. It was the creative release that alternative posters offered him and a Wacom tablet that his girlfriend, now wife, gave him that saw him through. "No pesky clients and deadlines. I was free to use my own style, and that’s what I love about this," he says. Full Article
native Homoeopathy, ayurveda not alternatives to good sense, say scientists By www.mid-day.com Published On :: 4 May 2020 02:09:57 GMT Amid the panic around COVID-19, alternative medicine is being desperately promoted as a treatment, especially to boost immunity. At such a juncture, scientists from the country have issued a public statement on such cures and immunity boosters with a scientific explanation that there is no evidence suggesting successful use of any of these treatments in COVID-19. They have cautioned that these are not alternatives to other precautions that need to be taken such as social distancing, washing hands, etc. The statement reads, "As of now, no scientific studies show that any substance boosts the immune system specifically against COVID-19, be it modern medicines like hydroxychloroquine or homoeopathic solutions like Arsenicum Album D30 or ayurvedic preparations. These so-called remedies and/or immunity boosters may give people a false sense of security. Some people may wrongly assume that they won't be affected by COVID-19 anymore, leading to risky behaviours such as not using a masks, not washing hands, or not following physical distancing protocols. Such unintentional violation of guidelines may have disastrous results." While there are several social media posts, there have been instances when even people from government have backed such practices. For example AYUSH ministry supporting homoeopathic and ayurvedic products as defence against COVID-19 and the TN government issuing a circular about the efficacy of a herbal powder. Explaining the need for such a statement, Aniket Sule, scientist at Tata Institute of fundamental Research, said, "There are lots of social media forwards suggesting unproven treatments to fight COVID-19. We want to caution people that there is no scientific evidence to suggest that they work against COVID-19." The statement concludes, "Colloquially, many people use the word "immunity" when they actually just mean "good health". While a healthy diet and exercise improves a person's general health (and the capacity of their immune system), this cannot make him/her immune to COVID-19. The most severe cases of COVID-19 are made worse by an overreaction of the immune system. So trying to boost general immunity or trying to interfere with its regulation using untested methods, may be risky. Claims such as benefits of drinking cow urine, exposing people to UV light or injecting with disinfectants, are not supported by scientific evidence, and are harmful to the human body. Similarly, while some supplements such as garlic may be harmless, others such as zinc or Datura seeds, if taken in excess, are toxic." Busting hoaxes 'The Hoaxbusters' — a group from the Indian Scientists' response to COVID-19 has issued new set of slides answering several questions around COVID-19 at https://indscicov.in/ Catch up on all the latest Mumbai news, crime news, current affairs, and a complete guide from food to things to do and events across Mumbai. Also download the new mid-day Android and iOS apps to get latest updates. Mid-Day is now on Telegram. Click here to join our channel (@middayinfomedialtd) and stay updated with the latest news Full Article
native NRAI to launch a new aggregator alternative By www.mid-day.com Published On :: 9 May 2020 01:49:29 GMT Forced to agree to discounts due to the aggressive policies of delivery platforms, the National Restaurant Association of India (NRAI) and its member had started the #Logout campaign last August in protest. While the campaign turned out to be successful to an extent with aggregator platforms forced to change their predatory pricing policies, the NRAI decided to put a definitive plan into action to find a way out. The association has now announced plans to launch an alternative discovery and delivery platform, which will come into force by August-September. "We realised that this is the new way of doing business [online aggregators] and we cannot ignore it, so let's make it better for us. With this platform, the customer data will be ours, discounts will be decided by the restaurants, and services will be unbundled. Every individual restaurant that gets the order will own the data; NRAI is not the owner of the data. Existing aggregators had become digital landlords. We are not saying that the app will replace the current players overnight, it's just another choice which will be available," says Anurag Katriar, president of NRAI; CEO and executive director of deGustibus Hospitality Pvt Ltd. The project had been in the works months before COVID-19 hit the industry and all members were of the opinion that a marketplace cannot decide what the buyer and seller should do about the price. The high rate of commission is another concern. Restaurants are also forced to compulsorily buy the full bouquet of services by the platform, for example restaurants cannot use their own delivery fleet despite having one. One of the biggest issues for restaurateurs is that the customer and transaction data is the sole property of the aggregator, something that platforms started utilising to launch and promote their own properties. Gauri Devidayal, restaurateur Members of the F&B industry feel positive about the move. "These aggregators have used every situation to their advantage. Even now these guys are trying to raise the commission at a very high percentage. We are more than happy that the organisation is launching this platform which will help us work on a lower commission and reduce our expenses, especially now," said Ryan Tham, owner, The Good Wife, Koko, Foo. Gauri Devidayal, Co-founder The Table, Magzine Street Kitchen, Iktara, Mei13, Mag St. Bread Co, saod , "The commissions and discounts offered by them were not at all viable for restaurants. This platform will also smoothen the ordering process and remove the need for us to organise a rider when delivering out of our radius." Meanwhile, NRAI has already collaborated with a tech company to work on this platform, and the money for the platform is also being pumped in by the company; Katriar is tightlipped about the name for now. Ryan Tham and Avik Chatterjee Avik Chaterjee, founder, Hoppipola, Episode One, admits that everyone in the industry is in survival mode during lockdown: "Anything that will make us bear lower expenditure will be the best service for us. NRAI is not putting in money in this; this may change in the future. This hasn't been done to spite anyone, it is to protect what's best for our trade and take control of our own business decisions," he says. Smaller restaurants will benefit the most from this as the platform will allow the owners to accept orders as small as R20 and use their salaried employee for delivery. NRAI is also working on two other tech projects, a loyalty programme, and a platform for transactions which might run parallel to the aggregator platform. Catch up on all the latest Mumbai news, crime news, current affairs, and a complete guide from food to things to do and events across Mumbai. Also download the new mid-day Android and iOS apps to get latest updates. Mid-Day is now on Telegram. Click here to join our channel (@middayinfomedialtd) and stay updated with the latest news Full Article
native Coronavirus outbreak: 100 people on way to their native places detained in Nashik By www.mid-day.com Published On :: 24 Apr 2020 06:00:04 GMT Police on Thursday took in custody around 100 people who entered the city while travelling from Mumbai on way to their native places, including in North India, during the coronavirus-enforced lockdown, said officials. These people, numbering around 100 and including women and children, were coming from Mumbai, around 200km from here, on foot during the lockdown and entered Nashik city in the evening, they said. Police swung into action when they were spotted on a flyover on the Mumbai-Agra Highway, which passes through the city, the officials said. When questioned, some of them told the police they were going to their hometowns in North India, they said. Some of them were natives of other districts of Maharashtra, the officials said. They were travelling in violation of government orders related to implementation of the coronavirus-enforced lockdown and hence were taken into custody, they said. The police later sent them to a Nashik Municipal Corporation (NMC)-run shelter home in Anandvalli. Till now, more than 800 people, who were passing through Nashik during the lockdown, have been taken into custody and kept in various shelter homes in the city, they said. One of them was later found to be coronavirus positive and is receiving treatment in hospital, they added. Catch up on all the latest Crime, National, International and Hatke news here. Also download the new mid-day Android and iOS apps to get latest updates. Mid-Day is now on Telegram. Click here to join our channel (@middayinfomedialtd) and stay updated with the latest news This story has been sourced from a third party syndicated feed, agencies. Mid-day accepts no responsibility or liability for its dependability, trustworthiness, reliability and data of the text. Mid-day management/mid-day.com reserves the sole right to alter, delete or remove (without notice) the content in its absolute discretion for any reason whatsoever Full Article
native Low-cost, Disposable Alternative for the Caregiver By www.medindia.net Published On :: For some infants, a wet diaper is cause for an instant, vociferous demand to be changed, while other babies may be unfazed and happy to haul around the Full Article
native Walking, Home Workouts Appear Safe Alternatives to Gym By www.medindia.net Published On :: Fitness and health experts advised gym freaks to hit the neighbourhood parks and make their home a place to work out with the growing COVID-19 scare. They, Full Article
native A Controversial Alternative To Reduce Female Genital Mutilation By www.medindia.net Published On :: To fight extreme forms of female genital mutilation, a pair of American gynecologists suggested a controversial compromise to legally permit immigrant Full Article
native Providing Surgery Training to Health Officers a Safe Alternative By www.medindia.net Published On :: Sierra Leone, a small West African country has the highest maternal mortality ratios in the world, with 1360 maternal deaths for every 100,000 live births. Full Article
native Alternative Medicine Practices Should be in the Dermatologist's Know How By feedproxy.google.com Published On :: All Dermatologists need to know the basics of alternative medicine practices to treat their various side effects. By having proper knowledge of alternative Full Article
native Psoriasis Patients Found to Seek Alternative Medicine By feedproxy.google.com Published On :: Patients with psoriasis found to use complementary or alternative medicine regularly to treat their symptoms, according to a survey of George Washington Full Article
native Alternative Medicine Improves Quality of Life in Acute Rehab By feedproxy.google.com Published On :: While experts have long believed that CAM therapies could benefit patients in acute rehab, less is known about which benefits are most advantageous to these individuals' quality of life. Full Article
native Hitachi Data Systems adds Native NAS and Cloud Tiering to Virtual Storage Platform By feedproxy.google.com Published On :: Hitachi Data Systems (HDS), a wholly owned subsidiary of Hitachi, Ltd. (TSE:6501) Full Article
native Taxes on polluting fuels are too low to encourage a shift to low-carbon alternatives By www.oecd.org Published On :: Fri, 20 Sep 2019 11:00:00 GMT Taxing polluting sources of energy is an effective way to curb emissions that harm the planet and human health, and the income generated can be used to ease the low-carbon transition for vulnerable households. Yet 70% of energy-related CO2 emissions from advanced and emerging economies are entirely untaxed, offering little incentive to move to cleaner energy, according to a new OECD report. Full Article
native Small business access to alternative finance increasing as new bank lending declines By www.oecd.org Published On :: Wed, 21 Feb 2018 19:00:00 GMT Small and medium-sized enterprises (SMEs) are increasingly turning to alternative sources of financing, while new bank lending is declining in a number of countries. Many SMEs remain over-reliant on bank credit, however, and the take-up of instruments other than straight debt varies greatly from one country to another, according to a new OECD report. Full Article
native Small business access to alternative finance increasing as new bank lending declines By www.oecd.org Published On :: Wed, 21 Feb 2018 19:00:00 GMT Small and medium-sized enterprises (SMEs) are increasingly turning to alternative sources of financing, while new bank lending is declining in a number of countries. Many SMEs remain over-reliant on bank credit, however, and the take-up of instruments other than straight debt varies greatly from one country to another, according to a new OECD report. Full Article
native What are good — and less expensive — alternatives to an MBA? By www.ft.com Published On :: Mon, 20 Apr 2020 03:07:31 GMT Your question for our expert — and readers’ advice Full Article
native Alternative risk premia funds fail to live up to expectations By www.ft.com Published On :: Mon, 27 Apr 2020 04:00:50 GMT Popular funds’ performance woes compounded by coronavirus market sell-off Full Article
native Media Advisory: EIA presents alternative policy scenarios to the AEO2020 By www.eia.gov Published On :: Thu, 20 Feb 2020 12:00:00 EST EIA will present results from four alternative policy scenarios to the Annual Energy Outlook 2020 (AEO2020) published in an Issue in Focus article. The article and the presentation will examine the potential effects of a range of alternative energy policies on the future U.S. electric power sector through 2050. Full Article
native AEO2020: Alternative Policies - Varying Residential Solar Photovoltaic Utility Rate Structure By Published On :: Thu, 5 Mar 2020 09:00:00 EST Full Article
native AEO2020: Alternative Renewables Cost Cases By Published On :: Thu, 5 Mar 2020 09:00:00 EST Full Article
native AEO2020: Alternative Policies - Carbon Fee Cases By Published On :: Thu, 5 Mar 2020 09:00:00 EST Full Article
native AEO2020: Alternative Policies - 50% Carbon-Free Generation by 2050 By Published On :: Thu, 5 Mar 2020 09:00:00 EST Full Article
native For alternative meat manufacturer Beyond Meat, fast food chains giveth and taketh away By feedproxy.google.com Published On :: Wed, 29 Jan 2020 14:05:53 +0000 Beyond Meat, the publicly traded producer of plant-based protein replacements for meat, is currently giving other companies in the alternative meat space an education in just how finicky appealing to consumer tastes can be. On the same day that the Canadian Tim Hortons restaurant chain is dropping Beyond Meat products from its menus, the company […] Full Article Food TC Atlanta bEYOND meat Burger King charlotte Denny's food and drink Fried chicken Impossible foods kentucky kfc Los Angeles mcdonalds meat substitutes Nashville north carolina Pat Brown Tennessee Tim Hortons United States Yahoo
native Cliqz pulls the plug on a European anti-tracking alternative to Google search By techcrunch.com Published On :: Fri, 01 May 2020 12:02:07 +0000 Cliqz, a Munch-based anti-tracking browser with private search baked in that has sought to offer a local alternative to Google powered by its own search index, is shutting down — claiming this arm of its business has been blindsided by the coronavirus crisis. Today was not great. We closed parts of @cliqz & our dream […] Full Article Europe Privacy Alphabet Cliqz coronavirus COVID-19 data protection ghostery Google Hubert Burda Media online advertising search engine United States Web browsers
native Sportsmail's alternative awards for 2019 featuring Pep Guardiola, Tyson Fury and Leeds By www.dailymail.co.uk Published On :: Thu, 26 Dec 2019 07:58:16 GMT The end of the year is a time for reflection, looking back at the great and the good of the sporting world and those moments that have shown the best of 2019. We don't care about that, though, do we? Full Article
native Pamela Anderson is slammed for cultural appropriation after wearing a Native American headdress By www.dailymail.co.uk Published On :: Tue, 05 Nov 2019 00:28:45 GMT The photos are from a collaboration with photographer Laurie Stark, taken to benefit Native American activist Leonard Peltier as his lawyers fought to have him released from prison. Full Article
native SARAH VINE: If the over 70s don't protect themselves, the alternative is unthinkable By Published On :: Mon, 16 Mar 2020 13:16:59 +0000 SARAH VINE: This is not a generation of doddery, grey-haired retirees, content to potter away their pensions in the back garden: These are people living life to the full. In many cases, their best life. Full Article
native The Voice: Will.i.am fights back tears over struggle of fellow Los Angeles native Myracle Holloway By Published On :: Wed, 16 Oct 2019 05:44:35 +0100 The 44-year-old singer had an emotional moment on Tuesday's episode of The Voice as he marveled at how little separated him from a contestant in the battle rounds. Full Article
native Germany striker Lukas Podolski relishing seventh tournament as Poland-born star prepares to face native country at Euro 2016 By www.dailymail.co.uk Published On :: Wed, 15 Jun 2016 10:53:52 GMT Lukas Podolski was born in Poland but plays for Germany, and Thursday's match between the countries at the European Championship promises to be another emotional experience. Full Article
native Coronavirus UK: Trooping the Colour alternatives considered By www.dailymail.co.uk Published On :: Fri, 27 Mar 2020 21:32:17 GMT Officials at Buckingham Palace revealed this afternoon that a 'number of other options are being considered, in line with relevant guidance' ahead of the event on June 13. Full Article
native Colin Tizzard's Native River to miss Cheltenham Gold Cup and Grand National due to tendon injury By www.dailymail.co.uk Published On :: Wed, 19 Feb 2020 19:35:46 GMT The British defence of next month's Magners Cheltenham Gold Cup has been weakened after 2018 winner Native River was ruled out of the race. Full Article
native No room to grow pumpkins? Monty Don has found an aternative that's been thriving in his garden By www.dailymail.co.uk Published On :: Fri, 25 Oct 2019 21:31:37 GMT British gardening expert Monty Don has shared his advice for growing squash. He advises those who have sandy or chalk soil, or live in an area of low rainfall to use alot of compost or manure. Full Article
native Olly Smith reviews some alternatives to booze By Published On :: Mon, 13 Jan 2020 11:41:20 +0000 Sound the booze alarm! I fear the surge in no- and low-alcohol tipples may prove the garlic to my thirsty vampire Full Article
native F1's ALTERNATIVE end of season awards By www.dailymail.co.uk Published On :: Mon, 02 Dec 2019 17:28:39 GMT As Lewis Hamilton and Mercedes bask in the glory of a sixth world championship, Sportsmail looks at the good and the bad and hands out its post-season awards for 2019. Full Article
native RUTH SUNDERLAND: Why not get creative on savings? It's time for a bold and imaginative Budget By Published On :: Mon, 09 Mar 2020 13:08:58 +0000 Rishi Sunak should stick with plans drawn up by his predecessor Sajid Javid, who was lining up a cut in income tax from 20p in the pound to 18p. Full Article
native The Voice: Will.i.am fights back tears over struggle of fellow Los Angeles native Myracle Holloway By www.dailymail.co.uk Published On :: Thu, 17 Oct 2019 12:21:01 GMT The 44-year-old singer had an emotional moment on Tuesday's episode of The Voice as he marveled at how little separated him from a contestant in the battle rounds. Full Article
native Elsa Pataky, 43, looks sensational in a sheer floral top as she parties in her native Madrid By www.dailymail.co.uk Published On :: Thu, 21 Nov 2019 00:40:48 GMT The blonde beauty, who is married to Australian screen heartthrob Chris Hemsworth, wowed as she arrived at the capital's Santa Barbara Palace on Wednesday night. Full Article
native Five-door hatchback Mazda2 named Car of the Year in its native Japan By www.dailymail.co.uk Published On :: Sun, 09 Nov 2014 19:17:59 GMT Mazda promises great performance, economy, safety and driving fun when the supermini reaches Britain early next year, priced from around £13,000. Full Article
native COVID-19: The $10 beauty alternative to hand sanitiser - and there's still plenty in stock By www.dailymail.co.uk Published On :: Mon, 30 Mar 2020 03:37:25 GMT The scarcity of hand sanitiser has skyrocketed since COVID-19 reached Australian shores on January 25, but this hand cream does the same thing - and it smells a whole lot nicer. Full Article
native THE BLOG FROM BRAZIL: The natives are getting restless for their football fix as World Cup popularity sinks to a new low By Published On :: Tue, 25 Feb 2014 15:22:24 +0000 The game’s greatest love affair is on the rocks. Prime-time Brazilian news bulletins on Monday pored over the results a survey which showed that public approval of hosting the World Cup has plummeted to a record low in football’s heartland. Full Article
native 'Alternative SAGE' panel of experts accuses government advisers of deferring to ministers By www.dailymail.co.uk Published On :: Mon, 04 May 2020 17:16:54 GMT Selectively lifting lockdown measures could lead to resentment and anger among left-behind groups, an 'alternative SAGE' panel of experts warned today. Full Article
native Milan Native claims dramatic Amateur Riders' Handicap Chase win after holding off Kilfilum Cross By www.dailymail.co.uk Published On :: Thu, 12 Mar 2020 18:04:44 GMT Milan Native claimed a length-and-three-quarter success in the Fulke Walwyn Kim Muir Challenge Cup Amateur Riders' Handicap Chase to provide Elliott with a treble on the day. Full Article
native Wombat killing: Footage of car hitting and killing native animal in Tasmania By www.dailymail.co.uk Published On :: Thu, 07 Nov 2019 04:44:46 GMT WARNING: DISTRESSING CONTENT. Mobile phone footage shows wombat hit by a four-wheel-drive in Tasmania. The wombat is seen hanging off the car's bull bar. Full Article
native My Saga Platinum Card expires on March 28 this year – what are my alternatives? By www.dailymail.co.uk Published On :: Thu, 07 Feb 2019 09:32:41 GMT Saga's popular Platinum Card will be axed at the end of March, it offered plenty of travel benefits for the over-50s. Now it's time is up, what alternatives should you consider if you want to keep travelling? Full Article
native Nationwide BS to scrap cashback scheme in April - which alternative banks offer the perk? By www.dailymail.co.uk Published On :: Fri, 22 Feb 2019 09:31:19 GMT Nationwide is scrapping a scheme allowing credit and debit cardholders to earn cashback on their spending after the building society admitted it wasn't worth the time and resources. Full Article
native The ALTERNATIVE Premier League table: Manchester United miss out, Arsenal fall to 12th By www.dailymail.co.uk Published On :: Thu, 30 Apr 2020 14:49:09 GMT As doubts grow about the viability of playing out the rest of the Premier League season, a number of methods have been mooted to complete the campaign. L'Equipe proposed their own. Full Article
native Chelsea join race for Monaco left-back Bode Fallo-Toure as cheaper alternative to Ben Chilwell By www.dailymail.co.uk Published On :: Fri, 08 May 2020 14:24:09 GMT Frank Lampard has highlighted a left-back as a priority signing this summer and has been a long term admirer of Chilwell, but could now move for Monaco's highly-rated left-back instead. Full Article