ken Phytoplasmas: plant pathogenic bacteria. / Assunta Bertaccini, Kenro Oshima, Michael Kube, Govind Pratap Rao, editors By library.mit.edu Published On :: Sun, 22 Dec 2019 07:46:07 EST Online Resource Full Article
ken Linnaeus, natural history and the circulation of knowledge / edited by Hanna Hodacs, Kenneth Nyberg and Stéphane van Damme By library.mit.edu Published On :: Sun, 23 Feb 2020 09:06:07 EST Hayden Library - QH44.L556 2018 Full Article
ken Shifting baselines in the Chesapeake Bay: an environmental history / Victor S. Kennedy By library.mit.edu Published On :: Sun, 26 Apr 2020 08:31:05 EDT Hayden Library - QH541.5.C65 K46 2018 Full Article
ken A heavy intruder in a locally-shaken granular solid By feeds.rsc.org Published On :: Soft Matter, 2020, 16,3921-3928DOI: 10.1039/C9SM02498K, PaperDiego Berzi, Stefano BuzzaccaroWe experimentally investigate the gravitational-driven motion of a heavy object inside a vertical 2D assembly of identical, plastic cylinders arranged in a regular, triangular lattice.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
ken HC seeks report on sanitisation measures taken at temporary markets By www.thehindu.com Published On :: Fri, 08 May 2020 23:59:05 +0530 The Madras High Court on Friday granted time till Monday for the State government to file a comprehensive report on steps taken to conduct mass testin Full Article Tamil Nadu
ken Design Tokens and Component Based Design By feedproxy.google.com Published On :: Sat, 14 Dec 2019 12:00:00 +0000 Stuart Robson rolls up his sleeves and begins to piece together the jigsaw puzzle that is design tokens and component based design. Starting with the corners, and working around the edges, Stu helps us to piece together a full picture of a modern design system. If you stare at your twitter feed long enough, it can look like everyone is talking about Design Systems. In some cases you could be persuaded to think how shallow the term can go. “Isn’t this what we called Style Guides?”, “Here’s my React Design System”, “I’ve just updated the Design System in Sketch” To me, they are some and all of these things. Over the last 4 years of consulting with two clients on their Design System, my own view has changed a little. If you dig a little deeper into Design Systems twitter you will probably see the term “Design Tokens” pop up at least once a day somewhere. Design Tokens came out of work that was being done at Salesforce with Jina and others who pioneered the creation of Design Tokens as we know them today – creating the first command line tool in Theo that had started the adoption of Design Tokens to the wider Design Systems Community. A cool term but, what are they? If you look at your client work, your companies site, the project you’re working on you should notice some parts of the page have a degree of consistency: the background colour of your form buttons is the same colour as your link text, or your text has the same margin, or your card elements have the same spacing as your media object. These are design decisions, and they should be littered across the overall design of your project. These decisions might start off in a Sketch file and make their way into code from detailed investigation of a Sketch file, or you may find that the design evolves from your design application once it gets into code. These design decisions can change, and to keep them synchronised across design and development in applications, as well as a larger documentation site in your Design System, is going to take some effort. This is where Design Tokens come in, and I find the best way to succinctly reiterate what they are is via the two following quotes… “Design Tokens are an abstraction for everything impacting the visual design of an app/platform.” – Sönke Rohde …and “We use them in place of hard-coded values in order to maintain a scale-able and consistent visual system.” – Jina There are several global design decisions that we can abstract to create a top level design token – Sizing, Font Families, Font Styles, Font Weights, Font Sizes, Line Heights, Border Styles, Border Colours, Border Radius, Horizontal Rule Colours, Background Colours, Gradients, Background Gradients, Box Shadows, Filters, Text Colours, Text Shadow, Time, Media Queries, Z Index, Icons – these can all be abstracted as required. So, spicy Sass variables? We can look at Design Tokens as an abstraction of CSS, sort of like Sass variables, but spicier. Looking at them like this we can see that they are (in either .yaml or .json) a group of related key value pairs with more information that can be added as needed. The great thing with abstracting design decisions outside of your CSS pre-processor is that you’re not tying those decisions to one platform or codebase. As a crude example, we can see here that we are defining a name and a value that could then become our color, background-color, or border-color, and more. # Colours # ------- - name: color-red value: #FF0000 - name: color-green value: #00FF00 - name: color-blue value: #0000FF - name: color-white value: #FFFFFF - name: color-black value: #000000 These can then generate our Sass variables (as an example) for our projects. $color-red: #FF0000 !default; $color-green: #00FF00 !default; $color-blue: #0000FF !default; $color-white: #FFFFFF !default; $color-black: #000000 !default; Why are they so good Ok, so we now know what Design Tokens are, but why do we need them? What makes them better than our existing solutions (css pre-processors) for defining these design decisions? I think there are 5 really good reasons why we all should start abstracting these design decisions away from the CSS that they may live in. Some of these reasons are similar to reasons some developers use a pre-processor like Sass, but with added bonuses. Consistency Much like using a CSS pre-processor or using CSS custom properties, being able to define a background colour, breakpoint, or font-size in more than one place using the same key ensures that we are using the Sass values across the entire product suite we are developing for. Using our Design Tokens in their generated formats, we can be sure to not end up with 261 shades of blue. Maintainability By using a pre-processor like Sass, or using native CSS custom properties, we can already have maintainable code in our projects. Design Tokens also do this at the abstracted level as well. Scalability “Design Tokens enable us to scale our Design across all the permutations.” – Jina At this point, we’re only talking about abstracting the design decisions for use in CSS. Having Design Tokens allows design to scale for multiple brands or multiple projects as needed. The main benefit of Design Tokens in regards to scalability is the option that it gives us to offer the Design Tokens for other platforms and frameworks as needed. With some of the tools available, we can even have these Tokens shared between applications used by designers and developers. Your marketing site and your iOS application can soon share the same design decisions codified, and you can move towards creating an Android app or web application as required. Documentation If we abstract the design decisions from one platform specific programming language it would be no good if it wasn’t made to be easily accessible. The tools and applications available that are mentioned later in this article can now create their own documentation, or allow you to create your own. This documentation is either hosted within a web-based application or can be self-hosted with the rest of your Design Systems documentation. Most of the command line tools go further and allow you do add more details that you wish to convey in the documentation, making it as unique as it is required for your project. Empowerment When you abstract your design decisions to Design Tokens, you can help empower other people on the project. With the tools available today, and the tools that are just around the corner, we can have these design decisions determined by anyone on the team. No-one necessarily needs to understand how to set up the codebase to update the colour slightly. Some of the tools I mention later on allow you to update the Design Tokens in the browser. Design Systems are already “bridging the gap” between design and development. With Design Tokens and the tooling available, we can create better team relationships by closing that gap instead. Some of the benefits of creating and using Design Tokens are the same as using a pre-processor when it comes to authoring CSS. I feel the added bonuses of being able to empower other team members and document how you use them, as well as the fundamental reasoning in that they can be platform agnostic, are all great “selling points” to why you need to start using Design Tokens today. Tools There are several tools available to help you and your team to create the required files from your abstracted Design Tokens: Command Line Tools There are several tools available on the command line that can be used as part of, or separate to, your development process. These tools allow you to define the Design Tokens in a .json or .yaml file format which can then be compiled into the formats you require. Some have built in functions to turn the inputted values to something different when compiled – for example, turning hexadecimal code that is a Design Token into a RGB value in your .css file. These command line tools, written in JavaScript, allow you to create your own ways in which you want things transformed. My current client has certain design decisions for typography in long form content (font size, weight, line height and margins) which need to be together to make sense. Being able to write JavaScript to compile these design decisions into an independent Sass map for each element allows us to develop with assurance that the long form content has the correct styling. WYSIWYG Tools WYSIWYG (What You See Is What You Get Tools) have been around for almost as long as we have been able to make websites. I can just about remember using Dreamweaver 2, before I knew what a <table> was. When browsers started to employ vendor prefixes to new CSS for their browsers, a flurry of online WYSIWYG tools came with it built in. They’re still there, but the industry has moved on. Design Tokens also have a few WYSIWYG tools available. From simpler online tools that allow you to generate the correct Sass variables needed for your design decisions to tools that store your decisions online and allow you to export them as npm packages. These types of tools for creating Design Tokens can help empower the team as a whole, with some automatically creating documentation which can easily be shared with a url. Retrofitting Tools If you are starting from scratch on a new re-design or on a new project that requires a Design System and Tokens, the many of the tools mentioned above will help you along your way. But what if you’re in the middle of a project, or you have to maintain something and want to start to create the parts required for a Design System? Luckily there are several tools and techniques to help you make a start. One new tool that might be useful is Superposition. Currently in private beta with the public release set for Q1 of 2020 Superposition helps you “Extract design tokens from websites and use them in code and in your design tool.” Entering your domain gives you a nice visual documentation of your sites styles as Design Tokens. These can then be exported as Sass Variables, CSS Custom Properties, JavaScript with the team working on exports to iOS and Android. If you have an existing site, this could be a good first step before moving to one of the other tools mentioned above. You could also make use of CSSStats or Project Wallace’s Analysis page that I mentioned earlier. This would give you an indication of what Design Tokens you would need to implement. Component Based Design So, we’ve created our Design Tokens by abstracting the design decisions of brand colours, typography, spacing and more. Is that as far as we can go? Levels of Design Decisions Once we have created our first set of Design Tokens for our project, we can take it that little bit deeper. With command line tools and some of the applications available, you can link these more global decisions to a more deeper level. For example, you can take your chosen colours and make further design decisions on the themes of your project, such as what the primary, secondary, or tertiary colours are or what your general component and layout spacing will be. With this, we can go one step further. We could also define some component specific design decisions that can then be compiled for the developer to use. Invest in time to check over the designs with a fine toothcomb and make sure you are using the correct Sass variable or CSS custom property for that component. If you are going more than one or two levels of design decision making, you can compile each set of these Design Tokens to your Sass variables which can then be used as required. So you can provide: global, theme, component level Sass variables which can be used in the project. Or you could choose to only compile what you need for the components you are creating. Variables, Maps, Custom Properties Some of the tools available for creating and maintaining your Design Tokens allow you to compile to certain programming languages. With my current client work, I am making use of Sass variables, Sass maps, and CSS custom properties. The Design Tokens are compiled into one or more of these options depending on how they will be used. Colours are compiled as global Sass variables, inside of a couple of Sass maps and CSS custom properties. Our macro layout breakpoints are defined as a single Sass map. If we know we are creating a component that has the ability to be themed, we can make use of CSS custom properties to reduce the amount of CSS we need to override, and also allow us to inline things that can be changed via a CMS as required. Which leaves us using Sass variables for parts of a component that won’t change. We are using Sass maps differently still. As mentioned, we generate a Sass map containing the design decisions for each element of text, and we can use long form text. This Sass map is then compiled into separate CSS declarations as needed using Sass mixins. I find the beauty of being able to make use of the global, themed, and component level design decisions by compiling them into various formats (that essentially become CSS) and that gives us more power in authoring components. Creating Consistent Utility Classes As you have created your more global generic design decisions, you can create your own small set of utility classes. Using a pre-processor like Sass you can define a set of mixins and functions that can take your Design Tokens that have been compiled down into variables and maps and generate separate classes for each design decision. By making tokens available to all digital teams, we can enable them to create custom experiences that are aligned to current visual standards when a component does not (or will not) exist in the design system. Maya King In creating utility classes with Design Tokens (using something like Sass) you have consistency with the overall Design System for times when you or a team need to create a one-off component for a project. These exceptions tend to be something that won’t make it as part of the overall Design System, but it still needs that look and feel. Having classes available that we can guarantee use the generic, global design decisions from the Design Tokens means these one-off components should be well on their way to have the overall look and feel of the project, and will get any updates with little to no additional overhead. Wrapping Up I think we are starting to see the potential of using Design Tokens as Design Systems become even more popular. I think that, from this overview, we can see how they can help us close the gap that still exists in places between the designers and developers on the team. They can help empower people who do not code to make changes that can be automatically updating live work. I think you can start now. You may not have or need what you could term “a fully-fledged Design System” but this small step will help move towards one in the future and give you instant benefits of consistency and maintainability now. If you want more Design Tokens, as well as the links that are dotted around this article I also maintain a GitHub repo of Awesome Design Tokens which I try to keep updated with links to tools, articles, examples, videos, and anything else that’s related to Design Tokens. About the author Stuart Robson is a freelance front-end developer and design systems advocate who curates the design systems newsletter - news.design.systems More articles by Stuart Full Article Design style-guides
ken The suspect: an Olympic bombing, the FBI, the media, and Richard Jewell, the man caught in the middle / Kent Alexander & Kevin Salwen By library.mit.edu Published On :: Sun, 29 Mar 2020 07:44:51 EDT Dewey Library - HV8079.B62 A44 2019 Full Article
ken Murder, Inc.: the CIA under John F. Kennedy / James H. Johnston By library.mit.edu Published On :: Sun, 26 Apr 2020 09:04:30 EDT Dewey Library - JK468.I6 J628 2019 Full Article
ken Strategy, evolution, and war: from apes to artificial intelligence / Kenneth Payne By library.mit.edu Published On :: Sun, 26 Apr 2020 09:04:30 EDT Dewey Library - U162.P39 2018 Full Article
ken Poll power: the Voter Education Project and the movement for the ballot in the American South / Evan Faulkenbury By library.mit.edu Published On :: Sun, 26 Apr 2020 09:04:30 EDT Dewey Library - JK2160.F38 2019 Full Article
ken Democracies and authoritarian regimes / Andrea Kendall-Taylor, Natasha Lindstaedt, Erica Frantz By library.mit.edu Published On :: Sun, 3 May 2020 10:24:48 EDT Dewey Library - JC348.K46 2019 Full Article
ken Lalu Prasad Yadav convicted in fodder scam case, taken to jail in Ranchi By archive.indianexpress.com Published On :: Mon, 30 Sep 2013 04:04:27 GMT Lalu's conviction rendered him ineligible for contesting elections for at least six years. Full Article
ken Fodder scam: Lalu Prasad taken to Birsa Munda Central jail By archive.indianexpress.com Published On :: Mon, 30 Sep 2013 08:41:24 GMT The court has fixed October three for pronouncement of sentence against Yadav. Full Article
ken Jagan taken into preventive custody, sent to hospital amid fears of falling health By archive.indianexpress.com Published On :: Wed, 09 Oct 2013 19:14:00 GMT YSR Congress chief was fasting in protest against the decision to bifurcate Andhra Pradesh. Full Article
ken Mumbai: More than 200 students taken ill after mid-day meal in school By archive.indianexpress.com Published On :: Mon, 25 Nov 2013 08:54:18 GMT Children consumed a cake served to then after which they started complaining of uneasiness. Full Article
ken Tehelka case: Tejpal sent to 6-day police custody, will be taken to crime scene By archive.indianexpress.com Published On :: Sun, 01 Dec 2013 10:33:04 GMT Tejpal's lawyers opposed the demand for police custody saying he was cooperating with the Crime Branch. Full Article
ken Corporate social responsibility and natural resource conflict / Kylie McKenna By prospero.murdoch.edu.au Published On :: McKenna, Kylie, author Full Article
ken Earth resources and environmental impacts / Kieran D. O'Hara, the Department of Earth and Environmental Sciences, University of Kentucky (emeritus) By prospero.murdoch.edu.au Published On :: O'Hara, Kieran D., author Full Article
ken Drawdown : the most comprehensive plan ever proposed to reverse global warming / edited by Paul Hawken By prospero.murdoch.edu.au Published On :: Full Article
ken Nun gangrape case: Strongest action will be taken, says CM Mamata By indianexpress.com Published On :: Mon, 16 Mar 2015 14:04:35 +0000 Full Article DO NOT USE West Bengal India
ken CPM taken care of, next target is Delhi: Mamata Banerjee By indianexpress.com Published On :: Tue, 21 Jul 2015 18:30:17 +0000 Full Article DO NOT USE West Bengal India
ken Tektites / by Ken McNamara & Alex Bevan ; with a foreword by Christian Koeberl By prospero.murdoch.edu.au Published On :: McNamara, Ken Full Article
ken Totley, a study of the silver mines at One Mile, Ravenswood district / by K.H. Kennedy, Peter Bell, Carolyn Edmondson ; with preface by B.J. Dalton By prospero.murdoch.edu.au Published On :: Kennedy, K. H. (Kett Howard), 1948- Full Article
ken 004 JSJ Backbone.js with Jeremy Ashkenas By devchat.tv Published On :: Mon, 13 Feb 2012 08:00:00 -0500 The panelists discuss Backbone.js with Jeremy Ashkenas. Full Article
ken 017 JSJ CoffeeScript with Jeremy Ashkenas By devchat.tv Published On :: Tue, 19 Jun 2012 23:01:00 -0400 The panelists talk to Jeremy Ashkenas about CoffeeScript. Full Article
ken 116 JSJ jQuery UI vs KendoUI with Burke Holland and TJ VanToll By devchat.tv Published On :: Wed, 09 Jul 2014 09:00:00 -0400 The panelists discuss jQuery vs KendoUI with Burke Holland and TJ VanToll. Full Article
ken 150 JSJ OIMs with Richard Kennard, Geraint Luff, and David Luecke By devchat.tv Published On :: Wed, 11 Mar 2015 10:00:00 -0400 Check out RailsClips on Kickstarter!! 02:01 - Richard Kennard Introduction Twitter GitHub Kennard Consulting Metawidget 02:04 - Geraint Luff Introduction Twitter 02:07 - David Luecke Introduction Twitter GitHub 02:57 - Object-relational Mapping (ORM) NoSQL Duplication 10:57 - Online Interface Mapper (OIM) CRUD (Create, Read, Update, Delete) UI (User Interface) 12:53 - How OIMs Work Form Generation Dynamic Generation Static Generation Duplication of Definitions Runtime Generation 16:02 - Editing a UI That’s Automatically Generated Shape Information => Make Obvious Choice 23:01 - Why Do We Need These? 25:24 - Protocol? Metawidget 27:56 - Plugging Into Frameworks backbone-forms JSON Schema 33:48 - Making Judgement Calls WebComponents, React JSON API AngularJS 49:27 - Example OIMs JSON Schema Metawidget Jsonary 52:08 - Testing Picks The Legend of Zelda: Majora's Mask 3D (AJ) 80/20 Sales and Marketing: The Definitive Guide to Working Less and Making More by Perry Marshall (Chuck) A Wizard of Earthsea by Ursula K. Le Guin (Chuck) Conform: Exposing the Truth About Common Core and Public Education by Glenn Beck (Chuck) Miracles and Massacres: True and Untold Stories of the Making of America by Glenn Beck (Chuck) 3D Modeling (Richard) Blender (Richard) Me3D (Richard) Bandcamp (David) Zones of Thought Series by Vernor Vinge (David) Citizenfour (Geraint) Solar Fields (Geraint) OpenPGP.js (Geraint) forge (Geraint) Full Article
ken 171 JSJ Babel with Sebastian McKenzie By devchat.tv Published On :: Wed, 05 Aug 2015 11:00:00 -0400 02:28 - Sebastian McKenzie Introduction Twitter GitHub Blog 02:53 - Babel (Pronunciation Clarification) 05:56 - History Learn ES2015 - Babel 09:14 - The State of Babel 09:59 - Babel and the TC39 Process 11:54 - Features That Can’t Be Transpiled Weak Maps and Proxies 13:45 - Readability and Performance Output Traceur 18:12 - Plugin Architecture 19:58 - ES6/2015 Feature Implementation Blockscoping Labels Exceptions Destructuring 25:49 - The Birth of Babel 26:45 - Babel vs Traceur 28:08 - Future Babel Features Code Optimization Minification Linting 30:15 - The Status of ES2015 and ES2016 31:01 - Browser Support 35:03 - Marketing 35:59 - TypeScript 37:24 - Babel Development and Labor Picks Primitive.io (Joe) Armada: The Novel by Ernest Cline (Joe) How to Win Friends & Influence People by Dale Carnegie (AJ) Web Security Warriors Podcast (AJ) Nodevember (Aimee) The Hitchhiker's Guide to the Galaxy by Douglas Adams (Dave) Yellowstone National Park (Dave) React Rally (Dave) Iterativ: AngularJS Kurs (Chuck) Hire Thom Parkin! (Chuck) The Martian by Andy Weir (Sebastian) Five Guys Burgers and Fries (Sebastian) Full Article
ken 207 JSJ Growing Happy Developers with Marcus Blankenship By devchat.tv Published On :: Wed, 13 Apr 2016 09:00:00 -0400 02:51 - Marcus Blankenship Introduction Twitter Blog 03:09 - Panelist Worst Boss Experiences 13:06 - Developer Anarchy vs Having a Hierarchy SE-Radio Episode 253: Fred George on Developer Anarchy The Valve Playbook 20:57 - Transitioning Managers Impostor Syndrome 26:05 - Manager Influence 28:33 - Management vs Leadership Leader-Member Exchange Theory 34:37 - Interpersonal Relationships and Happiness 38:24 - What kind of feedback do managers want from their employees? Timesheets 46:17 - Am I manager material? Am I ready to go into management? 48:06 - Following a Technical Track 51:55 - Why would anyone ever want to be a department manager? Picks A Plain English Guide to JavaScript Prototypes (Aimee) Oatmega (Aimee) Luck by Tom Vek (Jamison) The 27 Challenges Managers Face: Step-by-Step Solutions to (Nearly) All of Your Management Problems by Bruce Tulgan (Marcus) React Rally Call for Proposals (Jamison) React Rally (Jamison) Multipliers: How the Best Leaders Make Everyone Smarter by Liz Wiseman (Dave) Soft Skills Engineering Podcast (Dave) Full Article
ken 244 JSJ Visual Studio with Sam Guckenheimer By devchat.tv Published On :: Wed, 28 Dec 2016 08:00:00 -0500 1:05 - Introducing Sam Guckenheimer Twitter Microsoft Devops 2:45 - Continuous integration with Visual Studio 4:15 - Visual Studio on Macs Download link 5:55 - Is Visual Studio just for C#? Chris Dias JSJ Episode 8:45 - Container support and the Cloud 14:20 - Docker and Visual Studio 17:40 - Communicating with multiple services 24:15 - Talking to clients about change and working with transformation 33:00 - Telemetry and collecting data 37:50 - Xamarin forms 47:50 - Deployment with changed endpoints Picks: Daplie Wefunder (AJ) Unroll.Me (Charles) Focused Inbox on Outlook (Sam) WhiteSource (Sam) The Girl On The Train (Sam) The Pigeon Tunnel by John le Carre (Sam) Full Article
ken JSJ 324: with Kent Beck By devchat.tv Published On :: Tue, 31 Jul 2018 06:00:00 -0400 Panel: Charles Max Wood Joe Eames Aimee Knight Special Guests: Kent Beck In this episode, the JavaScript Jabber panel talks to Kent Beck. Kent left Facebook 4 months ago after working for them for 7 years and is now self-unemployed so that he can decompress from the stressful environment that he was a part of for so long. He now travels, writes, creates art, thinks up crazy programming ideas, and is taking a breather. They talk about what he did at Facebook, what his coaching engagement sessions consisted of, and the importance of taking time for yourself sometimes. They also touch on what he has learned from his experience coaching, how to create a healthy environment within the workplace, and more! In particular, we dive pretty deep on: Kent intro/update Ruby Rogues Episode 23 Worked at Facebook for 7 years What were you doing at Facebook? Unique culture at Facebook His strengths as a developer didn’t match with the organization’s Coaching developers TDD and Patterns Advantages as an old engineer What did coaching engagement consist of? Takes time to build trust Discharging shame Need permission to take care of what you need to Being at your best so you can do your best work Vacation in place What have you learned in your time working with people? The nice thing about coaching Everyone is different How do we create a healthy environment within the workplace? Mentor in Ward Cunningham What is it costing us? Why did you decide to leave? And much, much more! Links: Ruby Rogues Episode 23 @KentBeck kentbeck.com Kent’s GitHub Sponsors Kendo UI Sentry Digital Ocean Picks: Charles The Five Dysfunctions of a Team by Patrick Lencioni Crucial Accountability by Kerry Patterson Aimee n-back Joe Test Driven Development: By Example by Kent Beck Kent The Field Guide to Understanding 'Human Error' by Sidney Dekker Conspiracy: Peter Thiel, Hulk Hogan, Gawker, and the Anatomy of Intrigue by Ryan Holiday Full Article
ken The yellowhammer war [electronic resource] : the Civil War and Reconstruction in Alabama / edited by Kenneth W. Noe By prospero.murdoch.edu.au Published On :: Full Article
ken You gotta deal with it [electronic resource] : Black family relations in a Southern community / Theodore R. Kennedy By prospero.murdoch.edu.au Published On :: Kennedy, Theodore R., 1936- Full Article
ken Young people and the environment [electronic resource] : an Asia-Pacific perspective / edited by John Fien, David Yencken and Helen Sykes By prospero.murdoch.edu.au Published On :: Full Article
ken Your successful real estate career [electronic resource] / Kenneth W. Edwards By prospero.murdoch.edu.au Published On :: Edwards, Kenneth W., 1928- Full Article
ken Youth and peaceful elections in Kenya [electronic resource] edited by Kimani Njogu By prospero.murdoch.edu.au Published On :: Full Article
ken Zaprudered [electronic resource] : the Kennedy assassination film in visual culture / Øyvind Vågnes By prospero.murdoch.edu.au Published On :: Vågnes, Øyvind, 1972- Full Article
ken A Zen wave [electronic resource] : Basho's haiku and Zen / Robert Aitken ; foreword by W.S. Merwin By prospero.murdoch.edu.au Published On :: Aitken, Robert, 1917-2010 Full Article
ken River ecosystem ecology : a global perspective : a derivative of Encyclopedia of inland waters / editor, Gene E. Likens By prospero.murdoch.edu.au Published On :: Full Article
ken The Oxford handbook of water politics and policy / edited by Ken Conca and Erika Weinthal By prospero.murdoch.edu.au Published On :: Full Article
ken Hydrology and best practices for managing water resources in arid and semi-arid lands / Christopher Misati Ondiekiand, Kenyatta Universiity, Johnson U. Kitheka, South Eastern Kenya University, Kenya By prospero.murdoch.edu.au Published On :: Full Article
ken The science of strategic conservation : protecting more with less / Kent D. Messer (University Delaware), William L. Allen III (The conservation Fund) By prospero.murdoch.edu.au Published On :: Messer, Kent D., author Full Article
ken Double allylic defluorinative alkylation of 1,1-bisnucleophiles with (trifluoromethyl)alkenes: construction of all-carbon quaternary centers By pubs.rsc.org Published On :: Org. Chem. Front., 2020, Advance ArticleDOI: 10.1039/D0QO00121J, Research ArticleYingying Cai, Hao Zeng, Chuanle Zhu, Chi Liu, Guangying Liu, Huanfeng JiangSynthesis of symmetric gem-difluoroalkene substituted products bearing all-carbon quaternary centers via double allylic defluorinative alkylation of 1,1-bisnucleophiles with (trifluoromethyl)alkenes.To cite this article before page numbers are assigned, use the DOI form of citation above.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
ken Pd/light-induced alkyl–alkenyl coupling reaction between unactivated alkyl iodides and alkenylboronic acids By pubs.rsc.org Published On :: Org. Chem. Front., 2020, Advance ArticleDOI: 10.1039/D0QO00318B, Research ArticleHsin-Ju Huang, Yi-Ting Wang, Yen-Ku Wu, Ilhyong RyuAlkyl–alkenyl coupling reaction between unactivated alkyl iodides and 2-arylalkenylboronic acids utilizing a Pd/light combined system was studied.To cite this article before page numbers are assigned, use the DOI form of citation above.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
ken Pyridine tetrafluoro-λ6-sulfanyl chlorides: spontaneous addition to alkynes and alkenes in the presence or absence of photo-irradiation By pubs.rsc.org Published On :: Org. Chem. Front., 2020, Advance ArticleDOI: 10.1039/D0QO00339E, Research ArticleKiyoteru Niina, Kazuhiro Tanagawa, Yuji Sumii, Norimichi Saito, Norio ShibataA radical addition reaction of Py-SF4Cl to alkynes and alkenes provide pyridine-SF4-alkenes and pyridine-SF4-alkanes under blue LED light irradiation or absence of light irradiation in CPME or without solvent.To cite this article before page numbers are assigned, use the DOI form of citation above.The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
ken Transition metal-catalyzed coupling of heterocyclic alkenes via C-H activation: Recent trends and applications By pubs.rsc.org Published On :: Org. Chem. Front., 2020, Accepted ManuscriptDOI: 10.1039/D0QO00279H, Review ArticleSundaravel Vivek Kumar, Sonbidya Banerjee, Tharmalingam PunniyamurthyHeterocyclic alkenes represent an important class of reactive feedstock and valuable synthons for the synthesis of biologically important heterocyclic scaffolds. Although functionalized heterocyclic alkenes and their derivatives can be accessed...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
ken Nanoscale calibration standards and methods : dimensional and related measurements in the micro- and nanometer range / edited by Günter Wilkening, Ludger Koenders By prospero.murdoch.edu.au Published On :: Full Article
ken [ASAP] Copper-Catalyzed Asymmetric Radical 1,2-Carboalkynylation of Alkenes with Alkyl Halides and Terminal Alkynes By feedproxy.google.com Published On :: Wed, 06 May 2020 04:00:00 GMT Journal of the American Chemical SocietyDOI: 10.1021/jacs.0c03130 Full Article
ken John F. Kennedy By www.nyhistory.org Published On :: Thu, 05 May 2011 22:52:18 +0000 Speaker: Robert DallekBob Herbert (moderator)Tue, 05/24/2011 - 18:30Tue, May 24th, 2011 | 7:30 pmPrice: $20Members price: $10Relating Tags: John F. KennedyCold WarBuy Tickets URL: http://tix.smarttix.com/Modules/Sales/SalesMainTabsPage.aspx?ControlState=1&DateSelected=&DiscountCode=&SalesEventId=879&DC=Programs: Past ProgramsSold out: 0 Full Article
ken Energy management in plastics processing: strategies, targets, techniques, and tools / Dr. Robin Kent By library.mit.edu Published On :: Sun, 27 Oct 2019 06:20:31 EDT Online Resource Full Article