id
int64
5
1.93M
title
stringlengths
0
128
description
stringlengths
0
25.5k
collection_id
int64
0
28.1k
published_timestamp
timestamp[s]
canonical_url
stringlengths
14
581
tag_list
stringlengths
0
120
body_markdown
stringlengths
0
716k
user_username
stringlengths
2
30
286,220
Domain Extensions and Your Project
NOTICE: I tried to limit how many links I made reference to, there should only be one but if I mentio...
0
2020-03-22T21:24:01
https://dev.to/kailyons/domain-extensions-and-your-project-1b1f
**NOTICE: I tried to limit how many links I made reference to, there should only be one but if I mention multiple please do not click them or go to them, as I have no control over them. You have been warned** Let's make it clear, I am a domain extension nut. A weird hobby of mine is domain extensions and also explaini...
kailyons
286,235
Starting out with GraphQL
Understanding the Purpose, and some key early tips
0
2020-03-24T14:13:23
https://dev.to/heroku/starting-out-with-graphql-5g0m
json, graphql, beginners, webdev
--- title: Starting out with GraphQL published: true description: Understanding the Purpose, and some key early tips tags: json, graphql, beginners, web-dev cover_image: https://dev-to-uploads.s3.amazonaws.com/i/h4fr5nleot3nw21n043v.png --- ## What is GraphQL? GraphQL is a query language for APIs and a runtime for ...
nocnica
286,253
Introduction à Scaleway Elements Kubernetes Kapsule avec Gloo et Knative …
Scaleway a dévoilé de nouveau services (encore en beta pour certains) au sein de sa nouvelle gamme...
0
2020-03-23T00:00:57
https://medium.com/@abenahmed1/introduction-%C3%A0-scaleway-elements-kubernetes-kapsule-avec-gloo-et-knative-62dcfc7f966f
scaleway, kubernetes, serverless, docker
--- title: Introduction à Scaleway Elements Kubernetes Kapsule avec Gloo et Knative … published: true date: 2020-03-22 23:53:06 UTC tags: scaleway,kubernetes,serverless,docker canonical_url: https://medium.com/@abenahmed1/introduction-%C3%A0-scaleway-elements-kubernetes-kapsule-avec-gloo-et-knative-62dcfc7f966f --- ![...
deep75
286,378
자바와 닷넷의 문자열 연산자 차이
2015-04-06 10:30:11 from blog.hazard.kr 1. == 및 != 연산자 닷넷 닷넷은 == 연산자 오버로딩을 통...
0
2020-03-23T05:35:25
https://dev.to/composite/-596p
java, csharp, techtalks, korean
> 2015-04-06 10:30:11 from blog.hazard.kr ## 1. `==` 및 `!=` 연산자 ### 닷넷 닷넷은 `==` 연산자 오버로딩을 통하여 `String.Equals` 사용하여 값의 동일성을 비교. ### 자바 자바는 `String`이 닷넷과 같이 클래스이며 연산자 지원 안하는 특성상 레퍼런스 비교밖에 못하므로 동일한 값 비교 불가. 따라서 개발자가 직접 `String.equals`를 사용. ## 2. + 연산자 ### 닷넷 : ```cs string s = "asd" + b + "qwe"; //>> string s = stri...
composite
286,416
Mousetrap JS
So you came here to learn about mousetraps right? So mousetraps are great for capturing rodents with...
0
2020-03-23T09:26:56
https://dev.to/chrisleboeuf/mousetrap-js-5d38
So you came here to learn about mousetraps right? So mousetraps are great for capturing rodents with a spring-loaded mechanism. Totally kidding! This isn't about those kinds of mousetraps. This is about a neat Javascript library for fairly simple and easy keybinding! [Mousetrap](https://github.com/ccampbell/mousetrap) ...
chrisleboeuf
286,433
Rewriting to Haskell–Configuration
You can keep reading here or jump to my blog to get the full experience, including the wonderful pink...
0
2020-03-23T08:00:28
https://odone.io/posts/2020-03-23-rewriting-haskell-configuration.html
functional, haskell, servant
You can keep reading here or [jump to my blog](https://odone.io/posts/2020-03-23-rewriting-haskell-configuration.html) to get the full experience, including the wonderful pink, blue and white palette. --- This is part of a series: - [Rewriting to Haskell–Intro](https://odone.io/posts/2020-02-26-rewriting-haskell-int...
riccardoodone
286,442
Kissing JavaScript #2 globals.js
Have you ever asked why you must type const { readFileSync } = require('fs') every time you nee...
5,561
2020-03-23T08:14:26
https://dev.to/bittnkr/kissing-javascript-2-globals-js-2b1k
javascript
Have you ever asked why you must type ```JavaScript const { readFileSync } = require('fs') ``` every time you need to read a file or use any other file handling function? In my DRY obsession, this bothers me a lot. To me, the first requirement to write simpler code is just write less code. One of my strategies to av...
bittnkr
286,461
Covid Counter
Another Corona Count tracker
0
2020-03-23T08:50:20
https://dev.to/barelyhuman/covid-counter-61l
corona, covid, counter
--- title: Covid Counter published: true description: Another Corona Count tracker tags: corona, covid, counter --- I created this because I was bored and didn't have anything creative to make and since everyone seems to be posting theirs. Here's a minimal version that gets you the counts of various incidents [Link]...
barelyhuman
286,830
[Tutorial Git] git commit -am: Atualizando arquivo modificado no Git
Para atualizar um arquivo que foi modificado no repositório, existem dois caminhos. $ git add <...
5,484
2020-03-23T20:25:57
https://dev.to/womakerscode/tutorial-git-adicionando-um-arquivo-modificado-no-git-116c
github, am, git, braziliandevs
Para atualizar um arquivo que foi modificado no repositório, existem dois caminhos. ``` $ git add <arquivo> ``` - **$** indica que você deve usar o **usuário comum** para fazer essa operação. - **add** vai adicionar ao git o(s) arquivo(s) que virá(ão) em seguida. - digite o nome do arquivo sem os sinais **< >**. seg...
danielle8farias
286,519
Make your react apps compatible with IE
Installation npm install react-app-polyfill Enter fullscreen mode ...
0
2020-03-23T11:39:51
https://dev.to/k_penguin_sato/make-your-react-apps-compatible-with-ie-4g82
react
--- title: Make your react apps compatible with IE published: true description: tags: React --- # Installation ```bash npm install react-app-polyfill ``` or ```bash yarn add react-app-polyfill ``` # Import entry points Import the packages at the top of your `index.tsx` or `index.jsx`. ```js import 'react-app-po...
k_penguin_sato
286,524
[Rails]Implement session-based authentication from scratch
Here is how you can implement session-based authentication functionality in your rails application...
0
2020-03-23T11:50:32
https://dev.to/k_penguin_sato/rails-implement-session-based-authentication-from-scratch-2631
rails
--- title: [Rails]Implement session-based authentication from scratch published: true description: tags: Rails --- Here is how you can implement session-based authentication functionality in your rails application without using any gem. # Create author resources Run the commands below. ``` $ rails generate model A...
k_penguin_sato
286,534
The happiest countries Worldwide
Happiness is not a simple goal but is about making progress when it's as elusive as ever. Being happy...
0
2020-03-23T12:15:13
https://dev.to/silviosmith3/the-happiest-countries-worldwide-27oe
Happiness is not a simple goal but is about making progress when it's as elusive as ever. Being happy often means continually finding satisfaction, contentment, a feeling of joy, and a sense that your life is meaningful during all kinds of problems that do not depend upon finding ease or comfort. Nobody is jolly or ela...
silviosmith3
286,545
The Grand Summer Internship Fair
https://internshala.com/the-grand-summer-internship-fair?utm_source=eap_whatsapp&amp;utm_medium=33547...
0
2020-03-23T12:36:16
https://dev.to/coolrocks/the-grand-summer-internship-fair-3cc9
startup, codenewbie, contributorswanted
https://internshala.com/the-grand-summer-internship-fair?utm_source=eap_whatsapp&utm_medium=3354716 Hey, In the wake of COVID-19, this year's 'Grand Summer Internship Fair - India's largest online fair' brings 1,200+ work from home and summer internships in dream companies like OnePlus, Xiaomi, Capgemini, HCL, TVS, an...
coolrocks
286,678
On the Coronavirus
The last few weeks has been tough for all of us. I wanted to share with you my personal experience, a...
0
2020-03-23T14:45:10
https://dev.to/stopachka/on-the-coronavirus-ebg
The last few weeks has been tough for all of us. I wanted to share with you my personal experience, and the mindset I’m relying on to move forward. # Looking Back ## The calm before the storm I remember first hearing about this in mid January. My friend was about to head out to China, and she was worried about it. Sh...
stopachka
286,696
100daysofcode Flutter
day 14/100 of #100daysofcode #Flutter Belajar Flutter , dari kursus Udemy from @maxedapps Learning a...
0
2020-03-23T15:19:26
https://dev.to/triyono777/100daysofcode-flutter-jn2
100daysofcode, flutter
day 14/100 of #100daysofcode #Flutter Belajar Flutter , dari kursus Udemy from @maxedapps Learning about navigating between screen , push, pop, stack concept, pushnamed, pushnamed with argument, send data to next screen, https://github.com/triyono777/100-days-of-code/blob/master/log.md
triyono777
286,735
React: Simple Auth Flow
Now that we know how to use useState, useReducer and Context, how can we put these concepts into our...
5,550
2020-03-23T17:03:40
https://dev.to/koralarts/react-simple-auth-flow-3fbf
tutorial, beginners, react
Now that we know how to use `useState`, `useReducer` and Context, how can we put these concepts into our projects? An easy example is to create a simple authentication flow. We'll first setup the `UserContext` using React Context. ```react import { createContext } from 'react' const UserContext = createContext({ ...
koralarts
286,748
How to style forms with CSS: A beginner’s guide
Written by Supun Kavinda✏️ Apps primarily collect data via forms. Take a generic sign-up form, for...
0
2020-04-15T13:51:32
https://blog.logrocket.com/how-to-style-forms-with-css-a-beginners-guide/
css, tutorial
--- title: How to style forms with CSS: A beginner’s guide published: true date: 2020-03-23 16:00:30 UTC tags: css, tutorial canonical_url: https://blog.logrocket.com/how-to-style-forms-with-css-a-beginners-guide/ cover_image: https://dev-to-uploads.s3.amazonaws.com/i/eovw1sezwhviumgl2smt.png --- **Written by [Supun Ka...
bnevilleoneill
286,768
Quickly build schema-based forms in React with uniforms
Written by Godwin Ekuma✏️ uniforms are React libraries for building form-based web UIs from every...
0
2020-04-15T15:02:24
https://blog.logrocket.com/quickly-build-schema-based-forms-in-react-with-uniforms/
react, tutorial, webdev
--- title: Quickly build schema-based forms in React with uniforms published: true date: 2020-03-23 17:30:51 UTC tags: react, tutorial, webdev canonical_url: https://blog.logrocket.com/quickly-build-schema-based-forms-in-react-with-uniforms/ cover_image: https://dev-to-uploads.s3.amazonaws.com/i/3ej4i4blkyostjign2ux.pn...
bnevilleoneill
286,807
Almost 80% of companies in Brazil ship code at least once in a week, according to study
Between January 29th and March 5th, we conducted a survey to get a technology landscape of the Brazil...
0
2020-03-23T19:29:35
https://sourcelevel.io/blog/almost-80-of-companies-in-brazil-ship-code-at-least-once-in-a-week-according-to-study
developmenttools, deploy, leadtime, metrics
--- title: Almost 80% of companies in Brazil ship code at least once in a week, according to study published: true date: 2020-03-23 19:03:31 UTC tags: Development Tools,deploy,lead time,metrics canonical_url: https://sourcelevel.io/blog/almost-80-of-companies-in-brazil-ship-code-at-least-once-in-a-week-according-to-stu...
georgeguimaraes
286,871
I made a "Simon Game" variation using VueJS 🎮
An "infinite" game based on "Simon Game"
0
2020-03-23T22:28:25
https://dev.to/felipperegazio/i-made-a-simon-game-variation-using-vuejs-3nmc
showdev, game, vue, frontend
--- title: I made a "Simon Game" variation using VueJS 🎮 published: true description: An "infinite" game based on "Simon Game" tags: #showdev #game #vuejs #frontend cover_image: https://felippe-regazio.github.io/memory-lights/img/memory-lights.png --- Recently i made this kind of [Simon Game](https://en.wikipedia.org...
felipperegazio
286,872
I.can.has("cheezeburger")
When I was a youngin', there was a site called icanhas.cheezeburger.com... I have been eyeing the mo...
0
2020-03-23T22:31:41
https://dev.to/omnoms/i-can-has-cheezeburger-39pg
When I was a youngin', there was a site called icanhas.cheezeburger.com... I have been eyeing the mocha/chai/expect framework just for the sake of understanding/learning how it works in relation to the javascript internals to get that kind of behavior. And I was reminded of the old website, icanhas.cheezeburger.com wh...
omnoms
286,937
Train Simulation Problems - Update
Thanks for yesterday. Hey everyone, So, I have gotten pretty far with the Train Simulatio...
0
2020-03-23T23:40:12
https://dev.to/sonandrew/train-simulation-problems-update-15fm
java, help
## Thanks for yesterday. Hey everyone, So, I have gotten pretty far with the Train Simulation from the help I've gotten yesterday. Thank you to all that helped! I really appreciate it. Most of the problems I had were with things I thought I had fixed already but didn't. I think I just needed some extra eyes on this p...
sonandrew
286,979
Deploying Service Based Architecture Application on Amazon’s ECS (Elastic Container Service)
Link: https://blog.joshsoftware.com/2019/03/12/deploying-service-based-architecture-application-on-am...
0
2020-03-24T03:03:06
https://dev.to/shekhar12020/deploying-service-based-architecture-application-on-amazon-s-ecs-elastic-container-service-4mcl
Link: https://blog.joshsoftware.com/2019/03/12/deploying-service-based-architecture-application-on-amazons-ecs-elastic-container-service/ Why deploy container for each service Deploying all service on single machine is possible but we should refrain from it. If we deploy all service on single machine then we are not ...
shekhar12020
286,983
Can anyone suggest a good library for OCR in expo
I have tried using ejecting with expo to bare react native project and then using "react-native-tesse...
0
2020-03-24T03:21:52
https://dev.to/keyurpatel8118/can-anyone-suggest-a-good-library-for-ocr-in-expo-4h93
I have tried using ejecting with expo to bare react native project and then using "react-native-tesseract-ocr (https://github.com/jonathanpalma/react-native-tesseract-ocr)" library. But it's not working out for me.
keyurpatel8118
287,023
How To Build Web Components Using Stencil JS
Stencil is a compiler that generates Web Components (more specifically, Custom Elements). Stencil co...
0
2020-03-24T05:55:55
https://enappd.com/blog/build-web-components-using-stencil-js/51
react, stenciljs, component, javascript
<main role="main"><article class=" u-minHeight100vhOffset65 u-overflowHidden postArticle postArticle--full is-supplementalPostContentLoaded is-withAccentColors" lang="en"><div class="postArticle-content js-postField js-notesSource editable" id="editor_6" g_editable="true" role="textbox" contenteditable="true" data-defa...
abhijeetrathor2
287,121
Truly there is no difference in implementation. Integrating Spring with Jersey and integrating Jersey with Spring
More interesting and arguably references are Jersey and Spring, especially integrating Jersey to Spr...
0
2020-04-07T02:54:55
https://dev.to/urunov/truly-there-is-no-difference-in-implementation-integrating-spring-with-jersey-and-integrating-jersey-with-spring-m2k
rest, sping, jersey, java
More interesting and arguably references are Jersey and Spring, especially integrating Jersey to Spring, or differ. This article we might response that curiosity. [Catch up source code which we implemented Spring and Jersey.] (https://github.com/Hamdambek/SpringBoot-Projects-FullStack/tree/master/Part-4%20Spring%20Bo...
urunov
287,140
From LAMP to MERN: Understanding similarities and differences
Not so long ago, when I started my journey as a Full Stack Web Developer, the stack that appealed to...
0
2020-03-24T09:00:14
https://dev.to/diegotech/from-lamp-to-mern-understanding-similarities-and-differences-4o64
webdev, node, php, react
Not so long ago, when I started my journey as a Full Stack Web Developer, the stack that appealed to me the most was initially the LAMP stack. This is because I love Laravel but, like many others, I have seen myself inevitably adapting to more updated stacks like the MERN stack. In this article, I will talk about how I...
diegotech
287,151
Galaxies far far away
Complexity vs Usefulness
0
2020-03-24T09:33:37
https://dev.to/tomavelev/galaxies-far-far-away-a90
softwaredevelopment, complexity
--- title: Galaxies far far away published: true description: Complexity vs Usefulness tags: software development, complexity, --- Creating something of value, creating something for other (non-tech) people, that is actually used, timing it correctly and many more factors are counter intuitive with complexity in softw...
tomavelev
287,452
What is Cloud Mining? [An Overview]
Cloud computing first came to the market around 2006. It was a revolution in the sector of real-time...
0
2020-03-25T22:49:57
https://blog.coincodecap.com/what-is-cloud-mining-and/?utm_source=rss&utm_medium=rss&utm_campaign=what-is-cloud-mining-and
crypto, cryptomining
--- title: What is Cloud Mining? [An Overview] published: true date: 2020-03-24 20:12:31 UTC tags: Crypto,crypto-mining canonical_url: https://blog.coincodecap.com/what-is-cloud-mining-and/?utm_source=rss&utm_medium=rss&utm_campaign=what-is-cloud-mining-and --- [Cloud computing](https://en.wikipedia.org/wiki/Cloud_com...
coinmonks
287,168
Is Value an Object
Little function to check if a value is an object: function isObject(val){ return ( val != nul...
5,579
2020-03-24T10:10:21
https://dev.to/nombrekeff/is-value-an-object-2hbc
javascript, snippets
Little function to check if a value is an object: ```js function isObject(val){ return ( val != null && typeof val === 'object' && Array.isArray(val) === false ); } ``` > **Notice** that Date, RegExp, etc.. will pass the check.
nombrekeff
287,309
WP Snippet #010 Filter posts by (Acf) meta values
A code snippet showing how to get and filter WordPress posts by custom (Acf) meta field values using the get_post function.
0
2020-03-24T18:37:45
https://since1979.dev/snippet-010-filter-posts-by-acf-meta-values/
wordpress, webdev, php
--- title: WP Snippet #010 Filter posts by (Acf) meta values published: true description: A code snippet showing how to get and filter WordPress posts by custom (Acf) meta field values using the get_post function. canonical_url: https://since1979.dev/snippet-010-filter-posts-by-acf-meta-values/ cover_image: https://si...
vanaf1979
287,326
OpenNMS On the Horizon – ARM, CircleCI, Documentation, SNMPv3, Time-Series, Flows, and More!
It's time for OpenNMS On the Horizon! In the last week we wondered... what is time? Does time exist?...
0
2020-04-20T21:04:32
https://www.opennms.com/en/blog/2020-03-24-opennms-on-the-horizon-march-24th-2020-arm-circleci-documentation-snmpv3-time-series-flows-and-more/
ooh, arm, bgp, circleci
--- title: OpenNMS On the Horizon – ARM, CircleCI, Documentation, SNMPv3, Time-Series, Flows, and More! published: true date: 2020-03-24 15:55:46 UTC tags: OOH,arm,bgp,circleci canonical_url: https://www.opennms.com/en/blog/2020-03-24-opennms-on-the-horizon-march-24th-2020-arm-circleci-documentation-snmpv3-time-series-...
rangerrick
287,359
Webpack 4 : Quick Start Guide
Webpack is one of most commonly used module bundlers available now. It eases the developer's job and...
0
2020-03-27T06:59:37
https://dev.to/saileshsubramanian/webpack-4-quick-start-guide-54n4
webpack, javascript, webapps, es6
Webpack is one of most commonly used module bundlers available now. It eases the developer's job and provides blazing fast performance coupled with amazing features. From the days of task runners like Grunt and Gulp to Module Bundlers , front-end application development has never been so easier and engaging as today. ...
saileshsubramanian
287,376
Logging in ASP .NET Core 3.1
This is the twelfth of a new series of posts on ASP .NET Core 3.1 for 2020. In this series, we’ll c...
0
2020-03-24T18:27:05
https://wakeupandcode.com/logging-in-asp-net-core-3-1/
webdev, csharp, dotnet
--- title: Logging in ASP .NET Core 3.1 published: true date: 2020-03-24 14:00:00 UTC tags: webdev, csharp, dotnet canonical_url: https://wakeupandcode.com/logging-in-asp-net-core-3-1/ --- ![](https://wakeupandcode.com/wp-content/uploads/2020/01/aspnetcore-az-banner.png) This is the twelfth of a new [series of posts...
shahedc
287,517
When will my cover image change?
I updated the cover images on 2 of my posts. I was really hoping the new image would show up in the t...
0
2020-03-24T21:35:02
https://dev.to/vickilanger/when-will-my-cover-image-change-2km
help
I updated the cover images on 2 of my posts. I was really hoping the new image would show up in the twitter cards. It's been several hours and no luck yet. Am I forever stuck with the old images? Is it a cache thing? How do I fix it? Am I just being impatient? These are the posts I changed. {% post https://dev.to/...
vickilanger
287,584
Learn React Hook by building a Simple Blog App
React hook tutorial for beginner
0
2020-04-16T01:26:23
https://dev.to/kingdavid/learn-react-hook-by-building-a-simple-blog-app-22i2
react, hook
--- title: Learn React Hook by building a Simple Blog App published: true description: React hook tutorial for beginner tags: React, Hook --- # What is React? React is a popular JavaScript library developed by Facebook for building user interfaces. It uses the concept of Virtual DOM to render Elements into the browser ...
kingdavid
287,774
Fake news’ foe: Machine Learning and Twilio
Fake news has become a huge issue in our digitally-connected world and it is no longer limited to lit...
0
2020-03-25T08:33:07
https://dev.to/twilio/fake-news-foe-machine-learning-and-twilio-5fln
machinelearning, python, tensorflow, twiliohackathon
**Fake news** has become a huge issue in our digitally-connected world and it is no longer limited to little squabbles -- fake news spreads like wildfire and is impacting millions of people every day. How do you deal with such a sensitive issue? Countless articles are being churned out every day on the internet -- how...
jbahire
287,805
Servicio de Web Crawler (Rastreador Web)
El web crawling o el raspado de datos web se está volviendo cada vez más popular en los últimos años....
0
2020-03-25T09:49:13
https://dev.to/octoparsehola/servicio-de-web-crawler-rastreador-web-3p26
webdev, database, datascience, python
El web crawling o el raspado de datos web se está volviendo cada vez más popular en los últimos años. Los datos scraping se pueden usar para varios análisis, incluso predicciones. Al analizar los datos, las personas pueden obtener información sobre una industria y enfrentarse a otros competidores. Aquí, podemos ver cuá...
octoparsehola
287,856
New Year Resolutions Of Every Website Tester In 2020
From automated browser testing to starting your own blog, here are some of the most interesting and intriguing new year resolutions for every website tester to aim in 2020.
0
2020-03-25T11:31:29
https://www.lambdatest.com/blog/new-year-resolutions-of-every-website-tester-in-2020/
testing, development, productivity, webdev
--- title: New Year Resolutions Of Every Website Tester In 2020 published: true description: From automated browser testing to starting your own blog, here are some of the most interesting and intriguing new year resolutions for every website tester to aim in 2020. tags: testing, development, productivity, webdev canon...
nikhiltyagi04
287,918
Washing your code: avoid mutation
Mutations happen when we change a JavaScript object or array without creating a new variable or reassigning an existing one. Mutations make code harder to understand and can lead to hard-to-find bugs.
4,121
2020-03-25T13:39:13
https://blog.sapegin.me/all/avoid-mutation/
javascript, programming, cleancode
--- published: true title: 'Washing your code: avoid mutation' description: Mutations happen when we change a JavaScript object or array without creating a new variable or reassigning an existing one. Mutations make code harder to understand and can lead to hard-to-find bugs. canonical_url: https://blog.sapegin.me/all/...
sapegin
287,971
Building a site from scratch. Part 2 - First routing
Structuring Having chosen the main categories, I needed to start building the website stru...
5,597
2020-03-25T15:05:17
https://buaiscia.github.io/posts/building-site-from-scratch-first-routing
beginners, tutorial, react, webdev
--- canonical_url: "https://buaiscia.github.io/posts/building-site-from-scratch-first-routing" --- ## Structuring Having chosen the main categories, I needed to start building the website structure. The tree is like the following - 📂 __src__ - 📄 [App.css](src/App.css) - 📄 [App.js](src/App.js) - 📂 _...
buaiscia
287,992
How to choose an online course
Table of contents: What are Free Learning Tutorials?, go to canonical section What are MOOCs?, go...
0
2020-05-04T08:40:09
https://www.reactgraphql.academy/blog/how-to-choose-an-online-course
remotelearning, react, javascript
--- title: How to choose an online course published: true date: 2020-03-24 23:00:00 UTC tags: remote learning, react js, javascript canonical_url: https://www.reactgraphql.academy/blog/how-to-choose-an-online-course --- Table of contents: - What are Free Learning Tutorials?, [go to canonical section](https://www.reac...
reactgraphqlacademy
287,998
Trusting Your Gut Feeling To Take Action
Introduction I think in times like this, we should really trust our own gut on what we sho...
0
2020-03-25T15:46:34
https://www.maxongzb.com/trusting-your-gut-feeling-to-take-action-reading-time-4-mins/
startup, productivity, beginners
# Introduction I think in times like this, we should really trust our own **gut** on what we should do. Which result in us to not make a decision and not chuck it aside. For another day to think about it till it is too late to take action and we get the consequences of inaction. Part of it has been me growing up to b...
steelwolf180
288,009
TypeScript Function Overloading
Being able to handle the ability to call a single function with variable inputs is really nice. Somet...
0
2020-03-25T16:03:32
https://dev.to/thinkster/typescript-function-overloading-k9i
typescript, webdev, productivity, programming
Being able to handle the ability to call a single function with variable inputs is really nice. Sometimes we need a function to do different things based on the parameters given. When doing this be sure to consider code smells like I detailed in my last email. Let's look at a simple example we're all probably familiar...
josepheames
288,444
Add Extra Custom Data To Ninja Forms Submissions
Automatically add extra data to Ninja Forms Submissions with 1 easy step Capturing all the...
0
2020-03-26T22:15:07
https://nimblewebdeveloper.com/blog/add-extra-data-to-ninja-forms-submissions
wordpress, php, webdev
--- title: Add Extra Custom Data To Ninja Forms Submissions published: true date: 2019-10-21 13:00:00 UTC tags: wordpress, php, webdev canonical_url: https://nimblewebdeveloper.com/blog/add-extra-data-to-ninja-forms-submissions --- ## Automatically add extra data to Ninja Forms Submissions with 1 easy step Capturing ...
sebtoombs
288,015
Ideas For Website
As software engineers most of us have personal websites but I got my personal website a few months ag...
0
2020-03-25T16:10:58
https://dev.to/nyamador/ideas-for-website-36ij
html, javascript, dns
As software engineers most of us have personal websites but I got my personal website a few months ago [Nyamador.me](https://nyamador.me) but I feel like I'm under utilizing it. What are you guys using your domains for ?Ideas are welcome.
nyamador
288,122
Are there virtual/remote JavaScript meetups?
Now that we can't meet in person anymore I'm wondering whether there are some virtual meetups related...
0
2020-03-25T18:16:41
https://dev.to/joshx/are-there-virtual-remote-javascript-meetups-5863
javascript, meetup, remote
Now that we can't meet in person anymore I'm wondering whether there are some virtual meetups related to JavaScript?
joshx
288,140
Community culture in a time of crisis
Many of us working in software development take working from home for granted. For a large chunk of u...
0
2020-03-25T18:51:28
https://mgkeen.com/blog/community-culture-in-a-crisis
culture, leadership, community
Many of us working in software development take working from home for granted. For a large chunk of us adapting to the current crisis has been relatively simple from a “how do I work remote” point of view. However this isn’t a simple working from home scenario, and it comes with many new challenges that we’ve never had...
mgkeen
288,141
Laravel Signature Pad Example Tutorial
Hey Artisan Hope you are doing well. In this tutorial i am going to show you laravel 7 signature pad...
0
2020-03-25T18:52:53
https://www.codechief.org/article/laravel-signature-pad-example-tutorial-from-scratch
laravel, signature, pad
Hey Artisan Hope you are doing well. In this tutorial i am going to show you laravel 7 signature pad example. In this tutorial i am going to show you how we can create a signature pad and save it into public directory. https://www.codechief.org/article/laravel-signature-pad-example-tutorial-from-scratch
hafizpustice05
288,258
Why I detest React Hooks
React Hooks has been the new hotness ever since it was introduced. I have heard many people discuss a...
0
2020-03-25T23:54:03
https://dev.to/allentv/why-i-detest-react-hooks-20da
react, hooks, javascript
React Hooks has been the new hotness ever since it was introduced. I have heard many people discuss about how hooks help them write less code with the same functionality and how it is more performant since everything is now functions. There has also been many articles published online touting, we should ditch classes f...
allentv
288,273
【Git】ちょっと難しいリベースの挙動
複数ブランチに対する git rebase A---B---C---D master \ X---Y---Z dev \...
0
2020-03-26T00:17:11
https://dev.to/dyoshimitsu/git-43o8
git
## 複数ブランチに対する git rebase ```text A---B---C---D master \ X---Y---Z dev \ P---Q dev2 ``` devブランチをmasterブランチの先頭に移動 ```shell $ git rebase master dev ``` ```text X'--Y'--Z' dev / A---B---C---D master \ X---Y---P---Q dev2 ``` > `'`はリベースによって作られ...
dyoshimitsu
288,362
Docker で Hack
Facebook Hack試してみた。(Hello...
0
2020-03-26T02:11:39
https://dev.to/dongri/docker-hack-2bde
docker, hack
--- title: Docker で Hack published: true description: tags: Docker, hack --- Facebook Hack試してみた。(Hello Worldだけ) https://github.com/facebook/hhvm/wiki#installing-pre-built-packages-for-hhvm 自前のサーバーは汚したくないんで、Dockerでやってみた。 ``` $ vim Dockerfile ``` ```rb FROM ubuntu RUN apt-get update RUN apt-get install -y python-so...
dongri
288,390
How to be Pythonic? Design a Query Language in Python
I gave a talk at PyAmsterdam today and it was a lovely community. I get the chance to answer some que...
0
2020-03-26T11:49:04
https://cheuk.dev/2020/03/20/how-to-be-pythonic/
talk, python, querylanguage, terminusdb
--- title: How to be Pythonic? Design a Query Language in Python published: true date: 2020-03-20 00:00:00 UTC tags: Talk,Python,Query Language,TerminusDB canonical_url: https://cheuk.dev/2020/03/20/how-to-be-pythonic/ cover_image: https://dev-to-uploads.s3.amazonaws.com/i/793u48f9tqucjg8hzdyt.png --- I gave a talk at...
cheukting_ho
288,400
Security tips for Djangonauts
Secure your Django application and be a star
0
2020-03-26T03:07:45
https://dev.to/hayleydenb/security-tips-for-djangonauts-3mbf
security, python, django
--- title: Security tips for Djangonauts published: true description: Secure your Django application and be a star tags: security, python, django --- Lucky you, you user of the web framework for perfectionists with deadlines (AKA Django). The Django team has put a lot of thought into their security practice. I have sum...
hayleydenb
288,408
Guidance: Plan for Life
This will guide you towards setting up an eternal (lasting or existing forever; without end or beginn...
0
2020-03-26T03:17:13
https://dev.to/coltonehrman/guidance-plan-for-life-2pkh
This will guide you towards setting up an eternal *(lasting or existing forever; without end or beginning)* plan for your life. ## Tools: - [Todist](https://todoist.com/r/colton_ehrman_xzlapc) ## Sections * [What To-Do NOW?](#what-to-do) * [Create A Blueprint](#create-blueprint) * [Create Weekly To-Do List](#create-w...
coltonehrman
288,454
Making apps during quarantine!
Boring, huh? Quarantine, a different perspective of "staying home as usual", only it's unu...
5,608
2020-03-26T05:05:02
https://dev.to/pasenidis/making-apps-during-quarantine-1hl6
node, api, express, coronavirus
## Boring, huh? Quarantine, a different perspective of "staying home as usual", only it's unusual and you can't go out if you get bored. Bad, huh? Eventually it makes you bored - that much that I created a COVID-19 tracker. But how does it work? I mean, what's the difference of it from many others crappy trackers? Well...
pasenidis
292,245
How to upgrade Rails
I don’t write much about Rails here but whoa, two posts in a row! Well, it turns out that I thought I...
0
2020-03-26T09:05:53
https://flaviabastos.ca/2020/03/26/how-to-upgrade-rails/
howto, rails
--- title: How to upgrade Rails published: true date: 2020-03-26 08:25:00 UTC tags: how-to,rails canonical_url: https://flaviabastos.ca/2020/03/26/how-to-upgrade-rails/ --- I don’t write much about Rails here but whoa, two posts in a row! Well, it turns out that I thought I should record another lesson I learned while...
flaviabastos
292,247
ed25519 と x25519 で公開鍵と秘密鍵を作る
OTP-22.3-rc2 で ed25519 に対応しました。 Erlang/OTP 23 [erts-11.0] [source] [64-bit] [smp:12:12] [ds:12:12:1...
0
2020-03-26T09:07:20
https://dev.to/voluntas/ed25519-x25519-4eln
erlang, crypto
OTP-22.3-rc2 で ed25519 に対応しました。 ```erlang Erlang/OTP 23 [erts-11.0] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [hipe] [sharing-preserving] Eshell V11.0 (abort with ^G) 1> crypto:generate_key(eddsa, ed25519). {<<125,35,162,182,22,21,162,141,50,135,15,227,58,228,192, 29,126,65,238,25,99,54,18,220...
voluntas
292,253
Angular Modules - Custom Lazy Load Strategy
Contents: What are modules Example of a module Lazy-loading feature modules Default way Using cus...
0
2020-03-26T12:40:58
https://dev.to/bogicevic7/angular-modules-custom-lazy-load-strategy-474b
angular, tutorial, beginners, typescript
Contents: - What are modules - Example of a module - Lazy-loading feature modules - Default way - Using custom preload strategy - Summary Before we tackle module lazy loading and custom preloading strategies, let's start from the beginning and figure out what modules actually are. **What are modules** As you may...
bogicevic7
292,287
Using absolute (alias) imports in Javascript and VSCode
Learn how to import javascript or typescript modules with absolute paths in webpack &amp;...
0
2020-03-26T10:50:55
https://nimblewebdeveloper.com/blog/absolute-alias-imports-in-javascript-vscode
javascript, webdev, productivity, vscode
--- title: Using absolute (alias) imports in Javascript and VSCode published: true date: 2020-03-25 13:00:00 UTC tags: javascript, webdev, productivity, vscode canonical_url: https://nimblewebdeveloper.com/blog/absolute-alias-imports-in-javascript-vscode cover_image: https://dev-to-uploads.s3.amazonaws.com/i/drv13j4vkl...
sebtoombs
292,295
IT Outsourcing 2020 Overview & Trends
In today's world of ever-changing requirements, fleeting markets and the incredibly fast pace of life...
4,831
2020-03-26T11:03:29
https://www.romexsoft.com/blog/it-outsourcing-trends/
devlive, todayilearned, todayisearched
In today's world of ever-changing requirements, fleeting markets and the incredibly fast pace of life, everybody naturally wants to optimize everything. In the present conditions, companies who want to be innovative are methodically searching for ways how to optimize costs, human hours, and operations. A lot of them ch...
annaboy75634026
292,306
Remove time in DataGridView and when it is exported to PDF
Please help me guys! I want the time in Date_Purchased(date) to be removed in datagridview. Because w...
0
2020-03-26T11:24:30
https://dev.to/annie85159209/remove-time-in-datagridview-and-when-it-is-exported-to-pdf-1k20
Please help me guys! I want the time in Date_Purchased(date) to be removed in datagridview. Because whenever I exported the datagrid in PDF, it has the date and time in it. I only want the date and remove the time especially when exported to PDf. Here's the sample piece of code. Public Sub NewInventory() ...
annie85159209
292,322
Easily Calculate Summary of Selected Rows with WinForms DataGrid
We are happy to announce that in our Essential Studio 2020 Volume 1 beta release, we added summary ca...
0
2020-03-27T11:22:56
https://www.syncfusion.com/blogs/post/easily-calculate-summary-of-selected-rows-with-winforms-datagrid.aspx
csharp, dotnet, productivity
--- title: Easily Calculate Summary of Selected Rows with WinForms DataGrid published: true date: 2020-03-26 11:30:07 UTC tags: csharp, dotnet, productivity canonical_url: https://www.syncfusion.com/blogs/post/easily-calculate-summary-of-selected-rows-with-winforms-datagrid.aspx cover_image: https://dev-to-uploads.s3.a...
sureshmohan
292,930
11 best Pluralsight Courses to learn Python, Java, React.js, and Angular
A list of the best programming, software development, big data, and web development courses from Pluralsight for online learning and skill development
0
2020-03-27T08:36:41
https://dev.to/javinpaul/11-of-the-best-pluralsight-courses-programmers-can-take-to-learn-key-programming-skills-during-covid-19-epidemic-463l
programming, course, python, algorithms
--- title: 11 best Pluralsight Courses to learn Python, Java, React.js, and Angular published: true description: A list of the best programming, software development, big data, and web development courses from Pluralsight for online learning and skill development tags: programming, course, python, algorithms cover_imag...
javinpaul
297,202
Onworks, how to run Ubuntu online
Continues from my last post: Onworks.net is a free Linux emulation site, it allows you to use dis...
0
2020-04-02T10:40:44
https://dev.to/17lwinn/onworks-how-to-run-ubuntu-online-cnm
linux
Continues from my last post: ------ Onworks.net is a free Linux emulation site, it allows you to use distros like Ubuntu for free with root access and internet connection. But how do we use it? 1. Go to https://onworks.net 2. Find Ubuntu 19 and click 'run online' 3. A new tab will open, please wait until a piece o...
17lwinn
301,658
Explaining Bots and Its types - Part 1
Fact: Do you know that a normal person interacts at least 3-4 times a day with a bot? but when? and...
5,830
2020-04-07T16:59:46
https://dev.to/pepipost/explaining-bots-and-its-types-part-1-15po
machinelearning, datascience, beginners, javascript
> <b>Fact</b>: Do you know that a normal person interacts at least 3-4 times a day with a bot? but when? and how? impressive isn't it... It is also said that in the future a person will interact more with a bot than their spouse. Let's unfold the truth behind this... ### <b> Introduction </b> In simple words, bots a...
sahuvikramp
301,716
How to upload images to Amazon S3 using the AWS Amplify Storage module
AWS Amplify is a development platform for building secure, scalable mobile and web applications. It p...
0
2020-04-28T05:42:14
https://dev.to/danielbayerlein/how-to-upload-images-to-amazon-s3-using-the-aws-amplify-storage-module-of6
aws, s3, amplify, react
[AWS Amplify](https://aws.amazon.com/amplify/) is a development platform for building secure, scalable mobile and web applications. It provides several [libraries](https://docs.amplify.aws/lib/q/platform/js) for the communication with the AWS services. In this blog post I show you how to store images (also audio, vide...
danielbayerlein
301,734
Neural Network Basics: Gradient Descent
In the previous post, we discussed what a loss function is for a neural network and how it helps us t...
5,321
2020-04-07T12:44:30
https://makshay.com/neural-network-basics-gradient-descent
machinelearning, learninpublic
In the [previous post](https://dev.to/_akshaym/neural-network-basics-training-a-neural-network-47gl), we discussed what a loss function is for a neural network and how it helps us to train the network in order to produce better, more accurate results. In this post, we will see how we can use gradient descent to optimiz...
_akshaym
301,737
Announcing GraphQL Fireside Chats: A Special Series of Online Events
Photo by Lāsma Artmane on Unsplash We are thrilled to be partnering with This Dot for a special seri...
0
2020-04-16T04:44:11
https://hasura.io/blog/graphql-fireside-chats/
graphql
--- title: Announcing GraphQL Fireside Chats: A Special Series of Online Events published: true date: 2020-04-07 12:11:05 UTC tags: #graphQL canonical_url: https://hasura.io/blog/graphql-fireside-chats/ --- ![](https://hasura.io/blog/content/images/2020/04/lasma-artmane-gd88udnwc2Q-unsplash.jpg)<figcaption>Photo by <a...
hasurahq_staff
301,742
Quick Security in VS Code with CodeSweep
I'll start with a disclosure and mention that I'm working for the company that put out this product (...
0
2020-04-07T13:01:12
https://dev.to/coadaflorin/quick-security-in-vs-code-with-codesweep-1b20
vscode, appsec, sast, security
_I'll start with a disclosure and mention that I'm working for the company that put out this product (HCL AppScan), but I'm writing this as Florin, the guy who write some code and has an interest in Security._ Tl;DR: here's a video: https://www.youtube.com/watch?v=zQvonHi4ak8 plugin here: https://hclsw.co/codesweep ...
coadaflorin
301,807
WEB APP REACTJS POKEMON API
https://lnkd.in/e9mg7jA Fala, galera, beleza? Um belo dia me deparei com uma API com todos os dados...
0
2020-04-07T14:13:46
https://dev.to/raphaeldefalcoayres/web-app-reactjs-pokemon-api-2jlp
https://lnkd.in/e9mg7jA Fala, galera, beleza? Um belo dia me deparei com uma API com todos os dados sobre pokemons (https://pokeapi.co/) e na mesma hora tive uma super nostalgia! Quando criança sempre acompanhei e pensei em criar algo sobre pokemon. Pois bem, chegou a hora! Criei este projeto com objetivo de testar...
raphaeldefalcoayres
308,682
Challenge 1 - Intro to Vue
A post by Ervin Ismu
0
2020-04-14T11:10:41
https://dev.to/ervinismu/challenge-1-intro-to-vue-1l26
codepen
{% codepen https://codepen.io/ervinismu-the-flexboxer/pen/MWaapjM %}
ervinismu
301,813
StartNames - www.startnames.co
Like everybody else amidst this crisis, I have found myself stuck at home without much to do. This su...
0
2020-04-07T14:17:59
https://dev.to/joeltankard/startnames-www-startnames-co-1p3i
showdev, sideprojects
Like everybody else amidst this crisis, I have found myself stuck at home without much to do. This sudden free time has lead me back to my one passion — building awesome products. Too often I struggle to come up with exactly what to build... My favorite technique to overcome this is to start with the name. So I built ...
joeltankard
301,824
Spoiler: 5-star reviews are a good start, right?
Who does not want to learn more about the team he is going to work with? Especially when your product...
0
2020-04-07T14:21:01
https://dev.to/hiretester/spoiler-5-star-reviews-are-a-good-start-right-2196
testing
Who does not want to learn more about the team he is going to work with? Especially when your product quality is at stake. If you'd like to know the HireTester team better, follow the link to check out what clients say about us on Clutch: https://clutch.co/profile/hire-tester
akh
301,858
Previously on our Developer Economics newsletter
Our newsletter which is filled with dev related news, jokes, inspirational quotes, events but most importantly, resource. Have a look a look into the resources that developers enjoyed the most last month
0
2020-04-07T16:45:01
https://dev.to/developernationsurvey/previously-on-our-developer-economics-newsletter-8p4
newsletter, resources, learning, tools
--- title: Previously on our Developer Economics newsletter published: true description: Our newsletter which is filled with dev related news, jokes, inspirational quotes, events but most importantly, resource. Have a look a look into the resources that developers enjoyed the most last month tags: newsletter, resources...
developernationsurvey
301,864
Django เลือก template มา render อย่างไร และทำไม Best Practice ถึงถูก
จากการลองเล่น framework ตัวหนึ่งชื่อ Django (จังโก้) เพื่อนำมาใช้ในการทำ Web GUI สำหรับ project หนึ่ง...
0
2020-04-07T15:30:44
https://dev.to/peepeepopapapeepeepo/django-template-render-best-practice-4d33
django, python, templates
จากการลองเล่น framework ตัวหนึ่งชื่อ Django (จังโก้) เพื่อนำมาใช้ในการทำ Web GUI สำหรับ project หนึ่ง พอลองเล่นมาถึง [Writing your first Django app, part 3](https://docs.djangoproject.com/en/3.0/intro/tutorial03/) เกิดงงเรื่อง directory structure ของ template ที่ต้องเป็น `project_name/app_name/templates/app_name/` แล...
peepeepopapapeepeepo
308,706
Asteroid App: Phase Three
For the Twilio Hackathon, I'm doing an automated WhatsApp account to which you can ask information ab...
5,828
2020-04-14T11:57:25
https://dev.to/savagepixie/asteroid-app-phase-three-1a3m
twiliohackathon, javascript, node
For the Twilio Hackathon, I'm doing an automated WhatsApp account to which you can ask information about the closest asteroid to Earth at a particular date. ## Today's Work Today was the hardest day of work so far. Not because anything was particularly challenging in itself, but because all I did was very unfamiliar ...
savagepixie
301,886
Flask Delicious Tutorial : Building a Library Management System Part 4 - Focus on Responses
The reference kit for Flask responses
0
2020-04-07T16:24:53
https://dev.to/abdurrahmaanj/flask-delicious-tutorial-building-a-library-management-system-part-4-focus-on-responses-4j18
flask, python, api, tutorial
--- title: Flask Delicious Tutorial : Building a Library Management System Part 4 - Focus on Responses published: true description: The reference kit for Flask responses tags: flask, python, api, tutorial cover_image: https://dev-to-uploads.s3.amazonaws.com/i/up9w1wvic4czas335pzr.png --- Previous: [Part 3: Routes](ht...
abdurrahmaanj
301,900
Currying for front-end developers
Currying is a concept from the computer science world which has become popular in Javascript thanks t...
0
2020-04-07T16:31:58
https://dev.to/danlaush/currying-for-front-end-developers-47hb
javascript, react, vue
Currying is a concept from the computer science world which has become popular in Javascript thanks to the Functional Programming paradigm. It’s the idea of calling a series of functions with a single argument, instead of one function with many arguments: ```js myFunction(a, b, c, d); // vs myFunction(a)(b)(c)(d); ```...
danlaush
301,924
About programming languages
So, I've been trying to focus a little bit more on my training, being that I am a junior and all. M...
0
2020-04-07T17:05:34
https://www.codegram.com/blog/about-programming-languages/
programming, languages
So, I've been trying to focus a little bit more on my training, being that I am a junior and all. My current goal is to finish a chapter a day of a book recommended by our CTO "[Metaprogramming Ruby](https://pragprog.com/book/ppmetr2/metaprogramming-ruby-2)". While I achieved my goal today, it has required a little b...
emaroto
301,978
Comando para rodar todos os testes instrumentais do app Android
Segue abaixo o comando e mais detalhes verificar a documentação. Um ponto importante é que o Debug e...
0
2020-04-07T19:01:04
https://dev.to/viniciusalvesmello/comando-para-rodar-todos-os-testes-instrumentais-do-app-android-4elg
gradle, android, androidstudio, commands
Segue abaixo o comando e mais detalhes verificar a [documentação](https://developer.android.com/studio/test/command-line). Um ponto importante é que o `Debug` e o nome da build variant. ``` ./gradlew connectedDebugAndroidTest mergeAndroidReports --continue ````
viniciusalvesmello
301,988
Building Shopping Cart Actions and Reducers with Redux
A simple guide about actions and reducers used to build shopping cart.
0
2020-04-09T11:48:55
https://dev.to/aneeqakhan/building-shopping-cart-actions-and-reducers-with-redux-in5
redux, react, beginners
--- title: Building Shopping Cart Actions and Reducers with Redux published: true description: A simple guide about actions and reducers used to build shopping cart. tags: redux, react, beginners cover_image: https://blog.tylerbuchea.com/content/images/size/w2000/2019/04/desktop_16_9-1.gif --- This blog is about simpl...
aneeqakhan
302,012
OpenNMS Meridian 2018.1.17 (Pandemic) Released
Release 2018.1.17 is a small update to 2018.1.16 that fixes another security issue that affects most...
0
2020-04-20T21:07:20
https://www.opennms.com/en/blog/2020-04-07-opennms-meridian-2018-1-17-pandemic-released/
news, circleci, confd, drools
--- title: OpenNMS Meridian 2018.1.17 (Pandemic) Released published: true date: 2020-04-07 19:20:10 UTC tags: News,circleci,confd,drools canonical_url: https://www.opennms.com/en/blog/2020-04-07-opennms-meridian-2018-1-17-pandemic-released/ cover_image: https://i.imgur.com/74fmzvG.png --- Release 2018.1.17 is a small ...
rangerrick
303,276
Daily Developer Jokes - Thursday, Apr 9, 2020
Check out today's daily developer joke! (a project by Fred Adams at xtrp.io)
4,070
2020-04-09T12:00:00
https://dev.to/dailydeveloperjokes/daily-developer-jokes-thursday-apr-9-2020-18b7
jokes, dailydeveloperjokes
--- title: "Daily Developer Jokes - Thursday, Apr 9, 2020" description: "Check out today's daily developer joke! (a project by Fred Adams at xtrp.io)" series: "Daily Developer Jokes" cover_image: "https://private.xtrp.io/projects/DailyDeveloperJokes/thumbnail_generator/?date=Thursday%2C%20Apr%209%2C%202020" published: ...
dailydeveloperjokes
303,510
🐋 Docker Cheat Sheet [PDF + Infographic]
Docker is a fantastic tool designed to make it easier to create, deploy, and run applications by usin...
5,758
2020-04-09T15:27:20
https://dev.to/godcrampy/docker-cheat-sheet-pdf-infographic-3lfk
docker, devops, beginners, inthirtyseconds
**Docker** is a fantastic tool designed to make it easier to create, deploy, and run applications by using containers. Here's a cheat-sheet to help you remember common docker commands. ![Alt Text](https://dev-to-uploads.s3.amazonaws.com/i/jmg2rly6n0kyy9hkbty9.png) 📁 [Download](https://github.com/godcrampy/cheat-she...
godcrampy
303,519
What are your thoughts on GitLab vs Github?
Hey guys, I'm creating a brand new 2020 edition article on the topic - "GitLab vs Github" And I'm lo...
0
2020-04-09T15:44:54
https://dev.to/codegiantio/what-are-your-thoughts-on-gitlab-vs-github-2oc0
Hey guys, I'm creating a brand new 2020 edition article on the topic - "GitLab vs Github" And I'm looking for your expert opinions on the topic. If you can these questions it would be great: Github or Gitlab? What is the one feature that you really love about the platform you are using? Why do you use your current...
codegiantio
306,589
This Was Puzzle Day 2020
A write up of Team Puzz Lightyear’s solution’s
0
2020-04-16T14:53:38
https://dev.to/rpalo/this-was-puzzle-day-2020-4ad
cs50, puzzles
--- title: This Was Puzzle Day 2020 published: true description: A write up of Team Puzz Lightyear’s solution’s tags: CS50, puzzles --- Pandemic. That’s a terrible word. It starts with P. It means disease that’s everywhere. Means that you have to stay away from friends and public places and fun things. Means you ...
rpalo
307,712
Electron and React, a successful marriage?
In one of my previous posts, I talked (or rather wrote) about a framework called Electron, which offe...
5,930
2020-04-16T10:08:22
https://dev.to/alexdhaenens/electron-and-react-a-successful-marriage-ncf
javascript, webdev, beginners, tutorial
In one of my previous [posts](https://dev.to/alexdhaenens/electron-the-future-18nc), I talked (or rather wrote) about a framework called [Electron](https://www.electronjs.org/), which offers the possibility to _create cross-platform desktop applications with HTML, CSS and JavaScript_. As soon I saw it, I had to try it ...
alexdhaenens
307,745
Career Advice: PHP vs Python vs JS?
I am a Laravel/Vue full stack developer with 2+ years of experience. While searching for new job, I o...
0
2020-04-13T14:39:44
https://dev.to/parthp1808/career-advice-php-vs-python-vs-js-g7p
discuss, php, javascript, python
I am a Laravel/Vue full stack developer with 2+ years of experience. While searching for new job, I observed that big companies or small but exciting companies tend to use technologies like React, Python, C# etc. And that sort of demotivated me as I am only efficient in Laravel with bit of experience in Vue. Should I ...
parthp1808
307,751
State of Cloud Communities in France
Karen Tamrazyan wrote a good article that analyzes local communities of 3 major public cloud provider...
0
2020-04-14T06:52:54
https://dev.to/zenika/state-of-cloud-communities-in-france-7ko
cloud, community, meetup
[Karen Tamrazyan](https://www.linkedin.com/in/karentamrazyan/) wrote a good article that analyzes local communities of 3 major public cloud providers AWS, Azure and Google Cloud in Germany, Austria and Switzerland (German-speaking countries) here: https://www.tamrazyan.com/state-of-cloud-communities-in-german-speaking-...
jlandure
307,753
Conceito de Mock
Olá, esse é meu primeiro post no dev.to. Vou começar a minha jornada para ajudar a comunidade coloca...
0
2020-04-13T14:47:11
https://dev.to/estevaowat/conceito-de-mock-ipd
testing
Olá, esse é meu primeiro post no dev.to. Vou começar a minha jornada para ajudar a comunidade colocando um pouco do que estou aprendendo durante o meu dia a dia, com isso espero ajudar alguém. :) Bom vamos lá... Mock serve para substituir o retorno de uma função muito demorada com algum retorno esperado. Veja esse ...
estevaowat
307,807
Working with SQL Relations in Go - Part 5
Over these series of posts I have been exploring an approach that could be taken when working with SQ...
5,843
2020-04-13T16:12:09
https://andrewpillar.com/programming/2020/04/13/working-with-sql-relations-in-go-part-5/
go, sql, api
Over these series of posts I have been exploring an approach that could be taken when working with SQL relationships in Go. The precursor to all of this was the initial [ORMs and Query Building in Go](https://andrewpillar.com/programming/2019/07/13/orms-and-query-building-in-go/). This explored one aspect of ORMs, the ...
andrewpillar
307,890
TwilioHackathon - DevicePolice Available Now!
What I built DevicePolice is a small tool that helps you curve your habit of spending too...
0
2020-04-13T18:41:56
https://dev.to/htnguy/twiliohackathon-devicepolice-app-5h06
twiliohackathon, react, node, showdev
## What I built DevicePolice is a small tool that helps you curve your habit of spending too much time on your device. As a result of COVID-19 and the quarantine, more people are staying at home and consequently spending more time on their device. However, staying at home doesn't mean you have to give up all activit...
htnguy
307,952
Depois do Café - Episodio 7 - Trabalhando em Ambientes Internacionais
Nesse episódio pocket edition a gente fala sobre a nossa experiência de trabalhar em um ambientes internacionais, nós comentamos como foi começar a trabalhar em Inglês e com pessoas de outras nacionalidades, além de brasileiros.
0
2020-04-13T20:02:59
https://dev.to/depoisdocafe/depois-do-cafe-episodio-7-trabalhando-em-ambientes-internacionais-3p3b
podcast, ambientesinternacionais, portugues
--- title: Depois do Café - Episodio 7 - Trabalhando em Ambientes Internacionais published: true description: Nesse episódio pocket edition a gente fala sobre a nossa experiência de trabalhar em um ambientes internacionais, nós comentamos como foi começar a trabalhar em Inglês e com pessoas de outras nacionalidades, al...
airtonzanon
308,004
April 25 — Daily CodeNewbie Check-in Thread
A daily thread to ask questions, share progress, and stay accountable!
5,940
2020-04-25T12:00:22
https://dev.to/codenewbieteam/april-25-daily-codenewbie-check-in-thread-8lp
codenewbie, checkin, beginners, discuss
--- title: April 25 — Daily CodeNewbie Check-in Thread published: true description: A daily thread to ask questions, share progress, and stay accountable! tags: codenewbie, checkin, beginners, discuss series: Daily Checkin --- You are encouraged to use this daily thread to: - Ask for help (all questions encouraged) - ...
codenewbiestaff
308,041
Readable code
Programmers play a big role in creating an interactive interface that can be used to bring about the...
0
2020-04-13T22:54:13
https://dev.to/asar358/readable-code-1lie
Programmers play a big role in creating an interactive interface that can be used to bring about the real outcome of every activity that human beings are involved in. In each case, there are specific codes that are used to ensure that the program suits the targeted purpose which varies from one app or website to anot...
asar358
308,106
Git commit not created Error: Command failed: git commit -m “Initialize project using Create React App”
I am a Windows user and I have yarn, node js, git, npm installed. In the part when I create my react...
0
2020-04-14T01:52:35
https://dev.to/irruur/git-commit-not-created-error-command-failed-git-commit-m-initialize-project-using-create-react-app-2dgk
react, node, yarn, windows
I am a Windows user and I have yarn, node js, git, npm installed. In the part when I create my react application with the command npx create-react-app my-app starts to create but almost at the end I mark this error: PS C:\React> npx create-react-app my-app Creating a new React app in C:\React\my-app. Installing pac...
irruur
308,128
Logging with App Engine and Stackdriver
Logging with App Engine and Stackdriver In days of old, App Engine's logging statement...
0
2020-04-14T02:41:43
https://whistlr.info/2020/appengine-stackdriver-logging/
appengine, gcp
--- title: Logging with App Engine and Stackdriver published: true date: 2020-04-08 00:00:00 UTC tags: appengine, gcp canonical_url: https://whistlr.info/2020/appengine-stackdriver-logging/ --- # Logging with App Engine and Stackdriver In days of old, App Engine's logging statement looked something like this: ```go ...
samthor
308,131
A Faster Way to Track Down Bugs
Most of my time working as a software engineer is spent tracking down and fixing bugs. While a good p...
0
2020-04-14T02:41:18
https://dev.to/blackgirlbytes/a-faster-way-to-track-down-bugs-2aod
github, git, productivity, tutorial
*Most of my time working as a software engineer is spent tracking down and fixing bugs. While a good portion of the bugs are my own doing, some of the bugs were created by other engineers, which makes the task more ambiguous. As the codebase grows, finding bugs becomes increasingly difficult. It's a time sink and super...
blackgirlbytes
308,155
Nuxt, Meet Vuetify
This article is part of a series on my experiences with Nuxt.js that I built into the nuxt-toolkit by...
5,946
2020-04-14T03:27:20
https://dev.to/overscoremedia/nuxt-meet-vuetify-58fj
nuxt, vue, javascript, vuetify
This article is part of a series on my experiences with Nuxt.js that I built into the [nuxt-toolkit](https://github.com/overscore-media/nuxt-toolkit) by [OverScore Media](https://overscore.media) {% github https://github.com/overscore-media/nuxt-toolkit no-readme %} See a live example at https://nuxt-toolkit.overscore...
mtpiercey