CINXE.COM

start-up life – Mendeley Blog

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://blog.mendeley.com/xmlrpc.php"> <title>start-up life &#8211; Mendeley Blog</title> <script type="text/javascript"> WebFontConfig = {"google":{"families":["Work+Sans:r:latin,latin-ext"]},"api_url":"https:\/\/fonts-api.wp.com\/css"}; (function() { var wf = document.createElement('script'); wf.src = 'https://s0.wp.com/wp-content/plugins/custom-fonts/js/webfont.js'; wf.type = 'text/javascript'; wf.async = 'true'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wf, s); })(); </script><style id="jetpack-custom-fonts-css">.wf-active h1, .wf-active h2, .wf-active h3, .wf-active h4, .wf-active h5, .wf-active h6{font-weight:400;font-family:"Work Sans",sans-serif;font-style:normal}.wf-active h1{font-style:normal;font-weight:400}.wf-active h2{font-style:normal;font-weight:400}.wf-active h3{font-style:normal;font-weight:400}.wf-active h4{font-style:normal;font-weight:400}.wf-active h5{font-family:"Work Sans",sans-serif;font-style:normal;font-weight:400}.wf-active h6{font-family:"Work Sans",sans-serif;font-style:normal;font-weight:400}.wf-active .widget-title{font-style:normal;font-weight:400}.wf-active .site-title{font-style:normal;font-weight:400}.wf-active .site-description{font-family:"Work Sans",sans-serif;font-style:normal;font-weight:400}.wf-active .entry-category{font-weight:400;font-style:normal}.wf-active .entry-title, .wf-active .page-title{font-style:normal;font-weight:400}@media screen and (max-width: 782px){.wf-active h1{font-style:normal;font-weight:400}}@media screen and (max-width: 782px){.wf-active h2{font-style:normal;font-weight:400}}@media screen and (max-width: 782px){.wf-active h3{font-style:normal;font-weight:400}}@media screen and (max-width: 782px){.wf-active h4{font-style:normal;font-weight:400}}@media screen and (max-width: 782px){.wf-active h5{font-style:normal;font-weight:400}}@media screen and (max-width: 782px){.wf-active h6{font-style:normal;font-weight:400}}@media screen and (max-width: 782px){.wf-active .site-title{font-style:normal;font-weight:400}}</style> <meta name='robots' content='max-image-preview:large' /> <!-- Async WordPress.com Remote Login --> <script id="wpcom_remote_login_js"> var wpcom_remote_login_extra_auth = ''; function wpcom_remote_login_remove_dom_node_id( element_id ) { var dom_node = document.getElementById( element_id ); if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); } } function wpcom_remote_login_remove_dom_node_classes( class_name ) { var dom_nodes = document.querySelectorAll( '.' + class_name ); for ( var i = 0; i < dom_nodes.length; i++ ) { dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] ); } } function wpcom_remote_login_final_cleanup() { wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" ); wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" ); wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" ); } // Watch for messages back from the remote login window.addEventListener( "message", function( e ) { if ( e.origin === "https://r-login.wordpress.com" ) { var data = {}; try { data = JSON.parse( e.data ); } catch( e ) { wpcom_remote_login_final_cleanup(); return; } if ( data.msg === 'LOGIN' ) { // Clean up the login check iframe wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" ); var id_regex = new RegExp( /^[0-9]+$/ ); var token_regex = new RegExp( /^.*|.*|.*$/ ); if ( token_regex.test( data.token ) && id_regex.test( data.wpcomid ) ) { // We have everything we need to ask for a login var script = document.createElement( "script" ); script.setAttribute( "id", "wpcom_remote_login_validate" ); script.src = '/remote-login.php?wpcom_remote_login=validate' + '&wpcomid=' + data.wpcomid + '&token=' + encodeURIComponent( data.token ) + '&host=' + window.location.protocol + '//' + window.location.hostname + '&postid=49556' + '&is_singular='; document.body.appendChild( script ); } return; } // Safari ITP, not logged in, so redirect if ( data.msg === 'LOGIN-REDIRECT' ) { window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href; return; } // Safari ITP, storage access failed, remove the request if ( data.msg === 'LOGIN-REMOVE' ) { var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }'; var style_zap = document.createElement( 'style' ); style_zap.type = 'text/css'; style_zap.appendChild( document.createTextNode( css_zap ) ); document.body.appendChild( style_zap ); var e = document.getElementById( 'wpcom_request_access_iframe' ); e.parentNode.removeChild( e ); document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000'; return; } // Safari ITP if ( data.msg === 'REQUEST_ACCESS' ) { console.log( 'request access: safari' ); // Check ITP iframe enable/disable knob if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) { return; } // If we are in a "private window" there is no ITP. var private_window = false; try { var opendb = window.openDatabase( null, null, null, null ); } catch( e ) { private_window = true; } if ( private_window ) { console.log( 'private window' ); return; } var iframe = document.createElement( 'iframe' ); iframe.id = 'wpcom_request_access_iframe'; iframe.setAttribute( 'scrolling', 'no' ); iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' ); iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid ); var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } '; var style = document.createElement( 'style' ); style.type = 'text/css'; style.id = 'wpcom_request_access_styles'; style.appendChild( document.createTextNode( css ) ); document.body.appendChild( style ); document.body.appendChild( iframe ); } if ( data.msg === 'DONE' ) { wpcom_remote_login_final_cleanup(); } } }, false ); // Inject the remote login iframe after the page has had a chance to load // more critical resources window.addEventListener( "DOMContentLoaded", function( e ) { var iframe = document.createElement( "iframe" ); iframe.style.display = "none"; iframe.setAttribute( "scrolling", "no" ); iframe.setAttribute( "id", "wpcom_remote_login_key" ); iframe.src = "https://r-login.wordpress.com/remote-login.php" + "?wpcom_remote_login=key" + "&origin=aHR0cHM6Ly9ibG9nLm1lbmRlbGV5LmNvbQ%3D%3D" + "&wpcomid=58470538" + "&time=1732703034"; document.body.appendChild( iframe ); }, false ); </script> <link rel='dns-prefetch' href='//s1.wp.com' /> <link rel='dns-prefetch' href='//s2.wp.com' /> <link rel='dns-prefetch' href='//s0.wp.com' /> <link rel='dns-prefetch' href='//fonts-api.wp.com' /> <link rel="alternate" type="application/rss+xml" title="Mendeley Blog &raquo; Feed" href="https://blog.mendeley.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="Mendeley Blog &raquo; Comments Feed" href="https://blog.mendeley.com/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Mendeley Blog &raquo; start-up life Category Feed" href="https://blog.mendeley.com/category/start-up-life/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function () { oldonload(); func(); } } } /* ]]> */ </script> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s2.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1719498190i&ver=6.8-alpha-59438"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); /* ]]> */ </script> <link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='https://s2.wp.com/wp-content/mu-plugins/jetpack-plugin/moon/modules/infinite-scroll/infinity.css?m=1685131895i&cssminify=yes' type='text/css' media='all' /> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-2-1' href='https://s0.wp.com/_static/??-eJydzMsOwiAQheEXEibEXtKF8VmATggVgcwMNby91U13LlyenHw/vKryJQtmgZpaiJkhtGM6pHA8hLCbRU96ANdiWsGl4h8qRUeWOrD0hNozX+Bn6KsYNpRqP9z20kQFiuu/CbISc+CT3583M1/NMg6zGbc3O1tP4A==&cssminify=yes' type='text/css' media='all' /> <style id='wp-block-library-inline-css'> .has-text-align-justify { text-align:justify; } .has-text-align-justify{text-align:justify;} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-4-1' href='https://s2.wp.com/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5sM02efaGpoZmFkYGRuZGmQBAHPvL0Y=&cssminify=yes' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-6-1' href='https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/coblocks-style.css?m=1681832297i&cssminify=yes' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='https://s2.wp.com/_static/??-eJx9jcEKg0AMRH+oaVhorR7Eb9E16IpZg8min2889FZ6GYbhPQYPgbhlo2zIBWQtU8qKcdvJd5be0AmmMfW0Ejv2jKoP/K0daZzIXNdvB6PzvyJ+A8MgO6mCJ6fCYLN/6e113IZXU9WfUL/DcgHSTkDo&cssminify=yes' type='text/css' media='all' /> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='https://s2.wp.com/_static/??/wp-content/themes/pub/nucleare/style.css,/wp-content/mu-plugins/jetpack-plugin/moon/_inc/genericons/genericons/genericons.css?m=1685129444j&cssminify=yes' type='text/css' media='all' /> <link rel='stylesheet' id='nucleare-fonts-css' href='https://fonts-api.wp.com/css?family=Roboto%3A400%2C700%2C700italic%2C400italic%7CPlayfair+Display%3A400%2C400italic%2C700italic%2C700&#038;subset=latin%2Clatin-ext' media='all' /> <link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='https://s2.wp.com/_static/??-eJx9y80OwiAMB/AXsjZLMOrB+CyMdAxTWkIhe/0xL+rF2/8jP9wKBJVG0rCtlMmw9BmlByZfCYMZLuMHv5FppvMYTviFcofCPSYxrDSzxhHjm33qPxRJgTX4llR+CizsUz3oMz8md7k7d7tO7rUDjnZBsA==&cssminify=yes' type='text/css' media='all' /> <link crossorigin='anonymous' rel='stylesheet' id='print-css-13-1' href='https://s1.wp.com/wp-content/mu-plugins/global-print/global-print.css?m=1465851035i&cssminify=yes' type='text/css' media='print' /> <link crossorigin='anonymous' rel='stylesheet' id='all-css-14-1' href='https://s1.wp.com/wp-content/themes/pub/nucleare/inc/style-wpcom.css?m=1428690127i&cssminify=yes' type='text/css' media='all' /> <style id='jetpack-global-styles-frontend-style-inline-css'> :root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-16-1' href='https://s2.wp.com/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' /> <script type="text/javascript" id="wpcom-actionbar-placeholder-js-extra"> /* <![CDATA[ */ var actionbardata = {"siteID":"58470538","postID":"0","siteURL":"https:\/\/blog.mendeley.com","xhrURL":"https:\/\/blog.mendeley.com\/wp-admin\/admin-ajax.php","nonce":"ec3b3dda62","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/read\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar"}}; /* ]]> */ </script> <script type="text/javascript" id="jetpack-mu-wpcom-settings-js-before"> /* <![CDATA[ */ var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https:\/\/s1.wp.com\/wp-content\/mu-plugins\/jetpack-mu-wpcom-plugin\/moon\/vendor\/automattic\/jetpack-mu-wpcom\/src\/build\/"}; /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s1.wp.com/wp-content/js/rlt-proxy.js?m=1720530689i'></script> <script type="text/javascript" id="rlt-proxy-js-after"> /* <![CDATA[ */ rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} ); /* ]]> */ </script> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://mendeleyblog.wordpress.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress.com" /> <!-- Jetpack Open Graph Tags --> <meta property="og:type" content="website" /> <meta property="og:title" content="start-up life &#8211; Mendeley Blog" /> <meta property="og:url" content="https://blog.mendeley.com/category/start-up-life/" /> <meta property="og:description" content="Ups and downs having an internet start-up. All the drama from Mendeley headquarters." /> <meta property="og:site_name" content="Mendeley Blog" /> <meta property="og:image" content="https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=200" /> <meta property="og:image:width" content="200" /> <meta property="og:image:height" content="200" /> <meta property="og:image:alt" content="" /> <meta property="og:locale" content="en_US" /> <meta name="twitter:creator" content="@mendeley_com" /> <meta name="twitter:site" content="@mendeley_com" /> <!-- End Jetpack Open Graph Tags --> <link rel='openid.server' href='https://blog.mendeley.com/?openidserver=1' /> <link rel='openid.delegate' href='https://blog.mendeley.com/' /> <link rel="search" type="application/opensearchdescription+xml" href="https://blog.mendeley.com/osd.xml" title="Mendeley Blog" /> <link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" /> <meta name="theme-color" content="#f0f0f0" /> <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style type="text/css"> .recentcomments a { display: inline !important; padding: 0 !important; margin: 0 !important; } table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar { border: 0px; margin: 0; } table.recentcommentsavatartop a, table.recentcommentsavatarend a { border: 0px !important; background-color: transparent !important; } td.recentcommentsavatarend, td.recentcommentsavatartop { padding: 0px 0px 1px 0px; margin: 0px; } td.recentcommentstextend { border: none !important; padding: 0px 0px 2px 10px; } .rtl td.recentcommentstextend { padding: 0px 10px 2px 0px; } td.recentcommentstexttop { border: none; padding: 0px 0px 0px 10px; } .rtl td.recentcommentstexttop { padding: 0px 10px 0px 0px; } </style> <meta name="application-name" content="Mendeley Blog" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="description" content="Ups and downs having an internet start-up. All the drama from Mendeley headquarters." /> <style type="text/css" id="custom-background-css"> body.custom-background { background-color: #f0f0f0; } </style> <style type="text/css" id="custom-colors-css">#wp-calendar > caption, .menu-toggle:focus, .menu-toggle:hover { color: #000000;} .social-links .top-search { color: #000000;} .widget.wp_widget_tag_cloud a, .more-link, .button, button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span { color: #000000;} .social-links .top-search:hover, .button:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, #infinite-handle span:hover, .button:focus, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, #infinite-handle span:focus, .button:active, button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active, #infinite-handle span:active { color: #424242;} .widget, .widget a:hover, .widget a:focus, .widget a:active { color: #5E5E5E;} .site-title a:hover, .site-title a:focus, .site-title a:active { color: #5E5E5E;} .site-info, .site-description { color: #5E5E5E;} body { background-color: #f0f0f0;} .widget.wp_widget_tag_cloud a, .more-link, .button, button, input[type="button"], input[type="reset"], input[type="submit"], #infinite-handle span { background-color: #e81c2d;} #wp-calendar > caption { background-color: #e81c2d;} .social-links .top-search { background-color: #e81c2d;} #wp-calendar tbody td#today, blockquote, .main-navigation div > ul > li > ul > li:first-child { border-color: #e81c2d;} .main-navigation div > ul > li > ul::before { border-bottom-color: #e81c2d;} .entry-featured-image, .menu-toggle:focus, .menu-toggle:hover { background-color: #e81c2d;} .widget a, .site-info a, .site-title a { color: #CB0F1F;} .main-navigation a { color: #DC1323;} .social-links a:hover { color: #DC1323;} .entry-title a:hover, .entry-title a:focus, a { color: #DC1323;} </style> <link rel="icon" href="https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=32" sizes="32x32" /> <link rel="icon" href="https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=192" sizes="192x192" /> <link rel="apple-touch-icon" href="https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=180" /> <meta name="msapplication-TileImage" content="https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=270" /> <!-- Jetpack Google Analytics --> <script type='text/javascript'> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-3874710-9']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' === document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <!-- End Jetpack Google Analytics --> </head> <body class="archive category category-start-up-life category-1128472 custom-background wp-custom-logo customizer-styles-applied group-blog jetpack-reblog-enabled has-site-logo custom-colors"> <div id="page" class="hfeed site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <div class="navigation-bar clear"> <div class="navigation-block"> <nav id="site-navigation" class="main-navigation" role="navigation"> <button class="menu-toggle" aria-controls="menu" aria-expanded="false"><i class="fa fa-bars"></i><span class="screen-reader-text">Open Menu</span></button> <div class="menu-primary-container"><ul id="menu-primary" class="menu"><li id="menu-item-45721" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45721"><a href="https://mendeleyblog.wordpress.com/">Home</a></li> <li id="menu-item-45711" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45711"><a href="https://www.mendeley.com/library/">Library</a></li> <li id="menu-item-45712" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45712"><a target="_blank" rel="noopener" href="http://www.mendeley.com/search">Search</a></li> <li id="menu-item-48255" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-48255"><a href="http://data.mendeley.com">Data</a></li> </ul></div> </nav><!-- #site-navigation --> <div class="social-links"> <div class="menu-social-media-container"><ul id="menu-social-media" class="menu"><li id="menu-item-45715" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45715"><a target="_blank" rel="noopener" href="https://twitter.com/mendeley_com"><span class="screen-reader-text">Twitter</span></a></li> <li id="menu-item-45718" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45718"><a target="_blank" rel="noopener" href="https://www.facebook.com/Mendeley-42920143610"><span class="screen-reader-text">Facebook</span></a></li> <li id="menu-item-45719" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45719"><a target="_blank" rel="noopener" href="https://www.flickr.com/photos/mendeley/"><span class="screen-reader-text">Flickr</span></a></li> <li id="menu-item-45717" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45717"><a target="_blank" rel="noopener" href="https://plus.google.com/b/100591098812384317022/+mendeley/posts"><span class="screen-reader-text">Google+</span></a></li> <li id="menu-item-45720" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45720"><a target="_blank" rel="noopener" href="https://www.linkedin.com/company/260481"><span class="screen-reader-text">LinkedIn</span></a></li> </ul></div> </div> </div> </div> <header id="masthead" class="site-header" role="banner"> <div class="site-branding"> <a href="https://blog.mendeley.com/" class="site-logo-link" rel="home" itemprop="url"><img width="472" height="202" src="https://blog.mendeley.com/wp-content/uploads/2021/10/cropped-mendeleyblog-logo-2.png?w=472" class="site-logo attachment-nucleare-logo" alt="" decoding="async" data-size="nucleare-logo" itemprop="logo" srcset="https://blog.mendeley.com/wp-content/uploads/2021/10/cropped-mendeleyblog-logo-2.png 472w, https://blog.mendeley.com/wp-content/uploads/2021/10/cropped-mendeleyblog-logo-2.png?w=200 200w, https://blog.mendeley.com/wp-content/uploads/2021/10/cropped-mendeleyblog-logo-2.png?w=300 300w" sizes="(max-width: 472px) 100vw, 472px" data-attachment-id="50088" data-permalink="https://blog.mendeley.com/cropped-mendeleyblog-logo-2-png/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2021/10/cropped-mendeleyblog-logo-2.png" data-orig-size="472,202" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="cropped-mendeleyblog-logo-2.png" data-image-description="&lt;p&gt;https://mendeleyblog.files.wordpress.com/2021/10/cropped-mendeleyblog-logo-2.png&lt;/p&gt; " data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2021/10/cropped-mendeleyblog-logo-2.png?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2021/10/cropped-mendeleyblog-logo-2.png?w=472" /></a> <h1 class="site-title"><a href="https://blog.mendeley.com/" rel="home">Mendeley Blog</a></h1> <h2 class="site-description"></h2> </div><!-- .site-branding --> </header><!-- #masthead --> <div id="content" class="site-content"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <header class="page-header"> <h1 class="page-title">Category: <span>start-up life</span></h1> </header><!-- .page-header --> <article id="post-49556" class="post-49556 post type-post status-publish format-standard hentry category-meettheteam category-mendelife tag-meet-the-team"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2019/05/28/meet-the-team-karin-hilton-senior-director-technology/" rel="bookmark">Meet the Team: Karin Hilton, Senior Director&nbsp;Technology</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2019/05/28/meet-the-team-karin-hilton-senior-director-technology/" rel="bookmark"><time class="entry-date published updated" datetime="2019-05-28T17:05:35+01:00">May 28, 2019</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/rbrennes/">Rachel Brennesholtz</a></span></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p><strong><img data-attachment-id="49557" data-permalink="https://blog.mendeley.com/2019/05/28/meet-the-team-karin-hilton-senior-director-technology/karin-hilton/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2019/05/karin-hilton.jpg" data-orig-size="3000,2002" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Rebekka Mell&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;Rebekka Mell&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Karin Hilton" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2019/05/karin-hilton.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2019/05/karin-hilton.jpg?w=809" class="alignnone size-medium wp-image-49557" src="https://blog.mendeley.com/wp-content/uploads/2019/05/karin-hilton.jpg?w=300&#038;h=200" alt="" width="300" height="200" srcset="https://blog.mendeley.com/wp-content/uploads/2019/05/karin-hilton.jpg?w=300 300w, https://blog.mendeley.com/wp-content/uploads/2019/05/karin-hilton.jpg?w=600 600w, https://blog.mendeley.com/wp-content/uploads/2019/05/karin-hilton.jpg?w=200 200w" sizes="(max-width: 300px) 100vw, 300px" /></strong></p> <p><strong>Name</strong>: Karin Hilton</p> <p><strong>Congratulations to Karin for being named one of 50 most influential women in tech in The Netherlands! </strong></p> <p><strong>Job title</strong>: Senior Director Technology</p> <p>Karin is responsible for the technology team who are building Mendeley Data, which is Elsevier’s platform to support research data management.  Karin and her team are using technology to transform the way that researchers collaborate and work together to spark discovery and support innovative interdisciplinary thinking.</p> <p>Before joining Elsevier, Karin was a Technology Director with eBay Classifieds Group heading up core capability technology platforms on a global basis challenging how they respond to mobile wave as an organization and has held technology leadership roles at companies across a range of industries.</p> <p><strong>When did you join Mendeley?</strong></p> <p>I joined in June 2018</p> <p><strong>What do you love most about your job?</strong></p> <p>I gain energy from making a positive difference – and every time we talk to our customers, I see that the tools and services we are providing are helping them to be more successful. And a successful researcher is a researcher who is changing the world we live in. It’s great to be able to see real change happening as a result of what we build.</p> <p><strong>What book did you most recently read?</strong></p> <p>I most recently finished Jodi Taylor’s Hope for the Best.  I usually have 2-3 books on the go at any one point in time – I am also reading Mary Beard’s Women &amp; Power &#8211; but aim to always have something lighthearted and relaxing to wind down with at bed time.</p> <p><strong>What’s one thing you want people to know about Mendeley?</strong></p> <p>That we would love feedback on how to make Mendeley the most effective tool for them. It is really energizing when people reach out and give us feedback on how we can make our product better.</p> <p><strong>How would you explain your job to a stranger on a bus?</strong></p> <p>I make tools to help researchers crack their codes</p> <p><strong>What’s the most exciting part of your job?</strong></p> <p>The people – definitively the people! We have a team that’s passionate about what we are building, and we work with amazing researchers and thought leaders in our community.</p> <p><strong>What keeps you awake at night?</strong></p> <p>I tend to sleep quite soundly – but sometimes I do get woken up by a nocturnal member of my family.  Sometimes it is a Great Dane who has decided to wake me for a midnight stroll and sometimes it is one of the cats proudly presenting their latest ‘gift’ with accompanying commentary on their night hunting prowess.</p> <p><strong>What’s the most interesting thing you’ve learned this week?</strong></p> <p>That’s a tough question! I try and keep up with new research in a few fields that interest me: there’s some fascinating new science showing just how far back man has been impacting weather patterns and creating global warming; showing the impact of diet/gut on health and how loss of hippos from riverine areas in Africa is impacting downstream in the health of the ecosystem.</p> <p>&nbsp;</p> <p>&nbsp;</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-49406" class="post-49406 post type-post status-publish format-standard hentry category-mendelife category-reference-management category-research-miscellanea category-uncategorized tag-mendeley tag-reference-management-software"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2019/02/25/show-your-mendeley-love/" rel="bookmark">Show your love for&nbsp;#MyMendeley!</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2019/02/25/show-your-mendeley-love/" rel="bookmark"><time class="entry-date published" datetime="2019-02-25T09:13:43+00:00">February 25, 2019</time><time class="updated" datetime="2019-02-25T12:35:54+00:00">February 25, 2019</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/rbrennes/">Rachel Brennesholtz</a></span></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>As Mendeley Advisors, you do a great job speaking to the researcher community on your campus about the benefits of using Mendeley. But now we’re calling on you to spread the word even further! Take part in #MyMendeley by making a short video (15 seconds or less) about why you love Mendeley, and upload it to YouTube so we can share it across the social media universe.  (We’ve also raided the marketing giveaways cupboard, so we’ll be sending backpacks and t-shirts to the makers of our favourite videos.)</p> <p>So here’s how it works:</p> <ul> <li>Upload a short video of yourself to YouTube, telling us about why you love Mendeley – maybe how it helps you with your research, your favourite feature, or why you’d recommend it to others</li> <li>Tag your video with #MyMendeley so we can find it and share it</li> </ul> <p>What’s in it for you?</p> <ul> <li>Mendeley Glory! We’ll be sharing the videos across our social media channels, so your wisdom will travel far and wide</li> <li>Giveaways! We’ve got new t-shirts and some other fun things to send to the makers of our favourite videos</li> </ul> <p>Looking for inspiration?  Check out Mendeley team members <a href="https://youtu.be/Zbr3n5511EM">Rachel </a>and <a href="https://youtu.be/_5H5FMZnFqY">Daniel’s</a> videos.</p> <div class="jetpack-video-wrapper"><span class="embed-youtube" style="text-align:center; display: block;"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/_5H5FMZnFqY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></span></div> <p>Some tips for making a good video:</p> <ul> <li>Keep your video short and snappy (15 seconds or less)</li> <li>Use a fun background! Maybe your lab, a sign of your university or something else that shows where you are from. We used New York City’s famous Grand Central Terminal and Elsevier’s rare book room at our Amsterdam headquarters</li> <li>Film somewhere that doesn’t have too much background noise</li> <li>Give your video a catchy title, and feel free to tell us more about yourself, your research and how you use Mendeley in the description</li> <li>Don’t forget to tag your video with #MyMendeley so we can find it!</li> </ul> <p>We&#8217;re looking forward to seeing your videos.</p> <p>&nbsp;</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-46559" class="post-46559 post type-post status-publish format-standard hentry category-meettheteam category-mendelife"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2015/02/26/meet-the-platform-team-part-ii/" rel="bookmark">Meet the Platform Team — Part&nbsp;II!</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2015/02/26/meet-the-platform-team-part-ii/" rel="bookmark"><time class="entry-date published" datetime="2015-02-26T13:07:53+00:00">February 26, 2015</time><time class="updated" datetime="2016-01-05T15:46:05+00:00">January 5, 2016</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span><span class="comments-link"><i class="fa fa-comments-o space-left-right"></i><a href="https://blog.mendeley.com/2015/02/26/meet-the-platform-team-part-ii/#comments">1 Comment</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>We profiled part of our <a href="https://blog.mendeley.com/start-up-life/mendelife/meet-the-platform-team-part-i/">Platform team last month</a>, but as it is our largest team here at Mendeley, we had to break it up into two parts. To be honest, we profiled the team in three parts, with the <a href="https://blog.mendeley.com/start-up-life/meet-the-api-team/">API team</a> taking the lead back in August.</p> <p>Why is the team so big? Because all those lines of code translate into giving Mendeley the base it needs for all of the features that make Mendeley what it is today.</p> <p>Read through their individual bios and find out how the Platform team helps every single team at Mendeley.</p> <h2>Richard Lyne</h2> <h4>Senior Software Engineer</h4> <div>Richard originally studied Physics with Space Science at UCL before falling into programming as a career.</div> <div>Mendeley has broken his track record of always working at acronyms.</div> <div></div> <div><strong>How do you describe your role on the <span class="il">Platform</span> Team?</strong></div> <div>I&#8217;m a software engineer and have worked on a number of projects from the data-pipeline, the recommender, and the API. Now I&#8217;m running the SSO project.</div> <div></div> <div><strong>What is your favourite part about working for Mendeley?</strong></div> <div>Definitely the people and culture here &#8211; couldn&#8217;t have asked for smarter or more interesting people to work with. And the day-to-day we have latitude to work with new technologies and practices.</div> <div></div> <div><strong>What do you enjoy doing in your free time?</strong></div> <div>I started a football team up where I live so I could play regular 5-a-side games, some stargazing, and indoor/outdoor climbing.</div> <div></div> <div></div> <h2>Gianni O&#8217;Neill</h2> <h4>Java Developer</h4> <h4></h4> <div>Gianni previously worked at Kizoom/Trapeze making transport software.</div> <div></div> <div><strong><span class="im">How do you describe your role on the <span class="il">Platform</span> Team?<br /> </span></strong>Working on the back end services for Mendeley<br /> <span class="im"><br /> <strong>What is your favourite part about working for Mendeley?</strong><br /> </span>Getting featured on the blog.</div> <div></div> <div><span class="im"><strong>What do you enjoy doing in your free time?</strong><br /> </span>Losing at pub quiz</div> <div></div> <h2>Chris Dawes</h2> <h4>Senior Java Developer</h4> <div> <div>Chris has only recently moved back to London after a stint in Berlin</div> <div>working for Aupeo &#8212; an online music service. Before that he worked at</div> <div>MX Telecom.</div> <div></div> <div><strong>How do you describe your role on the <span class="il">Platform</span> Team?</strong></div> <div>I started at the beginning of this year so I&#8217;ve been rotating around the different projects the <span class="il">platform </span>team is responsible for.</div> <div>I was particularly impressed at the level of engineering that&#8217;s gone in to the development-test-deployment cycle. This is pretty much the gold standard that everybody&#8217;s aiming for, with everything automated from commit through to deployment, scaling and monitoring.</div> <div></div> <div><strong>What is your favourite part about working for Mendeley?</strong></div> <div>It&#8217;s a great team &#8212; there&#8217;s a really good vibe and it&#8217;s actually a nice feeling to come in to the office every day. My team-mates are all extremely talented, and there&#8217;s always someone able to help out when things get tricky.</div> <div></div> <div><strong>What do you enjoy doing in your free time?</strong></div> <div>I learnt to scuba dive last year so I&#8217;ve used all my leave so far (and possibly some karma too) to go diving in Malta and Thailand. A manta ray gliding over your head, almost within reach, is really special feeling.</div> </div> <p>&nbsp;</p> <h2>Ed Ingold</h2> <h4>Software Engineer</h4> <div>Ed is a former Anthropology student who realised paid employment was both inevitable and desirable. &#8220;Now I code. Generally not horribly,&#8221; he said.</div> <div></div> <div><strong>How do you describe your role on the <span class="il">Platform</span> Team?</strong></div> <div>Processing a lot of data and working out which researchers should be collaborating.</div> <div></div> <div><strong>What is your favourite part about working for Mendeley?</strong></div> <div>I have fun playing around with various shiny bits of technology. Also, it&#8217;s an indoor job with no heavy lifting. Sometimes there is pizza.</div> <div></div> <div><strong>What do you enjoy doing in your free time?</strong></div> <div>Mostly playing a lot of board games.</div> <div></div> <div> <h2>Michael Watt</h2> <h4>Software Engineer</h4> <div>Originally from Perth, Western Australia, Michael graduated in 2004 with a Computer Science degree. In 2009, he decided to move to London for a change of scenery. Six years later, he&#8217;s still here and have had a number of jobs, largely doing back-end Java development in a number of domains including real estate, broadcasting, and finance.</div> <div></div> <div><strong>How do you describe your role on the <span class="il">Platform</span> Team?</strong></div> <div>I work on the services that power the various APIs used by Mendeley applications and third parties.</div> <div></div> <div><strong>What is your favourite part about working for Mendeley?</strong></div> <div>Working on diverse problems, with a team that is serious about continual improvement, on software that is used and found useful by a growing number of people.</div> <div></div> <div><strong>What do you enjoy doing in your free time?</strong></div> <div>Having a pint in a London pub; occasionally playing a guitar or piano (badly); playing with radio controlled things that fly.</div> <div></div> <h2>Piyush Bedi</h2> <h4>Software Engineer</h4> <p>Forged on the sandy hot beaches of Australia sometime in the 80s, Piyush is from a bygone era when it didn’t matter how big your data was. He mysteriously ended up on the other side of the world and must now practice as a Software Engineer to make his way back. Follow him on Twitter @grimyetcheerful</p> <p><strong>How do you describe your role on the <span class="il">Platform</span> Team?</strong></p> <p>I work with an intelligent team to build our internal and external software <span class="il">platform</span>. This means developing RESTful services, APIs and map reduce jobs, so other people can interact with our awesome services and vast ocean of data.&#8221; When I feel homesick, I use that time to shoot down bugs (in our code).</p> <p><strong>What is your favourite part about working for Mendeley?</strong></p> <p>The amazing speed at which we can go from an idea in our heads to operational code for other people. I’ve worked in a lot of places, but Mendeley has one of the most agile environments I’ve ever had the privilege to work in. This is no doubt due to the great team and the software architecture they have developed.</p> <p><strong>What do you enjoy doing in your free time?</strong></p> <p>Travelling around the British Isles (See <a href="http://upload.wikimedia.org/wikipedia/commons/2/28/British_Isles_Euler_diagram_15.svg" target="_blank">diagram</a>) and the greater European continent, intense sports (like snowboarding, video gaming, and finding sunlight in London while carrying my wet laundry) and deciding what to eat for my next meal.</p> </div> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-46488" class="post-46488 post type-post status-publish format-standard hentry category-meettheteam category-mendelife"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2015/01/29/meet-the-platform-team-part-i/" rel="bookmark">Meet the Platform Team — part&nbsp;I</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2015/01/29/meet-the-platform-team-part-i/" rel="bookmark"><time class="entry-date published" datetime="2015-01-29T17:04:09+00:00">January 29, 2015</time><time class="updated" datetime="2016-01-05T15:46:18+00:00">January 5, 2016</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span><span class="comments-link"><i class="fa fa-comments-o space-left-right"></i><a href="https://blog.mendeley.com/2015/01/29/meet-the-platform-team-part-i/#comments">1 Comment</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Our Platform Team is easily the largest one here at Mendeley, hence the need to meet the team in two parts! But it is with good reason — the Platform team is exactly as it sounds, a firm base from which all Mendeley experiences are built. The Engineers and Developers on the team build code and work closely with other teams at Mendeley to help assess needs and address them with the right bit of software.</p> <p>What does that mean in practice? Read through their individual bios and find out how the Platform team helps every single team at Mendeley! And next month we&#8217;ll profile the other half of the team. Whew!</p> <h2>James Gibbons</h2> <p><strong>Principal Software Engineer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/cpmh05uxqy3i3dmp68j0_400x400.png"><img data-attachment-id="46490" data-permalink="https://blog.mendeley.com/cpmh05uxqy3i3dmp68j0_400x400/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/cpmh05uxqy3i3dmp68j0_400x400.png" data-orig-size="400,400" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="cpmh05uxqy3i3dmp68j0_400x400" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/cpmh05uxqy3i3dmp68j0_400x400.png?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/cpmh05uxqy3i3dmp68j0_400x400.png?w=400" class=" alignleft wp-image-46490" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/cpmh05uxqy3i3dmp68j0_400x400.png" alt="cpmh05uxqy3i3dmp68j0_400x400" width="231" height="231" /></a><br /> James originally studied Computer Science, Linguistics and French. He&#8217;s worked in London for several years, mostly related to public transport before joining Mendeley in 2012.  Find him on Twitter @james_gibbons</p> <p><strong>How do you describe your role on the Platform Team?<br /> </strong>I tend to be involved in a lot of projects, trying to help explore the best ways of producing great software. I spend more time than most in meetings.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> Working with such a knowledgeable and insightful team is a privilege, as is having the chance to work with some very interesting tools and ideas to build a great platform for Mendeley.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> A variety of things, but in particular cycling which is common in Mendeley, and psephology, which isn’t.</p> <h2>Kristof Ujfalussy</h2> <p><strong>Software Engineer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/Kristof.jpg"><img data-attachment-id="46494" data-permalink="https://blog.mendeley.com/kristof/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/kristof.jpg" data-orig-size="3264,2448" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon DIGITAL IXUS 860 IS&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1363882463&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;6.142&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.05&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Kristof" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/kristof.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/kristof.jpg?w=809" class="alignleft wp-image-46494" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/Kristof.jpg" alt="Kristof" width="269" height="202" /></a>After getting my BSc in Budapest, Kristof worked for a year in Hungary and<br /> then moved to London to get his Masters. After graduating, he stayed in<br /> London and worked at the Discovery Channel before joining Mendeley in<br /> 2012.</p> <p><strong>How do you describe your role on the Platform Team?</strong><br /> I&#8217;m responsible for the data-pipeline stream. I work on jobs that process various sources of data for marketing purposes and help the analytics team generate KPIs for the business.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> Hackdays, relaxed atmosphere, lots of opportunities to learn.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> I do a lot of stuff, but I would say the thing I enjoy most is travelling, especially to places with beautiful nature.</p> <p>&nbsp;</p> <h2>William Doran</h2> <p><strong>Software Engineer<br /> </strong><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/image-3.png"><img data-attachment-id="46502" data-permalink="https://blog.mendeley.com/image-3/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/image-3.png" data-orig-size="655,873" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="image (3)" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/image-3.png?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/image-3.png?w=655" loading="lazy" class="alignleft wp-image-46502" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/image-3.png" alt="image (3)" width="172" height="229" /></a>Phd in Computational linguistics -&gt; 4yrs working for IBM Ireland (Java/HTML/JavaScript) -&gt; Disney Uk ( Java/Javascript) -&gt; Expedia Uk (Java) &#8211; Mendeley</p> <p><strong>How do you describe your role on the Platform Team?<br /> </strong>Building things: web services, APIs, deployment tooling</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> Working with clever people and having the freedom to work with cutting edge technologies</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> Outdoorsy stuff, (hiking, running, cycling, saving kittens from trees, etc.)</p> <h2>Dr. David Ingram</h2> <p><strong>Principal Engineer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/dmi.jpg"><img data-attachment-id="46491" data-permalink="https://blog.mendeley.com/dmi/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/dmi.jpg" data-orig-size="405,403" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="dmi" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/dmi.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/dmi.jpg?w=405" loading="lazy" class=" wp-image-46491 alignleft" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/dmi.jpg" alt="dmi" width="218" height="217" /></a>David&#8217;s background is a mix between the computer industry and academia. He has a PhD in operating systems, post doc research in distributed systems and has worked for AT&amp;T Labs and Google.</p> <p><strong>How do you describe your role on the Platform Team?</strong><br /> I build bridges between the Platform Team and other parts of the company, in particular with the Social Team and the Mobile Team. I work a lot on the Mendeley API, and help drive the development of Mendeley&#8217;s social network.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> Being part of a really great team who share a common purpose and believe in what they are doing.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> Contemporary Dance.</p> <h2>James Chancellor</h2> <p><strong>Software developer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/james.chancellor-1.jpg"><img data-attachment-id="46493" data-permalink="https://blog.mendeley.com/james-chancellor-1/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/james-chancellor-1.jpg" data-orig-size="556,556" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1039348800&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;102&quot;,&quot;shutter_speed&quot;:&quot;0.058823529411765&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;latitude&quot;:&quot;51.522327416667&quot;,&quot;longitude&quot;:&quot;-0.10971697222222&quot;}" data-image-title="james.chancellor (1)" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/james-chancellor-1.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/james-chancellor-1.jpg?w=556" loading="lazy" class=" wp-image-46493 alignleft" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/james.chancellor-1.jpg" alt="james.chancellor (1)" width="269" height="269" /></a>James graduated from Bristol University in mechanical engineering but got into software development soon after, having always been a hobby. He previously worked for Hotels.com and the online supermarket Ocado before that.</p> <p><strong>How do you describe your role on the Platform Team?</strong><br /> I&#8217;m new so I&#8217;m just learning the ropes in the platform team. However the projects are well organised and it&#8217;s been straight forward to get working on stories, pushing code to production and contributing value from day one. I work on core services that support Mendeley products across all platforms.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> I appreciate the down-to-earth, friendly attitude of the team that has helped me settle in quickly. I also look forward to the support I know I have in developing my skills in the direction I want them to go.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> I learned how to hang glide a few years ago and try to get into the sky as often as I can. This usually involves driving down to the south coast, strapping myself to an aluminium/dacron contraption and running off a hill.</p> <h2>Davinder Mann</h2> <p><strong>Java Developer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/Davinder.jpg"><img data-attachment-id="46492" data-permalink="https://blog.mendeley.com/davinder/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/davinder.jpg" data-orig-size="3264,2448" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon DIGITAL IXUS 860 IS&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1396288459&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.564&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Davinder" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/davinder.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/davinder.jpg?w=809" loading="lazy" class=" alignleft wp-image-46492" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/Davinder.jpg" alt="Davinder" width="252" height="189" /></a>Davinder previously worked for BAE Systems as a Java developer building a platform for structured data analytics</p> <p><strong>How do you describe your role on the Platform Team?</strong><br /> Working on the core services that power Mendeley clients across different work streams.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> Flexibility on use of technologies and being able to move between work streams if desired.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> Golf and watching movies.</p> <h2>Víctor Fernández Peñalver</h2> <p><strong>Software Developer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/victor.png"><img data-attachment-id="46497" data-permalink="https://blog.mendeley.com/victor-3/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/victor.png" data-orig-size="652,1126" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="victor" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/victor.png?w=174" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/victor.png?w=593" loading="lazy" class="alignleft wp-image-46497" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/victor.png" alt="victor" width="166" height="287" /></a>Victor was born in Alicante Spain and his interest for computers started around 1987 when his parents bought him and his twin brother a Sinclair ZX Spectrum as a birthday present. He holds a BSc in Computer Science by the university of Skövde in Sweden and a MSc in Computer Science by the university of Alicante in Spain. He moved to London in 2007 and worked as software developer in few companies since then. He joined Mendeley in 2012. Find him on Twitter @yeforriak</p> <p><strong>How do you describe your role on the Platform Team?</strong><br /> As a software developer in the platform team I&#8217;m responsible of writing software that is consumed by lots of people everyday, including other development teams as well. The daily work varies a lot, from writing more traditional Java services to Scala map reduce jobs or some parts of a recommender system using machine learning algorithms.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> My favourite thing is the opportunity to work with smart and talented people, I also enjoy practicing extreme programming and the ability of try new technologies.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> I like playing old school video games (ghost and goblins, new zealand story, captain commando are among my favourites). I also like to travel and practice a lot of sports including squash, skating, mountain bike, snowboarding, windsurfing, triathlon.</p> <h2>Dr. James Heather</h2> <p><strong>Principal Java Engineer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/james_and_the_roobster.jpg"><img data-attachment-id="46496" data-permalink="https://blog.mendeley.com/james_and_the_roobster/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/james_and_the_roobster.jpg" data-orig-size="600,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 6&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1422524862&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.82&quot;,&quot;iso&quot;:&quot;74&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.269663888889&quot;,&quot;longitude&quot;:&quot;-0.60678055555556&quot;}" data-image-title="james_and_the_roobster" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/james_and_the_roobster.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/james_and_the_roobster.jpg?w=600" loading="lazy" class="alignleft wp-image-46496" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/james_and_the_roobster.jpg" alt="james_and_the_roobster" width="189" height="252" /></a>Until recently, James was a Senior Lecturer at the University of Surrey, conducting research into computer security, and secure voting in particular. Then he decided one day he should probably open the office door and see what the world outside was like&#8230;<br /> Find him on Twitter @drfudgeboy</p> <p><strong>How do you describe your role on the Platform Team?</strong><br /> I press lots of buttons, and it makes our computers do things. When I press the right buttons, it makes our back end services work better. When I press the wrong buttons, our infrastructure generally spots it, and tells me to have another yoghurt and try again.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> As a former academic who spent most of his time writing and publishing papers, I am dead keen on supporting and promoting research. It&#8217;s really good to have a development role where the work I do helps my friends and colleagues in universities all around the world. And there&#8217;s free yoghurt.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> Free time? Ah yes, I remember that. I go to work, I play hide-and-seek with a two-year-old, I change nappies for a four-month-old, and I sleep in the gaps in between. In the three minutes left each week, my wife and I are active in our church (Emmanuel, Stoughton), we like watching cosy murders (Miss Marple, Poirot, etc.), and we kill plants.</p> <p>&nbsp;</p> <h2>Nikolett Harsányi</h2> <p><strong>Senior Java Engineer</strong></p> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2015/01/DSC057652-1.jpg"><img data-attachment-id="46495" data-permalink="https://blog.mendeley.com/dsc057652-1/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2015/01/dsc057652-1.jpg" data-orig-size="1802,1666" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.3&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;DSC-W690&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1408631224&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.45&quot;,&quot;iso&quot;:&quot;80&quot;,&quot;shutter_speed&quot;:&quot;0.005&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="DSC05765~2 (1)" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2015/01/dsc057652-1.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2015/01/dsc057652-1.jpg?w=809" loading="lazy" class="alignleft wp-image-46495" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2015/01/DSC057652-1.jpg" alt="DSC05765~2 (1)" width="300" height="277" /></a>Nikolett is a self-taught engineer. She was keen to be a teacher, helping, teaching and motivating people. At the university, she had a lot of ideas how she could make teaching easier,<br /> which is how she got involved in programming. &#8220;I just fell in love with programming, and I am very passionate to learn more and more,&#8221; she said.</p> <p><strong>How do you describe your role on the Platform Team?</strong><br /> As a backend developer, I am responsible for developing services which are used by other people.</p> <p><strong>What is your favourite part about working for Mendeley?</strong><br /> Very talented and smart colleagues. I have plenty opportunity to learn in a very friendly environment.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> I really enjoy traveling, cooking, sewing and dancing. I&#8217;m very keen to pick up new skills in my free-time.</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-46207" class="post-46207 post type-post status-publish format-standard hentry category-meettheteam category-mendelife"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2014/09/25/meet-the-data-science-team/" rel="bookmark">Meet the Data Science&nbsp;Team!</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2014/09/25/meet-the-data-science-team/" rel="bookmark"><time class="entry-date published updated" datetime="2014-09-25T13:15:49+01:00">September 25, 2014</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span><span class="comments-link"><i class="fa fa-comments-o space-left-right"></i><a href="https://blog.mendeley.com/2014/09/25/meet-the-data-science-team/#comments">1 Comment</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>A big part of research is data, but for the Mendeley Data Sciences team, data is all they research. The team makes a big deal of big data, acting as wizards in our Mendeley world, magically bringing bits together. The Data Science team links data and projects, and connects research and business to build better products, such as the paper recommender and social networks. <a href="https://blog.mendeley.com/events-2/collaboration-is-key-to-making-the-most-of-big-data/">Collaboration is key to making the most of big data</a>, and our Data Science team is constantly involved with conferences, meetings and internal talks to help connect Mendeley to the world of research.</p> <h2>Kris Jack</h2> <h3><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/09/krisjack.jpg"><img data-attachment-id="46208" data-permalink="https://blog.mendeley.com/krisjack/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/09/krisjack.jpg" data-orig-size="120,129" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="krisjack" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/09/krisjack.jpg?w=120" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/09/krisjack.jpg?w=120" loading="lazy" class="alignright size-full wp-image-46208" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/09/krisjack.jpg" alt="krisjack" width="120" height="129" /></a>Chief Data Scientist</h3> <p><a href="https://twitter.com/_krisjack">@_krisjack</a></p> <p>Kris joined Mendeley in 2010. He has a wide range of experience in Data Science both in industry and academia.</p> <p>He obtained BSc Hons in Computer Science at the University of Dundee in 2002, followed by a PhD in 2006. Following that, Kris was employed as an Expert R&amp;D Engineer in France Telecom until 2008 then at the Commissariat à l&#8217;Énergie Atomique until 2009. Before joining Mendeley, he worked as a Research Associate at the University of Manchester in their Text Mining team.</p> <h4>How do you describe your role on the Data Science Team?</h4> <p>I&#8217;m responsible for leading the Data Science team, making way for them to do great work and hopefully pitching in myself along the way.</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>Knowing that we&#8217;re making a difference to how research gets done. As a researcher myself, I know how hard research is and how much easier we could make it with the right tools to support us.</p> <h4>What do you enjoy doing in your free time?</h4> <p>Relaxing with my family.</p> <p>&nbsp;</p> <h2>Phil Gooch</h2> <h3>Senior Data Scientist<a href="http://static.blog.mendeley.com/wp-content/uploads/2014/09/philgooch.jpg"><img data-attachment-id="46209" data-permalink="https://blog.mendeley.com/philgooch/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/09/philgooch.jpg" data-orig-size="120,161" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="philgooch" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/09/philgooch.jpg?w=120" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/09/philgooch.jpg?w=120" loading="lazy" class="alignright size-full wp-image-46209" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/09/philgooch.jpg" alt="philgooch" width="120" height="161" /></a></h3> <p>Phil joined Mendeley in June 2014. He&#8217;s been conjuring structured knowledge from unstructured text within STM publishing and in academia for several years.</p> <p>Prior to Mendeley, Phil worked for Oxford University Press as a Language Technologist. He completed a PhD in Health Informatics in 2012. Following this, he worked as a Research Associate for the University of Sheffield in their Natural Language Processing group, and as Research Developer in Digital Humanities at Kings College, London. In previous career-lives, Phil worked as a rehab therapist in the NHS, a computer games programmer, and musician.</p> <h4><a href="https://twitter.com/Phil_Gooch">@Phil_Gooch</a></h4> <p>How do you describe your role on the Data Science Team?</p> <p>I contribute expertise in natural language processing and information extraction, so that as a Data Science team, and in collaboration with our Platform team, we can create useful &#8211; and hopefully exciting! &#8211; tools for researchers.</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>I love working with text, and developing workflows and tools to uncover the knowledge and connections that are buried in the vast amount of research literature. Also, working with the really smart people here who can work the magic to turn prototype code into something production-worthy!</p> <h4>What do you enjoy doing in your free time?</h4> <p>Long walks in the countryside with family and friends, being by the sea, cycling, writing music, enjoying the arts.</p> <p>&nbsp;</p> <h2>Maya Hristakeva</h2> <h3>Senior Data Scientist</h3> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/09/maya.png"><img data-attachment-id="46211" data-permalink="https://blog.mendeley.com/maya/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/09/maya.png" data-orig-size="95,125" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="maya" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/09/maya.png?w=95" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/09/maya.png?w=95" loading="lazy" class="alignright size-full wp-image-46211" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/09/maya.png" alt="maya" width="95" height="125" /></a>Machine learning is Maya&#8217;s passion and she has focused her entire career thus far in this space by developing algorithms and building software within start-up organisations. Before moving to the UK in 2010, Maya was a Machine Learning PhD student at University of California- Santa Cruz. She also worked as a Researcher at Silicon Valley based startup C8 Medisensors, where she developed algorithms to non-invasively measure blood sugar in people (using ramen spectroscopy &#8211; no needles).</p> <p>After moving to the UK, Maya worked at Mendeley before the Elsevier acquisition as a Data Mining Engineer. Then, I joined Cognitive Match, another startup, as a Sr. Research Scientist focusing on using machine learning techniques for behavioral targeting and recommendations.</p> <p>Within 2 years my path crossed with Mendeley again after the Elsevier acquisition. She is happy to be back working as a member of the Data Science team where we are focused on the next generation of solutions to help our users connect to their research and to other collaborators in innovative, valuable ways.</p> <h4>How do you describe your role on the Data Science Team?</h4> <p>I work on building recommender systems to help researchers contextualise their work within the global body of research, and connect them with relevant researchers, groups and articles.</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>I enjoy the creative working environment, lots of smart and diverse people, as well as having the latest technologies at my fingertips. I also love that Mendeley reaches millions of people with our products and makes a difference in researchers&#8217; lives.</p> <h4>What do you enjoy doing in your free time?</h4> <p>Wine, Food, Kickboxing, Argentine Tango, and Traveling (but not necessarily in that order)</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-46067" class="post-46067 post type-post status-publish format-standard hentry category-meettheteam category-mendelife category-start-up-life"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2014/08/28/meet-the-api-team/" rel="bookmark">Meet the API&nbsp;Team!</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2014/08/28/meet-the-api-team/" rel="bookmark"><time class="entry-date published updated" datetime="2014-08-28T16:22:30+01:00">August 28, 2014</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span><span class="comments-link"><i class="fa fa-comments-o space-left-right"></i><a href="https://blog.mendeley.com/2014/08/28/meet-the-api-team/#comments">1 Comment</a></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <div class="jetpack-video-wrapper"><span class="embed-youtube" style="text-align:center; display: block;"><iframe class="youtube-player" width="560" height="315" src="https://www.youtube.com/embed/2P0mJLL1YLM?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent&#038;listType=playlist&#038;list=PLw2QJJ5mQP4j765IlW_X-U2mSb60xiq-d" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></span></div> <p>Keeping science open has always been part of Mendeley&#8217;s mission. There are many ways we achieve this, but our developer portal throws opens the Mendeley platform for developers to create and build tools to make researchers&#8217; lives easier using <strong>Application Programming Interfaces</strong> — known as APIs. It is thanks to the Mendeley API that some of your favorite Mendeley third-party apps exist, like <a href="http://www.kinsync.com/">KinSync</a>, <a href="http://www.shazino.com/">PaperShip</a> and <a href="https://play.google.com/store/apps/details?id=info.matthewwardrop.scholarley&amp;hl=en">Scholarley</a>, to name a few. <a href="http://www.3scale.net/2014/08/built-innovate-benefit-apis-higher-education/">Even higher education is getting into the API game</a>.</p> <p>And now our API website has a fresh new look and a beta release. The team is currently working with a technical writer to improve the documentation, and are also busy trying to get SDKs out for mobile and other languages for a major release sometime later this year.</p> <p>Think you&#8217;re ready to hack? Know any code monkeys interested in building tools to make researchers’ lives easier? Visit our <a href="http://dev.mendeley.com/">Dev Portal</a> to learn more and follow our brand-new <a href="http://mendeleyapi.wordpress.com/">Mendeley API blog</a>. And meet the team behind the API in this months&#8217; &#8220;Meet the Mendeley Team.&#8221;</p> <p><a href="http://dev.mendeley.com/"><img data-attachment-id="46073" data-permalink="https://blog.mendeley.com/screen-shot-2014-08-28-at-09-48-47/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/08/screen-shot-2014-08-28-at-09-48-47.png" data-orig-size="553,77" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Screen Shot 2014-08-28 at 09.48.47" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/08/screen-shot-2014-08-28-at-09-48-47.png?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/08/screen-shot-2014-08-28-at-09-48-47.png?w=553" loading="lazy" class="size-full wp-image-46073 aligncenter" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/08/Screen-Shot-2014-08-28-at-09.48.47.png" alt="Screen Shot 2014-08-28 at 09.48.47" width="553" height="77" /></a></p> <p>&nbsp;</p> <h2>Joyce Stack &#8211; Developer Outreach</h2> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/08/joyce-marie-1.jpg"><img data-attachment-id="46069" data-permalink="https://blog.mendeley.com/joyce-marie-1/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/08/joyce-marie-1.jpg" data-orig-size="200,200" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="joyce-marie (1)" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/08/joyce-marie-1.jpg?w=200" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/08/joyce-marie-1.jpg?w=200" loading="lazy" class="size-full wp-image-46069 alignleft" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/08/joyce-marie-1.jpg" alt="joyce-marie (1)" width="200" height="200" /></a>Joyce Stack completed a BSc. (Hons) Computer Science from The Open University while working in a startup in Co. Cork, Ireland. She moved to London in 2005 to join one of the City’s leading exponents of agile techniques at that time to work as a Java Developer. She is now working in the Developer Outreach role in Mendeley.<br /> Connect with her on Twitter <a href="https://twitter.com/mendeleystack">@MendeleyStack</a></p> <p><strong>How do you describe your role on the API Team?</strong></p> <p>Mainly my role is to be the “physical manifestation” of the API at conferences, meetups and hackathons.</p> <p>Also, my role is to ensure we are engaging with all our clients and potential clients on the main social channels e.g. Twitter, Stack Overflow, blogs, etc.</p> <p>My main responsibilities are to build up an excellent developer experience and support people in building great apps and demonstrating the value of our dataset to new potential clients. Basically, engaging with our developer community to drive adoption. Also, I’m the conduit between clients, both internal and external into the platform team and product teams, from an API perspective.</p> <p><strong>What is your favourite part about working for Mendeley?</strong></p> <p>I get fed a lot. There is always a fridge full of food, ice-cream, fruit and drinks.</p> <p>Primarily, though I was never one for endless iterations of work, I like the variety in this role. I get to wear many hats, e.g. product owner, support person, coder, debugger, marketing, blogger.</p> <p><strong>What do you enjoy doing in your free time?</strong><br /> Take trips away to new places (8 so far this year), drinking brown beer and keeping fit with boxercise, spinning and weights.</p> <h2></h2> <h2>Matt Thomson &#8211; Senior Software Developer</h2> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/08/205722_828897940090_2439175_n.jpg"><img data-attachment-id="46068" data-permalink="https://blog.mendeley.com/205722_828897940090_2439175_n/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/08/205722_828897940090_2439175_n.jpg" data-orig-size="242,354" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Matt Thompson" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/08/205722_828897940090_2439175_n.jpg?w=205" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/08/205722_828897940090_2439175_n.jpg?w=242" loading="lazy" class="alignright size-full wp-image-46068" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/08/205722_828897940090_2439175_n.jpg" alt="Matt Thompson" width="242" height="354" /></a>Matt was born and grew up in Scunthorpe in the North of England. After graduating with an MMath from the University of Cambridge, he moved to London to join a telecommunications software provider, before joining the platform team at Mendeley in 2012.</p> <p><strong>How do you describe your role on the API Team?</strong></p> <p>I&#8217;m one of the developers of the Mendeley API, responsible for building new features, keeping the API running smoothly, and making sure that it meets the needs of all of our client developers, both internally and externally.</p> <p><strong>What is your favourite part about working for Mendeley?</strong></p> <p>The problems are challenging, our technology stack is exciting, and the people are friendly and supportive. I bet everyone says &#8220;the people&#8221;, though.</p> <p><strong>What do you enjoy doing in your free time?</strong></p> <p>I&#8217;m a big fan of live comedy, and performed improvised comedy for a number of years, most notably at the Edinburgh Fringe with London&#8217;s (now defunct) Fat Kitten Improv. I also enjoy exploring London&#8217;s green spaces and pubs, and am a long-suffering follower of Scunthorpe United.</p> <h2>Dr David Ingram —Principal Engineer</h2> <p>David&#8217;s background is a mix between working in the computer industry and academia — he has a PhD in operating systems, did post doc research in distributed systems, and worked for both AT&amp;T Labs and Google.</p> <p><strong>How do you describe your role on the API Team?<a href="http://static.blog.mendeley.com/wp-content/uploads/2014/08/IMG_20140828_123018.jpg"><img data-attachment-id="46070" data-permalink="https://blog.mendeley.com/img_20140828_123018/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/08/img_20140828_123018.jpg" data-orig-size="1536,1153" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1409228860&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;489&quot;,&quot;shutter_speed&quot;:&quot;0.01&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.522127777778&quot;,&quot;longitude&quot;:&quot;-0.10965277777778&quot;}" data-image-title="David Ingram" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/08/img_20140828_123018.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/08/img_20140828_123018.jpg?w=809" loading="lazy" class="wp-image-46070 alignleft" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/08/IMG_20140828_123018.jpg" alt="David Ingram" width="350" height="250" /></a></strong></p> <p>My role is currently to look at the API both from within and from external client perspectives. I try to make sure the most important client needs are met while keeping the implementation clean and maintainable.</p> <p><strong>What is your favourite part about working for Mendeley?</strong></p> <p>The best thing about Mendeley is our goal, to improve the productivity of researchers everywhere.</p> <p><strong>What do you enjoy doing in your free time?</strong></p> <p>In my free time when I&#8217;m not hacking, I teach dance.</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-45997" class="post-45997 post type-post status-publish format-standard hentry category-community-relations category-mendelife"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2014/07/30/meet-the-product-team/" rel="bookmark">Meet the Product&nbsp;Team!</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2014/07/30/meet-the-product-team/" rel="bookmark"><time class="entry-date published updated" datetime="2014-07-30T12:30:15+01:00">July 30, 2014</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>We often have users writing to us describing Mendeley as a sort of religious experience — we see a lot of exclamation points here at Mendeley. So it may sound a bit clinical to describe Mendeley as a &#8220;product,&#8221; but everything the Product Team does here at Mendeley leads to creating the tool you know and love (exclamation points!!).</p> <p>Product deals with all aspects of how you, as users, interact with Mendeley from your computer or tablet or phone. They work collaboratively with each other and with the other teams at Mendeley to create the features you love (or, perhaps, need), and ensure that they are usable.</p> <p>Our Product Team is always interested to learn more about how you use Mendeley and other websites and tools. If you are in the London area at any time, <a href="mailto:shruti.desai@mendeley.com">email us </a>and arrange a User Testing session — there is a pack of goodies and a gift certificate in it for you!</p> <h2>Matt Coulson</h2> <h3>Senior Product Manager</h3> <p>Follow me on Twitter @<a href="https://twitter.com/mattcoulson72">mattcoulson72</a> <a href="http://static.blog.mendeley.com/wp-content/uploads/2014/07/IMG_20140724_145314.jpg"><img data-attachment-id="46001" data-permalink="https://blog.mendeley.com/img_20140724_145314/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/07/img_20140724_145314.jpg" data-orig-size="1536,2048" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1406213593&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;246&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.522138888889&quot;,&quot;longitude&quot;:&quot;-0.10964444444444&quot;}" data-image-title="Matt Coulson" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/07/img_20140724_145314.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/07/img_20140724_145314.jpg?w=768" loading="lazy" class="alignleft wp-image-46001" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/07/IMG_20140724_145314.jpg" alt="Matt Coulson" width="179" height="239" /></a></p> <p>I&#8217;ve worked in Product Management for around 12 years, including working for Messagelabs (now Symantec), Virgin Media and, for the last 6 years, at the BBC. At the BBC I led a team of 5 product managers and worked on a number of their products and services including News, Sport, Radio and Music and BBC Red Button!</p> <p><strong>How would you describe your role at Mendeley?</strong> My role is to bring a portfolio level view and agile product ownership expertise to the product team. In other words, help the product machine run that bit better and slicker. Here at Mendeley we&#8217;re entering a &#8216;hyper growth&#8217; phase which means we have the amazing opportunity to build lots of cool new features that will delight our users and support our strategy. To do this we&#8217;ll need to do a number of things, but perhaps most importantly we need to invest wisely, make the right choices and trade-offs and ultimately deliver products that knock the socks off our users. My aim is to make this process better, clearer and more transparent.</p> <p><strong>What is your favourite part about working at Mendeley?</strong> I think I&#8217;d have to say the people. They are one smart and savvy bunch. Good to see so much passion for delivering top quality experiences to users as well.</p> <p><strong>What do you like to do in your free time?</strong> I like to travel, cook, walk, exercise (lightly!), game, films, gigs and reading. Sadly I can&#8217;t profess to be a part-time acrobat or other exotic pass-times but I&#8217;m open to ideas!</p> <h2>See Wah Cheng</h2> <h3>Product Manager</h3> <p>Follow me on Twitter @<a href="https://twitter.com/seewahcheng">seewahcheng</a> <a href="http://static.blog.mendeley.com/wp-content/uploads/2014/07/See-Wah.jpg"><img data-attachment-id="45998" data-permalink="https://blog.mendeley.com/see-wah-2/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/07/see-wah.jpg" data-orig-size="495,600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="See-Wah" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/07/see-wah.jpg?w=248" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/07/see-wah.jpg?w=495" loading="lazy" class="alignleft wp-image-45998" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/07/See-Wah.jpg" alt="See-Wah" width="198" height="240" /></a></p> <p>I joined Mendeley as a web developer four years ago. Over my career in Mendeley, I have seen the release of many products. Gradually I picked up more insights into user experience and user needs, so I decided to take on the challenge of product management! I feel passionate about improving people&#8217;s lives through technology.</p> <p><strong>How would you describe your role at Mendeley?</strong> To transform visions into tangible features. I have mostly worked with web products. I love my role in Mendeley because it is so multi-faceted. I am involved in literally every stage of a project, from defining goals, interviewing users, through to organising and prioritizing sprint tasks. I work with data, design, technology and people! The sense of achievement when you see ideas and wireframes turning into actual products that people actually use is incredible.</p> <p><strong>What is your favourite part about working at Mendeley?</strong> Everyone here is so passionate about what we do. And more importantly, we are making the world a better place by giving researchers a helping hand!</p> <p><strong>What do you like to do in your free time?</strong> I do quite a bit of cycling and rock climbing. I am also very much into architecture and architectural history. <a href="http://www.seewah.com/art-deco-london/">Check it out</a>.</p> <h2>Steve Dennis</h2> <h3>Product Designer</h3> <p>Follow me on Twitter @<a href="https://twitter.com/subcide">subcide </a> <a href="http://static.blog.mendeley.com/wp-content/uploads/2014/07/Steve-Dennis.jpg"><img data-attachment-id="46003" data-permalink="https://blog.mendeley.com/steve-dennis-3/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/07/steve-dennis.jpg" data-orig-size="500,500" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Steve-Dennis" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/07/steve-dennis.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/07/steve-dennis.jpg?w=500" loading="lazy" class="alignleft wp-image-46003" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/07/Steve-Dennis.jpg" alt="Steve-Dennis" width="202" height="202" /></a></p> <p>Steve grew up in New Zealand, and moved to London in 2010 &#8216;for a bit of a change&#8217;. He&#8217;s been designing for the web for over 12 years, and has involved himself in many areas including interaction and visual design, user experience, front-end web development, and product management.</p> <p><strong>How would you describe your role at Mendeley?</strong> I am currently a Product Designer for the iOS and upcoming Android apps, though I dabble in many areas across the company.</p> <p><strong>What is your favourite part about working at Mendeley?</strong> Interacting with our users, and delivering things that solve real-world problems or pain points for them. The free food is also pretty great.</p> <p><strong>What do you like to do in your free time?</strong> Design, rock climbing, and disruptive technologies (specifically Virtual Reality and Bitcoin).</p> <h2>Matthew Green</h2> <h3>Product Manager</h3> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/07/Matt-Green.jpg"><img data-attachment-id="46004" data-permalink="https://blog.mendeley.com/matt-green-2/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/07/matt-green.jpg" data-orig-size="495,600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Matt-Green" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/07/matt-green.jpg?w=248" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/07/matt-green.jpg?w=495" loading="lazy" class="alignleft wp-image-46004 " src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/07/Matt-Green.jpg" alt="Matt-Green" width="346" height="420" /></a>International Politics degree at the University of Birmingham, which led me into a career in online gaming (obviously) with Betfair. I was with Betfair for 5 years until I decided I needed a change&#8230;went off to Central &amp; South America for a few months, came back and worked on a startup with a friend before doing some work with onefinestay.com and then finally finding my calling at mendeley.com for the last (almost) 2 years. The product was awesome, the industry was interesting and the people are great, so it&#8217;s been a good few years. In other, less interesting news, i&#8217;ve been in London since 2006 &#8211; resident solely in Northeast London until recently when i&#8217;ve taken the drastic decision to move to the up &amp; coming Southeast.</p> <p><strong>How would you describe your role at Mendeley?</strong> I look after the institutional product offering at Mendeley (MIE) &#8211; which involves speaking to librarians, research managers &amp; the odd researcher to find what what they want &amp; need to support an institutional implementation of Mendeley. User adoption is key for us, and the more Institutions that adopt Mendeley the better as all their researchers get to use a premium version of our great product!</p> <p><strong>What is your favourite part about working at Mendeley?</strong> Doing something useful &#8211; it makes a big difference compared to my previous roles. I also don&#8217;t think I could ever not work next to a food market anymore&#8230;</p> <p><strong>What do you like to do in your free time?</strong> I play football for Priory Park Rangers (named after the first road I lived on when I moved to London), and cycle &amp; run a lot&#8230;I also like to go on holiday&#8230;as much as I can&#8230;to as many places as possible 🙂</p> <h2>Greg Homola</h2> <h3>UX Designer</h3> <p><strong><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/07/IMG_20140730_111215.jpg"><img data-attachment-id="46002" data-permalink="https://blog.mendeley.com/img_20140730_111215/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/07/img_20140730_111215.jpg" data-orig-size="1536,2048" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1406718734&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;299&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.522383333333&quot;,&quot;longitude&quot;:&quot;-0.10962777777778&quot;}" data-image-title="Greg Homola" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/07/img_20140730_111215.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/07/img_20140730_111215.jpg?w=768" loading="lazy" class="alignleft wp-image-46002" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/07/IMG_20140730_111215.jpg" alt="Greg Homola" width="179" height="239" /></a>How would you describe your role at Mendeley?</strong> My favourite part is I do not have to choose between visual and UX design. That means my role is pretty varied and I really enjoy it.</p> <p><strong>What is your favourite part about working at Mendeley?</strong> I work with amazing people both personally and professionally, and I mean it.</p> <p><strong>What do you like to do in your free time?</strong> I love spending my time with my family, travelling. Also I am a keen amateur photographer, so I can combine all these things on some lucky days. I like reading and learning and also like sports like basketball, snowboarding and others.</p> <h1></h1> <h2>Andrew Officer</h2> <h3>UX/Product Designer</h3> <p>Follow me on Twitter @<a href="https://twitter.com/andrewofficer">andrewofficer</a> <a href="http://static.blog.mendeley.com/wp-content/uploads/2014/07/AndrewOfficer.jpg"><img data-attachment-id="46000" data-permalink="https://blog.mendeley.com/andrewofficer/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/07/andrewofficer.jpg" data-orig-size="500,443" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="AndrewOfficer" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/07/andrewofficer.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/07/andrewofficer.jpg?w=500" loading="lazy" class="alignleft wp-image-46000 " src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/07/AndrewOfficer.jpg" alt="AndrewOfficer" width="260" height="230" /></a></p> <p>Digital product designer with a background in interaction design. Previous to Mendeley, I co-founded a web-design startup in the West Midlands, where I worked as design lead, producing the creative and front-end code for public, private and e-commerce websites. My specialities live in end-to-end product development, user-centered research, interaction design and user interface design for online digital products.</p> <p><strong>How would you describe your role at Mendeley?</strong> UX/Product hybrid. I work closely with business stakeholders, product managers, designers, developers and end-users to understand needs and influence product strategy, ensuring that the best products and features make it to the marketplace and with an optimal user experience. I&#8217;m involved in all user facing aspects of product delivery, from speaking with researchers, requirements gathering, scoping out interaction design, designing interfaces with abit of marketing thrown in.</p> <p><strong>What is your favourite part about working at Mendeley?</strong> The diversity of the role and being involved in all aspects of the business. Having the scope to work with various skillsets in areas that wouldn&#8217;t typically be under my remit. Solving difficult problems from a hugely smart and diverse audience group with differing careers levels, from a range of disciplines that have complex use cases and needs to work with. Being part of something than can ultimately change the world for the better makes the job hugely satisfying compared to other industries.</p> <p><strong>What do you like to do in your free time?</strong> In my spare time I can be found collecting and mixing records, snowboarding, DIY and enjoying the unhealthy culinary delights the world has to offer such as hamburgers, hipster beer, curried goat and ramen.</p> <h2>Joe Shell</h2> <h3>Senior Product Manager — Data</h3> <p>Follow me on Twitter @<a href="https://twitter.com/josephshell">JosephShell</a> <a href="http://static.blog.mendeley.com/wp-content/uploads/2014/07/10338676_10154150326490183_7555716694890226764_o-1.jpg"><img data-attachment-id="45999" data-permalink="https://blog.mendeley.com/10338676_10154150326490183_7555716694890226764_o-1/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/07/10338676_10154150326490183_7555716694890226764_o-1.jpg" data-orig-size="1260,705" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Joe shell" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/07/10338676_10154150326490183_7555716694890226764_o-1.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/07/10338676_10154150326490183_7555716694890226764_o-1.jpg?w=809" loading="lazy" class="alignleft wp-image-45999" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/07/10338676_10154150326490183_7555716694890226764_o-1.jpg" alt="Joe shell" width="297" height="166" /></a></p> <p>I like persistent, discoverable, reusable, sciency, webby things. Formerly of <a href="http://www.nature.com/">Nature</a>.</p> <p><strong>How would you describe your role at Mendeley?</strong> I own the Mendeley Data program of projects.</p> <p><strong>What is your favourite part about working at Mendeley?</strong> It&#8217;s growing.</p> <p><strong>What do you like to do in your free time?</strong> Tarot card reading.</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-45925" class="post-45925 post type-post status-publish format-standard hentry category-community-relations category-mendelife"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2014/06/30/meet-the-sysadmin-team/" rel="bookmark">Meet the SysAdmin&nbsp;Team!</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2014/06/30/meet-the-sysadmin-team/" rel="bookmark"><time class="entry-date published updated" datetime="2014-06-30T16:38:50+01:00">June 30, 2014</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>Considering that Mendeley is a software taking full advantage of the internet and cloud storage, it is impossible to underscore the importance of the SysAdmin — short for System Administration — team at Mendeley. The team is responsible for ensuring our computer systems, databases, and networks are working reliably and efficiently.</p> <p>But they are far from being a &#8220;<a href="https://www.youtube.com/watch?v=nn2FB1P_Mn8">have you tried turning it <span style="text-decoration:underline;">off and on again</span></a>&#8221; I.T. response team — the SysAdmin team is constantly working on developing and maximizing our systems, working closely with engineers and API developers, and ensuring the integrity of our data and systems.</p> <p>However, it also behooves me to write nice things about them, as they are also responsible for making sure each employee at Mendeley has the correct computing tools needed to do their job — and can&#8217;t you see me with a brand-new tablet? :-p</p> <h1>Robin Stephenson</h1> <h2>Vice President of Engineering</h2> <p style="text-align:left;"><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/06/Robin.png"><img id="selected_gravatar" class="alignleft" src="https://en.gravatar.com/userimage/11750465/d352fbfb92b07bec7c2d64a71da898d5.png?size=200" alt="Robin" width="200" height="200" /></a>Back in Elsevier after many years with intermediate experience in a variety of roles, including various other publishers, banking and transport information. Started as a Perl developer on Sun workstations; now more interested in operating Scala running in Hadoop on AWS.</p> <p><strong>1. How do you describe your role/what you do on the SysAdmin Team?</strong><br /> Maintain longer-term goals of the engineering team; making it work, and helping them work. Immanentising the eschaton by adopting good ideas and expunging terrible ones.</p> <p><strong>2. What is your favourite part about working for Mendeley?</strong></p> <p>An informal atmosphere, and the ability to take decisions.</p> <p><strong>3. What do you enjoy doing in your free time?</strong><br /> Cycling, learning, spending time with my family.</p> <p>&nbsp;</p> <h1>Kubilay Tsil Kara</h1> <h2>Database Administrator</h2> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/06/Kubilay.jpg"><img data-attachment-id="45927" data-permalink="https://blog.mendeley.com/kubilay/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/06/kubilay.jpg" data-orig-size="3264,2448" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon DIGITAL IXUS 860 IS&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1386678626&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;6.142&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Kubilay" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/06/kubilay.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/06/kubilay.jpg?w=809" loading="lazy" class="wp-image-45927 alignleft" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/06/Kubilay.jpg" alt="Kubilay" width="200" height="150" /></a>Kubilay studied in University of Westminster, earning a Masters of Science in Database Systems, with experience in database design, data modelling and data integration between systems and applications.</p> <p><strong>1. How do you describe your role/what you do on the Syadmin Team?</strong><br /> Responsible for the day to day database administration, database performance tuning and data integration activities in the company.</p> <p><strong>2. What is your favourite part about working for Mendeley?</strong><br /> I like working in Mendeley because it uses cutting edge technology and platforms to provide its services, always trying new things and exploring methods to do things better. People working in Mendeley are very knowledgeable and innovative and there is always opportunity and time to try new things.</p> <p><strong>3. What do you enjoy doing in your free time?</strong></p> <p>Travelling, Cars, Fishing, ​Cinema and Chess</p> <p>&nbsp;</p> <h1>James Rasell</h1> <h2>Systems Administrator</h2> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/06/James-Rassell.jpg"><img data-attachment-id="45928" data-permalink="https://blog.mendeley.com/james-rassell/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/06/james-rassell.jpg" data-orig-size="612,709" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Xolaroid 2000&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="James Rassell" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/06/james-rassell.jpg?w=259" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/06/james-rassell.jpg?w=612" loading="lazy" class="alignleft wp-image-45928" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/06/James-Rassell.jpg" alt="James Rassell" width="200" height="232" /></a>James graduated in 2005 from Kingston University with a BSc Hons in Earth and Planetary Science and worked within the oil and hosting industries before moving to Mendeley 18 months ago.</p> <p><strong>1. How do you describe your role/what you do on the SysAdmin Team?</strong></p> <p>As a sysadmin my tasks vary from fixing printers to managing, planning, testing and conducting large scale migrations and upgrades. One of my key skills within the team is Hadoop for which I obtained my CCAH last year.</p> <p><strong>2. What is your favourite part about working for Mendeley?</strong></p> <p>I get to work with awesome and intelligent people as well as having the chances to constantly develop my knowledge.</p> <p><strong>3. What do you enjoy doing in your free time?</strong></p> <p>Drawing, playing bass, running, tennis, music, art, tattoos, beer, wine, travelling….(the list goes on)</p> <p>&nbsp;</p> <h1>Steffen Rick</h1> <h2>Systems Administrator</h2> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/06/photo-2.jpg"><img data-attachment-id="45930" data-permalink="https://blog.mendeley.com/photo-2-2/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/06/photo-2.jpg" data-orig-size="960,1280" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPad Air&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1403476441&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;2.15&quot;,&quot;iso&quot;:&quot;1600&quot;,&quot;shutter_speed&quot;:&quot;0.066666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;latitude&quot;:&quot;51.493358333333&quot;,&quot;longitude&quot;:&quot;-0.22442777777778&quot;}" data-image-title="photo (2)" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/06/photo-2.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/06/photo-2.jpg?w=768" loading="lazy" class="alignleft wp-image-45930" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/06/photo-2.jpg" alt="photo (2)" width="200" height="267" /></a>The newest member of Mendeley, Steffen Rick has been in this profession a long time. He started working right away and &#8220;I can remember the heydays of the internet, I joined pretty much at that time.&#8221; Steffen also remembers the internet bubble bursting, but is happy that both it, and he, have recovered.</p> <p>Steffen has traveled to many countries and worked several places. He said he feels lucky when he answered the phone when the agency called and asked &#8220;Do you want to work for Mendeley?&#8221;</p> <p><strong>1. How do you describe your role/what you do on the SysAdmin Team?</strong></p> <p>I&#8217;m basically hired as Sysadmin, working on keeping things running, hoping I can contribute to improving it too.</p> <p><strong>2. What is your favourite part about working for Mendeley?</strong></p> <p>The proper display of attitude, software code is actually being written at this place.</p> <p><strong>3. What do you enjoy doing in your free time?</strong></p> <p>All the things others enjoy too. Drinking beer, going to concerts, various forms of sport, working on becoming a FreeBSD committer.</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-45820" class="post-45820 post type-post status-publish format-standard hentry category-mendelife category-start-up-life"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2014/05/28/meet-the-qasupport-team/" rel="bookmark">Meet the QA/Support&nbsp;Team!</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2014/05/28/meet-the-qasupport-team/" rel="bookmark"><time class="entry-date published updated" datetime="2014-05-28T17:52:36+01:00">May 28, 2014</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p>It’s a scenario that can give any researcher the cold sweats: an eleventh-hour crash of a program just minutes before a paper deadline. Luckily, thanks to the efforts of our Quality Assurance and Support team, Mendeley strives hard to ensure this never happens. While our developers put their all into designing a great product, Quality Assurance are there to ensure we&#8217;ve written tests to cover all the edge cases, and that we don&#8217;t let those pesky bugs into the wild.</p> <p>And what if things do go wrong? Support is there to iron out any wrinkles, whether it be from a new user still trying to learn the ropes, an expert submitting a bug report, or fielding requests from users to hand off to our developers.</p> <h2>Callum Anderson</h2> <h4></h4> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140527_160805.jpg"><img data-attachment-id="45824" data-permalink="https://blog.mendeley.com/img_20140527_160805/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140527_160805.jpg" data-orig-size="768,1024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1401206883&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;215&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.522311111111&quot;,&quot;longitude&quot;:&quot;-0.10961111111111&quot;}" data-image-title="Callum Anderson" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140527_160805.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140527_160805.jpg?w=768" loading="lazy" class="alignleft wp-image-45824" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140527_160805.jpg" alt="Callum Anderson" width="198" height="265" /></a></p> <h3>Team Lead</h3> <p>Callum’s worked in technology for a few years now, both as a Business Analyst, and in QA. He grew up in St. Albans (just outside London) and holds degrees in English and Computer Science.</p> <h4>How do you describe your role at Mendeley?</h4> <p>I&#8217;m lucky enough to be involved in a lot of different projects, so it&#8217;s unlikely I&#8217;ll be doing the same thing from one day to the next. I could be in meetings planning features and implementation for a new product or service, or at my desk all day writing ruby— I love that variety.</p> <h4>What’s your favourite part of working at Mendeley?</h4> <p>We get to work with the latest technologies and some of the best brains in the industry.</p> <h4>What do you like to do in your free time?</h4> <p>I am into running and triathlons &#8211; I&#8217;m actually competing in the UK Ironman triathlon later this year, so training for that is taking up quite a bit of my spare time. I also try spend a few hours each week reading about or playing with new technologies.</p> <h1></h1> <h2>Michał Buś</h2> <h3>Senior QA Engineer</h3> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140528_132500.jpg"><img data-attachment-id="45822" data-permalink="https://blog.mendeley.com/img_20140528_132500/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140528_132500.jpg" data-orig-size="768,1024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1401283499&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;191&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.522322222222&quot;,&quot;longitude&quot;:&quot;-0.109625&quot;}" data-image-title="Michal Bus" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140528_132500.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140528_132500.jpg?w=768" loading="lazy" class="alignright wp-image-45822" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140528_132500.jpg" alt="Michal Bus" width="268" height="358" /></a>Michał was born and grew up in Kraków, Poland. where he studied sociology at Jagiellonian University, before moving to Edinburgh, and then London.<br /> Following a string of varied roles, he found his interest for testing software after joining Last.fm, a music startup, in a diverse &#8216;resident Polish person&#8217; role that involved anything from translation and copy-editing to liaising with music labels and festival organisers. He joined Mendeley nearly 5 years ago and has enjoyed helping it grow into what it is today, being kept busy/interested ever since. Follow him @michalboo</p> <h4>How do you describe your role at Mendeley?</h4> <p>Test all the things, as early as possible. I&#8217;m particularly interested in doing as much as I can to help Mendeley build software that people will actually use. Also: investigating, finding, documenting and helping to fix bugs (Reported bug count at the time of writing: 1,092)</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>Some of the people are nice enough, I guess. (<em>Editor’s note: Michał&#8217;s deadpan humor&#8230;we hope!</em>) I also enjoy being able to get involved in a wide variety of projects, testing different products in different ways. Consistently learning new things and being kept on my toes.</p> <h4>What do you enjoy doing in your free time?</h4> <p>Going to a lot of gigs – before joining Mendeley, I worked on promoting live music in Kraków and Warsaw with my brother and some friends, and now use living in London as an opportunity to help them out and &#8216;talent scout&#8217; by seeing and hearing as many new acts as my ears can take. My other interests include: playing basketball, flâneuring around London, reading books, lahmacun and setting up ephemeral &#8216;projects&#8217; on tumblr.</p> <h1></h1> <h2>Josh Cole</h2> <h3>Technical Support Representative</h3> <h3><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_1886.jpg"><img data-attachment-id="45833" data-permalink="https://blog.mendeley.com/img_1886/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_1886.jpg" data-orig-size="1714,1941" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 4S&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1361541994&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.28&quot;,&quot;iso&quot;:&quot;80&quot;,&quot;shutter_speed&quot;:&quot;0.05&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Josh Cole" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_1886.jpg?w=265" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_1886.jpg?w=809" loading="lazy" class="alignleft wp-image-45833" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_1886.jpg" alt="Josh Cole" width="282" height="319" /></a></h3> <p>Josh studied mathematics at the University of York, but decided that 3 years of maths was more than enough, so he moved into Technical Support. He said he came to Mendeley for a new challenge and to make my mark in an up and coming startup.</p> <p>&nbsp;</p> <h4>How do you describe your role at Mendeley?</h4> <p>I deal with customer questions and issues with the various Mendeley products (Mendeley Desktop, Web, the app, etc), as well as escalating recurring problems/features with our various Development Teams.</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>I love working in a constantly evolving work environment that supports learning and development.</p> <h4>What do you enjoy doing in your free time?</h4> <p>I enjoy playing video games on my Xbox 360, as well as Starcraft and watching good films or really, really bad films. I&#8217;ve also recently discovered badminton, which I&#8217;m awful at, but I love anyway.</p> <p>&nbsp;</p> <p>&nbsp;</p> <h2>Veronica Mejias Meneses</h2> <h3>QA Engineer</h3> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/05/Photo-on-20-05-2014-at-12.44-31.jpg"><img data-attachment-id="45840" data-permalink="https://blog.mendeley.com/photo-on-20-05-2014-at-12-44-3-2/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/05/photo-on-20-05-2014-at-12-44-31.jpg" data-orig-size="787,637" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Veronica" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/05/photo-on-20-05-2014-at-12-44-31.jpg?w=300" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/05/photo-on-20-05-2014-at-12-44-31.jpg?w=787" loading="lazy" class="alignright wp-image-45840" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/05/Photo-on-20-05-2014-at-12.44-31.jpg" alt="VERONICA" width="400" height="324" /></a>Veronica studied Computer Science at the Pontificia Universidad Católica de Valparaíso, Chile. She moved to the UK 5 years ago and landed in Mendeley, where her career took a turn in the right direction.</p> <h4>How do you describe your role at Mendeley?</h4> <p>I test the software. Over and over. My main job is to write automated tests to make sure new features don&#8217;t break old ones. I also been working on our testing infrastructure lately, to help us moving onto a more reliable, faster platform.</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>At Mendeley there is constant challenge, constant learning. I work with a very nice and talented team, and the rest of my colleagues are really nice to work with too.</p> <h4>What do you enjoy doing in your free time?</h4> <p>In my spare time I enjoy talking to my family, baking, crochet, reading, travelling, cycling, swimming, watching Qi, among many other things.</p> <p>&nbsp;</p> <h2>Tiago Lourenço Nobre</h2> <h3>QA Automation Engineer</h3> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140528_142247.jpg"><img data-attachment-id="45821" data-permalink="https://blog.mendeley.com/img_20140528_142247/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140528_142247.jpg" data-orig-size="768,1024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1401286966&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;243&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.522294444444&quot;,&quot;longitude&quot;:&quot;-0.10958055555556&quot;}" data-image-title="Tiago" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140528_142247.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140528_142247.jpg?w=768" loading="lazy" class="alignright wp-image-45821" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140528_142247.jpg" alt="Tiago" width="187" height="249" /></a>Tiago went to Uni near his hometown in Leiria, Portugal at Escola Superior de Tecnologia e Gestão de Leiria, where he studied computer engineering. He worked at PT Inovação a telecommunication group in Aveiro as a automation tester in a continuous integration environment before he came to Mendeley.</p> <h4>How do you describe your role at Mendeley?</h4> <p>At the moment, I am working on automation tests and building, along with my team, a continuous integration &amp; delivery. Also, importantly, I am learning new things everyday.</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>Every day is a learning day and I have the opportunity to work with new technologies.</p> <h4>What do you enjoy doing in your free time?</h4> <p>Cycling, not riding the tube, cooking, play tennis</p> <p>&nbsp;</p> <h2>Charlotte Organ</h2> <h3>Customer support representative</h3> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140527_152810-1.jpg"><img data-attachment-id="45823" data-permalink="https://blog.mendeley.com/img_20140527_152810-1/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140527_152810-1.jpg" data-orig-size="768,1024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Nexus 5&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1401204488&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;317&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;51.522322222222&quot;,&quot;longitude&quot;:&quot;-0.10958611111111&quot;}" data-image-title="Charlotte Organ" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140527_152810-1.jpg?w=225" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/05/img_20140527_152810-1.jpg?w=768" loading="lazy" class="alignleft wp-image-45823" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/05/IMG_20140527_152810-1.jpg" alt="Charlotte Organ" width="243" height="324" /></a>Charlotte’s another member of the south London massive together with Paul and Mudi. She went to university in Durham (the English one, not the one in NC) where she studied Modern Foreign Languages (mostly French and Arabic). A former resident of Damascus and Cairo, she trailed her spouse down to London in search of work. Mendeley was her first interview four days after she moved, and she started four days after that.</p> <p>&nbsp;</p> <h4>How do you describe your role at Mendeley?</h4> <p>I help people who have problems with Mendeley, have found issues or bugs that need fixing, or are finding it all a bit too much. Together with Josh, we are the last line of defence against angry users everywhere (it doesn&#8217;t always work, sadly).</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>Helping people who are working on loads of different projects all over the world, from surgeons to people studying fish to medieval historians.</p> <h4>What do you enjoy doing in your free time?</h4> <p>Cooking, eating, reading anything that comes near me, finding and observing strange local wildlife (terrapins in the Regent&#8217;s canal is the most recent)</p> <p>&nbsp;</p> <h2>Ben A&#8217;Lee</h2> <h3>System Administrator</h3> <p><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/05/bma.jpg"><img data-attachment-id="45825" data-permalink="https://blog.mendeley.com/bma/" data-orig-file="https://blog.mendeley.com/wp-content/uploads/2014/05/bma.jpg" data-orig-size="213,320" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="bma" data-image-description="" data-image-caption="" data-medium-file="https://blog.mendeley.com/wp-content/uploads/2014/05/bma.jpg?w=200" data-large-file="https://blog.mendeley.com/wp-content/uploads/2014/05/bma.jpg?w=213" loading="lazy" class="alignright size-full wp-image-45825" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/05/bma.jpg" alt="bma" width="213" height="320" /></a>Ben did a degree in computing and software development at the University of Plymouth. Then when he finished, he wanted to move to London (“Plymouth’s a nice place but not exactly conveniently located,” he said.) Ben applied for a position as a PHP developer but within a couple of months he was increasingly spending his time on sysadmin projects. Follow him @bma</p> <h4>How do you describe your role at Mendeley?</h4> <p>I’m working on things that cross over between QA and operations, primarily the monitoring infrastructure but also things related to infrastructure automation, like automatic rollbacks.</p> <h4>What is your favourite part about working for Mendeley?</h4> <p>I like the flexibility to work on different things: first PHP, then system administration, and now increasingly Ruby development.</p> <h4>What do you enjoy doing in your free time?</h4> <p>Reading, walking, cooking, plotting the downfall of the capitalist system.</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <article id="post-47949" class="post-47949 post type-post status-publish format-standard hentry category-community-relations category-mendelife"> <header class="entry-header"> <h1 class="entry-title"><a href="https://blog.mendeley.com/2014/03/27/meet-the-mendeley-web-team/" rel="bookmark">Meet the Mendeley Web&nbsp;Team</a></h1> <div class="entry-meta small-part"> <span class="posted-on"><i class="fa fa-clock-o space-left-right"></i><a href="https://blog.mendeley.com/2014/03/27/meet-the-mendeley-web-team/" rel="bookmark"><time class="entry-date published updated" datetime="2014-03-27T16:37:18+00:00">March 27, 2014</time></a></span><span class="byline"> <i class="fa fa-user space-left-right"></i><span class="author vcard"><a class="url fn n" href="https://blog.mendeley.com/author/shrutidesaimendeley/">Shruti Desai</a></span></span> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <p dir="ltr">Continuing our series of introducing each of the Mendeley teams, it’s time to meet the Mendeley Web team.</p> <p dir="ltr">At it’s most simplest description, the web team is responsible for the Mendeley website&#8211;making sure it functions correctly and allows for the networking and groups collaborations that happen online.</p> <p dir="ltr">But, just as Mendeley is about working collaboratively, the Web team works closely with almost every team at Mendeley, ensuring that important features like the Web Importer, Sync, and Mendeley Discover work correctly. Their overall vision is to use cutting-edge technology to help ease the researcher workflow.</p> <h2>Paul Willoughby</h2> <p><em>Web Team Lead</em></p> <p dir="ltr"><img class="alignleft" alt="bio_photo.jpg" src="https://lh3.googleusercontent.com/6wboPtg-6lq_f5lCFN-kpbi1yFpoe6IasBp8NxRst2gvHZ2_1q-kPX1ZAumrxmY3an2KiR-ym7t66MtpCW3Bk9XH9PIbjYWEx7OKOEAnVACDkUPgLW3CondGK3HsaQ" width="214px;" height="228px;" /></p> <p dir="ltr">Paul was born and raised in South London, and started developing websites about 15 years ago. Having had various jobs and freelance projects across the whole web development stack, he now focuses mainly on the front-end stuff.</p> <p dir="ltr">Follow him on Github at  <a href="https://github.com/paulwib">github.com/paulwib</a></p> <p dir="ltr"><strong>How do you describe your role at Mendeley?</strong></p> <p dir="ltr">As web team lead and senior front-end developer I&#8217;m normally up to my neck in meetings, JavaScript or meetings about JavaScript.</p> <p dir="ltr"><strong>Favorite part about working at Mendeley?</strong></p> <p dir="ltr">Working on the next generation of tools for researchers. If I can contribute a little to the vision of the web as an open platform for sharing the worlds knowledge I&#8217;ll be very happy. If not, well there&#8217;s always the free beer. 🙂</p> <p dir="ltr"><strong>What do you like doing in your free time?</strong></p> <p dir="ltr">Cooking, reading, rummaging around in junk shops, wondering where I&#8217;ve put my keys.</p> <h2>Chris Barr</h2> <p><em>Senior Web Developer</em></p> <p dir="ltr"><img class="alignleft" alt="" src="https://lh4.googleusercontent.com/CFi8028mnWlny0WWsc8nYmG-J5Eznb6MoEJx6ajohxcXiHKji2wS7Zq3-akbQ_EDYe-9VyUrUzYYuKL5a9uVKdxP6xlx37fpGujXFx-gYu9S9Xrw8sCC8tSLdRT6Ow" width="242px;" height="242px;" /></p> <p dir="ltr">Chris joined Mendeley in 2012. He graduated with a BSc in Media Technology from Oxford Brookes in 2007. His degree involved a lot of TV programme production, but the exciting challenges were with web development.</p> <p dir="ltr">Follow him on Twitter <a href="https://twitter.com/chriswbarr">@chriswbarr</a></p> <p dir="ltr"><strong>How do you describe your role at Mendeley?</strong></p> <p dir="ltr">Work on the web team developing the main Mendeley web codebase. Also responsible for web code deployments.</p> <p dir="ltr"><strong>Favorite part about working at Mendeley?</strong></p> <p dir="ltr">I get to work with incredibly intelligent people who are passionate about what they do.</p> <p dir="ltr"><strong>What do you like doing in your free time?</strong></p> <p dir="ltr">Where to start&#8230; I&#8217;m an Explorer Scout Leader, so I get to enjoy lots of outdoor activities and camping trips. I love motorsport, photography, cycling, hiking, travelling, hovercraft racing, to name a few!</p> <h2>Mátyás Buczkó</h2> <p><em>Front End Developer</em></p> <p dir="ltr"><img class="alignleft" alt="profile (1).jpg" src="https://lh5.googleusercontent.com/L0wyj6ZlJr6n9QW-7VVvTNP-_uMsIp0T53hinnxOyyYTySiZQ7pQYz7q-13gIvaMQApu6jsiRFqXq-KKTvNTmkagI_5vm878DLux8TMBeJKkyiwhuXE5Xjt-WxOjEQ" width="227px;" height="177px;" /></p> <p dir="ltr">Mátyás describes himself as “a passionate developer with the main focus on asynchronous javascript and how to tame it.” Mátyás moved to London in February to be part of the Mendeley team. Previously he worked in Budapest, Berlin and Santa Clara, “but London is by far the best!” he said.</p> <p dir="ltr"><strong>How do you describe your role at Mendeley?</strong></p> <p dir="ltr">I&#8217;m involved with all the quirks and wonders of front end development. So if you are using an old version of IE, I will hunt you down!</p> <p dir="ltr"><strong>Favorite part about working at Mendeley?</strong></p> <p dir="ltr">The great team, cutting-edge technologies, challenge and the occasional beer on Fridays of course.</p> <p dir="ltr"><strong>What do you like doing in your free time?</strong></p> <p dir="ltr">Travelling and dancing salsa make a perfect combination for my free time. There&#8217;s also a lot of hanging out with friends, good movies and some accidental programming on the weekends.</p> <h2>Radu Helstern</h2> <p><em>Back End Developer</em></p> <p dir="ltr"><img class="alignleft" alt="Radu.jpg" src="https://lh5.googleusercontent.com/l5EUHRdSSGKXfqfBpd1MDXYd-inZC_35I0IoOyU5KqDqh3DXhfFcY0DVl348ACGRUXOQh90qms2xgUngDfY6F9E_bn6Qz1GpKAimq_fyKqa20brIMx5WY5i_IKC2GA" width="240px;" height="200px;" /></p> <p dir="ltr">Radu joined Mendeley in March 2014, moving from Sweden in search of a challenge.</p> <p dir="ltr">He was born and raised in Romania and holds an MSc in Electrical Engineering and Computer Science.</p> <p dir="ltr"><strong>How do you describe your role at Mendeley?</strong></p> <p dir="ltr">I have an exciting and challenging role to deliver technical solutions that will help realise Mendeley&#8217;s vision for transforming research.</p> <p dir="ltr"><strong>Favorite part about working at Mendeley?</strong></p> <p dir="ltr">Mendeley&#8217;s office in London is packed full with very talented, smart, dedicated people. [editor’s note: blush] They create an amazing positive atmosphere which is the perfect ingredient for innovation. Having joined recently, I am really excited to be a part of such an environment and to contribute to the development of a great product.</p> <p dir="ltr"><strong>What do you like doing in your free time?</strong></p> <p dir="ltr">In my free time, I like to escape reality with the help of a good book (mostly sci-fi or alternative history) or improve my general knowledge about life, universe and everything.</p> <h2>Raúl Jiménez</h2> <p><em>Back End Developer</em></p> <p dir="ltr"><img class="alignleft" alt="" src="https://lh4.googleusercontent.com/mjdbXn2-_922n9d2ByX-pI__VDI-dqSVFbJIEzEENu0RhMs7tA5MeTpsWPJb0HNIl88UDuJ5A_n219WFmbZphJ0lwwLjcEAzAQI0y-2doOdQmd7hK0EE02qSOHZfJQ" width="200px;" height="200px;" /></p> <p dir="ltr">After finishing his MSc in Computer Engineering and wandering around Spain in different companies and roles, he decided that was time to see the world abroad, landing surprisingly close to Spain: the occasionally sunny London.</p> <p dir="ltr"><strong>How do you describe your role at Mendeley?</strong></p> <p dir="ltr">As a Backend Engineer, I help develop and improve Mendeley&#8217;s web products, but I&#8217;m always keen and happy to collaborate with other departments.</p> <p dir="ltr"><strong>Favorite part about working at Mendeley?</strong></p> <p dir="ltr">The people! Either working side-by-side with enthusiastic, motivated and highly-skilled colleagues, or having a beer with them.</p> <p dir="ltr"><strong>What do you like doing in your free time?</strong></p> <p dir="ltr">Unmentionable geek stuff, British humour, playing sports, cooking, learning useless but interesting things, laying under the sun.</p> <h2>Daniel Kendell</h2> <p><em>Web <em>Technical Lead</em></em></p> <p><em><a href="http://static.blog.mendeley.com/wp-content/uploads/2014/03/Daniel-Kendell.jpg"><img loading="lazy" class=" wp-image-45693 alignleft" alt="Daniel Kendell" src="https://i0.wp.com/static.blog.mendeley.com/wp-content/uploads/2014/03/Daniel-Kendell.jpg" width="252px" height="200px" /></a></em></p> <p>I&#8217;m a self-taught developer who has worked on a number of different types of projects at various companies all with very different styles of working. I&#8217;ve worked in silos, in large teams and small teams. I&#8217;ve built frameworks, web services, internal applications and public facing sites. I think this varied experience has given me a pretty well balanced outlook on the art of software development.</p> <p dir="ltr">Follow me on twitter at <a href="https://twitter.com/mduk">@mduk</a></p> <p dir="ltr"><strong>How do you describe your role at Mendeley?</strong></p> <p dir="ltr">As the technical lead, my primary responsibilities are to look after the overall architecture of the website, and help to hire the best people we can into the team. I also take an active role in helping to design the new generation of web service APIs that will powering Mendeley as we continue to grow and expand.</p> <p dir="ltr"><strong>Favorite part about working at Mendeley?</strong></p> <p dir="ltr">Working on an interesting project, as part of a hugely multicultural and talented team, right in the heart of London.</p> <p dir="ltr"><strong>What do you like doing in your free time?</strong></p> <p dir="ltr">In my free time you&#8217;ll often find me tinkering with various electronic projects or playing with music hardware. I am a keen Thereminist and this year I&#8217;ve also taken up the AXiS harmonic table. Still can&#8217;t keep time to save my life, but that doesn&#8217;t diminish my enjoyment. What am I, a metronome? I think not!</p> <h2>Mudi Ugbowanko</h2> <p><em>Senior Web Developer</em><br /> <img class="alignleft" alt="Mudi.36 copy.jpeg" src="https://lh4.googleusercontent.com/AgBXgk4jO4eCb3uc7xJZsHxaBCPuM-998GLwkVh8D_HlCs8mmRAtBEgRZ94tksC-9T2HHrsx7bOfbakKQ7ewn8dfHLnpOABwVB5jNLtG7oFrHVYY6hrffvOS660TbQ" width="252px;" height="200px;" /></p> <p dir="ltr">Mudi’s full name is Mudiagahn Ugbowanko. Mudiagahn means &#8220;Stand Firm&#8221; and it’s Nigerian (which he is). Mudi looks at everything from a holistic, logical and empathetic perspective, which he says makes his job easier to manage (pushing keys to solve abstract problems!). When he’s not geeking out, he’s eating and having fun living life: “#WTH seriously, I love food and getting involved with anything the involves social interaction with other people! #getYourMindOutTheGutter!” he said.</p> <p dir="ltr">Follow me on Twitter <a href="https://twitter.com/renegare">@renegare</a></p> <p dir="ltr"><strong>How do you describe your role at Mendeley?</strong></p> <p dir="ltr">No-nonsense get the job done, comedic Pro #contradiction?</p> <p dir="ltr"><strong>Favorite part about working at Mendeley?</strong></p> <p dir="ltr">People are open minded. Projects are ambitious. Opportunities are plenty.</p> <p dir="ltr"><strong>What do you like doing in your free time?</strong></p> <p dir="ltr">&#8230; eating</p> <p>&nbsp;</p> </div><!-- .entry-content --> <footer class="entry-footer"> <div class="entry-bottom small-part"> </div> </footer><!-- .entry-footer --> </article><!-- #post-## --> <nav class="navigation paging-navigation" role="navigation"> <h1 class="screen-reader-text">Posts navigation</h1> <div class="nav-links"> <div class="nav-previous"><a href="https://blog.mendeley.com/category/start-up-life/page/2/" ><div class="meta-nav"><i class="fa fa-lg fa-angle-left space-right"></i><span class="small-part">Older Posts</span></div></a></div> </div><!-- .nav-links --> </nav><!-- .navigation --> </main><!-- #main --> </div><!-- #primary --> <div id="secondary" class="widget-area" role="complementary"> <aside id="text-3" class="widget widget_text"><h2 class="widget-title">Download Mendeley</h2> <div class="textwidget"><div class="cta"> <a href="https://www.mendeley.com/download-reference-manager/?utm_medium=blog&amp;utm_campaign=Download_Mendeley" target="blank" rel="noopener">Download Mendeley </a></div> Available for Windows, Mac OSX and Linux</div> </aside><aside id="blog_subscription-3" class="widget widget_blog_subscription jetpack_subscription_widget"><h2 class="widget-title"><label for="subscribe-field">Follow Blog via Email</label></h2> <div class="wp-block-jetpack-subscriptions__container"> <form action="https://subscribe.wordpress.com" method="post" accept-charset="utf-8" data-blog="58470538" data-post_access_level="everybody" id="subscribe-blog" > <p>Enter your email address to follow this blog and receive notifications of new posts by email.</p> <p id="subscribe-email"> <label id="subscribe-field-label" for="subscribe-field" class="screen-reader-text" > Email Address: </label> <input type="email" name="email" style="width: 95%; padding: 1px 10px" placeholder="Email Address" value="" id="subscribe-field" required /> </p> <p id="subscribe-submit" > <input type="hidden" name="action" value="subscribe"/> <input type="hidden" name="blog_id" value="58470538"/> <input type="hidden" name="source" value="https://blog.mendeley.com/category/start-up-life/"/> <input type="hidden" name="sub-type" value="widget"/> <input type="hidden" name="redirect_fragment" value="subscribe-blog"/> <input type="hidden" id="_wpnonce" name="_wpnonce" value="59f4b8eea3" /> <button type="submit" class="wp-block-button__link" > Follow </button> </p> </form> </div> </aside><aside id="search-2" class="widget widget_search"><form role="search" method="get" class="search-form" action="https://blog.mendeley.com/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search &hellip;" value="" name="s" /> </label> <input type="submit" class="search-submit" value="Search" /> </form></aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h2 class="widget-title">Recent Comments</h2> <table class="recentcommentsavatar" cellspacing="0" cellpadding="0" border="0"> <tr><td title="Grace" class="recentcommentsavatartop" style="height:48px; width:48px;"><img alt='' src='https://2.gravatar.com/avatar/e496cd331567f3135c1b8fb549c312c86a06ff54cf09c53d6c258bc5d6f0074d?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/e496cd331567f3135c1b8fb549c312c86a06ff54cf09c53d6c258bc5d6f0074d?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/e496cd331567f3135c1b8fb549c312c86a06ff54cf09c53d6c258bc5d6f0074d?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/e496cd331567f3135c1b8fb549c312c86a06ff54cf09c53d6c258bc5d6f0074d?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/e496cd331567f3135c1b8fb549c312c86a06ff54cf09c53d6c258bc5d6f0074d?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/e496cd331567f3135c1b8fb549c312c86a06ff54cf09c53d6c258bc5d6f0074d?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstexttop" style="">Grace on <a href="https://blog.mendeley.com/2024/06/28/whats-new-in-mendeley-our-most-recent-releases-4/comment-page-1/#comment-63631">What’s New in Mendeley: Our Mo&hellip;</a></td></tr><tr><td title="Tom Scott" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="https://andamanpass.com/" rel="nofollow"><img alt='' src='https://1.gravatar.com/avatar/7c563767e2dc13ccc5be7bc6f7215543c22b34b874950e9a6a581b1a118598dc?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/7c563767e2dc13ccc5be7bc6f7215543c22b34b874950e9a6a581b1a118598dc?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/7c563767e2dc13ccc5be7bc6f7215543c22b34b874950e9a6a581b1a118598dc?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/7c563767e2dc13ccc5be7bc6f7215543c22b34b874950e9a6a581b1a118598dc?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/7c563767e2dc13ccc5be7bc6f7215543c22b34b874950e9a6a581b1a118598dc?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/7c563767e2dc13ccc5be7bc6f7215543c22b34b874950e9a6a581b1a118598dc?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="https://andamanpass.com/" rel="nofollow">Tom Scott</a> on <a href="https://blog.mendeley.com/2024/06/28/whats-new-in-mendeley-our-most-recent-releases-4/comment-page-1/#comment-63617">What’s New in Mendeley: Our Mo&hellip;</a></td></tr><tr><td title="pelorustech" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="http://pelorustechnologies.wordpress.com" rel="nofollow"><img alt='' src='https://0.gravatar.com/avatar/cc404649984dddfa97ead407ac3d450e11f64043fdff2794feb48614aa068791?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/cc404649984dddfa97ead407ac3d450e11f64043fdff2794feb48614aa068791?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/cc404649984dddfa97ead407ac3d450e11f64043fdff2794feb48614aa068791?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/cc404649984dddfa97ead407ac3d450e11f64043fdff2794feb48614aa068791?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/cc404649984dddfa97ead407ac3d450e11f64043fdff2794feb48614aa068791?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/cc404649984dddfa97ead407ac3d450e11f64043fdff2794feb48614aa068791?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="http://pelorustechnologies.wordpress.com" rel="nofollow">pelorustech</a> on <a href="https://blog.mendeley.com/2023/08/25/ditch-those-duplicates-with-mendeley-reference-manager/comment-page-1/#comment-63582">Ditch those duplicates with Me&hellip;</a></td></tr><tr><td title="womotayo" class="recentcommentsavatarend" style="height:48px; width:48px;"><img alt='' src='https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstextend" style="">womotayo on <a href="https://blog.mendeley.com/2023/08/25/ditch-those-duplicates-with-mendeley-reference-manager/comment-page-1/#comment-63580">Ditch those duplicates with Me&hellip;</a></td></tr><tr><td title="womotayo" class="recentcommentsavatarend" style="height:48px; width:48px;"><img alt='' src='https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/f74f4d8d4890f4c6789035ce64ea5d41af1637b07b6ed194f87546079d6c7332?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstextend" style="">womotayo on <a href="https://blog.mendeley.com/2023/08/25/ditch-those-duplicates-with-mendeley-reference-manager/comment-page-1/#comment-63579">Ditch those duplicates with Me&hellip;</a></td></tr> </table> </aside><aside id="categories-2" class="widget widget_categories"><h2 class="widget-title">Categories</h2> <ul> <li class="cat-item cat-item-432202586"><a href="https://blog.mendeley.com/category/mdod14/">#MDOD14</a> </li> <li class="cat-item cat-item-432202587"><a href="https://blog.mendeley.com/category/mdod15/">#MDOD15</a> </li> <li class="cat-item cat-item-15948"><a href="https://blog.mendeley.com/category/academic/">Academic</a> </li> <li class="cat-item cat-item-74280743"><a href="https://blog.mendeley.com/category/academic-features/">Academic Features</a> </li> <li class="cat-item cat-item-56792"><a href="https://blog.mendeley.com/category/academic-life/">academic life</a> </li> <li class="cat-item cat-item-13178"><a href="https://blog.mendeley.com/category/accounting/">Accounting</a> </li> <li class="cat-item cat-item-542426843"><a href="https://blog.mendeley.com/category/partnerships-sponsorships/ada-lovelace-day-16/">Ada Lovelace Day 16</a> </li> <li class="cat-item cat-item-682530194"><a href="https://blog.mendeley.com/category/partnerships-sponsorships/advance-resource-and-coordination-arc-network-community/">ADVANCE Resource and Coordination (ARC) Network Community</a> </li> <li class="cat-item cat-item-674918059"><a href="https://blog.mendeley.com/category/advisor-briefing/">advisor briefing</a> </li> <li class="cat-item cat-item-698541754"><a href="https://blog.mendeley.com/category/mendeley-advisors/advisor-of-the-century/">Advisor of the Century</a> </li> <li class="cat-item cat-item-253846173"><a href="https://blog.mendeley.com/category/mendeley-advisors/advisor-of-the-month/">Advisor of the Month</a> </li> <li class="cat-item cat-item-14572"><a href="https://blog.mendeley.com/category/agriculture/">Agriculture</a> </li> <li class="cat-item cat-item-4276"><a href="https://blog.mendeley.com/category/api/">API</a> </li> <li class="cat-item cat-item-1091184"><a href="https://blog.mendeley.com/category/atomium/">Atomium</a> </li> <li class="cat-item cat-item-6758"><a href="https://blog.mendeley.com/category/awards/">Awards</a> </li> <li class="cat-item cat-item-1185"><a href="https://blog.mendeley.com/category/back-to-school/">Back to School</a> </li> <li class="cat-item cat-item-170527"><a href="https://blog.mendeley.com/category/biological-sciences/">Biological sciences</a> </li> <li class="cat-item cat-item-13022"><a href="https://blog.mendeley.com/category/brainstorm/">Brainstorm</a> </li> <li class="cat-item cat-item-684728033"><a href="https://blog.mendeley.com/category/build-my-knowledge/">Build My Knowledge</a> </li> <li class="cat-item cat-item-179"><a href="https://blog.mendeley.com/category/business/">Business</a> </li> <li class="cat-item cat-item-20466"><a href="https://blog.mendeley.com/category/careers/">careers</a> </li> <li class="cat-item cat-item-116739"><a href="https://blog.mendeley.com/category/community-relations/">community relations</a> </li> <li class="cat-item cat-item-5043"><a href="https://blog.mendeley.com/category/computer-science/">computer science</a> </li> <li class="cat-item cat-item-195390108"><a href="https://blog.mendeley.com/category/connecting-research-disciplines/">connecting research disciplines</a> </li> <li class="cat-item cat-item-5738"><a href="https://blog.mendeley.com/category/contests/">Contests</a> </li> <li class="cat-item cat-item-40938"><a href="https://blog.mendeley.com/category/dentistry/">Dentistry</a> </li> <li class="cat-item cat-item-7502122"><a href="https://blog.mendeley.com/category/design-research-tools/">design research tools</a> </li> <li class="cat-item cat-item-1209193"><a href="https://blog.mendeley.com/category/developer-resources/">developer resources</a> </li> <li class="cat-item cat-item-357496"><a href="https://blog.mendeley.com/category/elsevier/">Elsevier</a> </li> <li class="cat-item cat-item-25393"><a href="https://blog.mendeley.com/category/engineering/">Engineering</a> </li> <li class="cat-item cat-item-3285984"><a href="https://blog.mendeley.com/category/events-2/">Events</a> </li> <li class="cat-item cat-item-20250"><a href="https://blog.mendeley.com/category/funding/">Funding</a> </li> <li class="cat-item cat-item-279350"><a href="https://blog.mendeley.com/category/guest-blog/">Guest Blog</a> </li> <li class="cat-item cat-item-195390109"><a href="https://blog.mendeley.com/category/hard-research-life/">hard research life</a> </li> <li class="cat-item cat-item-48076230"><a href="https://blog.mendeley.com/category/highlighting-research/">highlighting research</a> </li> <li class="cat-item cat-item-677225879"><a href="https://blog.mendeley.com/category/information-system-supporting-research/">Information system supporting research</a> </li> <li class="cat-item cat-item-36424867"><a href="https://blog.mendeley.com/category/librarians-2/">Librarians</a> </li> <li class="cat-item cat-item-80962"><a href="https://blog.mendeley.com/category/linkedin/">LinkedIn</a> </li> <li class="cat-item cat-item-4236"><a href="https://blog.mendeley.com/category/management/">Management</a> </li> <li class="cat-item cat-item-3659"><a href="https://blog.mendeley.com/category/medicine/">medicine</a> </li> <li class="cat-item cat-item-62645813"><a href="https://blog.mendeley.com/category/meettheteam/">MeetTheTeam</a> </li> <li class="cat-item cat-item-195390164"><a href="https://blog.mendeley.com/category/mendeley-advisors/">Mendeley Advisors</a> </li> <li class="cat-item cat-item-195390170"><a href="https://blog.mendeley.com/category/mendeley-careers/">Mendeley Careers</a> </li> <li class="cat-item cat-item-693231712"><a href="https://blog.mendeley.com/category/mendeley-catalog/">Mendeley Catalog</a> </li> <li class="cat-item cat-item-680264379"><a href="https://blog.mendeley.com/category/mendeley-cite/">Mendeley Cite</a> </li> <li class="cat-item cat-item-430911367"><a href="https://blog.mendeley.com/category/mendeley-data/">Mendeley Data</a> </li> <li class="cat-item cat-item-683162402"><a href="https://blog.mendeley.com/category/mendeley-data/mendeley-data-advisory-board/">Mendeley Data Advisory Board</a> </li> <li class="cat-item cat-item-569016555"><a href="https://blog.mendeley.com/category/mendeley-funding/">mendeley funding</a> </li> <li class="cat-item cat-item-253846231"><a href="https://blog.mendeley.com/category/mendeley-groups/">Mendeley Groups</a> </li> <li class="cat-item cat-item-677225772"><a href="https://blog.mendeley.com/category/mendeley-profile/">Mendeley Profile</a> </li> <li class="cat-item cat-item-674983250"><a href="https://blog.mendeley.com/category/mendeley-reference-manager/">Mendeley Reference Manager</a> </li> <li class="cat-item cat-item-160140976"><a href="https://blog.mendeley.com/category/mendeley-suggest/">Mendeley Suggest</a> </li> <li class="cat-item cat-item-195390110"><a href="https://blog.mendeley.com/category/mendeley-use-case/">mendeley use case</a> </li> <li class="cat-item cat-item-679681868"><a href="https://blog.mendeley.com/category/mendeley-vision/">Mendeley vision</a> </li> <li class="cat-item cat-item-692925498"><a href="https://blog.mendeley.com/category/mendeley-web-importer/">Mendeley Web Importer</a> </li> <li class="cat-item cat-item-195390112"><a href="https://blog.mendeley.com/category/start-up-life/mendelife/">Mendelife</a> </li> <li class="cat-item cat-item-5004"><a href="https://blog.mendeley.com/category/mental-health/">mental health</a> </li> <li class="cat-item cat-item-8758625"><a href="https://blog.mendeley.com/category/mobile-2/">mobile</a> </li> <li class="cat-item cat-item-35872"><a href="https://blog.mendeley.com/category/new-features/">New features</a> </li> <li class="cat-item cat-item-34948174"><a href="https://blog.mendeley.com/category/new-release-2/">new release</a> </li> <li class="cat-item cat-item-103"><a href="https://blog.mendeley.com/category/news/">News</a> </li> <li class="cat-item cat-item-529411157"><a href="https://blog.mendeley.com/category/partnerships-sponsorships/newscientistlive/">NewScientistLive</a> </li> <li class="cat-item cat-item-24853"><a href="https://blog.mendeley.com/category/open-access/">open access</a> </li> <li class="cat-item cat-item-1674379"><a href="https://blog.mendeley.com/category/open-day/">Open Day</a> </li> <li class="cat-item cat-item-5034134"><a href="https://blog.mendeley.com/category/openday/">OpenDay</a> </li> <li class="cat-item cat-item-432202589"><a href="https://blog.mendeley.com/category/partnerships-sponsorships/">Partnerships &amp; Sponsorships</a> </li> <li class="cat-item cat-item-541548412"><a href="https://blog.mendeley.com/category/peer-review-recognition/">Peer Review Recognition</a> </li> <li class="cat-item cat-item-495773033"><a href="https://blog.mendeley.com/category/partnerships-sponsorships/pintofscience16/">PintOfScience16</a> </li> <li class="cat-item cat-item-574204834"><a href="https://blog.mendeley.com/category/partnerships-sponsorships/pintofscience17/">PintofScience17</a> </li> <li class="cat-item cat-item-6672"><a href="https://blog.mendeley.com/category/press-release/">press release</a> </li> <li class="cat-item cat-item-106661"><a href="https://blog.mendeley.com/category/progress-update/">progress update</a> </li> <li class="cat-item cat-item-267883"><a href="https://blog.mendeley.com/category/reference-management/">reference management</a> </li> <li class="cat-item cat-item-668"><a href="https://blog.mendeley.com/category/research/">research</a> </li> <li class="cat-item cat-item-65265474"><a href="https://blog.mendeley.com/category/research-miscellanea/">research miscellanea</a> </li> <li class="cat-item cat-item-3193150"><a href="https://blog.mendeley.com/category/research-network/">research network</a> </li> <li class="cat-item cat-item-26044363"><a href="https://blog.mendeley.com/category/research-tutorials/">research tutorials</a> </li> <li class="cat-item cat-item-19527543"><a href="https://blog.mendeley.com/category/research4life/">Research4Life</a> </li> <li class="cat-item cat-item-654816588"><a href="https://blog.mendeley.com/category/researcher-academy/">Researcher Academy</a> </li> <li class="cat-item cat-item-4135593"><a href="https://blog.mendeley.com/category/service-update/">service update</a> </li> <li class="cat-item cat-item-2504461"><a href="https://blog.mendeley.com/category/ssrn/">SSRN</a> </li> <li class="cat-item cat-item-1128472 current-cat"><a aria-current="page" href="https://blog.mendeley.com/category/start-up-life/">start-up life</a> </li> <li class="cat-item cat-item-253846169"><a href="https://blog.mendeley.com/category/talks-at-mendeley/">Talks at Mendeley</a> </li> <li class="cat-item cat-item-261761"><a href="https://blog.mendeley.com/category/terms-of-use/">Terms of Use</a> </li> <li class="cat-item cat-item-773680621"><a href="https://blog.mendeley.com/category/the-future-of-mendeley/">The Future of Mendeley</a> </li> <li class="cat-item cat-item-22124"><a href="https://blog.mendeley.com/category/tipstricks/">Tips&amp;Tricks</a> </li> <li class="cat-item cat-item-1"><a href="https://blog.mendeley.com/category/uncategorized/">Uncategorized</a> </li> <li class="cat-item cat-item-465168"><a href="https://blog.mendeley.com/category/webinar/">webinar</a> </li> <li class="cat-item cat-item-232772"><a href="https://blog.mendeley.com/category/women-in-science/">Women in Science</a> </li> <li class="cat-item cat-item-12282115"><a href="https://blog.mendeley.com/category/women-in-stem/">Women in STEM</a> </li> <li class="cat-item cat-item-349"><a href="https://blog.mendeley.com/category/writing/">writing</a> </li> </ul> </aside></div><!-- #secondary --> </div><!-- #content --> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info small-part"> <a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <a href="#top" class="to-top"><i class="fa fa-angle-up fa-lg"><span class="screen-reader-text">Back to top</span></i></a> <script type="text/javascript"> var infiniteScroll = {"settings":{"id":"main","ajaxurl":"https:\/\/blog.mendeley.com\/?infinity=scrolling","type":"scroll","wrapper":true,"wrapper_class":"infinite-wrap","footer":"page","click_handle":"1","text":"Older posts","totop":"Scroll back to top","currentday":"27.03.14","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"blog.mendeley.com","path":"\/category\/start-up-life\/page\/%d\/","use_trailing_slashes":true,"parameters":""},"query_args":{"category_name":"start-up-life","error":"","m":"","p":0,"post_parent":"","subpost":"","subpost_id":"","attachment":"","attachment_id":0,"name":"","pagename":"","page_id":0,"second":"","minute":"","hour":"","day":0,"monthnum":0,"year":0,"w":0,"tag":"","cat":1128472,"tag_id":"","author":"","author_name":"","feed":"","tb":"","paged":0,"meta_key":"","meta_value":"","preview":"","s":"","sentence":"","title":"","fields":"","menu_order":"","embed":"","category__in":[],"category__not_in":[],"category__and":[],"post__in":[],"post__not_in":[],"post_name__in":[],"tag__in":[],"tag__not_in":[],"tag__and":[],"tag_slug__in":[],"tag_slug__and":[],"post_parent__in":[],"post_parent__not_in":[],"author__in":[],"author__not_in":[],"search_columns":[],"lazy_load_term_meta":false,"posts_per_page":10,"ignore_sticky_posts":false,"suppress_filters":false,"cache_results":true,"update_post_term_cache":true,"update_menu_item_cache":false,"update_post_meta_cache":true,"post_type":"","nopaging":false,"comments_per_page":"50","no_found_rows":false,"order":"DESC"},"query_before":"2024-11-27 10:23:54","last_post_date":"2014-03-27 16:37:18","body_class":"infinite-scroll neverending","loading_text":"Loading new page","stats":"blog=58470538&v=wpcom&tz=1&user_id=0&subd=mendeleyblog&x_pagetype=infinite"}}; </script> <!-- --> <script type="text/javascript" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=2024484048849247f5660a2d05b85c6fc286379897f30a1061ad46e7f037e059ed7fe7" id="grofiles-cards-js"></script> <script type="text/javascript" id="wpgroho-js-extra"> /* <![CDATA[ */ var WPGroHo = {"my_hash":""}; /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script> <script> // Initialize and attach hovercards to all gravatars ( function() { function init() { if ( typeof Gravatar === 'undefined' ) { return; } if ( typeof Gravatar.init !== 'function' ) { return; } Gravatar.profile_cb = function ( hash, id ) { WPGroHo.syncProfileData( hash, id ); }; Gravatar.my_hash = WPGroHo.my_hash; Gravatar.init( 'body', '#wp-admin-bar-my-account', { i18n: { 'Edit your profile': 'Edit your profile', 'View profile': 'View profile', 'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.', 'Profile not found.': 'Profile not found.', 'Too Many Requests.': 'Too Many Requests.', 'Internal Server Error.': 'Internal Server Error.', }, } ); } if ( document.readyState !== 'loading' ) { init(); } else { document.addEventListener( 'DOMContentLoaded', init ); } } )(); </script> <div style="display:none"> <div class="grofile-hash-map-786f0ec698ead6e724a9123717069a89"> </div> <div class="grofile-hash-map-b3938dd3ba9677c0a933899c83b53de4"> </div> <div class="grofile-hash-map-e5e2c17c097ebb9d5a151e4ff2e709e0"> </div> <div class="grofile-hash-map-885dfdc9350d2ae43fb3018e8c5a65dc"> </div> </div> <div id="infinite-footer"> <div class="container"> <div class="blog-info"> <a id="infinity-blog-title" href="https://blog.mendeley.com/" rel="home"> Mendeley Blog </a> </div> <div class="blog-credits"> <a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a> </div> </div> </div><!-- #infinite-footer --> <div id="actionbar" style="display: none;" class="actnbr-pub-nucleare actnbr-has-follow"> <ul> <li class="actnbr-btn actnbr-hidden"> <a class="actnbr-action actnbr-actn-follow " href=""> <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z" fill-rule="evenodd"></path></svg> <span>Subscribe</span> </a> <a class="actnbr-action actnbr-actn-following no-display" href=""> <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg> <span>Subscribed</span> </a> <div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble"> <div class="tip-arrow"></div> <div class="tip-inner actnbr-follow-bubble"> <ul> <li class="actnbr-sitename"> <a href="https://blog.mendeley.com"> <img loading='lazy' alt='' src='https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=50' srcset='https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=50 1x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=75 1.5x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=100 2x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=150 3x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' /> Mendeley Blog </a> </li> <div class="actnbr-message no-display"></div> <form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;"> <div class="actnbr-follow-count">Join 652 other subscribers</div> <div> <input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" /> </div> <input type="hidden" name="action" value="subscribe" /> <input type="hidden" name="blog_id" value="58470538" /> <input type="hidden" name="source" value="https://blog.mendeley.com/category/start-up-life/" /> <input type="hidden" name="sub-type" value="actionbar-follow" /> <input type="hidden" id="_wpnonce" name="_wpnonce" value="59f4b8eea3" /> <div class="actnbr-button-wrap"> <button type="submit" value="Sign me up"> Sign me up </button> </div> </form> <li class="actnbr-login-nudge"> <div> Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fblog.mendeley.com%252F2019%252F05%252F28%252Fmeet-the-team-karin-hilton-senior-director-technology%252F">Log in now.</a> </div> </li> </ul> </div> </div> </li> <li class="actnbr-ellipsis actnbr-hidden"> <svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg> <div class="actnbr-popover tip tip-top-left actnbr-more"> <div class="tip-arrow"></div> <div class="tip-inner"> <ul> <li class="actnbr-sitename"> <a href="https://blog.mendeley.com"> <img loading='lazy' alt='' src='https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=50' srcset='https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=50 1x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=75 1.5x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=100 2x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=150 3x, https://blog.mendeley.com/wp-content/uploads/2024/05/cropped-wordpress-favicon.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' /> Mendeley Blog </a> </li> <li class="actnbr-folded-customize"> <a href="https://mendeleyblog.wordpress.com/wp-admin/customize.php?url=https%3A%2F%2Fmendeleyblog.wordpress.com%2Fcategory%2Fstart-up-life%2F"> <svg class="gridicon gridicons-customize" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M2 6c0-1.505.78-3.08 2-4 0 .845.69 2 2 2 1.657 0 3 1.343 3 3 0 .386-.08.752-.212 1.09.74.594 1.476 1.19 2.19 1.81L8.9 11.98c-.62-.716-1.214-1.454-1.807-2.192C6.753 9.92 6.387 10 6 10c-2.21 0-4-1.79-4-4zm12.152 6.848l1.34-1.34c.607.304 1.283.492 2.008.492 2.485 0 4.5-2.015 4.5-4.5 0-.725-.188-1.4-.493-2.007L18 9l-2-2 3.507-3.507C18.9 3.188 18.225 3 17.5 3 15.015 3 13 5.015 13 7.5c0 .725.188 1.4.493 2.007L3 20l2 2 6.848-6.848c1.885 1.928 3.874 3.753 5.977 5.45l1.425 1.148 1.5-1.5-1.15-1.425c-1.695-2.103-3.52-4.092-5.448-5.977z"/></g></svg> <span>Customize</span> </a> </li> <li class="actnbr-folded-follow"> <a class="actnbr-action actnbr-actn-follow " href=""> <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z" fill-rule="evenodd"></path></svg> <span>Subscribe</span> </a> <a class="actnbr-action actnbr-actn-following no-display" href=""> <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg> <span>Subscribed</span> </a> </li> <li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li> <li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fblog.mendeley.com%252F2019%252F05%252F28%252Fmeet-the-team-karin-hilton-senior-director-technology%252F">Log in</a></li> <li class="flb-report"> <a href="https://wordpress.com/abuse/?report_url=https://blog.mendeley.com" target="_blank" rel="noopener noreferrer"> Report this content </a> </li> <li class="actnbr-reader"> <a href="https://wordpress.com/read/feeds/58872645"> View site in Reader </a> </li> <li class="actnbr-subs"> <a href="https://subscribe.wordpress.com/">Manage subscriptions</a> </li> <li class="actnbr-fold"><a href="">Collapse this bar</a></li> </ul> </div> </div> </li> </ul> </div> <script> window.addEventListener( "load", function( event ) { var link = document.createElement( "link" ); link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20241015"; link.type = "text/css"; link.rel = "stylesheet"; document.head.appendChild( link ); var script = document.createElement( "script" ); script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20231122"; script.defer = true; document.body.appendChild( script ); } ); </script> <div id="jp-carousel-loading-overlay"> <div id="jp-carousel-loading-wrapper"> <span id="jp-carousel-library-loading">&nbsp;</span> </div> </div> <div class="jp-carousel-overlay" style="display: none;"> <div class="jp-carousel-container"> <!-- The Carousel Swiper --> <div class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions" itemscope itemtype="https://schema.org/ImageGallery"> <div class="jp-carousel swiper-wrapper"></div> <div class="jp-swiper-button-prev swiper-button-prev"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12"> <path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/> </mask> <g mask="url(#maskPrev)"> <rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> </div> <div class="jp-swiper-button-next swiper-button-next"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12"> <path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/> </mask> <g mask="url(#maskNext)"> <rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/> </g> </svg> </div> </div> <!-- The main close buton --> <div class="jp-carousel-close-hint"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14"> <path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/> </mask> <g mask="url(#maskClose)"> <rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> </div> <!-- Image info, comments and meta --> <div class="jp-carousel-info"> <div class="jp-carousel-info-footer"> <div class="jp-carousel-pagination-container"> <div class="jp-swiper-pagination swiper-pagination"></div> <div class="jp-carousel-pagination"></div> </div> <div class="jp-carousel-photo-title-container"> <h2 class="jp-carousel-photo-caption"></h2> </div> <div class="jp-carousel-photo-icons-container"> <a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility"> <span class="jp-carousel-icon"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/> </mask> <g mask="url(#maskInfo)"> <rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> </span> </a> <a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility"> <span class="jp-carousel-icon"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20"> <path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/> </mask> <g mask="url(#maskComments)"> <rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> <span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span> </span> </a> </div> </div> <div class="jp-carousel-info-extra"> <div class="jp-carousel-info-content-wrapper"> <div class="jp-carousel-photo-title-container"> <h2 class="jp-carousel-photo-title"></h2> </div> <div class="jp-carousel-comments-wrapper"> <div id="jp-carousel-comments-loading"> <span>Loading Comments...</span> </div> <div class="jp-carousel-comments"></div> <div id="jp-carousel-comment-form-container"> <span id="jp-carousel-comment-form-spinner">&nbsp;</span> <div id="jp-carousel-comment-post-results"></div> <form id="jp-carousel-comment-form"> <label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label> <textarea name="comment" class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea" id="jp-carousel-comment-form-comment-field" placeholder="Write a Comment..." ></textarea> <div id="jp-carousel-comment-form-submit-and-info-wrapper"> <div id="jp-carousel-comment-form-commenting-as"> <fieldset> <label for="jp-carousel-comment-form-email-field">Email (Required)</label> <input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" /> </fieldset> <fieldset> <label for="jp-carousel-comment-form-author-field">Name (Required)</label> <input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" /> </fieldset> <fieldset> <label for="jp-carousel-comment-form-url-field">Website</label> <input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" /> </fieldset> </div> <input type="submit" name="submit" class="jp-carousel-comment-form-button" id="jp-carousel-comment-form-button-submit" value="Post Comment" /> </div> </form> </div> </div> <div class="jp-carousel-image-meta"> <div class="jp-carousel-title-and-caption"> <div class="jp-carousel-photo-info"> <h3 class="jp-carousel-caption" itemprop="caption description"></h3> </div> <div class="jp-carousel-photo-description"></div> </div> <ul class="jp-carousel-image-exif" style="display: none;"></ul> <a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/> </mask> <g mask="url(#mask0)"> <rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> <span class="jp-carousel-download-text"></span> </a> <div class="jp-carousel-image-map" style="display: none;"></div> </div> </div> </div> </div> </div> </div> <link crossorigin='anonymous' rel='stylesheet' id='all-css-0-2' href='https://s1.wp.com/_static/??-eJylj9EKwjAMRX/IGifo8EH8ltqGrZo2pUk3/Hs3cIgIIvoSuIdwkgtjNo6TYlKI1WSqXUgCF9Rs3fWRITLPw1dCAWcLV0ECGUPGYs41ecK1E1nBH7ZlaQHfCCc0ZsfxxTxg8lzAVuVoVYN7qsmKBGe0x4imR5reBx9EoaBkThIGNEPwyPJOfi2ogdCbzhJhuX1K84FTPDZt0+63m8Nhd7kDhqSdKA==&cssminify=yes' type='text/css' media='all' /> <script type="text/javascript" id="jetpack-carousel-js-extra"> /* <![CDATA[ */ var jetpackSwiperLibraryPath = {"url":"https:\/\/s2.wp.com\/wp-content\/mu-plugins\/jetpack-plugin\/moon\/_inc\/build\/carousel\/swiper-bundle.min.js"}; var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https:\/\/blog.mendeley.com\/wp-admin\/admin-ajax.php","nonce":"5d3d794c1a","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size <span class=\"photo-size\">{0}<span class=\"photo-size-times\">\u00d7<\/span>{1}<\/span>","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https:\/\/mendeleyblog.wordpress.com\/wp-login.php?redirect_to=https%3A%2F%2Fblog.mendeley.com%2F2019%2F05%2F28%2Fmeet-the-team-karin-hilton-senior-director-technology%2F","blog_id":"58470538","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=58470538&v=wpcom&tz=1&user_id=0&subd=mendeleyblog","is_public":"1"}; /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s0.wp.com/_static/??-eJydkN1uwjAMhV9owTAuUC/QHmVKU7dz69hRnMB4+wWJompXiDv/fMf2MVyTCyoFpcBsELUnRlcNs59azZGMupvtAzZcrC5xnUgMZizJh+WRN7kKfJME6CvxAE1NQgWdhazMa37bRZL/U8sPRjRItQepgdFnvF+0xq/i/kKTL6SvzreFkmOSxY0aqrmRft/3G3zW9jt+cmtha7jhXId2Sts+kBW4oAya762kfBuJV/wrng+n4/7wue9O3fwH2vGfbg=='></script> <script type="text/javascript" crossorigin='anonymous' src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.6.4/build/hooks/index.min.js?m=1731954715i&amp;ver=84e753e2b66eb7028d38" id="wp-hooks-js"></script> <script type="text/javascript" crossorigin='anonymous' src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.6.4/build/i18n/index.min.js?m=1731954715i&amp;ver=bd5a2533e717a1043151" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s2.wp.com/_static/??-eJx9T+0KwjAMfCFrUJjbH/FRpKZhy2yb0qQT315BEVHYz/vi7uBWHEo2ygapuRLbyFlhJiser+5J3QpKeguQRDIslINU8M0keTPGjx2jV2V0NlEiN1EsVCGwGlTSIll5IbdwINF/ZjvrBtbnfK84c0a4NI4BjCMFN/oYqd7X0DZxXqlBX6UpxdfnH/jMndJx1++7YRgOfTc/ALNcdv4='></script> <script type="text/javascript"> (function () { var wpcom_reblog = { source: 'toolbar', toggle_reblog_box_flair: function (obj_id, post_id) { // Go to site selector. This will redirect to their blog if they only have one. const postEndpoint = `https://wordpress.com/post`; // Ideally we would use the permalink here, but fortunately this will be replaced with the // post permalink in the editor. const originalURL = `${ document.location.href }?page_id=${ post_id }`; const url = postEndpoint + '?url=' + encodeURIComponent( originalURL ) + '&is_post_share=true' + '&v=5'; const redirect = function () { if ( ! window.open( url, '_blank' ) ) { location.href = url; } }; if ( /Firefox/.test( navigator.userAgent ) ) { setTimeout( redirect, 0 ); } else { redirect(); } }, }; window.wpcom_reblog = wpcom_reblog; })(); </script> <script type="text/javascript"> // <![CDATA[ (function() { try{ if ( window.external &&'msIsSiteMode' in window.external) { if (window.external.msIsSiteMode()) { var jl = document.createElement('script'); jl.type='text/javascript'; jl.async=true; jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(jl, s); } } }catch(e){} })(); // ]]> </script> <script type="text/javascript"> (function() { var extend = function(out) { out = out || {}; for (var i = 1; i < arguments.length; i++) { if (!arguments[i]) continue; for (var key in arguments[i]) { if (arguments[i].hasOwnProperty(key)) out[key] = arguments[i][key]; } } return out; }; extend( window.infiniteScroll.settings.scripts, ["jetpack-mu-wpcom-settings","rlt-proxy","wpcom-actionbar-placeholder","grofiles-cards","wpgroho","mobile-useragent-info","the-neverending-homepage","nucleare-custom","nucleare-navigation","nucleare-skip-link-focus-fix","jetpack-carousel","wp-polyfill","wp-hooks","wp-i18n","jetpack-responsive-videos","tiled-gallery","carousel-wpcom"] ); extend( window.infiniteScroll.settings.styles, ["the-neverending-homepage","wp-block-library","jetpack-layout-grid","jetpack-ratings","mediaelement","wp-mediaelement","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-text-widget-styles","wpcom-bbpress2-staff-css","nucleare-style","genericons","nucleare-font-awesome","reblogging","geo-location-flair","a8c-global-print","nucleare-wpcom","h4-global","wp-emoji-styles","videopress-video-style","jetpack-sharing-buttons-style","classic-theme-styles","global-styles","nucleare-fonts","jetpack-global-styles-frontend-style","jetpack-carousel-swiper-css","jetpack-carousel","jetpack-responsive-videos","tiled-gallery","core-block-supports-duotone"] ); })(); </script> <span id="infinite-aria" aria-live="polite"></span> <script src="//stats.wp.com/w.js?67" defer></script> <script type="text/javascript"> _tkq = window._tkq || []; _stq = window._stq || []; _tkq.push(['storeContext', {'blog_id':'58470538','blog_tz':'1','user_lang':'en','blog_lang':'en','user_id':'0'}]); _stq.push(['view', {'blog':'58470538','v':'wpcom','tz':'1','user_id':'0','subd':'mendeleyblog'}]); _stq.push(['extra', {'crypt':'UE40eW5QN0p8M2Y/RE1mNzc2NTVTamdsd0xoLz9RQkM2K298TXY9bERQMXc2MjhEaVZfb2wwakRoSj0mUkp1THptM1NdbkV1WjZIcU9mVWQmPUIvMlN6Jk8wW3NYVEJ3dWZOWExuWD9qdFhwXWtsSWt3RHlLUTgxeD05OHxiQj1ianVPP3VCLFhHNDJuaEU1dlpMYlRSTjY/cFJxWkFRbEJKK2QyQmx4L0U0cVF6YmIzQU5dVjYwUjRPP1M0bFErJnZFZjJvUy5+LU45UC5VS3BGZ2tGeWxHaC9UcXZ1TzhQcGJPaTZ3JXNfNEksQjZtOWExL0lWQXd2LERdYlJVaWYvMGN1RVZnanIsP2kvb1VVP29uP0tXUVJWTGk4ZCwzbTFvWloveFNQZ3hUeXcuaX5XWVU5LHFdTk9Qai0='}]); _stq.push([ 'clickTrackerInit', '58470538', '0' ]); </script> <noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript> <script> ( function() { function getMobileUserAgentInfo() { if ( typeof wpcom_mobile_user_agent_info === 'object' ) { wpcom_mobile_user_agent_info.init(); var mobileStatsQueryString = ''; if ( wpcom_mobile_user_agent_info.matchedPlatformName !== false ) { mobileStatsQueryString += '&x_' + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName; } if ( wpcom_mobile_user_agent_info.matchedUserAgentName !== false ) { mobileStatsQueryString += '&x_' + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName; } if ( wpcom_mobile_user_agent_info.isIPad() ) { mobileStatsQueryString += '&x_' + 'ipad_views' + '=' + 'views'; } if ( mobileStatsQueryString != '' ) { new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random(); } } } document.addEventListener( 'DOMContentLoaded', getMobileUserAgentInfo ); } )(); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10