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
220,272
List Comprehension in D
This post is a language comparison coming out of this great article on list comprehension. D does not...
2,209
2019-12-13T08:12:31
https://dev.to/jessekphillips/list-comprehension-in-d-4hpi
dlang, tutorial, ranges
This post is a language comparison coming out of this great article on list comprehension. D does not have List comprehension. {% link https://dev.to/dvirtual/list-comprehensions-om4 %} Since D can generally operate on ranges rather than allocated arrays, if you need an array just add `.array` for more on arrays revi...
jessekphillips
220,334
Angular counter directive
https://stackblitz.com/edit/angular-p9xny6?file=src%2Fapp%2Fapp.component.ts
0
2019-12-13T09:16:52
https://dev.to/anhdung11cdt2/angular-counter-directive-1j2h
https://stackblitz.com/edit/angular-p9xny6?file=src%2Fapp%2Fapp.component.ts
anhdung11cdt2
220,345
Guessing all of the passwords! Advent of Code 2019 - Day 4
JavaScript walkthrough of Advent of Code 2019 (day 4)
3,910
2019-12-13T09:57:07
https://dev.to/thibpat/guessing-all-of-the-passwords-advent-of-code-2019-day-4-36i5
challenge, adventofcode, javascript, video
--- title: Guessing all of the passwords! Advent of Code 2019 - Day 4 published: true description: JavaScript walkthrough of Advent of Code 2019 (day 4) tags: challenge, AdventOfCode, javascript, video series: Advent of Code 2019 in Javascript --- {% youtube 8ruAKdZf9fY %}
thibpat
220,354
Check Object equality in javascript
Check whether two objects are equal or not in javascript function isDeepEqual(obj1, obj2, testPro...
0
2019-12-13T10:19:08
https://dev.to/isamrish/check-object-equality-in-javascript-ph8
javascript, objects
--- title: Check Object equality in javascript published: true description: tags: javascript, objects, js --- Check whether two objects are equal or not in javascript ``` function isDeepEqual(obj1, obj2, testPrototypes = false) { if (obj1 === obj2) { return true } if (typeof obj1 === "function" && typeof...
isamrish
220,361
Connecting to ODBC databases from Python with pyodbc
Steps to connect to ODBC database in Python with pyodbc module Import the pyodbc module and create...
0
2019-12-13T10:37:43
https://dev.to/andreasneuman/connecting-to-odbc-databases-from-python-with-pyodbc-1p5j
odbc, software, python, driver
Steps to connect to ODBC database in Python with pyodbc module 1. Import the pyodbc module and create a connection to the database 2. Execute an INSERT statement to test the connection to the database. 3. Retrieve a result set from a query, iterate over it and print out all records. Key Features - Direct mode - SQL ...
andreasneuman
220,482
How to build a Twitter bot with NodeJs
twitter bot tutorial
0
2019-12-13T14:37:49
https://dev.to/codesource/how-to-build-a-twitter-bot-with-nodejs-1nlh
node
--- title: How to build a Twitter bot with NodeJs published: true description: twitter bot tutorial tags: Nodejs --- Building a Twitter bot using their [API](https://codesource.io/how-to-consume-restful-apis-with-axios/) is one of the fundamental applications of the Twitter API. To build a Twitter bot with Nodejs, y...
codesource
220,554
smart contract machine learning DEV
good morning , i want to implement a new smart contract for clustering data over blockchain. about...
0
2019-12-13T17:10:12
https://dev.to/gaviotamina/smart-contract-machine-learning-dev-52jk
good morning , i want to implement a new smart contract for clustering data over blockchain. about the algorithme of clusterning i wat to start by the simple algorithme Kmeans for example. the smart contract get data from un IPFS. what architecture can my smart contract have? and with what I have to start? Cdlt.
gaviotamina
220,564
How to test if an element is in the viewport
This article was originally posted on pelumicodes.com There can be several scenarios that may requir...
0
2019-12-13T17:41:52
https://pelumicodes.com/post/how-to-test-if-an-element-is-in-the-viewport/
jquery, javascript, angular, browser
This article was originally posted on [pelumicodes.com](https://pelumicodes.com) There can be several scenarios that may require you to determine whether an element is currently in the viewport of your browser, you might want to implement lazy loading or animating divs whenever they show up on the user's screen. > W...
pelumicodes
220,596
Three Small Relational Efforts That Have Big Impacts
The interactions we have with other people help form the environment we work in. If we treat people w...
0
2019-12-13T20:35:18
https://dev.to/thebuffed/three-small-relational-efforts-that-have-big-impacts-5do4
career
The interactions we have with other people help form the environment we work in. If we treat people with respect, care, and interest, the environment will inevitably become an attraction. There are a few things I try to do on my quest to be a better human to help others feel comfortable and cared for. I know these thi...
thebuffed
220,756
Install Ghost with Caddy on Ubuntu
TL; DR Get a server with Ubuntu up and running Set up a non-root user and add it to...
0
2019-12-14T05:08:23
https://dev.to/alexkuang0/install-ghost-with-caddy-on-ubuntu-3flf
ubuntu, node
## TL; DR 1. Get a server with Ubuntu up and running 2. Set up a non-root user and add it to superuser group 3. Install MySQL and Node.js 4. Install Ghost-CLI and start 5. Install Caddy as a service and write a simple Caddyfile 6. Get everything up and running! ## Foreword (Feel-Free-to-Ignore-My-Nonsense™️) This ar...
alexkuang0
220,769
Do Stacked-PRs require re-review after merge?
Is the sum of two approved PR's also an approved PR?
0
2019-12-14T06:06:17
https://dev.to/jlouzado/do-stacked-prs-require-re-review-after-merge-522f
ask, help, git, codereview
--- title: Do Stacked-PRs require re-review after merge? published: true description: Is the sum of two approved PR's also an approved PR? tags: ask, help, git, code-review --- ## Scenario - I'm working on a big feature that I know can be broken into two parts - these parts are, as is often the case, dependent on e...
jlouzado
220,778
Answer: Sonarqube 7.9.1 community troubleshooting
answer re: Sonarqube 7.9.1 community...
0
2019-12-14T06:31:47
https://dev.to/ftechnix/answer-sonarqube-7-9-1-community-troubleshooting-bm6
{% stackoverflow 58045999 %}
ftechnix
220,784
Laravel 6 REST API with Passport Tutorial with Ecommerce Project
Rest Api Development In this tutorial, we’ll explore the ways you can build—and test—a robust API usi...
0
2019-12-14T07:20:48
https://dev.to/techmahedy/laravel-6-rest-api-with-passport-tutorial-with-ecommerce-project-1965
restapi, laravel, laravelpassport
Rest Api Development In this tutorial, we’ll explore the ways you can build—and test—a robust API using Laravel. We’ll be using Laravel 6, and all of the code is available for reference on GitHub. Now we are going to develop a ecommerce rest api where we have a product table and a review table. Using those two table we...
techmahedy
220,795
From old PHP/MySQL to the world's most modern web app stack with Hasura and GraphQL
This is the history of Nhost. Ever since 2007, I have been into programming and web development. Bac...
0
2019-12-14T07:59:03
https://blog.nhost.io/from-old-php-mysql-to-the-worlds-most-modern-web-app-stack-with-hasura-and-graphql/
graphql, postgres, react, productivity
This is the history of [Nhost](https://nhost.io/). Ever since 2007, I have been into programming and web development. Back then it was all PHP and MySQL websites and everything was great fun! Around 2013 SPA ([Single Page Application](https://en.wikipedia.org/wiki/Single-page_application)s) started to emerge. Instead...
elitan
220,800
Trial
ex
0
2019-12-14T07:48:27
https://dev.to/ard_handoyo/trial-3idk
ex
ard_handoyo
220,835
Chrome Dev Summit 2019: Everything you need to know
"As the largest open ecosystem in history, the Web is a tremendous utility, with more than 1.5B...
0
2019-12-14T10:07:30
https://www.ghosh.dev/posts/chrome-dev-summit-2019-everything-you-need-to-know/
webdev, webperf, techtalks, webplatform
--- title: Chrome Dev Summit 2019: Everything you need to know published: true date: 2019-12-14 00:00:00 UTC tags: webdev, webperf, techtalks, webplatform canonical_url: https://www.ghosh.dev/posts/chrome-dev-summit-2019-everything-you-need-to-know/ cover_image: https://www.ghosh.dev/static/media/chrome-dev-summit-2019...
abhishekcghosh
220,837
Building my next HTTP server, part 2
This is the second post of a series about my HTTP server On my first post of this series I explained...
3,333
2020-02-18T20:14:49
https://dev.to/andrepiske/building-my-next-http-server-part-2-466g
ruby, webdev, showdev
_This is the second post of a series about my HTTP server_ On my first post of this series I explained how the plan for my HTTP server is for it to be asynchronous, so it makes the best use of I/O and CPU at the same time. In order to be asynchronous, the problem I have to solve is that a call to [`TCPServer#accept`]...
andrepiske
221,894
Do u use Tailwind in React?
Hearing à lot about Tailwind CSS recently. Is there a React implementation and is it better than Mate...
0
2019-12-16T15:05:45
https://dev.to/bamboriz/do-u-use-tailwind-in-react-46m8
css, react, discuss
Hearing à lot about Tailwind CSS recently. Is there a React implementation and is it better than Material-ui ?
bamboriz
220,843
JavaScript's Async + Await in 5 Minutes
Bye Bye Promise inception and callback fury! 👋🎉 It’s likely that you’ve encountered Promises in yo...
0
2019-12-14T13:22:38
https://dev.to/jh3y/javascript-s-async-await-in-5-minutes-3e6d
javascript, webdev, typescript, beginners
> Bye Bye Promise inception and callback fury! 👋🎉 It’s likely that you’ve encountered Promises in your JavaScript (_If you haven’t check out this [guide](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises) quick 👍_). They allow you to hook into the completion of asynchronous calls. They ma...
jh3y
220,865
Firefox: Installing Self-Signed certificate on Ubuntu
While developing webapps you may need to use HTTPS to match production environment. For local purpos...
0
2019-12-16T13:12:34
https://dev.to/lmillucci/firefox-installing-self-signed-certificate-on-ubuntu-4f11
linux, ubuntu, firefox, ssl
While developing webapps you may need to use HTTPS to match production environment. For local purposes you may not need a real certificate and a self-signed SSL certificate could be enough. A self-signed certificate is a SSL certificate which is not signed by any of the recognized certification authorities. If you ...
lmillucci
220,876
Build WordPress App with React Native #25 : Setup Firebase Push Notification [Android]
This series intends to show how I build app to serve content from my WordPress blog by using react na...
3,611
2019-12-14T12:18:12
https://kriss.io/build-wordpress-client-app-with-react-native-25-setup-firebase-push-notification-android/
firebase, reactnative, reactnativewordpress, android
--- title: Build WordPress App with React Native #25 : Setup Firebase Push Notification [Android] published: true date: 2019-12-14 03:57:29 UTC tags: Firebase,React Native,React native Wordpress,android canonical_url: https://kriss.io/build-wordpress-client-app-with-react-native-25-setup-firebase-push-notification-andr...
kris
220,895
Reading Snippets [10]
Pure functions are functions that satisfy two conditions: Deterministic No Side Effects They ar...
0
2019-12-14T12:31:21
https://dev.to/calvinoea/reading-snippets-10-518j
beginners, javascript
Pure functions are functions that satisfy two conditions: - Deterministic - No Side Effects They are deterministic which means that they will always return the same output for any given input. They also do not have side effects which means they cannot change global variables. Not only do pure functions not have ...
calvinoea
220,915
PHP form 20: input text textarea
Happy Coding Previous In index.php <form method="post" action="p...
0
2019-12-14T13:28:25
https://dev.to/antelove19/php-form-20-input-text-textarea-17df
php, form
___ ### <center>Happy Coding</center> --- {% replit @antelove19/PHP-form-20 %} --- [`Previous`](https://dev.to/antelove19/php-form-10-input-text-1ep8) In **index.php** ```php <form method="post" action="process.php" > Firstname: <input type="text" name="firstname" /> <br /> Lastname...
antelove19
220,945
PHP form 45: input text textarea select-multiple
Happy Coding Previous We will create form with type select multiple input...
0
2019-12-14T14:41:41
https://dev.to/antelove19/php-form-45-input-text-textarea-select-multiple-322m
php, form
___ ### <center>Happy Coding</center> --- {% replit @antelove19/PHP-form-45 %} --- [`Previous`](https://dev.to/antelove19/php-form-40-input-text-textarea-select-27mc) We will create form with type **select multiple** input: ```php <form method="post" action="process.php" > Firstname: <input type="te...
antelove19
220,948
PHP form 55: input text textarea checkbox-multiple
Happy Coding Previous We will create form with type checkbox multi input:...
0
2019-12-14T14:49:05
https://dev.to/antelove19/php-form-55-input-text-textarea-checkbox-multiple-381j
php, form
___ ### <center>Happy Coding</center> --- {% replit @antelove19/PHP-form-55 %} --- [`Previous`](https://dev.to/antelove19/php-form-50-input-text-textarea-checkbox-4gni) We will create form with type **checkbox multi** input: ```php <form method="post" action="process.php" > Firstname: <input type="t...
antelove19
220,994
Kotlin type Extensions
Assumptions General understanding of kotlin The kotlin type system is extremely powerful. It prov...
0
2019-12-14T17:18:34
https://dev.to/dgoetsch/kotlin-type-extensions-1i88
kotlin, functional
*Assumptions* * General understanding of kotlin The kotlin type system is extremely powerful. It provides a wealth of useful tools: data classes, interfaces with default implemetnations, sealed classes, object types, final by default on concrete types - the list goes on. However, there is one feature that in my mind...
dgoetsch
221,031
Day 10 – Mastering EventEmitter - Learning Node JS In 30 Days [Mini series]
Go to https://nodejs.org/dist/latest-v12.x/docs/api/fs.html then you can see oficial document of fs...
0
2019-12-14T18:09:29
https://blog.nerdjfpb.com/day10-nodejsin30days/
node, javascript, codenewbie
Go to https://nodejs.org/dist/latest-v12.x/docs/api/fs.html then you can see oficial document of fs ![Alt Text](https://thepracticaldev.s3.amazonaws.com/i/1o844vmsn79m5j94rjnw.png) Now, first we need to require the fs and store it on a const by writing `const fs = require('fs')` ![Alt Text](https://thepracticaldev.s...
nerdjfpb
221,057
Is Multitasking Effective for Your Work as a Developer?
Multitasking is a fairly common concept. It is something that everyone has done to a certain degree a...
0
2019-12-14T19:23:34
https://dev.to/danilapetrova/is-multitasking-effective-for-your-work-as-a-developer-45
productivity, career, multitasking, discuss
Multitasking is a fairly common concept. It is something that everyone has done to a certain degree and is also one that many disagree on. Some believe it raises the pace of getting things done. Others think it is, on the contrary, causing you to complete two tasks slower if you do them at the same time, rather than on...
danilapetrova
221,137
HTML5 Canvas Basics
You may have heard of HTML5 Canvas, but what exactly is it? Let's figure it out together! Simply put...
0
2019-12-15T22:00:37
https://dev.to/jadejdoucet/html5-canvas-basics-ee6
html, javascript, beginners
You may have heard of HTML5 Canvas, but what exactly is it? Let's figure it out together! Simply put, `<canvas>` is used to draw graphics to a web page. This tag is just a container for graphics, but this is good news if you're a JavaScript developer because this is done with the power of JavaScript! ![Alt Text](http...
jadejdoucet
221,191
Awesome Terminal upgrades - Part Two: Upgrade and use a newer version of ZSH on macOS
Awesome Terminal upgrades - Part Two: Upgrade and use a newer version of ZSH on macOS
3,781
2019-12-15T02:36:00
https://dev.to/0xdonut/awesome-terminal-upgrades-part-two-upgrade-and-use-a-newer-version-of-zsh-on-macos-4hfg
opensource, productivity, zsh, bash
--- title: Awesome Terminal upgrades - Part Two: Upgrade and use a newer version of ZSH on macOS published: true description: Awesome Terminal upgrades - Part Two: Upgrade and use a newer version of ZSH on macOS tags: opensource, productivity, zsh, bash series: Awesome Terminal upgrades --- This is part two in the **"...
0xdonut
221,202
My own journey (Part 2)
High School was about to be over And one of my friends who wanted to see the recently esta...
1,919
2019-12-15T03:36:51
https://dev.to/ackzell/my-own-journey-part-2-pi0
career
# High School was about to be over And one of my friends who wanted to see the recently established campus of a fancy private school, took a bunch of us in his car and we basically had a group trip to get to know the place. I will forever be grateful with my friend for that trip on his car. Not only was a really good...
ackzell
221,276
Send message as a Telegram bot. What may go wrong?
Last month I've worked on @hltvFeatured – it's a Telegram bot to get notifications about upcoming Cou...
0
2019-12-17T13:45:11
https://dev.to/mbelsky/send-message-as-a-telegram-bot-what-may-go-wrong-1adf
telegram, bots, node, javascript
Last month I've worked on [@hltvFeatured](https://t.me/hltvFeaturedBot) – it's a Telegram bot to get notifications about upcoming Counter-Strike: Global Offensive matches featured by HLTV.org. ![Example of @hltvFeatured message](https://thepracticaldev.s3.amazonaws.com/i/zb9ihaoxjfca6rbgsd7r.png) After a few weeks i...
mbelsky
221,375
Everything you should know about Javascript functions
This article was originally published at JavaScript functions Function in programming is one of t...
0
2019-12-25T06:28:52
https://www.blog.duomly.com/essential-knowledge-about-javascript-functions-with-examples/
javascript, programming, beginners, codenewbie
This article was originally published at <a href=“https://www.blog.duomly.com/essential-knowledge-about-javascript-functions-with-examples”>JavaScript functions</a> --- Function in programming is one of the most basic elements. It is a set of statements that perform some activity to get the result. In lots of cases, ...
duomly
221,385
Why do you write code??
I get asked this question alot because it normally looks like I enjoy what I do. Actually, the real q...
0
2019-12-15T12:45:54
https://dev.to/manyeya/why-do-you-write-code-2p4l
discuss
I get asked this question alot because it normally looks like I enjoy what I do. Actually, the real question is why do I write code? I personally code because it gives me enjoyment. I don’t think I have ever had a job more satisfying than coding and solving problems, Creating web sites and web applications feels like ...
manyeya
221,424
How to Configure ASP.NET Core 3.1 AngularJS SPA and Identity Server 4 Authentication with PostgreSQL DB
In this tutorial we will see how to configure an ASP.NET Core 3.1 web application with AngularJS SPA as front end and PostgreSQL as database with Secure User membership implementation using Identity Server 4.
0
2019-12-15T15:10:30
https://dev.to/windson/configuring-asp-net-core-3-1-angularjs-spa-and-identity-server-4-authentication-with-postgresql-db-jgk
aspnetcore31, postgres, angular, identityserver4
--- cover_image: https://thepracticaldev.s3.amazonaws.com/i/ec2sgdrsjbmuoxfg5cx2.png title: How to Configure ASP.NET Core 3.1 AngularJS SPA and Identity Server 4 Authentication with PostgreSQL DB published: true description: In this tutorial we will see how to configure an ASP.NET Core 3.1 web application with AngularJ...
windson
221,470
A Modeling Editor and Code Generator for AsyncAPI
IIoT (Industrial IoT) architectures are typically distributed and asynchronous, with communication be...
0
2019-12-15T17:23:12
https://modeling-languages.com/asyncapi-modeling-editor-code-generator/
asyncapi, api, showdev, ide
IIoT (Industrial IoT) architectures are typically distributed and asynchronous, with communication being event-driven, such as the publication (and corresponding subscription) of messages. These asynchronous architectures enhance scalability and tolerance to changes, but raise interoperability issues as <strong>the exp...
jcabot
221,502
Enhance your macOS terminal
This post was originally published at thbe.org. Personally, I use quite often the terminal when I us...
4,027
2019-12-15T19:07:58
https://www.thbe.org/posts/2019/07/23/Enhance_your_macOS_terminal.html
macos, iterm2, zsh, ohmyzsh
*This post was originally published at [thbe.org](https://www.thbe.org/posts/2019/07/23/Enhance_your_macOS_terminal.html).* Personally, I use quite often the terminal when I use my computer, laptop or whatever. As a result, I modified my terminal quite heavily to ease my work and to get the best out of the terminal. I...
thbe
221,525
Dev Christmas Songs
The festive period is upon us, let’s here your cheesy developer versions of classic songs!
0
2019-12-15T20:27:31
https://dev.to/thatonejakeb/dev-christmas-songs-5eo8
discuss, offtopic, watercooler, christmas
The festive period is upon us, let’s here your cheesy developer versions of classic songs!
thatonejakeb
221,577
CSV generation from JSON in Svelte
Generate CSV without third party library and fully supported by all browser and mobile devices.
0
2019-12-16T04:01:26
https://dev.to/karkranikhil/csv-generation-from-json-in-svelte-5cgf
svelte, tutorial, javascript, compiler
--- title: CSV generation from JSON in Svelte published: true description: Generate CSV without third party library and fully supported by all browser and mobile devices. tags: Svelte, tutorial, JavaScript, compiler cover_image: https://thepracticaldev.s3.amazonaws.com/i/9nlofmvbn3zol8mu4p0g.PNG --- Svelte is the new...
karkranikhil
221,673
The perfect React's component doesn't exist. 🤯
Let's talk about how we can optimize our react's components using this simple rule "Less re-renders == More performance"
0
2019-12-16T06:58:54
https://bassemmohamed.me/post/the-perfect-reacts-component-doesnt-exist
react, javascript, optimization
--- title: The perfect React's component doesn't exist. 🤯 published: true description: Let's talk about how we can optimize our react's components using this simple rule "Less re-renders == More performance" tags: react, javascript, optimization cover_image: https://thepracticaldev.s3.amazonaws.com/i/4em9wjblzhsh4f9v...
bassemibrahim
221,695
Beginner's Guide to Requests and APIs
The requests module is your portal to the open web.🤯 Basically any API that you have access to, you c...
0
2019-12-16T09:21:19
https://dev.to/ejbarba/beginner-s-guide-to-requests-and-apis-41dk
python, requests, beginners
The **requests** module is your portal to the open web.🤯 Basically any API that you have access to, you can pull data from it (Though your mileage may vary). ## Getting Started ✊ Installing requests needs [pipenv](https://pypi.org/project/pipenv/), so go ahead and install that first if you don't have it. If you d...
ejbarba
221,724
Breaking an app up into modules
As apps grow larger and larger, their complexity tends to increase too. And quite often, the problems...
0
2019-12-16T09:17:49
https://www.donnywals.com/breaking-an-app-up-into-modules/
ios, swift
As apps grow larger and larger, their complexity tends to increase too. And quite often, the problems you're solving become more specific and niche over time as well. If you're working on an app like this, it's likely that at some point, you will notice that there are parts of your app that you know on the back of your...
donnywals
221,745
How to connect Power BI to ODBC data source and access data in 3 steps
How to connect Power BI to ODBC data source and access data in 3 steps Install the driver and confi...
0
2019-12-16T10:14:24
https://dev.to/andreasneuman/how-to-connect-power-bi-to-odbc-data-source-and-access-data-in-3-steps-25b
odbc, powerbi, software, odbcdriver
How to connect Power BI to ODBC data source and access data in 3 steps - Install the driver and configure an ODBC data source. Start Power BI and choose Get Data > Other > ODBC. - Choose the DSN that you configured for the ODBC Driver and enter your credentials in the next step. - Now Power BI database connection is e...
andreasneuman
221,788
My PWA made with Clojure/ClojureScript exceeded 400 users 🎉
This is the 19th article at Clojure Advent Calendar. Hello there! :) I'm a Japanese Clojurian. I...
0
2019-12-18T15:23:06
https://dev.to/boxp/my-pwa-made-with-clojure-clojurescript-exceeded-400-users-5co7
clojure, showdev, pwa, react
This is the 19th article at [Clojure Advent Calendar](https://qiita.com/advent-calendar/2019/clojure). {% youtube DvJC8z_H_ro %} Hello there! :) I'm a Japanese Clojurian. I released a Progressive Web App made using Clojure & ClojureScript, called "Hito Hub". So I will write about why I made this app and why I chose C...
boxp
221,805
7 Points to Consider for Making a Hybrid Mobile App in 2020
The number of smartphone users shows an increasing trend. As per Statista, there will be approximatel...
0
2019-12-16T11:45:14
https://dev.to/cliffex/7-points-to-consider-for-making-a-hybrid-mobile-app-in-2020-3595
mobileapp, appdevelopment, hybridapp
The number of smartphone users shows an increasing trend. As per <b>Statista</B>, there will be approximately 7 billion mobile users by 2020. As per the App Annie report for 2017 to 2022, annual mobile app downloads will be 258 billion. And that is a 45 % increase in what was achieved in 2017. With this kind of growt...
cliffex
221,876
Frustrations in Python
Written by Nikita Sobolev✏️ Dark forces cast their wicked spells to leak into our realm of precious...
0
2019-12-19T14:49:54
https://blog.logrocket.com/frustrations-in-python/
python, tutorial
--- title: Frustrations in Python published: true date: 2019-12-16 14:10:48 UTC tags: python,tutorial canonical_url: https://blog.logrocket.com/frustrations-in-python/ cover_image: https://thepracticaldev.s3.amazonaws.com/i/lj562eqgl1wyij98lssn.png --- **Written by [Nikita Sobolev](https://blog.logrocket.com/author/nik...
bnevilleoneill
221,913
LAST Part - teach your kids to build their own game with Python.
a tutorial that teaches kids/beginners how to develop the famous Space Invaders game with Python.
0
2019-12-16T15:37:57
https://dev.to/mustafaanaskh99/last-part-teach-your-kids-to-build-their-own-game-with-python-33m2
python, turtle, games, kids
--- title: LAST Part - teach your kids to build their own game with Python. published: true description: a tutorial that teaches kids/beginners how to develop the famous Space Invaders game with Python. tags: python, turtle, games, kids cover_image: https://thepracticaldev.s3.amazonaws.com/i/os7ug14fnguu2oy70lls.png --...
mustafaanaskh99
221,932
Server Side Rendering and Feature Flag Management
While doing SSR, you want the greatest amount of your code as possible to be shared between the server and the client.
0
2019-12-16T16:40:09
https://rollout.io/blog/server-side-rendering-and-feature-flag-management/
ssr, devops, programming, monitoring
--- title: Server Side Rendering and Feature Flag Management published: true description: While doing SSR, you want the greatest amount of your code as possible to be shared between the server and the client. tags: ssr, devops, programming, monitoring canonical_url: https://rollout.io/blog/server-side-rendering-and-fe...
gguirado
222,194
PHP Vue form formData 10: input text using ajax (axios)
Happy Coding Add external script in head tag. First for vue, and second for axios ajax. &lt;h...
0
2019-12-17T04:55:12
https://dev.to/antelove19/php-vue-form-formdata-10-input-text-using-ajax-axious-469e
php, vue, form, axios
<hr /> <center>Happy Coding</center> <hr /> Add external script in head tag. First for vue, and second for axios ajax. <head> <script src="https://cdn.jsdelivr.net/npm/vue"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.js"></script> </head> In body, add ...
antelove19
222,204
Create a Secure Azure Sphere App using the Grove Shield Sensor Kit
This tutorial is a step by step guide to building your first Azure Sphere application using the Seeed Studio Grove Shield and Grove Sensors targeting Azure Sphere SDK 19.11 or better.
0
2019-12-17T05:46:59
https://dev.to/azure/create-a-secure-azure-sphere-app-using-the-grove-shield-sensor-kit-37bg
azuresphere, visualstudio, security, iot
--- title: Create a Secure Azure Sphere App using the Grove Shield Sensor Kit published: true description: This tutorial is a step by step guide to building your first Azure Sphere application using the Seeed Studio Grove Shield and Grove Sensors targeting Azure Sphere SDK 19.11 or better. tags: #AzureSphere #VisualStu...
gloveboxes
222,237
What tools do you all use for multiple monitor setup?
I recently got my setup to 5 monitors. So far it's been good and I am getting used to a few little qu...
0
2019-12-17T07:09:19
https://dev.to/nickyoung/what-tools-do-you-all-use-for-multiple-monitor-setup-4nje
productivity, discuss
I recently got my setup to 5 monitors. So far it's been good and I am getting used to a few little quirks of the new flow, but I am curious if anyone out there has any cool programs or tips for being more productive on a setup like this. I am on Windows 10 if that matters.
nickyoung
222,434
Digital nomads, remote work, travelling... What makes you love/hate this?
Hey 👀✨ I'm thinking about writing an article about how to travel and work remotely cheap, having fun...
0
2019-12-17T09:46:00
https://dev.to/brownio/digital-nomads-remote-work-travelling-what-makes-you-love-hate-this-cep
discuss, travel, motivation, career
Hey 👀✨ I'm thinking about writing an article about how to travel and work remotely cheap, having fun, and having a comfortable stay. I haven't got much experience about working in different countries, so I thought it may be a good idea to see **what you people think about this topics**, and also to **collect inform...
brownio
222,458
How to convince your engineering lead to adopt Flutter
By Salvatore Giordano At the moment I'm not really into writing Flutter code, and I miss it. I've c...
0
2019-12-17T10:41:35
https://dev.to/packtpartner/how-to-convince-your-engineering-lead-to-adopt-flutter-3ka9
flutter, node, javascript, webdev
--- title: How to convince your engineering lead to adopt Flutter published: true description: tags: flutter, Node, js, webdev --- By Salvatore Giordano At the moment I'm not really into writing Flutter code, and I miss it. I've changed jobs more or less 10 months ago. Now I'm a backend microservices developer using...
packtpartner
222,484
Vue CLI - Set up and getting started
Vue CLI is an all in one solution for getting started with a Vuejs app. Newbies and experts alike can...
0
2019-12-17T12:02:00
https://dev.to/grahammorby/vue-cli-set-up-and-getting-started-1kj2
vue, tutorial, npm, codenewbie
Vue CLI is an all in one solution for getting started with a Vuejs app. Newbies and experts alike can jump straight into the framework and hit the ground running with CLI and have a working app straight away. I myself started using it at the tail end of last year and it is now my go-to when I set up a new project of an...
grahammorby
222,514
Lost in Translation (An Alexa Skill)
"Alexa, launch Translation Lost" Lost in Translation was the first Alexa Skill that me (and a friend...
0
2019-12-17T13:11:54
https://dev.to/viltaria/lost-in-translation-an-alexa-skill-4dbh
alexa, aws
*"Alexa, launch [Translation Lost](https://smile.amazon.com/dp/B082R3YQ3B/ref=sr_1_1)"* Lost in Translation was the first Alexa Skill that me (and a friend) published on Amazon's Alexa Skill Store. This post will overview what the game does, how it does it's stuff, and some of the problems we ran into. ## What It ...
viltaria
222,541
Practical Puppeteer: How to emulate timezone
Hi everybody! Today Puppeteer topic will be about emulating timezone when accessing a web page. This...
0
2019-12-17T14:33:39
https://dev.to/sonyarianto/practical-puppeteer-how-to-emulate-timezone-8d5
puppeteer, javascript, timezone
Hi everybody! Today Puppeteer topic will be about emulating timezone when accessing a web page. This feature available since Puppeteer version 2.0.0 and I think this API is very useful for testing or other use cases. My use case would be testing data that has datetime information related to user's timezone when he/she...
sonyarianto
222,606
Chord Diagram 🔥
Chord diagram is a visually appealing way to represent weighted relationships in a radial layout. Ent...
0
2019-12-17T16:25:34
https://dev.to/sikrigagan/chord-diagram-35c4
codepen, fusioncharts, charts, chord
--- title: Chord Diagram 🔥 published: true tags: codepen, FusionCharts, charts, chord --- <p>Chord diagram is a visually appealing way to represent weighted relationships in a radial layout. Entities (or categories) among which the weighted relationship exist are drawn on the circumference whereas the actual weighted...
sikrigagan
222,643
Higher-Order Functions in ReasonML
In a previous post, I developed a recursive function that found the index of the first negative value...
0
2019-12-18T17:35:43
https://dev.to/jdeisenberg/higher-order-functions-in-reasonml-1150
reason, programming, functional
[In a previous post](https://dev.to/jdeisenberg/taming-recursion-with-tail-recursion-3dd6), I developed a recursive function that found the index of the first negative value in a list of quarterly balances: ```reasonml let debitIndex = (data) => { let rec helper = (index) => { if (index == Js.Array.length(data))...
jdeisenberg
222,680
Ship Accessible [React] Apps
Humans with disabilities have a right to access the same wealth of knowledge and utility the internet provides able-bodied folks.
0
2019-12-17T19:01:30
https://dev.to/egghead/ship-accessible-react-apps-lbk
a11y, webdev, react, javascript
--- title: Ship Accessible [React] Apps published: true description: Humans with disabilities have a right to access the same wealth of knowledge and utility the internet provides able-bodied folks. tags: a11y, webdev, react, javascript cover_image: https://og-image-egghead-course.now.sh/develop-accessible-web-apps-wit...
jhooks
222,692
Top 5 DEV Comments from the Past Week
Highlighting some of the best DEV comments from the past week.
0
2019-12-17T19:51:56
https://dev.to/devteam/top-5-dev-comments-from-the-past-week-5bl8
bestofdev
--- title: Top 5 DEV Comments from the Past Week published: true description: Highlighting some of the best DEV comments from the past week. tags: bestofdev cover_image: https://res.cloudinary.com/practicaldev/image/fetch/s--7VrAA2ln--/c_imagga_scale,f_auto,fl_progressive,h_420,q_auto,w_1000/https://thepracticaldev.s3....
peter
222,694
Guide: Rails Development with Docker
Originally posted on Hint's blog. As a software consultancy, we switch between many projects through...
0
2019-12-17T20:18:32
https://dev.to/hint/rails-development-with-docker-13np
rails, docker, showdev
*Originally posted on [Hint's blog](https://hint.io/blog/rails-development-with-docker).* As a software consultancy, we switch between many projects throughout the year. A critical factor in delivering value is the ease at which we are able to move between projects. Over the years, we have used many tools to manage d...
natevick
222,735
Charming the Python: RegEx
If coding tutorials with math examples are the bane of your existence, keep reading. This series uses...
3,374
2020-01-10T20:15:33
https://dev.to/vickilanger/charming-the-python-regex-2mf
python, beginners
*If coding tutorials with math examples are the bane of your existence, keep reading. This series uses relatable examples like dogs and cats.* --- ## Regular Expression (RegEx) Regular Expression is often referred to as RegEx or regex. Regex is used to search for and find patterns. Regular expressions are a sequence ...
vickilanger
222,766
Tips ORM Laravel that can help you
The Eloquent ORM Laravel is too difference ORM that all others Framework that I used, he really help...
0
2019-12-18T01:50:10
https://dev.to/diogom/tips-orm-laravel-that-helps-you-most-5apn
The Eloquent ORM Laravel is too difference ORM that all others Framework that I used, he really help us are productive work, let's go around a somethings tips that I separated for you. ### 1. Order by ```php $items = Item->orderBy('created_at', DESC)->get(); ``` ### 2. Where ```php $items = Item->where('category_id',...
diogom
222,844
Posting Nested Resources to Your Rails API
For the fourth project of the Flatiron School curriculum, I had to build an app that used a Ruby on R...
0
2019-12-18T01:41:18
https://dev.to/lberge17/posting-nested-resources-to-your-rails-api-he8
ruby, rails, beginners
For the fourth project of the Flatiron School curriculum, I had to build an app that used a Ruby on Rails API backend and a vanilla Javascript frontend. The API needed to have at least one has-many relationship. The frontend also needed to make at least one other type of request than a 'GET.' I chose to use a POST req...
lberge17
222,864
VS Code for Haskell in 2020
01 – VS Code for Haskell in 2020 02 – Your first Stack project (build, test, dist) UPD So, for now,...
0
2020-01-20T05:35:30
https://dev.to/egregors/vscode-for-haskell-in-2020-5dn8
haskell, vscode
01 – VS Code for Haskell in 2020 02 – [Your first Stack project (build, test, dist)](https://dev.to/egregors/your-first-stack-project-build-test-dist-10fa) **UPD** So, for now, you don't need any of the mess below! Thanks to guys making `hie-server`, you finally can just download VS Code plugin and this is all: pleas...
egregors
222,880
Seeking any help/resources for MacOS logging using Splunk
We need to index system logs from about 100 Macs using Splunk. I have more experience with iOS mobile...
0
2019-12-18T04:40:14
https://dev.to/skyandsand/seeking-any-help-resources-for-macos-logging-using-splunk-487g
security
We need to index system logs from about 100 Macs using Splunk. I have more experience with iOS mobile device management rather than logging with Mac. If anyone has any pointers I'll post updates here. Thanks! Update (January 2020):: Apple has an entirely new binary, database format for logging their os. This prevent...
skyandsand
223,039
Frameworks can be frustrating sometimes
Frameworks, like wordpress, joomla, cake php, spring, cordova and so on, can really be a pain in the...
0
2019-12-18T12:41:01
https://dev.to/webmaster_chuks/frameworks-can-be-frustrating-sometimes-16hi
wordpress, joomla, cakephp, cordova
Frameworks, like wordpress, joomla, cake php, spring, cordova and so on, can really be a pain in the ass. They don't give you enough flexibility to adjust what you need to. You are typically at the mercy of their community. You always need to work within the frame, except you are a good programmer you can study the f...
webmaster_chuks
223,118
How to Use GitHub Pages
How to Use GitHub Pages GitHub Pages can serve static content for free using your GitHub a...
0
2019-12-18T15:18:38
https://dev.to/brunodrugowick/how-to-use-github-pages-j7d
github, jekyll, ruby
# How to Use GitHub Pages GitHub Pages can serve static content for free using your GitHub account. I use Jekyll to theme and blog on [drugo.dev](https://drugowick.dev) (and the irony is that I'm moving to [dev.to](https://dev.to) now - more on that later). Whenever you commit to your GitHub Pages repository, [Jekyll]...
brunodrugowick
223,246
No More Tears, No More Knots: Arena-Allocated Trees in Rust
An overview of region-based memory management for constructing trees and graphs in Rust
0
2019-12-19T00:02:13
https://dev.to/deciduously/no-more-tears-no-more-knots-arena-allocated-trees-in-rust-44k6
rust, beginners, tutorial, devjournal
--- title: No More Tears, No More Knots: Arena-Allocated Trees in Rust published: true description: An overview of region-based memory management for constructing trees and graphs in Rust cover_image: https://thepracticaldev.s3.amazonaws.com/i/0qfm7joaxu4bvp13w618.jpg tags: rust, beginners, tutorial, devjournal --- ##...
deciduously
223,285
More Holiday Gifts for DEVs
A gifting guide focused on supporting coders for the 2019 holiday season.
3,526
2019-12-19T23:42:12
https://dev.to/devteam/more-holiday-gifts-for-devs-24d6
2019holiday, gift
--- title: More Holiday Gifts for DEVs published: true series: 2019 Holiday Gift Guides description: A gifting guide focused on supporting coders for the 2019 holiday season. tags: 2019holiday, gift --- Treat yourself and loved ones this holiday season with more gift ideas from DEV! This guide is themed to offer up su...
devencourt
223,291
How I Got 10k stars on my Github Repository?
When I was in University, I missed a lot of opportunities like hackathons, conferences, internships a...
0
2019-12-19T04:27:13
https://dev.to/dipakkr/how-i-got-10k-stars-on-my-github-repository-13dj
github, beginners, sideprojects
When I was in University, I missed a lot of opportunities like hackathons, conferences, internships and many global events due to lack of awareness. Being a freshman, I was not aware of what kind of opportunities were available for students. Of course, We get to know about this thing with time and active involvement in...
dipakkr
223,371
Bash Variables: To quote, or not to quote...
echo "$VARIABLE" Should you ALWAYS wrap your variables in quotes??? Some would say, "Yes! Absolute...
0
2019-12-18T19:09:54
https://dev.to/jimmymcbride/bash-variables-to-quote-or-not-to-quote-3c6o
bash, productivity, discuss
> echo "$VARIABLE" Should you ALWAYS wrap your variables in quotes??? Some would say, "Yes! Absolutely, always wrap your variables in quotes. Just to be safe!" Well, I say, "You do you, dawg". Fortunately, I'm not just going to leave you hanging there. Let's explore the differences between wrapping our variables in ...
jimmymcbride
223,382
This is my new favorite (free) programming tool – GitHub Actions Tutorial
I've tinkered with a ton of programming tools this year, but none of them has captured my heart like...
0
2019-12-19T15:41:46
https://bytesized.xyz/github-actions-tutorial/
webdev, tutorial, showdev
I've tinkered with a ton of programming tools this year, but none of them has captured my heart like [GitHub Actions](https://www.github.com/features/actions). It's a continuous integration tool, yes, but it's also a general purpose code execution platform, and it's built into the website that I use to manage my projec...
signalnerve
229,450
Testing in 2019, according to my Twitter bookmarks
I’m not a particularly active twitter user, but I do find it a great way to get a wider perspective...
0
2020-01-01T00:06:42
https://gerg.dev/2019/12/testing-2019-on-twitter/
testing, twitter, yearinreview
--- title: Testing in 2019, according to my Twitter bookmarks published: true date: 2019-12-31 15:00:35 UTC tags: testing, twitter, yearinreview canonical_url: https://gerg.dev/2019/12/testing-2019-on-twitter/ --- I’m not a particularly active twitter user, but I do find it a great way to get a wider perspective on so...
gpaciga
230,437
How to prepare for DevOps & SRE interviews?
Note: the following is opinionated. Note2: the most updated version of this post is located in my Git...
0
2020-01-02T16:41:31
https://dev.to/abregman/how-to-prepare-for-devops-sre-interviews-enj
devops, career, linux
Note: the following is opinionated. Note2: the most updated version of this post is located in my GitHub [project](https://github.com/bregman-arie/devops-interview-questions/blob/master/prepare_for_interview.md) ### Skills you should have #### Linux Every DevOps Engineer should have a deep understanding of at lea...
abregman
230,598
Using Python to create PostgreSQL tables with random schema
Having a large amount of test data sometimes take a lot of effort, and to simulate a more realistic...
4,109
2020-01-02T18:20:28
https://dev.to/mesmacosta/using-python-to-create-postgresql-tables-with-random-schema-2100
postgres, database, metadata, python
Having a large amount of test data sometimes take a lot of effort, and to simulate a more realistic scenario, it’s good to have a large number of tables with distinct column types. This script generates random tables schema for PostgreSQL. If you want to set up a PostgreSQL environment for dev and test purposes, take...
mesmacosta
328,769
Working with Data
2. Working with Data 2.1. Lists We’ve already seen quick introduction to lists in the previous articl...
6,570
2020-05-06T13:08:53
https://dev.to/estherwavinya/working-with-data-5ec0
python, beginners, codenewbie, writing
**2. Working with Data** **2.1. Lists** We’ve already seen quick introduction to lists in the previous article. ``` >>> [1, 2, 3, 4] [1, 2, 3, 4] >>> ["hello", "world"] ["hello", "world"] >>> [0, 1.5, "hello"] [0, 1.5, "hello"] >>> [0, 1.5, "hello"] [0, 1.5, "hello"] ``` A List can contain another list as member. ``` >...
estherwavinya
230,617
How to Use Make Auth in Laravel 6
In this article, we will discuss “how to use make auth in Laravel 6”. Officiall...
0
2020-01-02T18:47:07
https://codebriefly.com/how-to-use-make-auth-in-laravel-6/
laravel, laravel6, auth, laravelauthenticati
--- title: How to Use Make Auth in Laravel 6 published: true date: 2019-09-25 19:43:18 UTC tags: Laravel,Laravel 6,Auth,Laravel Authenticati canonical_url: https://codebriefly.com/how-to-use-make-auth-in-laravel-6/ --- ![how-to-use-make-auth-in-laravel-6](https://codebriefly.com/wp-content/uploads/2019/09/how-to-use-...
erpankajsood
230,618
Laravel Scout with TNTSearch Driver
In this article, we will discuss “Laravel Scout with TNTSearch Driver”. As we k...
0
2020-01-02T18:51:46
https://codebriefly.com/laravel-scout-with-tntsearch-driver/
laravel, laravel6, laravelcodesnippet
--- title: Laravel Scout with TNTSearch Driver published: true date: 2019-10-03 20:00:04 UTC tags: Laravel,Laravel 6,Laravel Code Snippet canonical_url: https://codebriefly.com/laravel-scout-with-tntsearch-driver/ --- ![Laravel Scout with TNTSearch Driver](https://codebriefly.com/wp-content/uploads/2019/10/laravel-sc...
erpankajsood
230,626
Brief Understanding Laravel Scopes
In this article, we will discuss “Brief Understanding Laravel Scopes”. I will t...
0
2020-01-02T18:49:20
https://codebriefly.com/brief-understanding-laravel-scopes/
laravel, laravel57, laravel58, laravel6
--- title: Brief Understanding Laravel Scopes published: true date: 2019-11-25 15:21:09 UTC tags: Laravel,Laravel 5.7,Laravel 5.8,Laravel 6 canonical_url: https://codebriefly.com/brief-understanding-laravel-scopes/ --- ![Brief Understanding Laravel Scopes](https://codebriefly.com/wp-content/uploads/2019/11/brief-unde...
erpankajsood
230,636
Organized Rails application with interactors and utilities
This article was originally published here. If you have ever used Rails, you know that there is no...
0
2020-01-02T19:08:37
https://dev.to/stojakovic99/organized-rails-application-with-interactors-and-utilities-3m9l
ruby, rails, codequality
*This article was originally published [here](https://nikolastojakovic.com/2020/01/02/organized-rails-application-with-interactors-and-utilities/).* If you have ever used Rails, you know that there is no better thing for quick prototyping. It doesn’t matter how easy is your favorite framework for that. Rails will be d...
stojakovic99
236,674
Execute Django tests in your github actions
When you are trying github actions with your django project, and your database is for example, Postgr...
0
2020-01-12T15:31:25
https://dev.to/gamorales/execute-django-tests-in-your-github-actions-ckg
django, testing, github, actions
When you are trying github actions with your django project, and your database is for example, PostgreSQL, could be a problem running tests in the workflow (personal experience 😋). The problem is, you don't have an environment or DB engine running inside github actions platform, neither a server where github actions ...
gamorales
230,638
Uno Platform 2.0 RELOADED – General Availability, Hot Reload and more!
In September 2019 at our inaugural UnoConf, we had released the preview of Uno Platform 2.0. Today...
0
2020-02-20T14:07:25
https://platform.uno/uno-platform-2-0-reloaded-general-availability-hot-reload-and-more/
news, android, csharp, ios
--- title: Uno Platform 2.0 RELOADED – General Availability, Hot Reload and more! published: true date: 2020-01-02 18:06:48 UTC tags: News,Android,csharp,iOS canonical_url: https://platform.uno/uno-platform-2-0-reloaded-general-availability-hot-reload-and-more/ --- ![](https://s3.amazonaws.com/uno-website-assets/wp...
unoplatform
230,642
An Inclusive Cross-Device Testing Checklist
Here’s my web compatibility checklist that includes comprehensive accessibility testing. Ph...
0
2020-01-02T19:48:56
https://dev.to/mpuckett/an-inclusive-cross-device-testing-checklist-2h6n
webdev, a11y, qa, html
--- title: An Inclusive Cross-Device Testing Checklist published: true description: tags: #webdev #a11y #qa #html --- Here’s my web compatibility checklist that includes comprehensive accessibility testing. ## Physical Devices I’m testing with the following real devices: * MacBook * iPhone with a notch * Pixel wit...
mpuckett
230,683
Node, Express, SSL Certificate: Run HTTPS Server from scratch in 5 steps
Node, Express, SSL Certificate: Run HTTPS Server from scratch in 5 steps I've decided to write abo...
0
2020-01-02T21:17:06
https://dev.to/omergulen/step-by-step-node-express-ssl-certificate-run-https-server-from-scratch-in-5-steps-5b87
beginners, tutorial, javascript, node
> Node, Express, SSL Certificate: Run HTTPS Server from scratch in 5 steps I've decided to write about this tutorial after I struggled while I was coding one of my web apps for a customer. It was a simple chart for the web but it was collecting data on a Telegram Bot. Held the data in MongoDB and prepared a quick API ...
omergulen
230,744
DevOps engineer trainee
A post by Terry
0
2020-01-02T22:24:29
https://dev.to/cosky5/devops-engineer-trainee-hfh
cosky5
230,749
Acoustic Atlas @ Web Audio Conference
Art Piece at Web Audio Conference 2019
0
2020-01-02T22:33:38
https://dev.to/guergana/acoustic-atlas-web-audio-conference-59le
webaudio, acoustics, javascript, tonejs
--- title: Acoustic Atlas @ Web Audio Conference published: true description: Art Piece at Web Audio Conference 2019 tags: webaudio, acoustics, javascript, tonejs --- Last year I participated in the Web Audio Conference with [Cobi van Tonder](https://www.otoplasma.com/) presenting a website called [Acoustic Atlas](htt...
guergana
235,503
Jan. 10, 2020: What did you learn this week?
It's that time of the week again. So wonderful devs, what did you learn this week? It could be progra...
3,902
2020-01-10T05:14:27
https://dev.to/nickytonline/jan-10-2020-what-did-you-learn-this-week-2b9c
weeklylearn, discuss, weeklyretro
It's that time of the week again. So wonderful devs, what did you learn this week? It could be programming tips, career advice etc. ![Two hockey players reading a play book](https://media.giphy.com/media/OqJdvB5VyUUqNoZdjO/giphy-downsized-large.gif) Feel free to comment with what you learnt and/or reference your TIL ...
nickytonline
231,582
I implemented a sample Django app written in Hylang.
I wrote the app. The above is written in Hylang with Django and Django REST framework. ...
0
2020-01-04T07:35:01
https://dev.to/tqm1990/an-app-as-a-sample-implementation-using-django-rest-and-hylang-1h4o
hy, hylang, django, lisp
--- title: I implemented a sample Django app written in Hylang. published: true description: tags: hy, hylang, django, lisp --- I wrote [the app](https://github.com/charlie-browns/django-app-with-hylang). The above is written in Hylang with Django and Django REST framework. ## TODO Hylang is one of a Lisp dialect....
tqm1990
232,720
What I learned about my brain from playing 300+ hours of Stardew Valley
Yes, I got the Switch at the start of November. This skin is my aesthetic. It’s from decalgirl.com...
0
2020-01-06T17:39:50
https://heidiwaterhouse.com/2020/01/05/what-i-learned-about-my-brain-from-playing-300-hours-of-stardew-valley/
life, add, adhd, burnout
--- title: What I learned about my brain from playing 300+ hours of Stardew Valley published: true date: 2020-01-05 19:02:17 UTC tags: Life,add,adhd,burnout canonical_url: https://heidiwaterhouse.com/2020/01/05/what-i-learned-about-my-brain-from-playing-300-hours-of-stardew-valley/ --- Yes, I got the Switch at the sta...
wiredferret
235,296
Stream in 2020
2019 has been an exciting year for Stream. The team doubled, our customers doubled, and we launched o...
0
2020-01-09T16:36:55
https://getstream.io/blog/stream-in-2020/
recap, programming, chat, feeds
2019 has been an exciting year for Stream. The team doubled, our customers doubled, and we launched our second product – [Stream Chat](https://getstream.io/chat/). It’s been great to see how well our chat product has been received and how quickly it has grown. This would not have been possible without the trust and sup...
nickparsons
235,387
NoSql but with SQL
Couchbase I am so much comfortable with PHP and MariaDB &amp;&amp; MySql || Sqlite3 I ❤️ c...
0
2020-01-09T19:51:45
https://dev.to/cemkaanguru/day16-2p7o
100daysofcode, couchbase, nosql, sql
#Couchbase I am so much comfortable with PHP and MariaDB && MySql || Sqlite3 I ❤️ couchbase in JS. Enterprise-Class, Multicloud To Edge NoSQL Database ###And it is NoSql but with SQL [![View on vgy.me](https://i.vgy.me/yk2R9f.png "View yk2R9f.png on vgy.me")](https://vgy.me/u/yk2R9f) https://www.couchbase.com/ https...
cemkaanguru
235,488
Redux 101
Intro to redux
0
2020-01-11T17:04:21
https://irian.to/blogs/redux-101
redux, react, javascript, frontend
--- title: Redux 101 published: true description: Intro to redux tags: redux, react, javascript, frontend canonical_url: https://irian.to/blogs/redux-101 --- This is part one of two Redux mini-series. - *Part one*: Understanding Redux - [*Part two*: Setting up Redux and React app](https://dev.to/iggredible/redux-101...
iggredible
235,547
I Asked Hiring Managers How to Answer Common Behavioral Questions
Anyone making a career change soon? I’ve asked a handful of senior FAANG employees heavily involved w...
0
2020-01-10T06:38:02
https://dev.to/rooftopslushie/hiring-managers-share-how-to-answer-behavioral-interview-questions-52a1
career, webdev, beginners
Anyone making a career change soon? I’ve asked a handful of **senior FAANG employees heavily involved with the hiring process** to hopefully help you with your next behavioral interview round! This post might get a liittle long, so please feel free to click on the hyperlink that you're more interested in. 😇 ## Comm...
rooftopslushie
235,592
Fixing My Embargo: Setting up a Cron Job
I wrote previously about setting up a simple embargo on my Gatsby site in the past. Even when I first...
0
2020-02-19T15:18:24
https://stephencharlesweiss.com/blog/2020-01-10/fix-embargo-cron-github-actions/
cron, githubactions
--- title: Fixing My Embargo: Setting up a Cron Job published: true date: 2019-12-27 00:00:00 UTC tags: cron, github actions canonical_url: https://stephencharlesweiss.com/blog/2020-01-10/fix-embargo-cron-github-actions/ --- I wrote previously about [setting up a simple embargo](stephencharlesweiss.com/blog/2019-10-16...
stephencweiss
235,607
Create a Blog in Less Than 20 Lines of Code Using 11ty
In this blog post, I will show you how easy it is to create a personal website with a blog page using 11ty.
0
2020-01-10T09:36:45
https://dev.to/oohsinan/create-a-blog-in-less-than-20-lines-of-code-using-11ty-3oh0
beginners, tutorial, webdev, 11ty
--- title: Create a Blog in Less Than 20 Lines of Code Using 11ty published: true description: In this blog post, I will show you how easy it is to create a personal website with a blog page using 11ty. tags: beginners, tutorial, webdev, 11ty cover_image: https://i.imgur.com/rfruTyZ.png --- <small>This was originally ...
oohsinan
235,646
My Vanilla JavaScript Built-In Web Elements Collection
A collection of 10 built-in web elements
0
2020-01-10T18:27:15
https://dev.to/felipperegazio/my-vanilla-javascript-built-in-web-elements-collection-3moo
showdev, frontend, javascript, webdev
--- title: My Vanilla JavaScript Built-In Web Elements Collection published: true description: A collection of 10 built-in web elements tags: #showdev #frontend #javascript #webdev --- So i wrote this elements collection. The Built-In Web Elements are part of the "Web Components" specs. They allow us to extend standar...
felipperegazio
235,753
How to Add an Item to a List in Python: Append, Slice Assignment, and More
Lately, I’ve been thinking about new Python topics to write about, so I took to Google. When I search...
433
2020-07-26T03:59:12
https://therenegadecoder.com/code/how-to-add-an-item-to-a-list-in-python/
python, challenge, performance
Lately, I’ve been thinking about new Python topics to write about, so I took to Google. When I searched “Python how to”, “Python how to add to a list” popped up first. Since this must be a popular search term, I decided it was worth an article. In other words, today we’ll learn how to add an item to a list in Python. ...
renegadecoder94
235,802
31 character password length limit in Mojave
OSX, at least Mojave, has a 31 character password limit.
0
2020-01-10T17:06:44
https://dev.to/apetro/31-character-password-length-limit-in-mojave-1gp4
mac, security
--- title: 31 character password length limit in Mojave published: true description: OSX, at least Mojave, has a 31 character password limit. tags: mac, security cover_image: https://thepracticaldev.s3.amazonaws.com/i/l7c88rbejoa148mqddlm.jpg --- Today I learned that [Mojave has a 31 character password limit](https://...
apetro
235,803
How to authenticate with Google Oauth in Electron
Last month, we started to get concerning bug reports from our users that they couldn’t authenticate w...
0
2020-01-10T17:44:31
https://pragli.com/blog/how-to-authenticate-with-google-in-electron/
development
--- title: How to authenticate with Google Oauth in Electron published: true date: 2020-01-10 16:45:50 UTC tags: Development canonical_url: https://pragli.com/blog/how-to-authenticate-with-google-in-electron/ cover_image: https://pragli.com/blog/content/images/size/w640/2019/12/desktop-authentication-communication-1.pn...
virtuallyvivek