article_text stringlengths 10 100k | tags stringlengths 6 263 |
|---|---|
WebSocket
Websocket is a communications protocol, providing full-duplex bi-directional communication over a single TCP connection.
To understand Websockets, first, we have to have a clear understanding of HTTP protocol cause both go hand in hand.
HTTP protocol life cycle
HTTP is a protocol which allows the fetching... | ['Flask', 'JavaScript', 'Python', 'Websocket', 'Socketio'] |
Running a freelance business means wearing many hats. More heads would really come in handy. | ['Creative Process', 'Freelance', 'Freelancing', 'Comics', 'Creativity'] |
“You need to stop losing money now—or else.”
That is along the lines of what Softbank CEO Masayoshi Son said to the founders of the businesses he tossed billions in. In a meeting at Langham resort, Son gathered business leaders from Softbank’s portfolio companies to give a clear message: no gimmicks. If not, you’re go... | ['Startup', 'Work', 'Business', 'Venture Capital', 'Finance'] |
Charticulator
Microsoft Research has quietly open-sourced a game-changing visualization platform
Charticulator allows for truly bespoke visualisation through a drag-and-drop interface. Source: Charticulator
Data visualisation is an area where experimentation is rewarded. It is important to be able to rapidly prototy... | ['Visualization', 'Power Bi', 'Data Visualization'] |
On the average day, I find it a challenge to go about a “normal” life while understanding that the world is collapsing around us. Even if you don’t think that climate change is going to cause societal break-down (or is already), day after day of dire news can easily lead to the climate grief inflicting so many of us.
... | ['Environment', 'Climate Change', 'Beauty', 'Parenting', 'Kindness'] |
I am sad, angry, disappointed, but still hopeful.
I am angry that in the 21st century we still have to deal with issues like this. I am angry that in the 21st century people have to die for something that shouldn’t exist anymore.
I am angry that in the 21st century, when we have artificial intelligence, self-driving ... | ['Essay', 'Thinking', 'Racism', 'Society'] |
The sky is cloudy like my thoughts
It is always moody like my neighbour next door
Summer is coming
And rain will not drizzle but pour
The sky is also like me you see
Mostly quiet but fiddly,
Unpredictable and noisy
Simply out of control | ['Poem', 'Poets Unlimited', 'Weather', 'Poetry'] |
Music is religious to me in the way that I rely on lyrics and melodies to react to my feelings, like prayers. Where there is a moment, there is a song. Where there is fear, there is an arpeggiated sneer to rid us of negativity. Where there is love, there is rhythm and poetry to describe our emotions for us, embody our ... | ['Relationships', 'Love', 'LGBTQ', 'Sex', 'Music'] |
Why We Find Joy and Value in Creating Data Visualizations
A reflection on the unseen forces behind visual works
I don’t know about you, but when something piques my interest — TV tropes, color theory, the life-changing magic of tidying up, anything — I have to wrap my mind around the “shape” of the related knowledge.... | ['Design', 'Data Visualization', 'Information Design', 'Data Science', 'Visual Design'] |
How Japanese People Stay Fit for Life, Without Ever Visiting a Gym
For people stressed or intimidated by fitness culture
Illustrations by Kaki Okumura
In the United States, I’m often bombarded with images and ads of fitness culture. Athleisure is the craze, and it seems that the majority of people are members of gym... | ['Self Improvement', 'Lifestyle', 'Health', 'Fitness', 'Culture'] |
By: editors
The elected Republican official recently shared a Facebook photo of a mushroom cloud, suggesting an atomic bomb to be used on Muslim countries for “peace.”
Texas Agriculture Commissioner Sid Miller, whose Facebook page is usually filled with farm jokes and extremely patriotic quotes, has recently come und... | ['Facebook', 'Islam', 'Islamophobia'] |
In this post, I’ll show you how to build an AI-powered, searchable video archive using machine learning and Google Cloud-no experience required.
Want to watch this story instead? Check out this video.
One of my favorite apps ever is definitely Google Photos. In addition to backing up my precious pics to the cloud, it... | ['Machine Learning', 'Google Cloud Platform', 'Artificial Intelligence', 'Software Development', 'Video Production'] |
A Tale of Two Countries: Coronavirus Impacts on Energy Demand in China and India
The coronavirus outbreak is impacting energy demand in the world’s most populous countries, China and India, on different timescales
China was the first economy affected by the virus and is now in the process of recovering. Indian energy... | ['Covid 19', 'Business', 'Energy', 'Environment', 'China'] |
Comics and articles about sex and relationships. Also at sexedplus.tumblr.com and on Facebook as Sex Positive Education.
Follow | ['LGBTQ', 'Sex', 'Sexuality', 'Health', 'Comics'] |
Javascript Bundles
Let’s first talk about JavaScript bundles. Bundles usual refer to JavaScript and CSS bundles sent from the server to the user’s browser. When we discuss it in passing, the primary focus is typically the size of the initial JavaScript bundle sent to the client to initialize the web app, and how that ... | ['Webpack', 'JavaScript', 'React', 'Reactjs', 'Ecmascript 6'] |
Facebook recently released its Libra white paper and has been under the spotlight of the global media. Libra’s White paper articulates that its mission is to build a worldwide financial infrastructure that is simple, easy to use, bringing blockchain concepts and providing the world’s most in-need populations with a smo... | ['Governance', 'Tech', 'Work', 'Facebook', 'Blockchain'] |
Create a Deployment and Service Objects
A pod is a group of one or more containers that share the storage and network and has the specification on how to run the container. You can check the pod documentation here.
Let’s create a pod with the below file. Before that, You need to start the Minikube on your local machi... | ['Programming', 'Docker', 'Web Development', 'JavaScript', 'Kubernetes'] |
The Revealing Module Pattern in Specific Example
The last part of the Customizing Google charts series
NOTE: This article contains snippets of code from a project I worked on in 2016! It uses jQuery and Google charts API that could have changed.
In the first part of this series, we created a Treemap using getBoundin... | ['Programming', 'JavaScript', 'Web', 'Design Patterns', 'Web Development'] |
A lot comes down to taking a good soil sample — even remote sensing and modeling approaches rely on collecting physical samples. Good sampling design calls for samples that reflect the unique attributes of a particular site, including the soil type, land use, vegetation, and climate present.
Today, there’s no universa... | ['Research', 'Agriculture', 'Climate Change', 'Soil Health', 'Science'] |
Mocking URLSession through different methods
We want to test our code without actually downloading anything, we need to set up a mock for URLSession .
Subclassing URLSession
Our first attempt at this mock class has two sections, that is URLSessionDataTaskMock and URLSessionMock. The URLSession itself is subclassed, ... | ['Mac', 'Software Engineering', 'Swift', 'Programming', 'Software Development'] |
Technical solution or creative thinking? A Y-DATA graduate on why dealing with data can be so exciting Lyoka Ledenyova Follow Dec 17 · 6 min read
Meet our hero of the day: Pini Koplovitch — a talented scientist that has recently graduated from our Y-DATA program. Pini’s first degree was centered on what the brain does... | ['Cognitive Science', 'Data Scientist', 'Biology', 'Data Science', 'Neuroscience'] |
Prerequisite
Before reading this article, make sure you have a good understanding of Go Interface.
Introduction
Composite Pattern falls under Structural Design Pattern. Based on the book Design Patterns [Gamma et al.], the intent of this pattern is:
Compose objects into tree structures to represent part-whole hiera... | ['Software Engineering', 'Software Development', 'Software Design Patterns', 'Composite Pattern', 'Golang'] |
Game Changer: Surgery For Blocked Arteries May Not Actually Be Necessary
Newly Released Research Upends Years of Clinical Practice
Photo by Piron Guillaume on Unsplash
Someone has an abnormal stress test, indicating a lack of blood flow to the parts of the heart under stress. Often times, the next step recommend by ... | ['Surgery', 'Heart Attack', 'Health', 'Medicine', 'Research'] |
Photo by Bonnie Kittle on Unsplash
This blog post covers yet another set of tips from Kevin Markham’s useful scikit-learn tips series; Have you ever felt confused in understanding the fit and transform methods? Has there been an occasion of applying fit_transform on the test data? Are you familiar with the advantages ... | ['Machine Learning', 'Scikit Learn', 'Python', 'Data', 'Data Preprocessing'] |
Last week Facebook FINALLY released a wider range of emotions for users to express themselves. We all know the arguments for the dislike button, so why Reactions instead?
Facebook recognised that not all posts are inherently likeable. Think about the times you’ve come across a post from a friend lamenting the passing ... | ['Digital Marketing', 'Facebook Marketing', 'Facebook', 'Facebook Ads', 'Social Media'] |
LOS ANGELES, CA — Thursday, May 25th, 2017 — Today, Jake&Papa take their fans on an behind-the-scenes look into the brotherhood so crux to their musical journey. With an assorted arrangement of visuals from their tour days with Tory Lanez, SXSW, critically acclaimed visit to Sway In The Morning, and their telling inter... | ['Revolt Tv', 'Music', 'Brotherhood', 'Press Release', 'Jakepapa'] |
Quick background
We spent the first few months of 2020 running a Minimum Viable Product (MVP) for our company, Project Kooda. We’d just developed a platform designed to use an AI-people mix to match high-skill freelancers up with companies that needed them on a contract basis.
Project Kooda Companies page
After rele... | ['Startup', 'South Africa', 'Business', 'Product Market Fit', 'Covid'] |
Nowadays there is a wide variety of security layers used by organizations at different stages of the software development life cycle. Static code analysis, dynamic analysis, penetration tests, bug bounty programs, or manual findings all offer different frequencies and different coverage levels to catch vulnerabilities.... | ['Application Security', 'Software Engineering', 'Devsecops', 'Software Development', 'DevOps'] |
uninhabited daybreak
drives temperature of grey
in melancholy strides
dashboard radiates
the shivering nest,
windshield cadence
of gold fragments
in tepid light, lines betray
and colour only whispers
having overstayed,
the skin of existence
is an ambiguous sky,
a glossy invitation
to drift impartially,
to... | ['Poetry', 'Peace', 'Colors', 'Meditation', 'Weather'] |
My Hit Record
It took 25 years to find out I’d actually had one
photo by author
It wasn’t a great song. In fact, it wasn’t even a good song. Or a completed song, for that matter. But years ago when I was young and full of ambition, I brought a tape of several songs I’d written to a studio owner who thought he heard ... | ['Music Business', 'Music', 'Life Lessons', 'Memoir', 'Culture'] |
How I got my first job at 17 years old
At 17, I had dabbled around in a few programming languages with the most prominent one being Javascript. I became very fond of Javascript and was amazed at everything you could do with it. I didn’t have much prior experience at this point.
What I had was about a year of experien... | ['Tech', 'Startup', 'Software Development', 'Work', 'Programming'] |
Looker Deep Dive: Looks and Dashboards
In earlier blogs we gave an introduction on Looker and in the subsequent one discussed about some advanced functionalities available in LookML. In this blog we will cover the visualization layer of Looker and will talk about some unique possibilities from the same.
Looker is a c... | ['Business Intelligence', 'Looker', 'Data Visualization', 'Customer Analytics'] |
A while ago my colleague, Victor, took an initial look at Flutter, a new framework for mobile development from Google. At the time Flutter was still in its early stages, the first beta having just been released. Here, we will look into how to extend an app with a Redux store, Thunk future actions, and the Redux Persist... | ['App Development', 'Flutter App Development', 'Flutter', 'Google'] |
Breaking The Peace In The Pool
He loved two women. One ended up in the pool, and the other a murder suspect.
Photo by Joe Pizzio on Unsplash
Michael and Jan Roseboro were a power couple in Denver, Pennsylvania. Their wedding in 1989 was well attended with family and friends. The Roseboros appeared to be deeply in lo... | ['Justice', 'Relationships', 'True Crime', 'Society', 'Family'] |
The Green Hangout Lagos brought together 53 young environmentalists to discuss the pressing issues facing the environment and SDGs in Lagos state. The ideas is to see how they can work together and create more collaboration in solving the pressing issues facing the environment and supporting the government’s effort in ... | ['Climate Change', 'Environment', 'Sdgs', 'Lagos', 'Women'] |
Photo by Kelly Sikkema on Unsplash
A poorly designed form can turn visitors away from your site. Luckily for Vue developers, there are tons of Vue input libraries available to make prettying up your forms a breeze.
There are several benefits to having an intuitive and user-friendly form, including
Higher conversion ... | ['Technology', 'JavaScript', 'Vuejs', 'Web Development', 'Front End Development'] |
When Should I Use One?
Let’s say you’re developing the “next great application.” You run into a problem and decide you do not want or do not know how to write a particular feature.
One of the main reasons you’d want to install a package is to use pre-existing code. There’s no need to reinvent the wheel or do a lot of... | ['Programming', 'Open Source', 'NPM', 'Software Engineering', 'JavaScript'] |
No load? No problem!
When we can train with weights and in gyms, we have an easy way to vary the resistance we are putting our bodies under. Increasing this resistance is a way we can adjust the mechanical tension through our body.
Without equipment such as barbells, dumbbells, machines this can be much harder to do ... | ['Lifestyle', 'Health', 'Lockdown', 'Strength', 'Fitness'] |
Back in 2016, Facebook denied the allegation that the social media listens in on your conversations via microphones in order to better target ads. During the joint hearingbefore the Senate Judiciary & Commerce Committees, Facebook CEO Mark Zuckerberg faced the same question, which he addressed with an absolute denial.
... | ['Technews', 'Facebook'] |
The Global Terrorism Database (GTD) is maintained by National Consortium for the Study of Terrorism and Response to Terrorism (START). The database file used in this notebook can be downloaded from Kaggle page (available in .csv format). It consists of the data of worldwide terrorist attacks from 1970 to 2017 including... | ['Machine Learning', 'Data Science', 'Pandas', 'Python', 'Data Analysis'] |
This is the first article in a series of three, which focus on production ML and the intersection between data science and engineering. The other two are Trawling Twitter for Trollish Tweets and Deploying an ML Model to Production using GCP and MLFlow.
One of the most exciting things in machine learning (ML) today, fo... | ['Machine Learning', 'Data Science', 'DevOps', 'Mlflow', 'Data Engineering'] |
We covered class components in the previous article. We created a couple of Jim Carrey movie components and we stopped there since we didn’t want to keep creating new movie components for each Jim Carrey movie.
It would be beneficial if we had one component that allowed us to render any movie that Jim Carrey appeared ... | ['JavaScript', 'Web Development', 'React', 'Reactjs', 'Programming'] |
A pie chart is a type of data visualization that is used to illustrate numerical proportions in data. The python library ‘matplotlib’ provides many useful tools for creating beautiful visualizations, including pie charts. In this post, we will discuss how to use ‘matplotlib’ to create pie charts in python.
Let’s get s... | ['Data Science', 'Python', 'Technology', 'Programming', 'Software Development'] |
If you want to learn A to Z of Collecting, modeling, and deployment of data-driven systems using Python and machine learning, consider looking at this Coursera specialization by UC San Diego (View here).
The instructors of this four course specialization are:
Julian McAuley , Assistant Professor, Computer Science
, ... | ['Machine Learning', 'Python', 'Data Science', 'Data Driven', 'Data Visualization'] |
What Happens to Your Body When You Suddenly Stop Exercising
You will feel four major changes, and it’s vital to know exactly what happens to your body
Photo by Dollar Gill on Unsplash
Exercising only has benefits for your health when you do it regularly. But making it a habit does not happen easily or overnight and ... | ['Self', 'Exercise', 'Health', 'Life Lessons', 'Life'] |
Sign up for The 'Gale
By Nightingale
Keep up with the latest from Nightingale, the journal of the Data Visualization Society Take a look | ['Community', 'Data Visualisation', 'Outlierconference', 'Data Visualization', 'Dataviz'] |
Serverless is not a good term, yet it is used to describe a powerful and often misunderstood concept.
Being a concept, “an abstract idea”, it is intrinsically nuanced. It’s a feeling, a quality, a spectrum — and overall a space of possible solutions. That space is bounded by the characteristics and qualities of the di... | ['Serverless', 'AWS', 'Cloud Native', 'Lambda', 'Cloud'] |
10/16/94, Soldiers and Sailors Memorial Auditorium, Chattanooga, TN
Imagine you’re writing the blurb for an upcoming Phish concert in a newspaper, circa 1994. Drawn as music critics are towards the easy narrative, you’d probably foreground Phish’s reputation for goofiness: the vacuum cleaner, the giant beach balls, a ... | ['Music', 'Phish'] |
Women Deal With Men Like Joseph Epstein All The Time
There’s nothing new about the attack on Jill Biden.
I’d just defended my dissertation. We were out celebrating, when a guy sat down at our table. He started hitting on us. When he heard about my Ph.D., he decided to make his own.
He pulled out a pen and grabbed a ... | ['Equality', 'Women', 'News', 'Society', 'Feminism'] |
My adventure began in 2007 when a dear friend of mine from Cherniak Software, a major Smalltalk shop, persuaded me to try Smalltalk. After many years of programming in C and C++ and FORTRAN and Tandem TAL and assembly language, I found that Smalltalk was a breath of fresh air! It was a beautifully simple and elegant la... | ['Programming', 'Programming Languages', 'Donald Trump', 'Startup', 'Smalltalk'] |
Billions of words have already been said and written about the new ambitious project “made in” Facebook, Libra. In the following lines, we will not examine the project when it comes to its White Paper and its pretty clear ambitions, but we will try to propose a privacy-centric analysis based on Facebook statement.
Far... | ['Privacy', 'Mimblewimble', 'Cryptocurrency', 'Libra Coin', 'Facebook'] |
How to build Animated Charts like Hans Rosling — doing it all in R
A Small Educative Project for Learning Data Visualisation Skills leveraging 2 libraries (gganimate and plot.ly) — UPDATED with new gganimate version
Hans Rosling was a statistics guru. He spent his entire life promoting the use of data with animated c... | ['Visualization', 'Data', 'Data Science', 'Towards Data Science', 'Analytics'] |
Framework (we’ll use the restaurant business as an example)
Data science is about transforming a raw ingredient (data) into something useful (knowledge and insights). The restaurant business shares this first principle. Moreover, successful teams in both data science and great restaurants are also well seasoned with t... | ['Data Science', 'Analytics', 'Startup Lessons', 'Business', 'Startup'] |
Get this newsletter By signing up, you will create a Medium account if you don’t already have one. Review our Privacy Policy for more information about our privacy practices.
Check your inbox
Medium sent you an email at to complete your subscription. | ['Software Development', 'Software Architecture', 'Software Engineering', 'Programming'] |
5 Free Android App Development Courses for Beginners to Learn in 2021
These are the best free courses to learn Android with Java and Kotlin for FREE
Hello guys, If you are passionate about creating mobile games and applications and want to learn how to develop Android apps or want to become an Android application dev... | ['Mobile App Development', 'Coding', 'Android', 'AndroidDev', 'Android App Development'] |
Eight years after Twitter and Facebook helped fuel a wave of revolutions that toppled long-standing dictators across the Arab world, social media use in the region has plummeted.
The fall comes as several governments crack down on expression online and implement strict surveillance regimes, leading free speech activis... | ['Egypt', 'Twitter', 'Social Media', 'Facebook', 'Arab Spring'] |
Let’s try that again, this time we’ll make sure to pass down our className prop:
// The same styled-component
const StyledOriginal = styled.div`
background: lightBlue;
width: 300px;
height: 150px;
text-align: center;
padding: 2rem;
` // The same React component, but this time with className
const OriginalCompo... | ['Styled Components', 'Programming', 'Front End Development', 'React', 'Coding'] |
Amazon Web Service platform’s Identity and Access Management offering consists of two major components — Cognito User Pool and Cognito Identity Pool. In this article we deep dive into Cognito User Pool and find out what it is, how to use it and when to use it.
Cognito User Pool
Cognito user pool — at its core — is a ... | ['Aws Cognito User Pool', 'Aws Cognito', 'AWS'] |
Last week, my friend Nate Gagnon and I launched Judgey, a browser-based game that gave users the opportunity to literally judge books by their covers. We’re both makers, and Nate is a writer, and I’m technical. So excuse me if I get technical — I promise to reward you with pretty graphs.
As it so happened, the interne... | ['Web Development', 'Data Visualization', 'Books'] |
#ON01.18 on:Symphony
Foreword
Sir James Dyson describes how and why his engineers decided to redesign musical instruments from scratch. He also explains that when it comes being an inventor, constantly engaging in creative side-projects and tasks are a vital part of the pilgrim’s progress.
Invented instrumental
Int... | ['Magazine', 'Music', 'Innovation', 'Symphony', 'Dyson'] |
Remote work is poorly understood and for good reason. What most people have experienced is merely being “allowed” to work remotely on occasion, having to stay home with someone sick in the family, logging in while traveling or waiting for the cable guy to install internet.
While I am a fan of remote working I am not s... | ['Technology', 'Work', 'Business', 'Remote Work', 'Productivity'] |
The Million Dollar Question: How To Survive And Become a Developer
It always seems impossible until it’s done.
Photo by Bahman Adlou on Unsplash
“Don’t be afraid to give up the good and go for the great.” — John Rockefeller
Whether you take on the challenge or not, choose and decide, what’s important is you stop wo... | ['Software Engineering', 'Software Development', 'Work', 'Programming', 'Web Developer'] |
How to Automate Analytics UX with Panel Hector Follow Jan 7 · 12 min read
Data science and analytics teams create predictive models that help solve business questions, but most of these models are not implemented in products or embedded in applications, so where do they live? What happens when end users require the ou... | ['Anaconda', 'Python', 'Data Science', 'Bokeh', 'Data Visualization'] |
I am so happy to see that more and more big companies, which used to have heavyweight processes regarding software engineering, are moving to more agile software engineering methodologies.
Right now in my job, I have to engineer a piece of software for a customer with a small team trying to be as agile as possible. Fo... | ['AWS Lambda', 'Scrum', 'Agile', 'Serverless', 'AWS'] |
Chet Baker
I get sad whenever I listen to Chet Baker. Perhaps it’s because I discovered him at the wrong end of his life when hearing of his death in 1988. Or perhaps it’s because the first image I ever saw of him was from the cover of the 1988 album, My Favorite Songs: The Last Great Concert. The cover photo captures... | ['Las Vegas Philharmonic', 'Jazz', 'Music', 'Donato Cabrera', 'California Symphony'] |
Yesterday I praised Treasury Secretary Geithner for three elements of the fiscal policy speech he gave at the Harvard Club of New York this past Tuesday.
Future budget deficits are caused in part by both demographics and rising health costs. (I would strike “in part.”) We can’t wait to address our fiscal problems. The... | ['Budget', 'Economy', 'Taxes', 'Health', 'Seniors'] |
Cormac Bluestone is a long-time composer and musician with an extensive background in television, film, and theatre. His styles range from New Orleans-inspired jazz to hip-hop to gospel and everywhere in between. Best known, perhaps, for his original songs and music for It’s Always Sunny in Philadelphia, he’s currently... | ['Its Always Sunny', 'Composer', 'Television', 'Music', 'Interview'] |
Python provides a native library for passing command-line values to scripts called argparse. With argparse, we can include variable values in the execution command instead of using input() to request the value mid-execution. This saves us time and more importantly allows script execution lines to be saved and convenien... | ['Technology', 'Software Development', 'Python', 'Data Science', 'Programming'] |
Before getting to the release itself, a few project announcements:
First, the next release will be the last release to support Python 2. After that, starting with Bokeh 2.0, Python 3.5 will be the minimum supported Python version. We will publish a blog post soon outlining all expected Bokeh 2.0 changes.
Earlier this... | ['Python', 'Open Source', 'Data Science', 'Bokeh', 'Data Visualization'] |
The Trades Union Congress (TUC) have reported that your commute took you 18 hours longer last year compared to a decade ago, despite the billions of pounds spent on the roads and rail network. As privatisation has failed, journeys becoming too expensive, slow and unreliable, where is the incentive for people to use pub... | ['Environment', 'Pollution', 'Transportation', 'Infrastructure', 'Climate Change'] |
God!
I went down to Texas with Marty to play the famous club Emo’s. It was packed with Mexicans, cowboys, you name it. Generally, we’ll play for 45 minutes to an hour. Tops we’ll do an hour and 15 [minutes]. They kept asking for song after song. We were out there for two and a half hours, and nothing was thrown at us.... | ['Interview', 'Punk Rock', 'Music', 'Alan Vega'] |
Pass CKAD (Certified Kubernetes Application Developer) with a Score of 97!
Study Guide and Tips
Photo by Razvan Chisu on Unsplash
Earlier this month I’ve passed the CKAD (Certified Kubernetes Application Developer)Exam. It is an exam that certifies the attendees’ ability to design, build, configure, and expose cloud... | ['Ckad', 'Software Development', 'Kubernetes', 'Cloud Native'] |
Argument Capturing: A must know unit testing technique. JAVING Follow Jun 22 · 3 min read
@Captor is an annotation in the mockito library that is used alongside the ArumentCaptor class to capture arguments that are passed to the methods of mocked objects. It is always used alongside verify() to retrieve the arguments ... | ['Java', 'Software Development', 'Unit Testing', 'Junit', 'Mockito'] |
My key takeaway: when looking at the way we work and will work in the future, there is a lot of potential to use VR for certain tasks. This became increasingly obvious in the months since the COVID-19 pandemic began and the lockdown took place in most countries. We are living now in a world where remote work is officia... | ['Design', 'VR', 'Virtual Reality', 'Design Best Practices', 'UX'] |
Michael Brenndoerfer is a current UC Berkeley Master of Engineering student in the class of 2018. He is in the Electrical Engineering and Computer Science (EECS) department, and his concentration area is Data Science & Systems. Most of his work at Berkeley revolves around Deep Learning, Systems and Crypto. After gradua... | ['Uc Berkeley', 'Op Ed', 'Blockchain', 'Engineering', 'Bitcoin'] |
There has been lots of talk around using data for marketing and you have probably heard about the high level applications of data usage on Netflix like the story of Cambridge Analytica in The Great Hack or more recently, Social Dilemma. This project is not as high level as that but in a way helps marketing teams unders... | ['Customer Segmentation', 'Data Scientist', 'Data Science', 'Data Visualization', 'Exploratory Data Analysis'] |
The Nitty-Gritty:
How Co-Creating Inclusion founder Alethea Fitzpatrick took a long & winding road to creating her new company
Why embracing uncertainty has helped her stay flexible while building her business
The many pivots she’s made from architecture to photography to operations management to diversity consultin... | ['Small Business', 'Resilience', 'Podcast', 'Entrepreneurship', 'Business'] |
The Importance of Fun
Without it, you get sick.
Photo by Angelo Pantazis on Unsplash
I teach people how to succeed at weight loss, and one of the important things I teach them is that having fun in your life is an absolute requirement for success in weight loss. In fact, it’s an absolute requirement for health in ge... | ['Mindfulness', 'Happiness', 'Health', 'Success', 'Self Improvement'] |
In the early 21st century, I took a road trip with about 11 friends from Philadelphia to San Francisco and back. My friend Tadge brought along a 4x5 camera, and a lens called a Apo-Lanthar 300mm f/9, which was radioactive enough to set off geiger counters. I asked him, “What do you take pictures of with a radioactive l... | ['Virtual Reality', 'GoPro', 'Storytelling', '360 Video', 'VR'] |
Over-the-Wall Data Science and How to Avoid Its Pitfalls
Putting machine learning models in production
Over-the-wall data science is a common organizational pattern for deploying data science team output to production systems. A data scientist develops an algorithm, a model, or a machine learning pipeline, and then a... | ['Machine Learning', 'Data Engineering', 'Team', 'Data Science', 'Product Management'] |
EL QUE NO SE PUÉ TIRÀ SE’ONDEA — WHERE THERE IS WILL THERE IS A WAY
I had never been more enchanted, more delirious with desire, and more terrified of anybody as I was of this woman. There she was, her body wrapped around my body, her eyes locked with mine — I was hers, of that I had little doubt…
A 45 mins brisk wal... | ['Religion', 'Technology', 'Erotica', 'Music', 'Fiction'] |
An Army of Bacteria Protects Vaginal Health
Highly specialized bacterial probiotics maintain balance
Photo by Daily Nouri on Unsplash
Years ago I was a “specimen” in a research study. I drank the fermented water of pap each day for several weeks. Then, I was given a stick to swab around my vaginal surface. Microbiol... | ['Womens Health', 'Medication', 'Health', 'Health Foods', 'Supplements'] |
Entrance to the Innovation Lab
7 ways shopping will get better by 2020
It’s not just voice and robots. Here’s the cool tech you haven’t heard about yet that’s ready to change the way you shop.
Walking around the National Retail Federation’s annual convention and expo provides thousands of examples of retailers “impr... | ['Technology', 'Retail', 'Innovation', 'Trends', 'Future'] |
Social media platforms offer the following advantages:
Networking
Establishing global networks with colleagues, peers, business partners from various industries and potential clients is a marketing strategy that has already existed long before the internet but also works here.
Developing an online reputation
Anythi... | ['Marketing', 'Business', 'Freelancing', 'Social Media', 'Small Business'] |
As Social Psychologist Heidi Grant says in ‘Get Your Team to Do What It Says It’s Going to Do’:
Creating goals that teams and organizations will accomplish isn’t just a matter of defining what needs doing; you also have to spell out the specifics of getting it done because you can’t assume that everyone involved will ... | ['Leadership', 'Business', 'Collaboration', 'Entrepreneurship', 'Performance Management'] |
Call me sick. Call me the shameful product of a patriarchal society. It’s okay. I’ve heard it before, and it makes no difference to me. I look pretty darn good for a forty-eight-year-old woman. And let me tell you, it’s not from good DNA.
Just last month I spent four hundred dollars on beauty products that can only be... | ['Women', 'Self', 'Society', 'Beauty', 'Feminism'] |
Photo by Clément H on Unsplash
As someone who never graduated as a computer science degree but very passionate and eagerly wants it to know more about programming as a whole, you will eventually encounter different hurdles of programming subjects that you are unfamiliar with. In my case, “paradigms” in programming hav... | ['Software Engineering', 'Programming Paradigms', 'Software Development', 'Computer Science', 'Programming'] |
The Unbreakable Cycle of Racism
It has to change. And I must believe it will.
Image: Jasmin Merdan/Getty Images
I grew up attending a small private school with mostly White students. I was almost always the only Black kid in class. It didn’t matter much. Until second grade.
One day near the beginning of that school... | ['Childhood', 'Violence', 'Racism', 'Society', 'Race'] |
Camden Alexander
By Camden Alexander, Tourette Association of America Youth Ambassador
I have been playing the electric guitar since I was nine. I love Green Day, The Offspring, Led Zeppelin and Blink 182. Now I’m in seventh grade, play in a local rock band and feel lucky. I feel lucky because I’ve had the chance to ... | ['Education', 'Music'] |
Cervello, a Kearney company, has achieved an exciting milestone. We have just been granted Elite Status in the Snowflake Partner Network — the highest level available for Snowflake Solution Partners.
Colleen Kapase, Snowflake Vice President of worldwide partner and alliances, noted in bestowing the award: “On behalf o... | ['Database', 'Data', 'Snowflake', 'Cloud Computing', 'Analytics'] |
First, ask how they feel
This simple question can take you and your friend, relative, or student ten steps ahead into a more comfortable and decent conversation.
“Hey, sorry for intruding. I’m wondering if you’re open to discussing health in general? “Okay, I guess.” “Thanks! First things first, I think you are great... | ['Self', 'Health', 'Nutrition', 'Fitness', 'Empathy'] |
Hey everyone,
In this article, I will show you an interesting Automation in which we will Setup the Hadoop Cluster (HDFS) on top of AWS Cloud (EC2) and we will do everything using a tool called Ansible which is one of the best Automation tools. And the best thing in this article is we will use Ansible’s Dynamic Invent... | ['Hadoop', 'Automation', 'Ansible', 'DevOps', 'AWS'] |
In this article, we are going to take a look at how to retrieve and display a list of objects using React Hooks, GraphQL, and Apollo client.
List Function Component
Let’s start by displaying a list of objects using a React function component.
import React from 'react'; function List({posts}) {
return (
<div>
{pos... | ['JavaScript', 'React', 'Programming', 'Front End Development', 'GraphQL'] |
Martin, The Plains of Heaven
Your Friendly, Neighborhood Superintelligence
“What if the great apes had asked whether they should evolve into Homo sapiens [and said] ‘Oh, we could have a lot of bananas if we became human’?” — Nick Bostrom
One of our older stories is the demon summoning that goes bad. They always do. ... | ['Artificial Intelligence', 'Superintelligence', 'Singularity', 'Ethics', 'Towards Data Science'] |
In our previous article, we discussed the classification technique in theory. It’s time to play with the code 😉 Before we can start coding, the following libraries need to be installed in our system:
Pandas: pip install pandas Numpy: pip install numpy scikit-learn: pip install scikit-learn
The task here is to classi... | ['Machine Learning', 'Python', 'Classification', 'Data Science', 'Beginners Guide'] |
Audible Sundays is a freeform series inspired by one new music release a week. Each entry is written in synchronicity to the mood of the song and the photograph. Follow the playlist on Spotify: | ['Audible Sundays', 'Music', 'Poetry', 'Photography', 'Los Angeles'] |
Super Furry Animals
When Super Furry Animals appeared on the British music scene in the mid-1990s, they were surrounded by foppish, guitar pop bands — bands like Radiohead, Oasis and Blur. While it took those bands years to turn to experimentation — to get “weird” — SFA had been weird from the get-go. The Welsh band’s... | ['Zine', 'Interviews', 'Nashville', 'Pop Culture', 'Music'] |
Array.splice
Splice is used to modify the content of an array which includes removing elements, replacing existing elements, or even adding new elements to an array.
Using the splice function updates the original array.
Consider the following array:
const arr = [0, 1, 2, 3, 4, 5, 6, 7, 8];
Array.splice signature:
... | ['Angular', 'JavaScript', 'React', 'Programming', 'Arrays'] |
“I wanna be the very best, like no one ever was . . .”
There are few people under the age of thirty who don’t know the next lines to this song. In fact, many of us know all the lines to the Pokémon Theme and can’t help but sing it at the top of their lungs at the slightest mention of the track — or Pokémon in general.... | ['Top 10', 'Music', 'Anime', 'Pokemon', 'Pokémon'] |
Following the lead
Originally published at www.beaconsocialmedia.com
In the marketing industry using emotion or hype to sell a product or service has very much become today’s trend. In fact, the use of this so called ‘enticing’ energy has become so deeply ingrained in society, that many of us do not even realise the ... | ['Marketing', 'Business', 'Business Strategy', 'Social Media', 'Social Media Marketing'] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.