dia How Different Generations of Consumers Use Social Media By www.rss-specifications.com Published On :: Fri, 12 Jun 2020 06:41:27 -0400 In a recent survey of 1000 consumers and 500 businesses, Animoto found that 75% of Millennials purchase decisions were influenced by a brands social media presence. But that's Millennials, a generation that's largely grown up online, and those response figures vary significantly across the different age brackets - so which platforms should you be focusing on to reach your target market? To provide more insight, the team at Animoto broke their research down by generation. Some of their key findings include: Gen Z chose Instagram as the platform to follow brands Baby boomers spend most of their time on YouTube and the Facebook Feed Gen Z, Millennials, and Gen X selected YouTube as the platform they rely on when making purchase decisions Full Article
dia Two Indians brought back from Gulf test Covid positive in Kerala By timesofindia.indiatimes.com Published On :: Sat, 09 May 2020 18:35:15 IST Two Indians, who were among the 363 nationals brought back to Kerala from the Gulf, have tested positive for Covid-19, chief minister Pinarayi Vijayan said on Saturday. With this, the total number of active cases has climbed to 17 in the state. The patients have been admitted to hospitals in Kozhikode and Kochi. Full Article
dia Highly efficient removal of uranium from highly acidic media achieved on a phosphine oxide and amino functionalized superparamagnetic composite polymer adsorbent By pubs.rsc.org Published On :: J. Mater. Chem. A, 2020, Accepted ManuscriptDOI: 10.1039/D0TA01633K, PaperShiao Zhang, Dingzhong Yuan, Qinghua Zhang, Yun Wang, Yan Liu, Jizhou Zhao, Bibo ChenIt is very necessary to develop the magnetic adsorbents for the efficient extraction of uranium from highly acidic media. In this work, a novel magnetic adsorbent Fe3O4/P (DMAA-DMP) functionalized with...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
dia Plasmon-Enhanced Electrocatalytic Oxygen Reduction in Alkaline Media on Gold Nanohole Electrodes By pubs.rsc.org Published On :: J. Mater. Chem. A, 2020, Accepted ManuscriptDOI: 10.1039/C9TA14174J, PaperNait Saada Tamazouzt, Anderson da Silva, Palaniappan Subramanian, Liuqing Pang, Noual Adnane, Bahram Djafari-Rouhani, Vladyslav Mishyn, Dalila Meziane, Sorin Melinte, Georgiana Sandu, Franck Dumeignil, Sebastien Paul, Robert Wojcieszak, Rabah Boukherroub, Sabine SzuneritsPlasmon-driven chemical transformation has become a promising approach for enhancing sluggish electrocatalytic reactions. Herein, an alternative enhancement strategy employing plasmon-induced hot electrons is developed to be competitive with oxygen reduction...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
dia India to send nearly 1,000 tonnes of paracetamol raw material to Europe By economictimes.indiatimes.com Published On :: 2020-05-06T14:45:47+05:30 The Indian government in March put a hold on exports of several drugs including paracetamol to secure supplies for its people after the coronavirus outbreak disrupted the industry's supply chain globally. COVID-19 is the respiratory disease caused by the novel coronavirus. Full Article
dia Gilead scouting for partners in India, Pakistan for remdesivir By economictimes.indiatimes.com Published On :: 2020-05-06T16:58:22+05:30 Recent clinical trial results and the decision by the US Food and Drug Administration to issue 'Emergency Use Authorisation' for remdesivir have highlighted the urgency of this work and the importance of planning for access to remdesivir globally, Gilead said. Full Article
dia Repurposed drugs offer hope in India’s Covid fight By economictimes.indiatimes.com Published On :: 2020-05-07T10:31:08+05:30 ICMR has identified over a dozen other drugs, including remdesivir, mycobacterium W, disulfiram and resveratrol, which could be used for treating Covid-19. Some of these drugs are undergoing clinical trials in India, sources said. Full Article
dia Indian pharma exports miss target, stand at $20.58 bn in FY' 20 By economictimes.indiatimes.com Published On :: 2020-05-08T15:34:35+05:30 Though the exports started doing well in 2019-20 and it has been a good year for the first three quarters with cumulative growth rate of 11.5 per cent during April-December 2019, the growth rate in February and March has gone down recording 7.7 per cent and -23.24 per cent respectively, resulting in the negative growth of - 2.97 per cent in the fourth quarter. Full Article
dia Zydus Cadila launches generic prostate cancer drug at nearly 70% less price in India By economictimes.indiatimes.com Published On :: 2020-05-08T15:42:32+05:30 "Our aim is to make a preferred choice of therapy like Obynx available and more accessible to people suffering from cancer. Bridging these unmet gaps comes from our patient-first approach," Zydus Cadila MD Sharvil Patel told . Full Article
dia The Andrée expedition: From the diary of Virginia Woolf / Dominick Argento By library.mit.edu Published On :: Sun, 7 Jul 2019 08:02:16 EDT MEDIA PhonCD Ar37 song Full Article
dia Jane Eyre / Louis Karchin ; libretto by Diane Osen By library.mit.edu Published On :: Sun, 26 Jan 2020 07:17:22 EST MEDIA PhonCD K144 jan Full Article
dia Blues dialogues: music by black composers. By library.mit.edu Published On :: Sun, 23 Feb 2020 07:46:19 EST MEDIA PhonCD P652 blu Full Article
dia Web Tools #347 - JS Testing, Media Tools, Git/CLI Tools, Uncats By mailchi.mp Published On :: Thu, 12 Mar 2020 13:00:00 +0000 Web Tools Weekly WEB VERSION Issue #347 • March 12, 2020 The following intro is a paid product review for Wallaby, a developer productivity tool that runs your JavaScript and TypeScript tests immediately as you type. Code testing is a huge part of the current JavaScript landscape, so if it's crucial that you run tests on your code base regularly, you'll love Wallaby. Wallaby is available as an extension for VS Code, JetBrains Editors, Visual Studio, Sublime Text, and Atom. I'll demonstrate here how powerful Wallaby is by showing you how it works within VS Code. Once you've installed and configured Wallaby, you can open any project and run it via its Command Palette, shown here: Wallaby's Command Palette in VS Code When you choose the Start command, you can open any JavaScript or TypeScript file and you'll see something like the following: Wallaby's code coverage and logs Notice a few things: The colored squares on the left indicate code coverage. These squares can be grey, yellow, green, pink, or red, indicating various levels of coverage from your tests. The lines that contain console.logs have their outputs displayed to the right. These get updated in real time as you write or edit your code (similar to Quokka.js, another tool by the same developers that I've reviewed previously) As you can see, if you're accustomed to using a lot of console.logs and adding breakpoints to your code, Wallaby is going to dramatically increase your productivity. You get that feedback immediately within the code, without actually executing it in a browser or other environment. In other words, your code editor is the console, with the bonus of everything displaying in its immediate code context. When it's running, Wallaby displays the number of failed and passed tests in the status bar: Wallaby displays passed/failed tests in the status bar Clicking on the failed and passed tests in the status bar will open Wallaby's Output Channel, with a little more detail on what's happening with your tests: Wallaby's Output Panel One of the features that has caught the attention of many developers is Wallaby's Time Travel Debugger, which was added to Wallaby in December. This feature allows you to move forward or backwards through your code to understand what led to a specific bug. Wallaby's Debugger View You can start the debugger on a line of code where your test begins, or on any line executed by one of your tests. Once begun, you can run a number of different commands to get to the root of a particular issue. This is helped out by the Debugger View that opens in the left panel. Pretty powerful! And again, part of the power is that this is all available right inside your code base – no need to open up a separate environment like the developer tools in your browser. There's a lot more to Wallaby that I haven't mentioned here, but this should be enough to give you a taste of some of the primary features of the tool, which is free to try. Check out the docs for more on what I've only briefly touched on here. Now on to this week's tools! Media Tools (SVG, Video, etc) Iconset Free, cross-platform SVG icon organizer app for designers, developers or product teams. Works on both Mac and Windows. Open Peeps A hand-drawn illustration library to create scenes of people, each drawing available in PNG or SVG format. Cosha JavaScript utility to add colored shadows to your images. Use via defaults or customize via the API. Filmage Screen Screen recorder and video editor for Mac. All-in-one video toolbox that lets you record HD video, edit video, make animated GIFs, convert video, and more. Biteable Video making platform with ready templates for creating marketing videos for different social platforms, industries, etc. Unscreen Online tool that uses AI to remove the background from an uploaded video. SequenceDiagram.org Online tool to build sequence diagrams using a drag-and-drop interface, useful for presentations. Faux Code Generator Input real code via a Gist URL and this tool will produce an SVG version of the code in a mock format, for possible use in slides, etc. Smithsonian Open Access Download, share, and reuse millions of the Smithsonian’s images. Use in commercial projects without attribution or written permission (although you should read the FAQ for copyright considerations). Panolens.js Flexible, event-driven, WebGL-based JavaScript panorama viewer built on Three.js. Fontice.com Fastest browser-based WebP converter. Free JPG/PNG to WebP conversion without uploading to any other servers. Heroicons A set of free MIT-licensed high-quality SVG icons for UI development Git, GitHub, and CLI Tools React Chat Tutorial Quickly build chat leveraging Stream's Chat API. Our comprehensive React components will get you up and running fast. sponsored CLUI A collection of JavaScript libraries for building command-line interfaces with context-aware autocomplete. actions-comment-run GitHub action to execute any script in an issue or pull request comment. tickgit Allows you to do project management in your codebase with TODO comments. grep.app Search across a half million Git repos, with options for case sensitivity, regex, and whole words only. GitHub Data Populate data from GitHub into Figma mockups. GitHub CLI In case you missed it, this is GitHub's official command line tool. Octomments GitHub issues as a comment plugin. Gitpod Launches ready-to-code dev environments for your GitHub or GitLab project with a single click. GistPad VS Code extension for managing and sharing code snippets, notes and interactive samples using GitHub Gists. paint-github This is kind of humourous. It's a Chrome or Firefox extension that adds a feature to GitHub comments that lets you "draw" your comment. The Uncategorizables React Chat Tutorial Quickly build chat leveraging Stream's Chat API. Our comprehensive React components will get you up and running fast. sponsored Outgrow Platform to build interactive content like calculators, quizzes, chatbots, surveys, and more, for marketing purposes. unavatar API that searches common social media platforms to get a user's avatar image by means of a username. Voiceflow Design, prototype and build voice apps. Collaboratively design, prototype, and build Alexa Skills and Google Actions, without coding. Limio Sell subscriptions and recurring products, build landing pages, checkouts, self-service portals, and more, with no code. ResponseVault Alpha. Create a database application with a drag and drop form builder. Import your own JavaScript UI widgets. Awesome JS A visual tool to look for popular JavaScript packages, categorized. Advanced App Development Cost Calculator Seems to be mainly for large corporate apps because the estimated prices are fairly high. Nots.io Documentation tool for development teams. Access docs from your code and always know if something is obsolete. Opensource Buiders Find open-source alternatives for your favorite apps. damnshort Short dot-com names, suitable for branding, available for sale for $195 each. A Tweet for Thought I think it's safe to say many of us are punk rock programmers. Send Me Your Tools! Made something? Send links via Direct Message on Twitter @WebToolsWeekly (details here). No tutorials or articles, please. If you have any suggestions for improvement or corrections, feel free to reply to this email. Before I Go... If you love numbers and Math, you'll adore MetaNumbers. It's an encyclopedia providing all sorts of super-boring info on any positive integer you enter. To me this is kind of like Brian Regan's comedy bit on refrigerators, but I know a lot of you might find it interesting. Thanks to everyone for subscribing and reading! Keep tooling, Louis webtoolsweekly.com @WebToolsWeekly PayPal.me/WebToolsWeekly Full Article
dia Web Tools #349 - DOM Snippets, Front-end Frameworks, Media, Uncats By mailchi.mp Published On :: Thu, 26 Mar 2020 14:00:00 +0000 Web Tools Weekly WEB VERSION Issue #349 • March 26, 2020 Advertisement via Syndicate Have Happier, More Productive Video Meetings Team.video makes it easier and faster for remote teams to work together by offering user friendly video meetings with agendas, collaborative notes, and emoji responses. No download required and it’s free to use. Try Team.video for FREE! Although I often include quick DOM scripting tips in the intro of this newsletter, for this week, I'm just going to point you to a great little resource that was sent to me by reader Phuoc Nguyen: HTML DOM It's more or less a repository of basic, intermediate, and advanced native DOM scripting snippets. HTML DOM: A resource of native DOM snippets Here are some of the advanced and intermediate examples: Make a draggable element Resize columns of a table Sort a table by clicking its headers Calculate the size of the scrollbar Communicate between an iframe and parent window There are more than 80 tips currently listed and I'm sure he'll add more later. Even if you don't necessarily use any of the snippets in a real project right away, there are plenty of little coding tidbits you can glean form the example code, which is all just vanilla JavaScript with no library or framework involved. So check out HTML DOM, I'm sure you'll have lots to investigate! Now on to this week's tools! Front-end Frameworks Have Happier, More Productive Video Meetings Team.video makes it easier and faster for remote teams to work together by offering user friendly video meetings with agendas, collaborative notes, and emoji responses. No download required and it’s free to use. via Syndicate chakra-ui-vue A set of accessible and composable Vue components that you can use to build your favourite applications and sites. Pixel Lite A beautifully crafted, responsive UI kit based on Bootstrap 4 that includes 100 components, 3 plugins, and 3 example pages. next-typescript-materialui-jest-starter Very opinionated starter boilerplate for projects based on Next.js, setup with Typescript, Material-UI, and Jest. React SaaS Template Template for building a SaaS app or admin website using React + Material-UI. web3-react A simple, extensible, dependency-minimized framework for building modern Ethereum decentralized apps. Tailwind UI A UI components library, crafted by the creators of Tailwind CSS. neo.mjs A Web Workers-driven UI framework. LitElement A simple base class for creating fast, lightweight web components. Makes it easy to define web components – ideal for building a UI design system. Ionic React React version of Ionic Framework. 100+ mobile optimized React UI components. Standard React tooling with react-dom. Accessible Components Scott O'Hara's repo that lists all the accessible widgets and components he's built. StarAdmin A free responsive admin template built with Bootstrap 4. Media Tools Tech Productivity Newsletter A brief newsletter featuring tools and articles for remote work, work culture, learning science, and more – all to help you be more productive. promoted Croppola Upload a photo and this tool will use AI to crop the photo for you automatically, or you can crop it manually and download the result. Image to Colors Online tool that extracts colors from any photo on upload. Nuxt Optimized Images Automatically optimizes images used in Nuxt.js projects (JPEG, PNG, SVG, WebP and GIF). Twilio Video React App Demonstrates a multi-party video application built with twilio-video.js and Create React App. react-particle-image React component to render images as interactive particles. There's an interactive demo using the React logo that's pretty cool. CoreUI Icons Premium designed free icon for web and mobile, available in SVG, webfont, and raster formats. DotMatrix.js A small, performant class-based, dot matrix library with animated movements that respond to mouse/touch events. react-calendar-heatmap A calendar heatmap component built on SVG, inspired by GitHub’s commit calendar graph. Chessboard Image Modify chess pieces on a virtual chess board, to create chess positions, then download the image for use wherever you want. Might be cool for a chess tutorial website or blog. Video Language A language for making movies. Combines the power of a traditional video editor with the capabilities of a full programming language. The Uncategorizables Tech Productivity Newsletter A brief newsletter featuring tools and articles for remote work, work culture, learning science, and more – all to help you be more productive. promoted Mailcoach A self-hosted email list manager. It integrates with services like Amazon SES, Mailgun, Postmark, or Sendgrid to send out mailings affordably. Backstage Open-source developer portal that puts the developer experience first by means of a a unified front end for all your infrastructure tooling. dstack.ai Collaborative data exploration. Enables individual data scientists and their teams to publish, share, and track data visualizations. TAGX Allows you to create video highlights and annotate the interesting parts of a video. Enter a YouTube, Vimeo, or direct video link to start annotating. cs.opensource.google A search engine to search Google's open source projects (Angular, Dart, Flutter, Go, etc). Cotter One-click secure phone number login for your apps. Phrase Automate localization processes. Edit language files online with your team of translators or order translations into more than 60 languages. It's a Live Lets you mimic a live coding presentation by prerecording the presentation, which gets triggered by random keystrokes as if you were really coding. EasyCSV Import spreadsheets into your App, Zapier, Google Sheets, Salesforce, or any public API in minutes. Pico Platform to create paywalled content, subscriptions, newsletters, etc. A Tweet for Thought This underappreciated Tweet by Adam Greenough should be the dev-related Tweet of the year. Send Me Your Tools! Made something? Send links via Direct Message on Twitter @WebToolsWeekly (details here). No tutorials or articles, please. If you have any suggestions for improvement or corrections, feel free to reply to this email. Before I Go... If you've got a lot of extra time at home (and you should!) you might like Codepip. There you'll find a number of different interactive online games that teach you various aspects of front-end development. Thanks to everyone for subscribing and reading! Keep tooling, Louis webtoolsweekly.com @WebToolsWeekly PayPal.me/WebToolsWeekly Full Article
dia Web Tools #351 - JS Utilities, Media Tools, Uncategorizables By mailchi.mp Published On :: Thu, 09 Apr 2020 14:30:00 +0000 Web Tools Weekly WEB VERSION Issue #351 • April 9, 2020 Advertisement via Syndicate Working From Home? Try Team.Video Team.video makes it easier and faster for remote teams to work together by offering user friendly video meetings with agendas, collaborative notes, and emoji responses. No download required and it’s free to use. Try Team.video for FREE! Last week I covered a really simple introduction to the HTML Drag and Drop API, for those of you who have never used it before. The demo has the minimum code required to produce a drag and drop example. Let's take that a little further and incorporate the dataTransfer object, which has methods and properties that can be used in the midst of a drag and drop operation. First, I can use the setData() method of the dataTransfer object, which I'll incorporate in the midst of my event listener when listening for a dragstart event (an event I didn't need to use in the previous demo). The relevant line looks something like this (where "e" is the event object): e.dataTransfer.setData('text/html', box.innerHTML) As you can see, the setData() method takes two arguments: The data type and the data itself. In this case, the data is simply the innerHTML of the dragged element. This is the first step in transferring data: Setting the data, which happens when the element is initially dragged. The next key line in my code will be using the getData() method. In this case, I'll use it when the drop event is triggered on my drop area element: this.style.background = e.dataTransfer.getData('text/html') The data that I'll be grabbing is text that represents a valid CSS color keyword, which will be inside each draggable element. The data could be a lot of things, but in this case I'm just using some text for demo purposes. And as you can see, the text sets the background color of the drop area element. See the full working demo here There's naturally a lot more code there, but it's fairly straightforward. I'm looping over the draggable boxes to add the event listeners to each one. The setData() and getData() methods are used within that loop to obtain and apply the color info. Try dragging any of the boxes into the drop area to see the background of the drop area change. You can even try changing the HTML to use different colors (any valid CSS color value will work). As long as the color is valid, the background of the drop area element will change to that color. And that's a basic way to use the dataTransfer object when working with the Drag and Drop API. Now on to this week's tools! JavaScript Utilities Working From Home? Try Team.Video Team.video makes it easier and faster for remote teams to work together by offering user friendly video meetings with agendas, collaborative notes, and emoji responses. No download required and it’s free to use. via Syndicate Van11y Bit of an older project that I just discovered. A collection of customizable, accessible scripts for rich interface elements, built using progressive enhancement. Rsup Progress A simple progress bar with promises support. Heapify A very fast JavaScript priority queue, implemented using a binary heap, with no dependencies. Nano Events Simple and tiny (72 bytes) event emitter library for JavaScript. Chardin.js Simple overlay instructions for your apps. Kind of like those 'app tour' plugins, but just a single overlay pointing stuff out. Serialize JavaScript Serialize JavaScript to a superset of JSON that includes regular expressions and functions. FullCalendar A JavaScript calendar plugin, great for displaying events with drag-and-drop capabilities and an API for extending its functionality. defu Utility to recursively assign default properties. Clack A modern keyboard shortcut library written in Typescript. Sharect.js A lightweight (2.9Kb gzipped and minified) JavaScript library to let users share text selections to social networks in desktop browsers (like Medium). Uppload A better JavaScript image uploader. Highly customizable with 30+ plugins, open-source, and can be used with any file uploading back end. Media Tools (SVG, Video, Audio, etc.) Beginner JavaScript by Wes Bos is 50% Off! The master package includes 88 HD videos, part of 15 modules – and course updates are free forever. promoted mediasoup Cutting-edge WebRTC video conferencing. The perfect choice for building multi-party video conferencing and real-time streaming apps. gifcap Create animated GIFs in your browser from a screen recording. Client-side only, no data is uploaded. Tabler Icons A set of over 400 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke. Video Puppet Using a markdown file, create a video (with captions) from a chosen set of images, audio files and smaller video clips. Exifr The fastest and most versatile JavaScript EXIF reading library. Seamless Pattern Generator Create seamless, repeatable royalty free patterns for your website, or to download as SVG, JPEG or PNG. Resoundly Produce a podcast simply by typing the content and this app will convert it to speech. Spline Easily create 3D web experiences without coding. Build and iterate fast with production-ready results. Photo Stream Self-hosted, super simple photo stream. Built with Ruby and seems to require either Netlify or Jekyll. Ionicons Premium designed icons for use in web, iOS, Android, and desktop apps. Support for SVG and web font. The Uncategorizables Advanced React & GraphQL by Wes Bos is 50% Off! The master package includes 68 HD videos, part of 10 modules – and course updates are free forever. promoted Brim Desktop application to efficiently search large packet captures and logs from Zeek (the network security monitoring tool). StartNames Produces brandable ideas for domain names in a Twitter stream, based on actual domains that are for sale. WMS Everywhere Chrome extension to help you research search volume, advertising cost per click, and related keywords inside Google search results – free and on-demand. PDF.js Express Add a PDF.js viewer with out-of-the-box annotation, PDF form fill, and signing. Based on Mozilla's PDF.js (for parsing and rendering PDFs). AsyncAPI Open source tools to easily build and maintain your event-driven architecture. All powered by the AsyncAPI specification, the industry standard for defining asynchronous APIs. Weglot Allows you to make your website multilingual in minutes and to manage all your translations effortlessly. Our Site Updates An easy way to post updates to your website (e.g. via easy to install banners) and keep visitors informed. RightFont An innovative, beautiful and professional font manager app for Mac, helping designers preview, install, sync, and manage their font files. PingPong Remote user interviews and user tests made simple. Extract Article Text Lets you easily extract boilerplate-free text from news articles, blogs, press releases, and company pages with a single API request. Commerce Drop‑in e‑commerce for any website with a single line of code. Serverless, real‑time, and API‑first. A Tweet for Thought When you're living in a tech bubble like many of us are, it's hard to believe there are people this naive. Send Me Your Tools! Made something? Send links via Direct Message on Twitter @WebToolsWeekly (details here). No tutorials or articles, please. If you have any suggestions for improvement or corrections, feel free to reply to this email. Before I Go... This is amazing: Open and Shut lets you send messages in Morse code by repeatedly slamming your laptop shut. So if you've been kidnapped and forced to give up all your passwords or something...? Thanks to everyone for subscribing and reading! Keep tooling, Louis webtoolsweekly.com @WebToolsWeekly PayPal.me/WebToolsWeekly Full Article
dia [ASAP] Stereochemical Relay through a Cationic Intermediate: Helical Preorganization Dictates Direction of Conrotation in the <italic toggle="yes">halo</italic>-Nazarov Cyclization By feedproxy.google.com Published On :: Thu, 30 Apr 2020 04:00:00 GMT Organic LettersDOI: 10.1021/acs.orglett.0c01330 Full Article
dia [ASAP] Carbocation versus Carbene Controlled Chemoselectivity: DFT Study on Gold- and Silver-Catalyzed Alkylation/Cyclopropanation of Indoles with Vinyl Diazoesters By feedproxy.google.com Published On :: Fri, 01 May 2020 04:00:00 GMT Organic LettersDOI: 10.1021/acs.orglett.0c01476 Full Article
dia [ASAP] Copper-Catalyzed Oxyvinylation of Diazo Compounds By feedproxy.google.com Published On :: Fri, 01 May 2020 04:00:00 GMT Organic LettersDOI: 10.1021/acs.orglett.0c01150 Full Article
dia [ASAP] Phosphorus(III)-Mediated, Tandem Deoxygenative Geminal Chlorofluorination of 1,2-Diketones By feedproxy.google.com Published On :: Fri, 08 May 2020 04:00:00 GMT Organic LettersDOI: 10.1021/acs.orglett.0c01258 Full Article
dia [ASAP] Copper-Mediated DNA-Compatible One-Pot Click Reactions of Alkynes with Aryl Borates and TMS-N<sub>3</sub> By feedproxy.google.com Published On :: Fri, 08 May 2020 04:00:00 GMT Organic LettersDOI: 10.1021/acs.orglett.0c01219 Full Article
dia LG Chem share price falls nearly 2% after deadly gas leak in India By Published On :: Thursday, May 07, 2020, 18:27 +0530 The leak was brought under control after being discovered by a maintenance worker on the night shift at the LG Polymers plant, outside the east coast city of Visakhapatnam, in India`s southern Andhra Pradesh state, according to a company spokesman. Full Article
dia Life Insurance Corporation of India’s New Endowment Plan: Check benefits, other details of this policy By Published On :: Friday, May 08, 2020, 10:15 +0530 LIC's New Endowment Plan is a participating non-linked plan which offers an attractive combination of protection and saving features. Full Article
dia NLC India TPS II, all about the company where boiler blast occurred in Neyveli By Published On :: Friday, May 08, 2020, 11:26 +0530 The power stations of the NLC integrated mining-cum-power generating company are located at Neyveli in Cuddalore. Full Article
dia BMW launches 8 Series Gran Coupe at Rs 1.3 crore, M8 Coupe at Rs 2.15 crore in India By Published On :: Friday, May 08, 2020, 14:26 +0530 The BMW 8 Series Gran Coupe is powered by a 3-litre, 6-cylinder in-line BSVI petrol engine. This is the most luxurious sports coupe ever built by BMW, the company said in a statement Full Article
dia Womanish Black girls: women resisting the contradictions of silence and voice / edited by Dianne Smith, Loyce Caruthers, and Shaunda Fowler ; with a foreword by Joy James By library.mit.edu Published On :: Sun, 11 Aug 2019 07:40:15 EDT Browsery HQ1163.W66 2019 Full Article
dia Hanging out, messing around, and geeking out: kids living and learning with new media / Mizuko Ito, Sonja Baumer, Matteo Bittanti, danah boyd, Rachel Cody, Becky Herr-Stephenson, Heather A. Horst, Patricia G. Lange, Dilan Mahendran, Katynka Z. Martín By library.mit.edu Published On :: Sun, 27 Oct 2019 06:41:41 EDT Browsery HQ799.2.M352 H36 2019 Full Article
dia Radiation physics and chemistry [electronic resource]. By lib.cityu.edu.hk Published On :: Tue, 6 Jun 2017 8:36:45 Publisher Oxford ; New York : Pergamon.Location World Wide Web Call No. QD601.A1 Full Article
dia Nuclear tracks and radiation measurements [electronic resource]. By lib.cityu.edu.hk Published On :: Tue, 6 Jun 2017 8:36:45 Publisher Oxford ; New York : Pergamon Press, c1982-1985.Location World Wide Web Call No. QC787.N78 Full Article
dia Nuclear tracks and radiation measurements [electronic resource]. By lib.cityu.edu.hk Published On :: Tue, 6 Jun 2017 8:36:45 Publisher Oxford : Pergamon Press, c1993-c1994.Location World Wide Web Call No. QC787.N78 Full Article
dia Radiation physics and chemistry [electronic resource]. By lib.cityu.edu.hk Published On :: Tue, 6 Jun 2017 8:36:45 Publisher Oxford : Pergamon,Location World Wide Web Call No. QC770 Full Article
dia Around 30 Indian institutions are working to develop a nCoV-19 vaccine By www.thehindubusinessline.com Published On :: Fri, 08 May 2020 14:45:30 +0530 A few of them are expected to move into clinical trials later this year. Full Article Science
dia Indian Psychiatric Society joins TikTok to share tips on mental health during Covid-19 By www.thehindubusinessline.com Published On :: Fri, 08 May 2020 13:23:02 +0530 The coronavirus-induced lockdown has been coined as the world's biggest psychological experiment by the World Economic Forum. The spread of the pandem Full Article Science
dia Encyclopedia of continuum mechanics / edited by Holm Altenbach, Andreas Öchsner By library.mit.edu Published On :: Sun, 1 Mar 2020 07:37:39 EST Online Resource Full Article
dia Mathematical modelling and scientific computing with applications: ICMMSC 2018, Indore, India, July 19-21 / Santanu Manna, Biswa Nath Datta, Sk. Safique Ahmad, editors By library.mit.edu Published On :: Sun, 15 Mar 2020 07:45:28 EDT Online Resource Full Article
dia Best of BS Opinion: Lockdown continues, India's economic growth, and more By www.business-standard.com Published On :: Sat, 02 May 2020 02:22:00 +0530 Here is a summary of Business Standard opinion pieces for the day Full Article
dia Best of BS Opinion: Covid-19 outbreak, India's MF industry, and more By www.business-standard.com Published On :: Wed, 06 May 2020 06:48:00 +0530 Here's a selection of Business Standard Opinion pieces for the day Full Article
dia After Jyotiraditya Scindia, another Congress leader could soon join BJP By www.business-standard.com Published On :: Thu, 07 May 2020 00:10:00 +0530 The BJP is also in need of articulate lawyers and politicians to put forth its case Full Article
dia Grammatical Number in Welsh: Diachrony and Typology By www.wiley.com Published On :: 2020-03-02T05:00:00Z The first comprehensive treatment of grammatical number in Welsh - an intriguing, yet relatively neglected area in the study of number phenomena. Read More... Full Article
dia PUBG Mobile India Series 2020: Prize money, date of tournament and registra... By Published On :: PUBG Mobile India Series 2020: Prize money, date of tournament and registra... Full Article
dia Xiaomi launches Mi Box 4K streaming device in India, here's are the fe... By Published On :: Xiaomi launches Mi Box 4K streaming device in India, here's are the fe... Full Article
dia Operation Samudra Setu: Around 2,000 Indians to be evacuated from Maldives... By Published On :: Operation Samudra Setu: Around 2,000 Indians to be evacuated from Maldives... Full Article
dia Coronavirus in India LIVE: COVID-19 tally in Delhi mounts to 6,318 cases; d... By Published On :: Coronavirus in India LIVE: COVID-19 tally in Delhi mounts to 6,318 cases; d... Full Article
dia Rabindranath Tagore birth anniversary: Rare facts about India's first... By Published On :: Rabindranath Tagore birth anniversary: Rare facts about India's first... Full Article
dia Citizenship Amendment Act – Untold Pitfalls, Concealed War if India can’t oppose By feedproxy.google.com Published On :: Tue, 17 Dec 2019 21:04:42 +0000 The reason why Assam or Tripura is up against the controversial Citizenship Amendment Act, passed by the Union of India is very different from the reasons why the rest of India, including most Indian Universities, are protesting. Assam or Tripura does not want this Act at all – no matter its Hindus or Muslims. The […] The post Citizenship Amendment Act – Untold Pitfalls, Concealed War if India can’t oppose appeared first on TIMES OF ASSAM by Priyankan Goswami. Full Article OP-ED Bangladesh Bangladeshi BJP CAA Citizenship Amendment Act Hindu Brahmin Indian Army Insurgency Jihadi Kashmir L K Advani Modi NSCN Pakistan Paresh Baruah POTA Prevention of Terrorism Act Supreme Court of India ULFA UNLFW
dia 'In India, you get pittance for a song' By www.rediff.com Published On :: Thu, 08 May 2014 13:28:54 +0530 Singer KK talks about his playback career and the new crop of talented singers in Bollywood. Full Article Billy Joel Krishnakumar Kunnath Kishore Kumar Mohammed Rafi Kirorimal College Patcy Delhi Race Bollywood India Delhi Jyothi Mumbai Leslie Lewis Hum Dil De Chuke Sanam Banda Yeh Bindaas Hai Hariharan Mujhe Kuch Kehna Hai Shekhar Kapur Sashilal Nair Woh Galiyaan Strawberry Aankhen Vishal Bhardwaj Tadap Tadap Mumbai Eshaas Delhi Awaarapan Gulzaarsaab Kishore Kumar Tarzan Boys India Baltimora Pritam Shankar-Eshaan Loy Sharmilee Kholgade Benny Dayal Shankar Mahdevan Niti Mohan Mithoon Burman
dia PIX: Angry Indian Goddesses visit Rediff! By www.rediff.com Published On :: Wed, 02 Dec 2015 17:09:08 +0530 A look at the fun visit in pictures! Full Article Tannishtha Chatterjee Anushka Manchanda Sandhya Mridul Rajshri Deshpande Pavleen Gujral Afsar Dayatar Pan Nalin Sarah-Jane Dias Reuben NV Amrit Maghera Goa PIX com Nutella
dia Watch: Akshay Kumar's message for every Indian By www.rediff.com Published On :: Sat, 08 Oct 2016 10:00:48 +0530 Akshay's touching message for India. Full Article Akshay Kumar India
dia Watch! Guardians: The Superheroes trailer By www.rediff.com Published On :: Sat, 04 Feb 2017 10:00:39 +0530 Get ready for some Russian cinema! Full Article Sanzhar Madiyev Alina Lanina Sarik Andreasyan Anton Pampushnyy Sebastien Sisak Telugu Russian Hindi India
dia WATCH: Hugh Jackman wishes Team India! By www.rediff.com Published On :: Sat, 04 Mar 2017 10:00:12 +0530 Watch the Australian actor, a huge cricket fan, wish the Indian cricket team in their ongoing Test match series against Australia. Full Article Hugh Jackman Team India WATCH Wolverine Logan Australia
dia Where Diana Penty will go 'in a heartbeat'! By www.rediff.com Published On :: Tue, 07 Nov 2017 15:54:01 +0530 Stars go for the loveliest holidays -- exotic locations with a lot of adventure thrown in. We bring you their travels in a special series. Full Article Diana Penty Kavita Kaushik Sanjay Dutt Instagram PIX Faraglioni Dubai Capri