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 |
|---|---|---|---|---|---|---|---|---|
170,143 | R Programming for Beginners | R programming has been the most promising language when it comes to data analytics and machine learni... | 0 | 2019-09-14T05:54:02 | https://dev.to/smriti07081994/r-programming-for-beginners-2go4 | rprogramming, rprogrammingfordatascience | R programming has been the most promising language when it comes to data analytics and machine learning as it is equipped with a wide array of functionalities. We are offering the top r programming tutorial that can be watched by anybody to learn r language. Our r programming tutorial has been created with extensive in... | smriti07081994 |
170,164 | More time coding, less time debugging. Interfaces in TypeScript applications | The goal of this article is to deepen your understanding of what interfaces are, not just how to... | 0 | 2019-11-18T03:29:11 | https://dev.to/keevcodes/more-time-coding-less-time-debugging-interfaces-in-javascript-applications-31f7 | javascript, beginners, typescript | ---
title: More time coding, less time debugging. Interfaces in TypeScript applications
published: true
description:
tags: #javascript #beginner #typescript
cover_image: https://user-images.githubusercontent.com/17259420/69008258-d7245800-0948-11ea-885e-dfa89c6f554a.jpeg
---
*The goal of this article is to deepen y... | keevcodes |
170,192 | postgexecute.net is not ORM | postgexecute.net is lightweight wrapper around NpgsqlConnection object to facilitate simple PostgreSQ... | 0 | 2019-09-14T09:56:05 | https://dev.to/vbilopav/postgexecute-net-is-not-orm-ljd |
[postgexecute.net](https://github.com/vbilopav/postgrest.net/blob/master/PostgExecute.Net/README.md) is lightweight wrapper around `NpgsqlConnection` object to facilitate simple `PostgreSQL` execution and data retrieval in .NET Core.
**This is NOT an ORM**
I repeat:
**This is NOT an ORM**
> - **There is not data c... | vbilopav | |
170,233 | What is your go to solution for global state management in React? | Was just curious to know which utility you guys depend on in-order to manage state globally within yo... | 0 | 2019-09-14T13:05:28 | https://dev.to/jamesgeorge007/what-is-your-go-to-solution-for-global-state-management-in-react-4ali | javascript, react, redux, discuss | Was just curious to know which utility you guys depend on in-order to manage state globally within your React app. Whether it would be Redux, Mobx, Context API or other third party choices, leave down your thoughts below :) | jamesgeorge007 |
170,421 | Document Yourself: A Framework for Career Advancement | Update: I created interactive versions of the worksheet. Tell me your awesome achievements so I can b... | 0 | 2019-09-14T21:32:28 | https://dev.to/michellelynneb/document-yourself-a-framework-for-career-advancement-j9p | career, writing, motivation | *Update: I created interactive versions of the worksheet. Tell me your awesome achievements so I can brag about them!*
* [Success Statements](https://forms.gle/7DPTHKTe4dZjGzCe7)
* [Brag Sheet](https://forms.gle/XFz1kFAzfpDiFcXSA)
* [Elevator Pitch](https://forms.gle/wva3amUM6W4i7cwMA)
As an engineer, the dream wo... | michellelynneb |
170,482 | HealthCare App: Can Personal BioMetric Data Be Monetized? | With the recent popularity of database and network businesses like 23 and Me and Ancestry, is it poss... | 0 | 2019-09-15T01:00:29 | https://dev.to/roddy217/healthcare-app-can-personal-biometric-data-be-monetized-296a | webdev, startup, discuss | With the recent popularity of database and network businesses like 23 and Me and Ancestry, is it possible to monetize your Biometric data yourself?
If people are curious enough to pay $200 to view detailed data about how they compare to others, what if you offered that same type of data to people who are curious to kn... | roddy217 |
171,030 | Looking for the best resources to learn Redux | I am just starting to learn redux but i have found it a little harder than the other technologies i h... | 0 | 2019-09-15T10:47:20 | https://dev.to/ambrosebyamugisha/looking-for-the-best-resources-to-learn-redux-54bc | javascript, react, redux | I am just starting to learn redux but i have found it a little harder than the other technologies i had learnt earlier, i wanted to know the best way i can learn redux. | ambrosebyamugisha |
171,221 | Intro to Neo4r, the movie | Have you ever used Neo4j? If you haven't here's a little introduction: Neo4j is the world’s leadi... | 0 | 2019-10-20T17:34:59 | https://dev.to/chucheria/intro-to-neo4r-the-movie-54i8 | r, neo4j | Have you ever used [Neo4j](https://neo4j.com)?
If you haven't here's a little introduction:
> Neo4j is the world’s leading graph database. Its architecture is designed for optimal management, storage and traversal of nodes and relationships. The database takes a property graph approach which is beneficial for both t... | chucheria |
171,226 | Building a project with TypeScript, Express, Mocha and Chai | What are we going to build? We are going to create a TypeScript project for writing an Exp... | 0 | 2019-09-15T17:57:15 | https://dev.to/oliverjumpertz/building-a-project-with-typescript-express-mocha-and-chai-13fc | programming, typescript, tutorial | ## What are we going to build?
We are going to create a TypeScript project for writing an Express.js API. We will start by setting everything up, mixing in TSLint, adding Mocha and Chai for tests, and will then use webpack to create a bundled JS file, which can be run with node, out of the box, without anything else ne... | oliverjumpertz |
171,314 | While Loop in Dart | While loop is a type of indefinite loop. The while loop executes the block of code until the... | 0 | 2019-09-15T22:53:57 | https://dev.to/jay_tillu/while-loop-in-dart-21og | dart, todayilearned, beginners, code | * **While loop** is a type of indefinite loop.
* The while loop executes the block of code until the condition is true.
* We mostly use while loop when we don’t know how many times the loop will actually execute at runtime.
* In simple terms when iterations of a loop are known then we mainly use for loop and whe... | jay_tillu |
171,324 | Functions in Dart | A function is a group of statements that perform a specific task. Functions are mostly used to... | 0 | 2019-09-15T23:12:08 | https://dev.to/jay_tillu/functions-in-dart-4795 | dart, todayilearned, beginners, code | * A function is a group of statements that perform a specific task.
* Functions are mostly used to automate the repeated task. They are basically used to divide the large program into smaller chunks.
* Divide our program into smaller chunks makes it more organized and manageable. Also, it avoids repetition and ma... | jay_tillu |
171,377 | Optional arguments in Dart | In normal case, if you declare a function and it’s arguments, then you have to specify each... | 0 | 2019-09-16T02:45:15 | https://dev.to/jay_tillu/optional-arguments-in-dart-1e85 | dart, todayilearned, beginners | * In normal case, if you declare a function and it’s arguments, then you have to specify each argument’s value. But what we will do if we want our arguments to be optional.
* Optional arguments mean if you specify that argument’s value then its okay and if you don’t specify its value then also its okay. Its not ma... | jay_tillu |
171,400 | Create a twitch clone using React -2 | Welcome to Part-2 of the series. In this part , we will create Authentication to login to our App. W... | 2,281 | 2019-09-16T04:14:48 | https://thewebdev.tech/create-twitch-clone-react-2 | react, javascript, webdev | Welcome to Part-2 of the series. In this part , we will create Authentication to login to our App.
We will use google OAuth authentication. So, head over to [https://console.developers.google.com/](https://console.developers.google.com/)
Once, you logging with your google account you will find a Dashboard already ope... | nabendu82 |
171,416 | 8 Best Tips for Remote Teams to Boost Productivity at Virtual Office | We are living in a fast-paced society where everything needs to be done quickly without any hassles.... | 0 | 2019-09-16T04:58:39 | https://dev.to/olivier32621338/8-best-tips-for-remote-teams-to-boost-productivity-at-virtual-office-a9i | productivity | We are living in a fast-paced society where everything needs to be done quickly without any hassles. Nothing kills joy and productivity more than being chained to a desk for 8 hours a day and 5 days a week. Managers have found a better way to boost productivity and save infrastructure cost by supporting remote work for... | olivier32621338 |
171,448 | Dependency Mocks - A Secret Weapon for Vue Unit Tests | "If your Vue single-file components have dependencies, you'll need to handle those dependencies in unit tests. In this article, you'll learn how to mock dependencies in Jest by replacing them in the component's dependency graph." | 0 | 2019-09-16T00:00:00 | https://dev.to/anthonygore/dependency-mocks-a-secret-weapon-for-vue-unit-tests-3af | vue, jest, testing | ---
title: Dependency Mocks - A Secret Weapon for Vue Unit Tests
published: true
description: "If your Vue single-file components have dependencies, you'll need to handle those dependencies in unit tests. In this article, you'll learn how to mock dependencies in Jest by replacing them in the component's dependency gra... | anthonygore |
171,451 | ⚡ Leverage Serverless Microsoft Azure Functions and Azure Alerts to ensure application availability | Table Of Contents Overview Scenario Leverage Serverless Microsoft Azure Functions to aut... | 0 | 2019-09-16T15:35:43 | https://dev.to/daverendon/leverage-serverless-microsoft-azure-functions-and-azure-alerts-to-ensure-application-availability-2l73 | serverless, azure, azurefunctions, devops |
## Table Of Contents
* [Overview](#Overview)
* [Scenario](#Scenario)
* [Leverage Serverless Microsoft Azure Functions to automate resource deployment via Azure Resource Manager](#Leverage Serverless Microsoft Azure Functions to automate resource deployment via Azure Resource Manager)
+ [Provision Azure Function]... | daverendon |
171,472 | Accepting Technical Debt As Important As Fighting It | I was sixteen when I first read The Pragmatic Programmer. Back then, my programming career was in its... | 0 | 2019-09-16T09:07:06 | https://dev.to/shubhamjain/accepting-technical-debt-as-important-as-fighting-it-25el | productivity, codequality, webdev | ---
title: Accepting Technical Debt As Important As Fighting It
published: true
description:
tags: productivity, codequality, webdev
---
I was sixteen when I first read [The Pragmatic Programmer](https://www.amazon.in/Pragmatic-Programmer-Journeyman-Master-ebook/dp/B003GCTQAE). Back then, my programming career was in... | shubhamjain |
171,521 | Cleaning up your code? Here is what VS 2019 has for you. | Article about a new feature called Code Cleanup in Microsoft visual studio 2019 | 2,287 | 2019-09-16T10:35:46 | https://dev.to/gopkumr/clean-your-code-using-code-cleanup-in-visual-studio-2019-3k9a | visualstudio, visualstudio2019, microsoftvisualstudio | ---
title: Cleaning up your code? Here is what VS 2019 has for you.
published: true
description: Article about a new feature called Code Cleanup in Microsoft visual studio 2019
tags: VisualStudio, VisualStudio2019, Microsoft VisualStudio
series: New in Visual Studio 2019
---
All we developers would have spent time in ... | gopkumr |
171,708 | Angular + Bazel: Getting ready! | In this post, I'll make an introduction to what is Bazel, how to use it with the Angular CLI and why... | 0 | 2019-09-26T20:45:44 | https://dev.to/thisdotmedia/angular-bazel-getting-ready-4b0i | angular, bazel | ---
title: Angular + Bazel: Getting ready!
published: true
description:
tags: Angular, Bazel
---
In this post, I'll make an introduction to what is Bazel, how to use it with the Angular CLI and why it's a good idea to adopt it.
### What is Bazel?
Bazel is a build tool/system with multi-language capabilities develope... | flakolefluk |
171,762 | Let's vote for dev.to dark mode! | I think if we push hard enough it will happen! | 0 | 2019-09-16T20:45:41 | https://dev.to/codingcatdev/let-s-vote-for-dev-to-dark-mode-1ecc | discuss | ---
title: Let's vote for dev.to dark mode!
published: true
description: I think if we push hard enough it will happen!
tags: discuss
cover_image: https://thepracticaldev.s3.amazonaws.com/i/cudlrpbnfabcg87hko7h.png
---
## Heart this post for some dark mode!
 { return <div>test</div> }
_____________________________________________
export defa... | gundogduyakici |
172,097 | Making Maps with Markers | Getting started with Google Maps is a walk in the park if you have the right tools. Firstly, you will... | 0 | 2019-09-17T15:51:04 | https://dev.to/bjfairchild/making-maps-with-markers-2dc7 | javascript | Getting started with Google Maps is a walk in the park if you have the right tools. Firstly, you will need to add the Google Maps Geocoding API to your project. You can obtain an API key here:
https://developers.google.com/maps/documentation/geocoding/get-api-key
Geocoding is the process of converting addresses (like... | bjfairchild |
172,105 | Code Story E7: Jonathan Campos on Determining Priorities | After getting his masters, Jonathan Campos found himself working with clients, listening to their... | 0 | 2019-09-18T19:10:42 | https://dev.to/codestory/code-story-e7-jonathan-campos-on-determining-priorities-18hn | codestory, podcast | {% youtube VIKWAs2VEus %}
After getting his masters, Jonathan Campos found himself working with clients, listening to their pain points, and creating software to meet those needs. He worked his way through a handful of startups and agencies, before landing at Bottle Rocket as the chief architect, growing their web and... | deeechap |
172,155 | How to create Mobile games & PWA with Ionic 4 and Phaser | You can find the complete code in the Ionic 4 Phaser Starter Ionic platform has become one of the... | 0 | 2019-09-17T17:51:11 | https://enappd.com/blog/how-to-create-mobile-games-pwa-with-ionic-4-and-phaser/19/ | ionic, phaser, pwa, games | <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... | iamsanchitgupta |
172,163 | Programming Parody Songs that Need to be Written | If there's anything I like, it's a good parody. There's just something about the deconstructive natur... | 0 | 2019-09-17T18:06:31 | https://dev.to/overscoremedia/programming-parody-songs-that-need-to-be-written-hmo | music, goof, programming, parody | If there's anything I like, it's a good parody. There's just something about the deconstructive nature of a parody that appeals to me for some reason. Maybe, it's for the satirical nature of some parodies that use humour to get across points that would be difficult to communicate otherwise. Perhaps it's because it can ... | mtpiercey |
172,175 | How would you teach a CompSci class? | I'm teaching an adult/continuing education class on Swift using the Pearson Certification course, and... | 0 | 2019-09-17T18:39:27 | https://dev.to/mikol/how-would-you-teach-a-compsci-class-5he9 | discuss, advice, swift | ---
title: How would you teach a CompSci class?
published: true
description:
tags: discuss, advice, swift
---
I'm teaching an adult/continuing education class on Swift using the Pearson Certification course, and I'm in a jam - it's designed to be a ~46 hour certification, but we only have 14 hours of class time. I'm n... | mikol |
172,217 | Must have tool for a Terminal User - FZF "Terminal Fuzzy Finder" [Video Included] | fzf is amazing, let me tell you and show you (video at end) why! fzf is a Terminal Fuzzy Finder, tha... | 0 | 2019-09-17T20:31:51 | https://dev.to/kardelio/must-have-tool-for-a-terminal-user-fzf-terminal-fuzzy-finder-video-included-4n08 | terminal, unix, linux, devops | fzf is amazing, let me tell you and show you (video at end) why!
fzf is a Terminal Fuzzy Finder, that essentially means that you can pass fzf a list of anything and fzf will turn that list into a search bar with a up & down arrow key menu for you, as you type your search fzf will try and guess what you wanted to find ... | kardelio |
172,284 | Azure Cloud Shell | PowerShell Core | Microsoft Docs 📚 | Utilizando o Azure Cloud Shell direto do Microsoft Docs. E ae, beleza, pessoal? Trazendo h... | 0 | 2019-09-23T03:05:34 | https://dev.to/ewertonjordao/azure-cloud-shell-powershell-core-microsoft-docs-2fho | azure, powershellcore, azurecloudshell | #Utilizando o Azure Cloud Shell direto do Microsoft Docs.
E ae, beleza, pessoal? Trazendo hoje uma ótima forma de utilizar o **Azure Resource Manager** (Através do módulo PowerShell Az), pra quem quer aprender a utilizar o módulo, ou aquele dia que a memória não nos ajuda 😅. É possível iniciar uma sessão do Azure Clo... | ewertonjordao |
172,354 | Bootstrap Vertical, Horizontal, and Inline Form | Bootstrap form layout vertical form, horizontal form, and inline form will be discussed in this artic... | 0 | 2019-09-18T06:48:35 | https://speedysense.com/bootstrap-vertical-horizontal-inline-forms-example/ | bootstrap, form, layout, html | Bootstrap form layout vertical form, horizontal form, and inline form will be discussed in this article. Forms are an essential part of almost every website to collect user input data. In <a href="https://speedysense.com/bootstrap-vertical-horizontal-inline-forms-example/">this article</a>, we will learn how to create ... | speedysense |
172,613 | My 2019 Year In Review | Early this year, I read Prosper's 2018 year review and it inspired me to do and accomplish a lot and... | 0 | 2019-12-31T11:12:56 | https://blog.ezekielekunola.com/my-2019-year-in-review | yearinreview, career, showdev, 2019 | Early this year, I read [Prosper's 2018 year review](https://medium.com/@unicodeveloper/2018-in-review-shattering-expectations-9418f2d720cc) and it inspired me to do and accomplish a lot and is also the reason I've decided to also start writing my year review as well.
2019 has been a year of ups and downs for me, most... | easybuoy |
172,625 | Parameters in Dart | Hi there! in the last post we've been talking about variables and functions. If you missed it, you ca... | 2,324 | 2019-09-18T18:10:02 | https://www.codingpizza.com/en/parameters-in-dart/ | dart, codenewbie |
Hi there! in the last post we've been talking about **variables** and **functions.** If you missed it, you can check our previous post here.
### **[Variables](https://dev.to/codingpizza/variables-in-dart-4j63)**
### **[Functions](https://dev.to/codingpizza/functions-in-dart-175b)**
## We saw them previously.
On th... | gvetri |
172,670 | Rewind Files Before Reading | Suppose you have a form with a file input and you need to forward that file to an external service th... | 0 | 2019-09-18T20:50:32 | http://jetrockets.pro/blog/rewind-files-before-reading | rails, ruby | Suppose you have a form with a file input and you need to forward that file to an external service through your Rails app. Params will look like this:
```ruby
{ "file"=> #<ActionDispatch::Http::UploadedFile:0x00007fce9a8af140 @tempfile=#<Tempfile:/path/to/the/file.xlsx>, ... > }
```
The external service can not be ... | spitsman |
172,702 | Why You Should Be Using the Web Share API in Your PWA | The Web Share API is a browser feature that can boost your web app's user experience by unlocking the power of the device's native sharing UI. | 0 | 2019-09-18T23:04:57 | https://www.danielworsnup.com/blog/why-you-should-be-using-the-web-share-api-in-your-pwa/ | javascript, webdev, pwa, ux | ---
title: Why You Should Be Using the Web Share API in Your PWA
published: true
description: The Web Share API is a browser feature that can boost your web app's user experience by unlocking the power of the device's native sharing UI.
tags: javascript, webdev, pwa, ux
canonical_url: https://www.danielworsnup.com/blog... | worsnupd |
172,793 | Pushing Left, Like a Boss - Part 6: Threat Modelling | This article delves into the basics of threat modelling, also known as evil brainstorming. | 645 | 2019-09-19T18:19:20 | https://dev.to/azure/pushing-left-like-a-boss-part-6-threat-modelling-1j5g | applicationsecurity, tutorial, beginners, appsec | ---
title: Pushing Left, Like a Boss - Part 6: Threat Modelling
published: true
description: This article delves into the basics of threat modelling, also known as evil brainstorming.
series: Pushing Left Like a Boss
tags: applicationsecurity, tutorial, beginners, appsec
---
###This series, and my blog, have moved! [Ch... | shehackspurple |
172,974 | Build a complete app with React and GraphQL-3 | Welcome to part-3 of the series. This series have been inspired by this youtube tutorial from freecod... | 2,331 | 2019-09-19T15:06:17 | https://thewebdev.tech/app-with-react-graphql-3 | react, graphql, javascript, webdev | Welcome to part-3 of the series. This series have been inspired by [this](https://www.youtube.com/watch?v=ed8SzALpx1Q) youtube tutorial from freecodecamp.
We have added two more authors and some of their books, by the mutations from part-2.
.
* if value for input element is set across attribute, then when function focus() is called then cursor will set in start.
* if value for input element is set across property of value,... | georgmilevski |
173,300 | 10 things to keep in mind when performing a Windows Server backup | Here's what you need to know when backing up your Windows Server VMs | 0 | 2019-09-20T09:37:34 | https://dev.to/twaintaylor/10-things-to-keep-in-mind-when-performing-a-windows-server-backup-2pd | windowsserver, vmbackup, databackup | ---
title: 10 things to keep in mind when performing a Windows Server backup
published: true
description: Here's what you need to know when backing up your Windows Server VMs
tags: windows server, VM backup, data backup
---
Backups are extremely important for any business. Virtual machines are commonly used by various... | twaintaylor |
173,520 | How to Write Useful Commit Messages (My Commit Message Template) | We've all lived the XKCD about git commit messages at some point. I am no exception. This is what... | 2,050 | 2019-10-02T14:05:53 | https://dev.to/jacobherrington/how-to-write-useful-commit-messages-my-commit-message-template-20n9 | We've all lived the XKCD about git commit messages at some point.

I am no exception. This is what the commit messages for my blog look like:
```
fixxxx stu... | jacobherrington | |
173,549 | Write a simple DSL in Ruby | What is a DSL and what is it used for? A DSL (Domain Specific Language) can be thought of... | 0 | 2019-09-24T16:42:44 | https://dev.to/vinistock/write-a-simple-dsl-in-ruby-1jgi | ruby, rails, beginners, webdev | # What is a DSL and what is it used for?
A DSL (Domain Specific Language) can be thought of as a dialect built for a unique purpose. At the bottom, it is a set of functions that are made available to be used inside the given domain.
The syntax used in the `Gemfile`, `Rakefile` or in tests written with `rspec` are som... | vinistock |
173,584 | I'm a Code Thief(and Why You Should Be One Too) | I'm a code thief. Yeah, I said it. I should clarify, this does not mean that I go around copy-pas... | 0 | 2019-09-21T01:24:34 | https://dev.to/redpandaman7/i-m-a-code-thief-and-why-you-should-be-one-too-34eg | webdev, codenewbie, javascript | I'm a code thief.

Yeah, I said it.
I should clarify, this does not mean that I go around copy-pasting everything without doing anything and then putting my name on it. It does however mean, that I am all up in your github repositories and taking every... | redpandaman7 |
173,727 | Running app on iOS13/13.1.1 Device from XCODE 10.2 | iOS 13 is here along with XCODE 11. Hurrah!!!!!! With exciting dark theme on iOS and got full blown... | 0 | 2019-09-21T11:43:31 | https://dev.to/szashik440/running-app-on-ios13-device-from-xcode-10-2-lbh | ios, xcode, swift | iOS 13 is here along with XCODE 11. *Hurrah!!!!!!*

With exciting dark theme on iOS and got full blown [SwiftUI](https://developer.apple.com/documentation/swiftui) within hand, I just pumped up and went to get Xcode 11. But wait!! You need macOS Catalina(10.15)... | szashik440 |
173,816 | Piping Process Output in D | Update After a discussion on the D Forums, I've updated the talk program to utilize a simp... | 2,313 | 2019-10-26T17:12:50 | https://dev.to/jessekphillips/piping-process-output-1cai | dlang, tutorial | # Update
After a discussion on the D Forums, I've updated the talk program to utilize a simpler connection chain.
https://forum.dlang.org/post/hbrfvliocdfhtbfeuypw@forum.dlang.org
You will find the update on github [talk.d](https://github.com/JesseKPhillips/std.process-example/blob/master/talk.d).
# Background
Aft... | jessekphillips |
173,819 | Using multiple working trees in Git | Have you ever found yourself cloning a git repository a second time, so you could work on different... | 0 | 2019-09-21T17:07:34 | https://oliverjumpertz.com/using-multiple-working-trees-in-git/ | git, tutorial, productivity | Have you ever found yourself cloning a git repository a second time, so you could work on different things? Or have you ever had to stash all your changes, or make a quick commit, so you could shift your focus to solving a bug that was just reported from production?
Whether you have found yourself in such a situation ... | oliverjumpertz |
173,895 | Show me your Bash Functions / Aliases! | Do any of you have your favorite bash functions or aliases? I've always been a fan of quick "lightni... | 0 | 2019-09-21T23:19:11 | https://dev.to/flrichar/show-me-your-bash-functions-aliases-1gjd | linux, bash, showdev, discuss | Do any of you have your favorite bash functions or aliases? I've always been a fan of quick "lightning tips" that you can show maybe on one line, and do something specific.
Here are some of mine!
```bash
## timestamp dmesg with the current date, this sudo doesnt require password
alias datemsg='date | sudo tee /de... | flrichar |
174,912 | Design things and logic on my website | I recently launched my portfolio blog site and decided to tell about the little things in the design... | 0 | 2019-09-22T09:39:52 | https://dev.to/dtroode/design-things-and-logic-on-my-website-2o6p | gatsby, design, dark, javascript | I recently [launched](https://twitter.com/dtroode/status/1173643274256572416?s=20) my portfolio blog site and decided to tell about the little things in the design of [website](https://davidkistauri.ru). Some things I peeked on other blogs, like Ilya Birman's [Aegea](https://blogengine.me), and adopted to my website.
... | dtroode |
174,973 | I created the simplest implementation of an infinite paging FlatList using Hooks in ReactNative. | Would love any feedback and hope it helps! Next, I'm going to be creating an infinite-paging, live-u... | 0 | 2019-09-22T14:37:41 | https://dev.to/technoplato/i-created-the-simplest-implementation-of-an-infinite-paging-flatlist-using-hooks-in-reactnative-18od | reactnative, react, tutorial | Would love any feedback and hope it helps!
Next, I'm going to be creating an infinite-paging, live-updating, load-new-posts-button having list with Firebase and hooks. Stay tuned!
Let me know your thoughts! This is my first post on Dev, sorry it's a little short! Just wanted to get my feet wet.
Gist: https://gist.g... | technoplato |
175,000 | EP24: Special Developer Conference Zambia 19' Episode | On this episode, we interview speakers from this years Developer Conference Zambia. DevConZM is an a... | 0 | 2020-01-20T13:56:48 | https://anchor.fm/code-cast-zm/episodes/EP24-Special-Developer-Conference-Zambia-19-Episode-e5g6a0 | ---
title: EP24: Special Developer Conference Zambia 19' Episode
published: true
tags:
canonical_url: https://anchor.fm/code-cast-zm/episodes/EP24-Special-Developer-Conference-Zambia-19-Episode-e5g6a0
---
On this episode, we interview speakers from this years [Developer Conference Zambia](https://www.devcon.co.zm/).
... | codecastzm | |
175,011 | Initramfs: Dropping to a Shell | As usual, I was heading off to a meeting, and my laptop decided to avoid booting. When it’s Linux,... | 0 | 2019-09-25T14:01:28 | https://dev.to/wparad/initramfs-dropping-to-a-shell-3p6l | linux, encryption | ---
title: Initramfs: Dropping to a Shell
published: true
tags: linux,encryption
canonical_url: https://dev.to/wparad/initramfs-dropping-to-a-shell-3p6l
---
As usual, I was heading off to a meeting, and my laptop decided to avoid booting. When it’s Linux, then it’s always at the exact moment you need to do something. ... | wparad |
175,035 | C# Async Await, Simply | One at a time Code is executed to achieve a purpose. Usually it's run as a series of steps... | 0 | 2019-09-26T06:00:10 | https://dev.to/htissink/c-async-await-simply-5dh1 | csharp, beginners, dotnet | # One at a time
Code is executed to achieve a purpose. Usually it's run as a series of steps, eventually leading to a final result. Each of the steps take some time to execute, and running them synchronously, one after the other, can take a significant amount of time.

There's no way to debug a... | raoulmeyer |
186,023 | How to setup DNS over HTTPS (Doh 🍩!) in Google Chrome on MacOSX | The DNS protocol has come under scrutiny in the last few years because it remains one of the last bas... | 0 | 2019-10-12T10:00:08 | http://blog.arpitmohan.com/Dns-Over-Https | security, dns | The DNS protocol has come under scrutiny in the last few years because it remains one of the last bastions of unencrypted data transmission over the network. There have been multiple proposals to enhance security over DNS protocols such as
1. DNS over TLS
2. DNSCurve
3. DNSCrypt
There is considerable dissension in th... | mohanarpit |
185,383 | Data Lineage Visualization Application
| Please take a look at my new github repo. I have tried to make a Data Lineage Visualization Tool usin... | 0 | 2019-10-06T19:11:02 | https://github.com/SuperThinking/Data_Lineage_Visualization-Application | Please take a look at my new github repo.
I have tried to make a Data Lineage Visualization Tool using ReactJS and SVGs.
Link : https://github.com/SuperThinking/Data_Lineage_Visualization-Application
| superthinking | |
185,444 | Migrating from Mocha to rspec-mocks | At Financeit, our main app uses RSpec for the test suite, but until recently it made use of Mocha... | 0 | 2019-10-06T21:59:19 | http://www.andywaite.com/2019/09/15/migrating-from-mocha-to-rspec-mocks.html | ruby, rails | ---
title: Migrating from Mocha to rspec-mocks
published: true
date: 2019-09-15 00:00:00 UTC
tags: ruby, rails
canonical_url: http://www.andywaite.com/2019/09/15/migrating-from-mocha-to-rspec-mocks.html
---
At [Financeit](https://www.financeit.io), our main app uses RSpec for the test suite, but until recently it made... | andyw8 |
185,457 | Hacktoberfesting! | As my first participation in Hacktoberfest, I've created 4 great pull requests this month:... | 0 | 2019-10-20T15:26:25 | https://dev.to/heymarkkop/hacktoberfesting-38de | javascript, opensource, hacktoberfest | As my first participation in [Hacktoberfest](https://hacktoberfest.digitalocean.com), I've created 4 great pull requests this month:
## 1) Fixed Habitica's Chat Extension for Firefox
As I wanted to have my [first](https://dev.to/heymarkkop/my-first-open-source-contribution-21dh) open source contribution accepted as s... | heymarkkop |
185,677 | Weekly Links – 10/7 | So this week was a little crazy with family obligations, work travel, busy work schedules, etc. But o... | 0 | 2019-10-08T12:34:12 | https://dev.to/documentednerd/weekly-links-10-7-498i | links | ---
title: Weekly Links – 10/7
published: true
date: 2019-10-07 09:00:39 UTC
tags: Links
canonical_url:
---
So this week was a little crazy with family obligations, work travel, busy work schedules, etc. But overall it wasn’t bad kind of week. We are officially into full on October. Right now I’m busy prepping for ou... | documentednerd |
185,703 | Playing with Fmt | Using Fmt to format stuff. | 0 | 2019-10-07T14:00:27 | https://odone.io/posts/2019-10-07-playing-with-fmt.html | haskell, functional | ---
title: Playing with Fmt
description: Using Fmt to format stuff.
tags: haskell, functional
cover_image: https://thepracticaldev.s3.amazonaws.com/i/upiabrbfntaqk290sysl.jpg
canonical_url: https://odone.io/posts/2019-10-07-playing-with-fmt.html
published: true
---
You can keep reading here or [jump to my blog](https:... | riccardoodone |
185,711 | Frameworks | Frameworks today basically make up your whole front-end, so it's important to have an understanding o... | 0 | 2019-10-07T14:17:56 | https://dev.to/wtschmidt/frameworks-4l5n | javascript | Frameworks today basically make up your whole front-end, so it's important to have an understanding of what they are and how they work. They are in charge of handling all of the user interaction between their computer and the app that they are trying to use. The front end of an app asks many questions during this int... | wtschmidt |
185,727 | "How to get started in c programming?" | This program is first in c programming and simple also in programming. This program is very short and... | 0 | 2019-10-07T15:12:56 | https://dev.to/rohan_goyal_rg/how-to-get-started-in-c-programming-1kan | c, startingcode, simplecode, simplesetup | This program is first in c programming and simple also in programming. This program is very short and in this program, we tell how to use the printf, scanf, include<stdio.h> and many more function are used in this program and the start program this program run on turbo c or Visual Studio Code
Turbo c
#include<st... | rohan_goyal_rg |
185,775 | Comparing React form builders: Formik v. Unform | Written by Diogo Souza✏️ The more modern the application, the more likely developers will need to... | 0 | 2019-10-07T19:12:37 | https://blog.logrocket.com/comparing-react-form-builders-formik-v-unform/ | react, webdev | ---
title: Comparing React form builders: Formik v. Unform
published: true
date: 2019-10-07 16:00:18 UTC
tags: react,webdev
canonical_url: https://blog.logrocket.com/comparing-react-form-builders-formik-v-unform/
cover_image: https://thepracticaldev.s3.amazonaws.com/i/m1m9b2qm5hsk8vv2jeuk.png
---
**Written by [Diogo So... | bnevilleoneill |
185,787 | Make a stale bot, learn GitHub Actions | A few months ago I had the chance to play with the first Beta of GitHub Actions but for some reasons... | 0 | 2019-10-07T18:11:23 | https://dev.pippi.im/writing/stale-bot/ | github, actions, bot, automation | ---
title: "Make a stale bot, learn GitHub Actions"
published: true
description:
tags: github, actions, bot, automation
canonical_url: https://dev.pippi.im/writing/stale-bot/
cover_image: https://images.unsplash.com/photo-1556075798-4825dfaaf498?ixlib=rb-1.2.1&auto=format&fit=crop&w=1355&q=80
---
A few months ago I h... | masci |
185,864 | android studio | hello I have a problem whit my android project, the app crashed when I tap on the button | 0 | 2019-10-07T21:33:17 | https://dev.to/wat237/android-studio-ih5 | android, java, xml | hello I have a problem whit my android project, the app crashed when I tap on the button | wat237 |
185,909 | Exploring Self | As many of you know, I have recently become a software engineering coach for the bootcamp I attended.... | 0 | 2019-10-08T15:56:11 | https://dev.to/torianne02/exploring-self-ddl | ruby, codenewbie, webdev, beginners | As many of you know, I have recently become a software engineering coach for the bootcamp I attended. While going through our first module it appeared that a lot of our students had a tough time grasping the concept of `self`. At first, I fumbled around with explaining it in the simplest words. This really woke me up b... | torianne02 |
186,039 | Implementation of ES6 Map() function | Implementation of ES6 Map() function | 0 | 2019-10-08T09:57:43 | https://dev.to/prashantandani/implementation-of-es6-map-function-1kdo | webdev, javascript, es6 | ---
title: Implementation of ES6 Map() function
published: true
description: Implementation of ES6 Map() function
tags: webdev, Javascript, ES6
cover_image: https://thepracticaldev.s3.amazonaws.com/i/ihyd0vyk70usfwe3oyhl.png
---
```
//implementing map function
/* Implemetation */
const arrayMap = (arr, fn) => {
con... | prashantandani |
186,109 | New Webpack Development Server Plugin | I always thought it was odd to use the webpack-cli command webpack-dev-server instead of webpack in m... | 0 | 2019-10-08T13:02:11 | https://jimfrenette.com/2018/12/new-webpack-development-server-plugin/ | webpack, javascript, webdev | I always thought it was odd to use the `webpack-cli` command `webpack-dev-server` instead of `webpack` in my npm script for development. Lo and behold, last month, `webpack-plugin-serve` was released, a new webpack plugin to use instead of the quirky webpack-dev-server.
I'm using the fairly basic split configuration f... | jimfrenette |
186,152 | Python-compatible IDEs: What is It and Why Do You Need It? | There is no better way to build in Python than by using an IDE (Integrated Development Environment).... | 0 | 2019-10-08T14:30:53 | https://djangostars.com/blog/python-ide/ | ide, python | ---
title: Python-compatible IDEs: What is It and Why Do You Need It?
cover_image: https://djangostars.com/blog/uploads/2019/09/cover-1-1.png
published: true
description:
tags: IDE, python
canonical_url: https://djangostars.com/blog/python-ide/
---
There is no better way to build in Python than by using an IDE (Integ... | djangostars |
186,230 | Intro to Regex for Web Developers | This was originally posted as a twitter thread: https://twitter.com/chrisachard/status/11815834991129... | 0 | 2019-10-08T17:23:11 | https://twitter.com/chrisachard/status/1181583499112976384 | webdev, javascript, beginners | *This was originally posted as a twitter thread: [https://twitter.com/chrisachard/status/1181583499112976384](https://twitter.com/chrisachard/status/1181583499112976384)*
# 1.
Regular expressions find parts of a string that match a pattern
In JavaScript they're created in between forward slashes //, or with `new Re... | chrisachard |
186,511 | swagger definition for a http proxy integration on the AWS api gateway. | { "/{proxy+}": { "x-amazon-apigateway-any-method": { "produces": [ "application/j... | 0 | 2019-10-09T05:57:04 | https://dev.to/arvsr1988/swagger-definition-for-a-http-proxy-integration-on-the-aws-api-gateway-2ke7 | aws | ```
{
"/{proxy+}": {
"x-amazon-apigateway-any-method": {
"produces": [
"application/json"
],
"parameters": [
{
"name": "proxy",
"in": "path",
"required": true,
"type": "string"
}
],
"security": [],
"responses": {},... | arvsr1988 |
186,538 | Animated, Scrolling CSS First Letter | Fixed background scrolling first letter examples. | 0 | 2019-10-09T07:27:50 | https://vuild.com/first-letter/ | html, css, codepen, typography | <p>Fixed background scrolling first letter examples.</p>
{% codepen https://codepen.io/vuild/pen/QWWbvxK %} | vuild |
186,567 | Do some thing with somebody! | Good Have day for you! | 0 | 2019-10-09T09:05:54 | https://dev.to/xungbv/do-some-thing-with-somebody-f6a | devops, css | Good Have day for you! | xungbv |
186,583 | Hacktoberfest has been an unmitigated disaster for me thus far | I've submitted a grand total of 1 pull request, and it has been sitting there idle since then. Furthe... | 0 | 2019-10-09T10:18:50 | https://dev.to/wrldwzrd89/hacktoberfest-has-been-an-unmitigated-disaster-for-me-thus-far-mhl | hacktoberfest, help | I've submitted a grand total of 1 pull request, and it has been sitting there idle since then. Furthermore, I have been so gosh-darn busy that I have yet to even attempt something else.
So much for that, I suppose... but there's another problem: I am not very good at finding projects I might like to contribute to, and... | wrldwzrd89 |
186,606 | Endtest can do that? | It's amazing that you can do so much with Endtest. | 0 | 2019-10-09T15:36:13 | https://dev.to/razgandeanu/endtest-can-do-that-4i17 | webdev, html, testing, android | ---
title: Endtest can do that?
published: true
description: It's amazing that you can do so much with Endtest.
tags: webdev, html, testing, android
cover_image: https://thepracticaldev.s3.amazonaws.com/i/42eq22mkpt6lbdarvpw2.jpeg
---
###**Introduction**###
**[Endtest](https://endtest.io)** is the bee's knees when it... | razgandeanu |
186,845 | Global event handling in Vue | Although not mutually exclusive to Vue I have certainly found myself in this situation before and alw... | 0 | 2019-10-09T17:05:38 | https://dev.to/adam_cyclones/global-event-handling-in-vue-1d6d | vue, javascript, help | Although not mutually exclusive to Vue I have certainly found myself in this situation before and always wondered how best to overcome it.
Conceptually you have a component that is concerned with itself and not much else but it gets a bit more complex when you introduce the dependency of window based events.
I have t... | adam_cyclones |
915,897 | Release 0.4 Progress | So this week I continued to work on the issues I collected from the previous planning week. I found... | 0 | 2021-12-02T21:25:06 | https://dev.to/jli/release-04-progress-3o68 | So this week I continued to work on the issues I collected from the [previous planning week](https://dev.to/jli/release-04-planning-278n). I found that the progress of auditing and fixing the pages were a lot smoother than the first time I did it in my Release 0.3 assignment. I was able to have a better idea of what to... | jli | |
186,881 | How to implement Sign-In With Google with ReactJS | A minimal example without any external dependencies Every developer at some point in time has to conn... | 0 | 2019-07-24T22:58:15 | https://medium.com/@harittweets/how-to-implement-sign-in-with-google-with-reactjs-9cf8ab4b0c6f | authentication, google, javascript, react | ---
title: How to implement Sign-In With Google with ReactJS
published: true
date: 2019-07-24 22:58:15 UTC
tags: authentication,google,javascript,react
canonical_url: https://medium.com/@harittweets/how-to-implement-sign-in-with-google-with-reactjs-9cf8ab4b0c6f
---
A minimal example without any external dependencies
E... | harittweets |
187,096 | 'Go' and 'DevOps' - Modern Bffs in the Cloud-Native Industry | Go language becoming more and more popular in the DevOps community and this article talks about why this language has so much to do with DevOps. | 0 | 2019-10-10T08:29:12 | https://dev.to/pavanbelagatti/go-and-devops-modern-bffs-in-the-cloud-native-industry-2o7g | go, google, devopscommunity, cloudnative | ---
title: 'Go' and 'DevOps' - Modern Bffs in the Cloud-Native Industry
published: true
description: Go language becoming more and more popular in the DevOps community and this article talks about why this language has so much to do with DevOps.
tags: golang, go, Google, DevOps community, Cloud-Native
cover_image: htt... | pavanbelagatti |
187,123 | Streaming Large ZIP Files in Rails | Recently, I needed to add a "Download all" button in a Rails application for managing meeting assets. Specifically, this magic button would allow attendees to download all the meeting documents in a single zip file. | 0 | 2019-10-26T12:37:58 | https://piotrmurach.com/articles/streaming-large-zip-files-in-rails | ruby, rails, webdev, tutorial | ---
title: Streaming Large ZIP Files in Rails
published: true
description: Recently, I needed to add a "Download all" button in a Rails application for managing meeting assets. Specifically, this magic button would allow attendees to download all the meeting documents in a single zip file.
tags: ruby, rails, webdev, tu... | piotrmurach |
187,135 | Double splat arguments in Crystal | In Crystal, as well as in Ruby you can use double splat arguments. Unfortunately they behave a bit di... | 0 | 2019-10-10T08:48:27 | http://jetrockets.pro/blog/double-splat-arguments-in-crystal | crystal, ruby | In Crystal, as well as in Ruby you can use double splat arguments. Unfortunately they behave a bit different.
``` ruby
def foo(**options)
baz(**options, a: 1)
end
def baz(**options)
puts options
end
foo(b: 2, a: 3) # {:b=>2, :a=>1}
```
This code in Ruby works as it should. If we try the same in Crystal ([https... | igor_alexandrov |
187,446 | Modern cyber security tooling should empower developers | tl;dr I truly believe in the necessity of Cyber products, but modern companies will truly... | 0 | 2019-10-10T19:46:27 | https://dev.to/shaimendel/modern-cyber-security-tooling-should-empower-developers-208p | security, cybersecurity, devfirst | #tl;dr#
I truly believe in the necessity of Cyber products, but modern companies will truly improve their security if and only if their developers are engaged to the effort.
This article is about talking and surfacing the gap of the traditional Cyber world, which is stuck all the way to the right, waiting for dev-first... | shaimendel |
187,159 | Creating Database Objects
| This tutorial describes how to create tables, stored procedures and other objects on Oracle server.... | 0 | 2019-10-10T09:40:27 | https://dev.to/andreasneuman/creating-database-objects-15am | oracle, tutorial, database | This tutorial describes how to create tables, stored procedures and other objects on Oracle server.
##Requirements##
In order to create database objects, you have to connect to the server. This process is described in detail in the tutorial [Logging onto the server](https://www.devart.com/dotconnect/oracle/articles/t... | andreasneuman |
187,207 | Hello World 😉 | Hello Everyone!❤ | 0 | 2019-10-10T11:31:20 | https://dev.to/rohandas28/hello-world-37op | Hello Everyone!❤
| rohandas28 | |
187,317 | How can I make this draggable. Cut and paste and save as ttf | A post by Mariah Careys Friend Club | 0 | 2019-10-10T15:13:11 | https://dev.to/mcfriendclub/how-can-i-make-this-draggable-cut-and-paste-and-save-as-ttf-15em | <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="htc-icon htc-icon--verified">
<path style="fill: #1DA1F2" opacity="0" d="M0 0h24v24H0z"></path>
<path style="fill: #1DA1F2" d="M22.5 12.5c0-1.58-.875-2.95-2.148-3.6.154-.435.238-.905.238-1.4 0-2.21-1.71-3.998-3.818-3.998-.47 0... | mcfriendclub | |
187,363 | The DEV Team is now 100% Distributed | As the title suggests, we are excited to share that the DEV team is now fully distributed! We’ve gone... | 0 | 2019-10-10T17:22:21 | https://dev.to/devteam/the-dev-team-is-now-100-distributed-1g2e | career, meta, remote, productivity | ---
title: The DEV Team is now 100% Distributed
published: true
description:
tags: career, meta, remote, productivity
cover_image: https://thepracticaldev.s3.amazonaws.com/i/kp1r2zv0e3koik7e4iz8.png
---
As the title suggests, we are excited to share that the DEV team is now fully distributed! We’ve gone through a few... | jess |
187,433 | A beginner guide to setup an Ethereum full node | This is a step by step guide to setup your own Ethereum node on the Ropsten network. At the end of th... | 0 | 2019-10-10T19:01:31 | https://dev.to/eric_khun/a-beginner-guide-to-setup-an-ethereum-full-node-4d9 | ethereum, blockchain, devops, digitalocean | This is a step by step guide to setup your own Ethereum node on the Ropsten network. At the end of this guide you'll be able to:
- Run your own ethereum node synced with the Ropsten testnet network
- Making sure to keep the node in sync with the blockchain on the network
- Be able to communicate via the JSON-RPC API ... | eric_khun |
187,578 | Forcing the usage of yarn (and at a specific version) | Also published in my blog. People and organizations often have preferences for a specific package ma... | 0 | 2019-10-11T05:33:45 | https://leonardofaria.net/2019/10/11/forcing-the-usage-of-yarn-and-at-a-specific-version/?utm_source=rss&utm_medium=rss&utm_campaign=forcing-the-usage-of-yarn-and-at-a-specific-version | javascript, node, npm, yarn | ---
title: Forcing the usage of yarn (and at a specific version)
published: true
date: 2019-10-11 03:40:46 UTC
tags: javascript, node, npm, yarn
canonical_url: https://leonardofaria.net/2019/10/11/forcing-the-usage-of-yarn-and-at-a-specific-version/?utm_source=rss&utm_medium=rss&utm_campaign=forcing-the-usage-of-yarn-a... | leonardofaria |
187,714 | How My Terrible Memory Makes Me a Better Developer | Forgetting how to launch one of my own apps last week made me pause for a second to think. I've actually turned my bad memory into a strength. Here's how you can find that same strength and become a developer everyone loves to work with. | 0 | 2019-10-12T18:10:20 | https://raddevon.com/articles/how-my-terrible-memory-makes-me-a-better-developer/ | beginners, productivity | ---
title: How My Terrible Memory Makes Me a Better Developer
description: Forgetting how to launch one of my own apps last week made me pause for a second to think. I've actually turned my bad memory into a strength. Here's how you can find that same strength and become a developer everyone loves to work with.
publish... | raddevon |
187,729 | Simple Timer app with React-Native | Continuing my React Native journey, i found a great site https://learn.handlebarlabs.com/ by Spencer... | 0 | 2019-10-11T13:57:21 | https://nabendu.blog/posts/simple-timer-app-with-react-native-434i/ | react, reactnative, webdev, javascript | Continuing my React Native journey, i found a great site [https://learn.handlebarlabs.com/](https://learn.handlebarlabs.com/) by Spencer Carli. This post is based on one of the free course by him.
Let’s head over to a terminal and type expo init TimerReactNative
Press enter for blank in the selection.
 in Atlanta, GA next week, and I am excited!
Over the past few months, I've spent a lot of time studying the subject, fine tuning my slides, and working through the talk itself. But there is one thing that is hanging me up: the kick-off.
... | seanmcp |
188,085 | Mobile grids, public type, summative research — and more UX links this week |
A weekly selection of design links, brought to you by your friends at th... | 0 | 2019-10-12T10:22:01 | https://uxdesign.cc/mobile-grids-public-type-summative-research-and-more-ux-links-this-week-64ef6aa8c6b7 | productdesign, design, hotthisweek, startup | ---
title: Mobile grids, public type, summative research — and more UX links this week
published: true
date: 2019-10-12 08:50:09 UTC
tags: product-design,design,hot-this-week,startup
canonical_url: https://uxdesign.cc/mobile-grids-public-type-summative-research-and-more-ux-links-this-week-64ef6aa8c6b7
---
#### _A week... | fabriciot |
188,136 | My Hacktoberfest personal challenge: I'm writing a game in 7 days! (Days 7) | Update on the progress of the challenge. | 0 | 2019-10-12T12:46:03 | https://dev.to/deleteman123/my-hacktoberfest-personal-challenge-i-m-writing-a-game-in-7-days-days-7-13mo | hacktoberfest, showdev, gamedev, javascript | ---
title: My Hacktoberfest personal challenge: I'm writing a game in 7 days! (Days 7)
published: true
description: Update on the progress of the challenge.
tags: #hacktoberfest, #showdev, #gamedev, #javascript
cover_image: https://thepracticaldev.s3.amazonaws.com/i/yl88dj9eygy4ff64ggnr.png
---
Welcome back to my imp... | deleteman123 |
188,195 | The Role of Public Relations and Marketing for FinTech Start-ups | For a vast majority of people, Public Relations, Marketing, and Communication may be perceived as one... | 0 | 2019-10-12T14:49:40 | https://dev.to/anooname/the-role-of-public-relations-and-marketing-for-fintech-start-ups-2fe8 | fintech | For a vast majority of people, Public Relations, Marketing, and Communication may be perceived as one single project; hence, it may be hard to differentiate from one another. Nevertheless, a debrief with active professionals in this sphere will make you quickly realize that each single term is utterly different and so ... | anooname |
188,240 | The one with Elasticsearch and Spring Boot | This article aims to give you an introduction to Elasticsearch. First we will go through explanation... | 0 | 2019-10-12T17:59:34 | https://dev.to/gentaliti/the-one-with-elasticsearch-and-spring-boot-1hml | elasticsearch | This article aims to give you an introduction to Elasticsearch.
First we will go through explanation of basic concepts, then we will build a simple Spring Boot application to see how easily ES can be integrated using Spring Data Elasticsearch.
As a prerequisite for this post you’ll need Docker, Java and Maven installe... | gentaliti |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.