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
254,346
Uri to Hostname in C (GNU-C99)
Another C function which works quite well and has no bugs that I know of yet... Updated: fixed this...
0
2011-01-13T22:01:00
https://dev.to/adamkdean/uri-to-hostname-in-c-gnu-c99-41b4
c
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Uri to Hostname in C (GNU-C99) slug: uri-to-hostname-in-c-gnu-c99 date: 2011-01-13 22:01 tags: - c --- Another C function which works quite well and has no bugs that I know of yet... Updated: fixed this now, leak free! /*...
adamkdean
254,345
Fixed String.Format in C (GNU-C99)
I have fixed my strrep string replace function, for now, as there was a bug with using atoi. I have...
0
2011-01-12T22:00:00
https://dev.to/adamkdean/fixed-string-format-in-c-gnu-c99-97i
c
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Fixed String.Format in C (GNU-C99) slug: fixed-string-format-in-c-gnu-c99 date: 2011-01-12 22:00 tags: - c --- I have fixed my strrep string replace function, for now, as there was a bug with using atoi. I have also realised I...
adamkdean
254,344
C# Int.ToString().Length in C
Another little helper function here, it counts how long the int would be if it was a string, just the...
0
2011-01-11T22:00:00
https://dev.to/adamkdean/c-int-tostring-length-in-c-4ii0
c
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: C# Int.ToString().Length in C slug: c-int-tostring-length-in-c date: 2011-01-11 22:00 tags: - c --- Another little helper function here, it counts how long the int would be if it was a string, just the same as doing Int.ToStrin...
adamkdean
254,343
Replicating c# params keyword in C (GNU-C99)
Just like Julian Assange is jumping from country to country, brothel to brothel, being hunted like a...
0
2011-01-11T21:59:00
https://dev.to/adamkdean/replicating-c-params-keyword-in-c-gnu-c99-l2j
c
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Replicating c# params keyword in C (GNU-C99) slug: replicating-c-params-keyword-in-c-gnu-c99 date: 2011-01-11 21:59 tags: - c --- Just like Julian Assange is jumping from country to country, brothel to brothel, being hunted like...
adamkdean
254,342
SQL Correlated Sub-Queries and Group By Unions
Whilst working on my new uptime and latency monitoring project, I've ran into more than the usual...
0
2011-01-06T21:58:00
https://dev.to/adamkdean/sql-correlated-sub-queries-and-group-by-unions-2o5k
sql
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: SQL Correlated Sub-Queries and Group By Unions slug: sql-correlated-sub-queries-and-group-by-unions date: 2011-01-06 21:58 tags: - sql --- Whilst working on my new uptime and latency monitoring project, I've ran into more than ...
adamkdean
9,160
RUBBoS
While working on my Masters thesis, I needed a solid database benchmark. RUBBoS is a fairly common...
0
2017-10-31T19:52:37
https://michael.mior.ca/blog/rubbos/
--- title: "RUBBoS" published: true tags: canonical_url: https://michael.mior.ca/blog/rubbos/ --- While working on my Masters thesis, I needed a solid database benchmark. RUBBoS is a fairly common benchmark in the field, but unfortunately is a few years out of date. While it was fantastically simple to set up, I did ...
michaelmior
254,341
SQL Get most recent records with group by
The following is awesome SQL. I will right now tell you, I don't like SQL. I admire it, but I don't...
0
2011-01-01T21:52:00
https://dev.to/adamkdean/sql-get-most-recent-records-with-group-by-2lj8
sql
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: SQL Get most recent records with group by slug: sql-get-most-recent-records-with-group-by date: 2011-01-01 21:52 tags: - sql --- The following is awesome SQL. I will right now tell you, I don't like SQL. I admire it, but I don'...
adamkdean
254,340
Cycling through a list, one step at a time
So the project I am currently working on will have a list of servers (nodes) stored in a generic list...
0
2010-12-29T21:52:00
https://dev.to/adamkdean/cycling-through-a-list-one-step-at-a-time-4ami
csharp, collections
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Cycling through a list, one step at a time slug: cycling-through-a-list-one-step-at-a-time date: 2010-12-29 21:52 tags: - csharp - collections --- So the project I am currently working on will have a list of servers (nodes) sto...
adamkdean
254,339
Private set property - public get, private set
Just come across something I haven't needed before, a property read-only from the outside, but...
0
2010-12-29T21:51:00
https://dev.to/adamkdean/private-set-property-public-get-private-set-1dm9
csharp
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Private set property - public get, private set slug: private-set-property-public-get-private-set date: 2010-12-29 21:51 tags: - csharp --- Just come across something I haven't needed before, a property read-only from the outside...
adamkdean
254,338
Ctrl+A Select all text in a text box
Another quick-snip here. Add select all (ctrl+a) to a regular textbox in less than 7 seconds, and...
0
2010-12-17T21:50:00
https://dev.to/adamkdean/ctrl-a-select-all-text-in-a-text-box-44mp
winforms, csharp
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Ctrl+A Select all text in a text box slug: ctrl-a-select-all-text-in-a-text-box date: 2010-12-17 21:50 tags: - winforms - csharp --- Another quick-snip here. Add select all (ctrl+a) to a regular textbox in less than 7 seconds, ...
adamkdean
254,337
Non-blocking Console.ReadKey()
Just a quick snippet for today. Have you ever written a quick console app to test something, and wan...
0
2010-12-16T21:50:00
https://dev.to/adamkdean/non-blocking-console-readkey-236k
csharp, consoleapplication
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Non-blocking Console.ReadKey() slug: non-blocking-console-readkey date: 2010-12-16 21:50 tags: - csharp - console-application --- Just a quick snippet for today. Have you ever written a quick console app to test something, and...
adamkdean
1,350,420
Change names when you find better ones
Names are everywhere in software. We name our classes, variables, namespaces, etc. The name should...
0
2023-02-02T05:12:31
https://dev.to/sealtiel/change-names-when-you-find-better-ones-2j7i
--- title: Change names when you find better ones published: true date: 2010-11-12 17:29:00 UTC tags: canonical_url: --- Names are everywhere in software. We name our classes, variables, namespaces, etc. The name should answer all the big questions about your code. When I'm refactoring my code that is one...
sealtiel
254,336
Regex split by spaces except inside quote marks
Here's a nifty little bit of code I just wrote while writing a console input handler. Sometimes you...
0
2010-11-09T21:47:00
https://dev.to/adamkdean/regex-split-by-spaces-except-inside-quote-marks-5g92
regex, csharp
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Regex split by spaces except inside quote marks slug: regex-split-by-spaces-except-inside-quote-marks date: 2010-11-09 21:47 tags: - regex - csharp --- Here's a nifty little bit of code I just wrote while writing a console inpu...
adamkdean
9,158
The Dangers of strlen
I’ll keep this post brief, but I wanted to share something I just found about the C strlen function....
0
2017-10-31T19:52:08
https://michael.mior.ca/blog/dangers-of-strlen/
--- title: "The Dangers of strlen" published: true tags: canonical_url: https://michael.mior.ca/blog/dangers-of-strlen/ --- I’ll keep this post brief, but I wanted to share something I just found about the C `strlen` function. It’s slow. It can make a big difference in program execution time. For example, I had a fu...
michaelmior
254,335
Fibonacci Numbers & The Golden Ratio
So here I am doing some designs when I think, hmm, maybe I will use the golden ratio to lay out the...
0
2010-10-26T22:45:00
https://dev.to/adamkdean/fibonacci-numbers-the-golden-ratio-f9g
php, fibonacci
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Fibonacci Numbers & The Golden Ratio slug: fibonacci-numbers-the-golden-ratio date: 2010-10-26 22:45 tags: - php - fibonacci --- So here I am doing some designs when I think, hmm, maybe I will use the golden ratio to lay out t...
adamkdean
254,333
SQL INSERT with WHERE clause
So here I am, again, resigned to having to deal with SQL. I don't like SQL and it doesn't like me....
0
2010-10-14T22:44:00
https://dev.to/adamkdean/sql-insert-with-where-clause-693
sql
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: SQL INSERT with WHERE clause slug: sql-insert-with-where-clause date: 2010-10-14 22:44 tags: - sql --- So here I am, again, resigned to having to deal with SQL. I don't like SQL and it doesn't like me. One of the main reasons i...
adamkdean
9,156
DBUS for cross-machine screensaver locking
I typically work with two computers on a regular basis. When I bring my laptop into the office, that...
0
2017-10-31T19:52:01
https://michael.mior.ca/blog/dbus-screensaver-lock/
--- title: "DBUS for cross-machine screensaver locking" published: true tags: canonical_url: https://michael.mior.ca/blog/dbus-screensaver-lock/ --- I typically work with two computers on a regular basis. When I bring my laptop into the office, that makes three. I have a habit of locking my computer(s) when I step ou...
michaelmior
48,741
Trust and the Box
Last Friday I was in Historic Mission Control at NASA’s Johnson Space Center(jsc) listening to Milt H...
0
2018-09-19T13:51:01
http://designfrontier.net/trust-and-the-box
creativity, trust, management, innovation
--- title: Trust and the Box published: true tags: creativity,trust,management,innovation canonical_url: http://designfrontier.net/trust-and-the-box --- Last Friday I was in Historic Mission Control at NASA’s Johnson Space Center(jsc) listening to Milt Heflin, one of jsc’s Associate Directors, describe some of the his...
designfrontier
254,332
Detect printing with CSS & ASP.NET
So, as in my previous post, I had an awesome idea of how to detect people printing a page of a websit...
0
2010-09-24T22:42:00
https://dev.to/adamkdean/detect-printing-with-css-asp-net-2j66
aspnetwebforms, printing
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Detect printing with CSS & ASP.NET slug: detect-printing-with-css-asp-net date: 2010-09-24 22:42 tags: - asp-net-webforms - printing --- So, as in my previous post, I had an awesome idea of how to detect people printing a page...
adamkdean
254,331
Dynamic CSS with ASP.NET - in one line of code
Whether you want a separate sheet for each browser, or you want to track when people print a page fro...
0
2010-09-24T22:41:00
https://dev.to/adamkdean/dynamic-css-with-asp-net-in-one-line-of-code-3d52
csharp, aspnetwebforms
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Dynamic CSS with ASP.NET - in one line of code slug: dynamic-css-with-asp-net-in-one-line-of-code date: 2010-09-24 22:41 tags: - csharp - asp-net-webforms --- Whether you want a separate sheet for each browser, or you want to t...
adamkdean
254,330
Simple abstract classes explained
Blogular activity has suffered a little here; but setting up a workshop and devising plans to build s...
0
2010-09-21T22:39:00
https://dev.to/adamkdean/simple-abstract-classes-explained-6i9
abstract, abstractclass, csharp
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Simple abstract classes explained slug: simple-abstract-classes-explained date: 2010-09-21 22:39 tags: - abstract - abstract-class - csharp --- Blogular activity has suffered a little here; but setting up a workshop and devisi...
adamkdean
3,425
Boosting the skills of your team
When a new software project is starting, a new team needs to be put up together...
0
2017-05-02T13:19:41
https://dev.to/pmadridb/boosting-the-skills-of-your-team
training, softskills, learning
--- title: Boosting the skills of your team published: true description: tags: training, soft-skills, learning --- When a new software project is starting, a new team needs to be put up together according to the client and the project’s needs. Ideally, the team should be composed of highly skilled members wi...
pmadridb
47,351
People are dumb (like me)... A person is smart (like me).
In the 1997 summer blockbuster "Men in Black" the two main characters, played b...
0
2018-09-18T02:44:32
https://www.briannipper.com/2010/09/people-are-dumb-like-me-person-is-smart.html
development, problemsolving, testing, troubleshooting
--- title: People are dumb (like me)... A person is smart (like me). published: true tags: Development,Problem Solving,Testing,Troubleshooting canonical_url: https://www.briannipper.com/2010/09/people-are-dumb-like-me-person-is-smart.html --- [![](http://upload.wikimedia.org/wikipedia/en/f/fb/Men_in_Black_Poster.jpg)]...
briannipper
47,350
K.I.S.S.
One principle in development that can NEVER be stated enough is "Keep It Stupid Simple" (or Keep It...
0
2018-09-18T02:44:16
https://www.briannipper.com/2010/09/kiss.html
--- title: K.I.S.S. published: true tags: canonical_url: https://www.briannipper.com/2010/09/kiss.html --- [![](http://upload.wikimedia.org/wikipedia/commons/e/e8/Crystal_Clear_app_kedit.svg)](http://upload.wikimedia.org/wikipedia/commons/e/e8/Crystal_Clear_app_kedit.svg)One principle in development that can NEVER be...
briannipper
254,329
Get Average using SQL
More SQL again today, to say I'm not a fan, I'm doing a lot of it lately. Todays snippet is quite...
0
2010-09-15T22:38:00
https://dev.to/adamkdean/get-average-using-sql-37m7
sql
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Get Average using SQL slug: get-average-using-sql date: 2010-09-15 22:38 tags: - sql --- More SQL again today, to say I'm not a fan, I'm doing a lot of it lately. Todays snippet is quite cool, I was inspired by this post: http...
adamkdean
254,328
Sql threesomes.. Two foreign keys, one primary key
So here I am, coding my own business, being a law abiding coder, when out of the blue comes a rather...
0
2010-09-12T22:37:00
https://dev.to/adamkdean/sql-threesomes-two-foreign-keys-one-primary-key-2plh
sql
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Sql threesomes.. Two foreign keys, one primary key slug: sql-threesomes-two-foreign-keys-one-primary-key date: 2010-09-12 22:37 tags: - sql --- So here I am, coding my own business, being a law abiding coder, when out of the bl...
adamkdean
254,327
Indexers - make your classes act like arrays
Indexers are great, I've only really started using them consciously today, but they're a great...
0
2010-09-04T22:36:00
https://dev.to/adamkdean/indexers-make-your-classes-act-like-arrays-1h9b
csharp, hashtable, indexers
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Indexers - make your classes act like arrays slug: indexers-make-your-classes-act-like-arrays date: 2010-09-04 22:36 tags: - csharp - hashtable - indexers --- Indexers are great, I've only really started using them consciously...
adamkdean
254,326
XML to Hashtable
XML is often used nowadays for many things, mainly due to it being so flexible, lightweight and easy...
0
2010-09-03T22:34:00
https://dev.to/adamkdean/xml-to-hashtable-59dg
xml, hashtable, csharp
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: XML to Hashtable slug: xml-to-hashtable date: 2010-09-03 22:34 tags: - xml - hashtable - csharp --- XML is often used nowadays for many things, mainly due to it being so flexible, lightweight and easy to understand for humans....
adamkdean
47,344
The "Really Big" problem
I had the opportunity to attend a meeting wherein the presenter discussed all o...
0
2018-09-18T02:42:46
https://www.briannipper.com/2010/09/really-big-problem.html
bigpicture, businesssolutions, criticalthinking, problemsolving
--- title: The "Really Big" problem published: true tags: Big Picture,Business Solutions,Critical Thinking,Problem Solving canonical_url: https://www.briannipper.com/2010/09/really-big-problem.html --- I had the opportunity to attend a meeting wherein the presenter discussed all of the amazing ways that SharePoint...
briannipper
254,325
Remove annoying beep from pressing enter in textbox
Continuing with useful snippets and methods, today I present you mighty readers with a very...
0
2010-08-31T22:29:00
https://dev.to/adamkdean/remove-annoying-beep-from-pressing-enter-in-textbox-13bo
csharp, winforms
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Remove annoying beep from pressing enter in textbox slug: remove-annoying-beep-from-pressing-enter-in-textbox date: 2010-08-31 22:29 tags: - csharp - winforms --- Continuing with useful snippets and methods, today I present you...
adamkdean
254,324
Readable File Sizes
In an effort to fill up this blog with code, I will over the next few weeks be looking back over my...
0
2010-08-29T22:28:00
https://dev.to/adamkdean/readable-file-sizes-4lcd
csharp
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Readable File Sizes slug: readable-file-sizes date: 2010-08-29 22:28 tags: - csharp --- In an effort to fill up this blog with code, I will over the next few weeks be looking back over my snippets, finding useful methods and pos...
adamkdean
254,323
Blogger icons
One thing that strikes me about blogger, or the many bloggers that use it, is that I've never come...
0
2010-08-29T22:27:00
https://dev.to/adamkdean/blogger-icons-3j7f
blogger, favicon
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Blogger icons slug: blogger-icons date: 2010-08-29 22:27 tags: - blogger - favicon --- One thing that strikes me about blogger, or the many bloggers that use it, is that I've never come across a blog that hasn't used the defau...
adamkdean
9,159
Designing an Offline CMS
First the obvious question. What on earth is an offline CMS? Isn’t the whole point of having a CMS...
0
2017-10-31T19:52:18
https://michael.mior.ca/blog/designing-an-offline-cms/
--- title: "Designing an Offline CMS" published: true tags: canonical_url: https://michael.mior.ca/blog/designing-an-offline-cms/ --- First the obvious question. What on earth is an offline CMS? Isn’t the whole point of having a CMS that you don’t have to change anything offline? Well, yes that’s true. But rec...
michaelmior
254,320
Cross thread calls made easy
Update (27/06/2013): New blog post regarding parameterized calls - Cross thread calls made...
0
2010-08-28T22:25:00
https://dev.to/adamkdean/cross-thread-calls-made-easy-51p3
csharp, winforms, multithreading, delegates
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Cross thread calls made easy slug: cross-thread-calls-made-easy date: 2010-08-28 22:25 tags: - csharp - winforms - multithreading - delegates --- **Update (27/06/2013):** New blog post regarding parameterized calls - [Cross t...
adamkdean
254,310
Syntax highlighting test
Originally posted on August 8th, 2010 (more info) Note: for the last decade I've moved blogs about 7...
0
2010-08-28T22:20:00
https://dev.to/adamkdean/syntax-highlighting-test-l71
syntaxhighlighting
--- cover_image: https://dev-to-uploads.s3.amazonaws.com/i/y9hxcwi5y92j6zfcxbjx.jpg title: Syntax highlighting test slug: syntax-highlighting-test date: 2010-08-28 22:20 tags: - syntax-highlighting --- _Originally posted on August 8th, 2010_ ([more info](https://dev.to/adamkdean/migrating-to-dev-to-190)) _Note: for...
adamkdean
47,349
Why I HAD to install Linux
Recently I've decided to pick up a new programming language. My reasons are mostly not wanting to be...
0
2018-09-18T02:43:54
https://www.briannipper.com/2010/08/why-i-had-to-install-linux_16.html
development, linux, programming, ubuntu
--- title: Why I HAD to install Linux published: true tags: Development,LINUX,Programming,Ubuntu canonical_url: https://www.briannipper.com/2010/08/why-i-had-to-install-linux_16.html --- [![](http://upload.wikimedia.org/wikipedia/commons/9/91/Alternate_Ubuntu_logo.png)](http://upload.wikimedia.org/wikipedia/commons/9/...
briannipper
47,348
Cisco Valet - Nice, very nice
I just purchased the Cisco Valet and I have to say I love it. It took about 1...
0
2018-09-18T02:43:35
https://www.briannipper.com/2010/08/cisco-valet-nice-very-nice.html
ciscovalet, goodbuy, network, router
--- title: Cisco Valet - Nice, very nice published: true tags: cisco valet,good buy,network,router canonical_url: https://www.briannipper.com/2010/08/cisco-valet-nice-very-nice.html --- I just purchased the [Cisco Valet](http://www.target.com/Cisco-Valet-Wireless-Hotspot-White/dp/B003B4AVRE/ref=sr_1_1?ie=UTF8&searchVi...
briannipper
506,907
Fluent jqGrid Html Helper for ASP.NET MVC
Update: A newer version of the jqGrid helper was released, read more about it here JqGrid is a...
0
2020-11-05T10:33:58
https://dev.to/robinvanderknaap/fluent-jqgrid-html-helper-for-asp-net-mvc-13e2
csharp, jquery, jqgrid, aspnet
--- title: Fluent jqGrid Html Helper for ASP.NET MVC published: true date: 2010-06-07 07:00:00 UTC tags: csharp,jquery,jqgrid,aspnet canonical_url: --- _**Update:** A newer version of the jqGrid helper was released, read more about it [here](http://metdepuntnaarvoren.nl/update-jqgrid-html-helper-for-asp.net-mvc)_ [J...
robinvanderknaap
506,906
Fluent Interfaces in Views en Templates
De afgelopen tijd zijn wij binnen Webpirates fan geworden van het gebruik van fluent interfaces om...
0
2020-11-05T10:37:01
https://dev.to/robinvanderknaap/fluent-interfaces-in-views-en-templates-2dmo
csharp
--- title: Fluent Interfaces in Views en Templates published: true date: 2010-05-29 07:00:00 UTC tags: csharp canonical_url: --- De afgelopen tijd zijn wij binnen Webpirates fan geworden van het gebruik van fluent interfaces om onze code beter leesbaar te maken. In dit artikel wil ik laten zien hoe wij fluent interfa...
robinvanderknaap
47,343
My "great white open page" problem
As I begin taking up writing again, for the third time (sighing a little to mys...
0
2018-09-18T02:41:39
https://www.briannipper.com/2010/04/my-great-white-open-page-problem.html
communication, developmentcycle, scope
--- title: My "great white open page" problem published: true tags: Communication,Development Cycle,Scope canonical_url: https://www.briannipper.com/2010/04/my-great-white-open-page-problem.html --- As I begin taking up writing again, for the third time (sighing a little to myself)... I've realized something about the...
briannipper
506,947
Sitefinity CMS
Om opdrachtgevers in staat te stellen hun eigen website te beheren, zet Webpirates op dit moment...
0
2020-11-05T10:55:15
https://dev.to/robinvanderknaap/sitefinity-cms-28oa
--- title: Sitefinity CMS published: true date: 2010-03-07 08:00:00 UTC tags: canonical_url: --- Om opdrachtgevers in staat te stellen hun eigen website te beheren, zet Webpirates op dit moment Joomla of intern ontwikkelde content management systemen in. Deze systemen zijn momenteel allemaal ontwikkeld in PHP. Om on...
robinvanderknaap
506,981
Software design principles
“It is one thing to write code that works. It is quite another to write good code that works”Dino...
0
2020-11-05T11:31:52
https://dev.to/robinvanderknaap/software-design-principles-2c0j
architecture
--- title: Software design principles published: true date: 2009-11-18 08:00:00 UTC tags: softwarearchitecture canonical_url: --- > _“It is one thing to write code that works. It is quite another to write good code that works”Dino Esposito (2009)_ Eén van mijn persoonlijke doelen met betrekking tot Webpirates is om ...
robinvanderknaap
506,980
Mindmapping met Bubbl.us
Op lifehacking.nl kwam ik de term mindmapping een aantal weken geleden voor het eerst tegen....
0
2020-11-05T11:42:37
https://dev.to/robinvanderknaap/mindmapping-met-bubbl-us-4bed
mindmap
--- title: Mindmapping met Bubbl.us published: true date: 2009-11-12 08:00:00 UTC tags: mindmap canonical_url: --- Op [lifehacking.nl](http://www.lifehacking.nl/) kwam ik de term mindmapping een aantal weken geleden voor het eerst tegen. Mindmapping is een methode om je gedachten en/of ideeën over een bepaald onderwe...
robinvanderknaap
1,350,419
PHP: One of the "Big Three"
I recently was reading TechRepublic article 10 skills developers will need in the next five years...
0
2023-02-02T05:12:13
https://dev.to/sealtiel/php-one-of-the-big-three-49mj
--- title: PHP: One of the "Big Three" published: true date: 2009-04-16 17:54:00 UTC tags: canonical_url: --- I recently was reading TechRepublic article [10 skills developers will need in the next five years](http://blogs.techrepublic.com.com/10things/?p=643) where Justin James uses the terminology the "Big Three" ...
sealtiel
3,603
Tour of an Open-Source Elm SPA
How to organize an Elm single page application.
0
2017-05-08T07:47:20
https://dev.to/rtfeldman/tour-of-an-open-source-elm-spa
elm, spa, webapp, scaling
--- title: Tour of an Open-Source Elm SPA published: true cover_image: https://thepracticaldev.s3.amazonaws.com/i/6isvjrkg1hfrzdgdhuzr.png description: How to organize an Elm single page application. tags: elm, spa, webapp, scaling --- People often ask me if I can point them to an open-source Elm Single Page Applicati...
rtfeldman
1,350,418
Resharper 4.5
Finally, after being away for a couple days, I was able to upgrade to Resharper 4.5. After using...
0
2023-02-02T05:11:57
https://dev.to/sealtiel/resharper-45-m8k
--- title: Resharper 4.5 published: true date: 2009-04-15 14:53:00 UTC tags: canonical_url: --- Finally, after being away for a couple days, I was able to upgrade to Resharper 4.5. After using Resharper for a couple years I'm so used to Resharper that it would be hard to use Visual Studio without it. The new ...
sealtiel
1,350,417
Fix bugs, then write new code
I have found this to be a good practice after finishing an Iteration. The code is fresh in your mind...
0
2023-02-02T05:11:38
https://dev.to/sealtiel/fix-bugs-then-write-new-code-59p2
--- title: Fix bugs, then write new code published: true date: 2009-04-14 19:44:00 UTC tags: canonical_url: --- I have found this to be a good practice after finishing an Iteration. The code is fresh in your mind and you can fix the bugs faster than if you wait until a couple weeks later. Fixing those bugs should be...
sealtiel
260,051
Really, XML catalogs matter
Back in the early 2000's, I had a weblog, I had started it before the term blog had been coined. Thi...
0
2020-03-02T23:11:57
https://emmas.site/blog/2004/01/16/catalogs-matter
xml, debugging, php
--- title: Really, XML catalogs matter published: true date: 2004-01-16 00:00:00 UTC tags: xml, debugging, php canonical_url: https://emmas.site/blog/2004/01/16/catalogs-matter --- Back in the early 2000's, I had a weblog, I had started it before the term _blog_ had been coined. This is a post, originally from Januar...
emceeaich
88,016
TIL: Promise resolution with objects including a then property
tl;dr When you resolve a promise with an object that defines a then method "standard promise...
0
2019-03-04T01:17:39
https://www.stefanjudis.com/today-i-learned/promise-resolution-with-objects-including-a-then-property/
javascript
--- title: TIL: Promise resolution with objects including a then property published: true tags: javascript canonical_url: https://www.stefanjudis.com/today-i-learned/promise-resolution-with-objects-including-a-then-property/ --- **tl;dr** *When you resolve a promise with an object that defines a `then` method "standa...
stefanjudis
83,343
TIL: The hover media query can help to remove hover styles on touch devices (but may include false positives)
Please make sure to read to the end of the article... it was edited and it's not as easy as I first...
0
2019-02-16T22:59:50
https://www.stefanjudis.com/today-i-learned/the-hover-media-query-can-help-to-remove-hover-styles-on-touch/
css
--- title: TIL: The hover media query can help to remove hover styles on touch devices (but may include false positives) published: true tags: css canonical_url: https://www.stefanjudis.com/today-i-learned/the-hover-media-query-can-help-to-remove-hover-styles-on-touch/ --- **Please make sure to read to the end of the ...
stefanjudis
9,111
The right hash(s) for the job?
When quickly comparing files, hash collisions are likely false positives.
0
2017-10-01T12:39:52
https://dev.to/strredwolf/the-right-hashs-for-the-job-ej8
discuss, hash, perl, linux
--- title: The right hash(s) for the job? published: true description: When quickly comparing files, hash collisions are likely false positives. tags: #discussion,#hash,#perl,#linux --- Once again, I'm finding myself deduplicating a repository of files, and trying to do it right. Yeah, I could use a dedicated ...
strredwolf
105,111
Hello World
First post
0
2000-01-01T01:01:01
https://dev.to/jskulski/hello-world-ikl
hello, world
--- title: Hello World description: First post published: true date: '2000-01-01T01:01:01.441Z' tags: hello, world --- ![Steve Martin](https://thepracticaldev.s3.amazonaws.com/i/23ph0nk8gqqvhaq7jeq7.png) > "If I had *one* wish that I could wish this holiday season, it would be for all the children of the world to j...
jskulski
1,677,295
The crypto anarchist manifesto (Timothy C. May)
A specter is haunting the modern world, the specter of crypto anarchy. Computer technology is on the...
0
2023-11-24T11:47:37
https://zolagonano.github.io/blog/posts/the-crypto-anarchist-manifesto
cryptoanarchy
--- title: The crypto anarchist manifesto (Timothy C. May) published: true date: 1988-01-01 00:00:00 UTC tags: #cryptoanarchy canonical_url: https://zolagonano.github.io/blog/posts/the-crypto-anarchist-manifesto --- A specter is haunting the modern world, the specter of crypto anarchy. Computer technology is on the v...
zolagonano
1,034,365
Cloudflare Pages: Failed: an internal error occurred
I deploy my website on Cloudflare Pages (at time of writing). My builds were failing with the error...
0
2022-04-19T18:27:24
https://denizaksimsek.com/2022/cloudflare-internal-error/
--- title: Cloudflare Pages: Failed: an internal error occurred published: true date: 1970-01-01 00:00:00 UTC tags: canonical_url: https://denizaksimsek.com/2022/cloudflare-internal-error/ --- I deploy my website on Cloudflare Pages (at time of writing). My builds were failing with the error message: ``` 17:24:49.79...
dz4k
678,726
Remote work? I miss the office! well, do I?
After a year of being forced to start working remotely ( due to the pandemic), I began to notice that...
0
2021-04-26T08:10:06
https://www.manuelobregozo.com/blog/remote-work-i-miss-the-office-well-do-i
remote, pandemic, asynchronous
--- title: Remote work? I miss the office! well, do I? published: true date: 1970-01-01 00:00:00 UTC tags: remote, pandemic, asynchronous canonical_url: https://www.manuelobregozo.com/blog/remote-work-i-miss-the-office-well-do-i --- After a year of being forced to start working remotely ( due to the pandemic), I began...
manuelobre
455,126
We have liftoff! The final schedule is out!
2020 has been a rollercoaster for all of us. Our team had setbacks, we pushed through them, and what...
0
2020-09-13T19:44:27
https://dev.to/pyconindia/we-have-liftoff-the-final-schedule-is-out-3c4k
python, pyconindia, community, conference
--- title: We have liftoff! The final schedule is out! published: true date: 14/09/20 tags: python,pyconindia,community,conference canonical_url: --- 2020 has been a rollercoaster for all of us. Our team had setbacks, we pushed through them, and what a ride it has been for all of us helping to make PyCon India 2020 a...
pyconindia
302,735
Rails Configuration
Learn about my journey, learning how to set up a configuration file to streamline creating new Rails project.
0
0004-08-20T00:00:00
https://dev.to/eclecticcoding/rails-configuration-ijm
ruby, rails, todayilearned
--- title: Rails Configuration date: 4-08-20 published: true tags: ['Ruby', 'Rails', 'TIL'] cover_image: https://dev-to-uploads.s3.amazonaws.com/i/gg0c92x1f14vi2dkvv9w.jpg description: Learn about my journey, learning how to set up a configuration file to streamline creating new Rails project. --- So this article you c...
eclecticcoding
1,017,154
How to Deploy a Django Site in 2022
The world of deployment's got lots of people scratching their heads. Here is a comparison of 3 of the best options to take you from local to live.
0
0003-09-22T00:00:00
https://pyhost.io/blog/how-to-deploy-a-django-site-in-2022
deployment, django, python, heroku
--- title: How to Deploy a Django Site in 2022 description: The world of deployment's got lots of people scratching their heads. Here is a comparison of 3 of the best options to take you from local to live. cover_image: https://imgur.com/hKe4Wdj.jpg published: true tags: deployment,django,python,heroku canonical_url: h...
allmanaj
157,557
SVG Basics for d3
SVG Basics for d3 When you start learning or using d3 you will come ac...
0
2019-09-02T10:08:11
https://mappingwithd3.com/resources/d3/svg-basics/
d3js, svg
--- title: SVG Basics for d3 published: true tags: d3.js,svg canonical_url: https://mappingwithd3.com/resources/d3/svg-basics/ --- # SVG Basics for d3 When you start learning or using d3 you will come across SVGs. That‘s what most people use when they create a visualization with d3. And it‘s the easier choice and the...
milafrerichs
313,913
The Packet's-Eye View of a Kubernetes Service
The Service and Ingress respectively brings L4 and L7 traffics to your pods. In this article, I focus on how traffic flows in and what are the interactions between the ingress controller and the service-lb controller (the thing that creates the external load balancer). I also detail how the `hostPort` approach shapes t...
0
2021-05-01T07:37:40
https://maelvls.dev/packets-eye-kubernetes-service/
--- title: "The Packet's-Eye View of a Kubernetes Service" description: "The Service and Ingress respectively brings L4 and L7 traffics to your pods. In this article, I focus on how traffic flows in and what are the interactions between the ingress controller and the service-lb controller (the thing that creates the ex...
maelvls
1,915,060
Vue 3 da reaktivlik (reactivity)
Vue3 da reaktivlik (reactivity) asosiy qismlardan biri hisoblanadi, bu dastur yoki saytimizning ...
0
2024-07-07T23:59:45
https://dev.to/mukhriddinweb/vue-3-da-reaktivlik-reactivity-5amf
webdev, vue, react, mukhriddinweb
**Vue3** da reaktivlik (reactivity) asosiy qismlardan biri hisoblanadi, bu dastur yoki saytimizning dinamikligini va interaktivligini ta’minlash uchun ishlatiladi. Vue3 da reaktivlik Vue'ning Composition API (versiyasi) orqali amalga oshiriladi. Bu **"Composition API"** (v3) Vue 2 dagi **"Options API"** bilan solishti...
mukhriddinweb
1,915,059
[Game of Purpose] Day 50
Today I made Manny ragdoll when it is hit. I also make it follow the player everywhere he goes. I...
27,434
2024-07-07T23:31:38
https://dev.to/humberd/game-of-purpose-day-50-1chn
gamedev
Today I made Manny ragdoll when it is hit. I also make it follow the player everywhere he goes. I also bought a Dismemberment plugin from Unreal Marketplace for around 43 USD.
humberd
1,915,057
Deploying a React Application to Production: A Comprehensive Guide
In the world of web development, deploying a React application to production is a crucial step in...
0
2024-07-07T23:27:33
https://dev.to/nouarsalheddine/deploying-a-react-application-to-production-a-comprehensive-guide-3l7i
webdev, javascript, beginners, react
In the world of web development, deploying a React application to production is a crucial step in making your application available to users. There are several methods and platforms available for deploying React applications, each with its own set of advantages and considerations. In this blog post, we will explore var...
nouarsalheddine
1,915,056
LLM4GEN: Leveraging Semantic Representation of LLMs for Text-to-Image Generation
LLM4GEN: Leveraging Semantic Representation of LLMs for Text-to-Image Generation
0
2024-07-07T23:25:27
https://aimodels.fyi/papers/arxiv/llm4gen-leveraging-semantic-representation-llms-text-to
machinelearning, ai, beginners, datascience
*This is a Plain English Papers summary of a research paper called [LLM4GEN: Leveraging Semantic Representation of LLMs for Text-to-Image Generation](https://aimodels.fyi/papers/arxiv/llm4gen-leveraging-semantic-representation-llms-text-to). If you like these kinds of analysis, you should subscribe to the [AImodels.fyi...
mikeyoung44
1,915,055
Revolutionizing UX Design with Rabbit R1
Do you remember the last time you found an app so easy to scroll through that you just breezed right...
27,673
2024-07-07T23:14:48
https://dev.to/rapidinnovation/revolutionizing-ux-design-with-rabbit-r1-j3g
Do you remember the last time you found an app so easy to scroll through that you just breezed right through your tasks? That's the power of great UX design in action! Just imagine using an app like that every day - that's the kind of positive experience UX design can create. In today’s ever-changing technological wor...
rapidinnovation
1,835
Hack your brain to learn more, faster and better
...
0
2017-03-08T12:01:50
http://www.blinkingcaret.com/2016/05/04/hack-your-brain-learn-faster-better/
lerning, javascriptfatigue, softwaredevelopment
--- title: Hack your brain to learn more, faster and better published: true description: There has never been a time we are expected to learn so much in so little time. Learn how to hack your brain so that you learn and remember what you learned cover_image: http://www.blinkingcaret.com/wp-content/uploads/2016/05/B...
ruidfigueiredo
1,915,054
Do you want to host an AI server with API keys for free? I built a solution. APIMyLlama V2!
My new project APIMyLlama V2 is now out! For those wanting to build an AI server with distributable...
0
2024-07-07T23:13:22
https://dev.to/gimerstudios/do-you-want-to-host-an-ai-server-with-api-keys-for-free-i-built-a-solution-apimyllama-v2-3c5e
opensource, node, release, javascript
My new project APIMyLlama V2 is now out! For those wanting to build an AI server with distributable API Keys. Look no further than APIMyLlama V2. This is an app built on top of the Ollama application. This app adds support for API Keys to Ollama. If you would like to try it yourself all documentation is on GitHub. If t...
gimerstudios
505
Introduction To Me / My Programming Journey !
I've decided to blog some more, and here's where I'm going to do it.
0
2017-01-02T23:55:50
https://dev.to/gabedunn/introduction-to-me--my-programming-journey-
redxtech, introduction
--- title: Introduction To Me / My Programming Journey ! published: true description: I've decided to blog some more, and here's where I'm going to do it. cover_image: http://beta.redxtech.ca/i/Skyline.png tags: redxtech, introduction --- Hey, guys. My name is Gabe. I've decided that I am going to contribute a...
gabedunn
730
Hi, I'm Kai Rautenberg
My introduction post
0
2017-01-16T11:18:01
https://dev.to/toyflish/hi-im-kai-rautenberg
introductions
--- title: Hi, I'm Kai Rautenberg published: true description: My introduction post cover_image: tags: introductions --- I have been coding for 16 years. You can find me on Twitter [@toyflish](https://twitter.com/toyflish) or Instagram [@toyflish](https://instagram.com/toyflish) I live in my campervan l...
toyflish
952
Hi, I'm Leonardo Madeira
My introduction post
0
2017-02-02T16:54:18
https://dev.to/lmadeira/hi-im-leonardo-madeira-da-costa
introductions
--- title: Hi, I'm Leonardo Madeira published: true description: My introduction post cover_image: tags: introductions --- I have been coding for 15 years. You can find me on GitHub as [lmadeira](https://github.com/lmadeira) I live in Rio de Janeiro, Brazil. I work for Geração Futuro I mostly pr...
lmadeira
3,124
Beware Observable.Return() and it’s scheduler
This was originally posted on my blog jonstodle.com I love Reactive Extensions. It makes async so mu...
0
2017-04-21T21:58:29
https://dev.to/jonstodle/beware-observablereturn-and-its-scheduler
c, rx, reactiveextensions
--- title: Beware Observable.Return() and it’s scheduler published: true description: tags: C#, Rx, Reactive Extensions --- *This was originally posted on my blog [jonstodle.com](https://jonstodle.com/2017/03/30/beware-of-observable-return-and-its-scheduler/)* I love [Reactive Extensions](http://reactivex.io/...
jonstodle
1,040
Hi, I'm Nando Quintana
My introduction post
0
2017-02-07T17:06:45
https://dev.to/nandoquintana/hi-im-nando-quintana
introductions
--- title: Hi, I'm Nando Quintana published: true description: My introduction post cover_image: tags: introductions --- I have been coding for 19 years. You can find me on Twitter as [@NandoQuintana](https://twitter.com/NandoQuintana) I live in Bilbao. I work for Tiendata I mostly program in thes...
nandoquintana
1,392
Hi, I'm Michal Cumpl 💣
My introduction post
0
2017-02-22T20:46:04
https://dev.to/mcumpl/hi-im-michal-cumpl-
introductions
--- title: Hi, I'm Michal Cumpl 💣 published: true description: My introduction post cover_image: tags: introductions --- I have been coding since 1999. You can find me on Twitter as [@mcumpl](https://twitter.com/mcumpl) I live in Prague. I work for [company] I mostly program in JavaScript and T...
mcumpl
1,611
Hi, I'm Will
My introduction post
0
2017-03-02T22:58:21
https://dev.to/willl/hi-im-will
introductions
--- title: Hi, I'm Will published: true description: My introduction post cover_image: tags: introductions --- I have been coding for more than 15 years. You can find me on Twitter as [@willl](https://twitter.com/willl), and [Github](https://github.com/willl). I live in Melbourne, Australia. I mostl...
willl
1,759
Nevertheless, Jenn Coded
I began coding because... I wanted to create a better Apple II game than "Wheelchair Hop"...
0
2017-03-08T12:44:07
https://dev.to/geekgalgroks/nevertheless-jenn-coded
wecoded
--- title: Nevertheless, Jenn Coded published: true tags: shecoded --- ## I began coding because... I wanted to create a better Apple II game than "Wheelchair Hop" for my brother who is disabled. In reality, I never dreamed I would be a developer when I was a kid. I was going to be a famous chemist. I o...
geekgalgroks
1,796
Nevertheless, Laura Pond Coded
I didn't mean to end up here. I went to school for marketing, not computer science. Working on the...
0
2017-03-08T12:44:14
https://dev.to/lpond22/nevertheless-laura-pond-coded
wecoded
--- title: Nevertheless, Laura Pond Coded published: true tags: shecoded --- I didn't mean to end up here. I went to school for marketing, not computer science. Working on the 'tech' side of a tech startup definitely wasn't part of the plan, but here I am anyway. I'm a data analyst for a mobile payment sta...
lpond22
2,552
Dynamic Programming Series - Introduction
In this article, I will show the benefits of using a Dynamic Programming approach to solving problems with an example. In the end, I will show some steps you can use to find a Dynamic Programming solution. Hopefully, after reading this article, you will find Dynamic Programming simple and intuitive.
3,363
2017-04-01T01:40:16
http://ankursheel.com/blog/dynamic-programming-series-introduction/
dynamicprogramming, tutorial, cpp, benchmark
--- title: Dynamic Programming Series - Introduction published: true description: In this article, I will show the benefits of using a Dynamic Programming approach to solving problems with an example. In the end, I will show some steps you can use to find a Dynamic Programming solution. Hopefully, after reading this ...
ankursheel
2,565
Hi, I'm Edward Kim
My introduction post
0
2017-04-01T14:25:17
https://dev.to/haruair/hi-im-edward-kim
introductions
--- title: Hi, I'm Edward Kim published: true description: My introduction post cover_image: tags: introductions --- Hi 😎
haruair
2,695
Hi, I'm Alexandre Morgaut
My introduction post
0
2017-04-06T10:17:26
https://dev.to/amorgaut/hi-im-alexandre-morgaut
introductions
--- title: Hi, I'm Alexandre Morgaut published: true description: My introduction post cover_image: tags: introductions --- I have been coding for 36 years (20 years for JavaScript). You can find me on: * [Twitter (as @amorgaut)](https://twitter.com/amorgaut) * [Slideshare](https://www.slideshare.net/alexandre_morg...
amorgaut
2,725
Hi, I'm Antonio Chillarón
My introduction post
0
2017-04-07T11:43:43
https://dev.to/achillar/hi-im-antonio-chillarn
introductions
--- title: Hi, I'm Antonio Chillarón published: true description: My introduction post cover_image: tags: introductions --- I have been coding for 17 years. You can find me on Twitter as [@achillar2](https://twitter.com/achillar2) I live in Barcelona. I work for AlterAid. I mostly program in thes...
achillar
3,042
Hi, I'm Robert Heine
My introduction post
0
2017-04-19T08:33:11
https://dev.to/rob/hi-im-robert-heine
introductions
--- title: Hi, I'm Robert Heine published: true description: My introduction post cover_image: tags: introductions --- I have been coding for 18 years. You can find me on Twitter as [@bbq_rob](https://twitter.com/bbq_rob), or as Rob on Mastodon [@rob@m.heine.xyz](https://m.heine.xyz/@rob). I live near Munich, germa...
rob
3,774
Hi, I'm Tim
My introduction post
0
2017-05-13T18:48:45
https://dev.to/timtufts/hi-im-tim
introductions
--- title: Hi, I'm Tim published: true description: My introduction post cover_image: tags: introductions --- I have been coding for [6] years. You can find me on Twitter as [[@TimTufts](https://twitter.com/TimTufts)] I live in [Seattle]. I work for [Amazon] I mostly program in these languages: [J...
timtufts
3,989
Hi, I'm Bala
My introduction post
0
2017-05-22T11:29:35
https://dev.to/boobala/hi-im-bala
introductions
--- title: Hi, I'm Bala published: true description: My introduction post tags: introductions --- You can find me on GitHub as [boobala](https://github.com/boobala) I live in Chennai, India. I work for Zoho Corporation Pvt Ltd,. I mostly program in these languages: HTML, CSS, JAVASCRIPT Nice to me...
boobala
4,055
Hi, I'm Glen Beer
My introduction post
0
2017-05-24T01:14:24
https://dev.to/onthelake/hi-im-glen-beer
introduction
--- title: Hi, I'm Glen Beer published: True description: My introduction post tags: introduction --- I have been coding for 35 years. You can find me on Twitter as [@glenbeer](https://twitter.com/glenbeer) I live in WinterPeg. I work for: AS21774 I mostly program in these languages: Python, Go, JS...
onthelake
4,081
Hi, I'm Alexander Craggs
My introduction post
0
2017-05-24T19:51:59
https://dev.to/popey456963/hi-im-alexander-craggs
introductions
--- title: Hi, I'm Alexander Craggs published: true description: My introduction post tags: introductions --- I have been coding for 5 years. You can find me on GitHub as [popey456963](https://github.com/popey456963) I live in England. I am currently a student I mostly program in these languages: No...
popey456963
4,097
Data directed programming
Let's create an interpreter using Lisp!
0
2017-05-31T13:46:51
https://dev.to/alancampora/data-directed-programming
computerscience, lisp, scheme
--- title: Data directed programming published: true description: Let's create an interpreter using Lisp! cover_image: https://image.ibb.co/dSOSAv/lisppori_2.jpg tags: computer-science, lisp, scheme --- # Introduction Some days ago I found a course about computer science called [Structure and Interpretatio...
alancampora
4,383
The most promising breakthroughs from Google I/O 2017
In this article I’ll summarize the major announcements from Google I/O 2017 and also share my own perspectives on them as a developer.
0
2017-06-02T12:11:42
https://dev.to/aravind/the-most-promising-breakthroughs-from-google-io-2017
google, technology, android, ai
--- title: The most promising breakthroughs from Google I/O 2017 published: true description: In this article I’ll summarize the major announcements from Google I/O 2017 and also share my own perspectives on them as a developer. tags: Google, Technology, Android, AI cover_image: https://thepracticaldev.s3.amazonaw...
aravind
5,242
Hi, I'm Amar Prakash Pandey
My introduction post
0
2017-07-02T08:14:06
https://dev.to/amarlearning/hi-im-amar-prakash-pandey
introductions, amarlearning, opensource, gsoc
--- title: Hi, I'm Amar Prakash Pandey published: true description: My introduction post tags: introductions, amarlearning, Open-source, GSoC --- I have been coding for 3 years. You can find me on GitHub as [amarlearning](https://github.com/amarlearning) I live in Chennai. Currently, doing my Google Su...
amarlearning
5,334
Effective Tips to Increase Your App Store Rating
Four tips to help you improve your app's rating in stores.
0
2017-07-04T14:51:02
https://bugfender.com/blog/effective-tips-to-increase-your-app-store-rating/
appstore, apps, marketing
--- title: Effective Tips to Increase Your App Store Rating published: true description: Four tips to help you improve your app's rating in stores. tags: appstore,apps,marketing canonical_url: https://bugfender.com/blog/effective-tips-to-increase-your-app-store-rating/ --- ![](https://bugfender.com/wp-content/...
bugfenderapp
5,707
Hi, I'm Vikram Acharya
Technology Geek
0
2017-07-14T16:43:39
https://dev.to/vikramacharyaa/hi-im-vikram-acharya
introductions
--- title: Hi, I'm Vikram Acharya published: true description: Technology Geek tags: introductions --- I have been coding for 6+ years. You can find me on Twitter as [@vikramacharyaa](https://twitter.com/vikramacharyaa) I live in Mumbai. I work for Craftsvilla.com as Technology Lead I mostly program...
vikramacharyaa
6,082
Hi, I'm Himanshu Dudhat
My introduction post
0
2017-07-23T11:33:58
https://dev.to/himanshududhat/hi-im-himanshu-dudhat
introductions
--- title: Hi, I'm Himanshu Dudhat published: true description: My introduction post tags: introductions --- I have been coding for 5+ years. You can find me on GitHub as [HimanshuDudhat](https://github.com/HimanshuDudhat) I live in Navsari. I work for Goldenmace IT Solutions I mostly program in the...
himanshududhat
6,095
Hi, I'm luarbiasa
My introduction post
0
2017-07-23T14:55:16
https://dev.to/luarbiasa/hi-im-luarbiasa
introductions
--- title: Hi, I'm luarbiasa published: true description: My introduction post tags: introductions --- I have been coding for [number] years. You can find me on GitHub as [luarbiasa](https://github.com/luarbiasa) I live in [city]. I work for [company] I mostly program in these languages: [languages]...
luarbiasa
6,827
Creating dynamic layouts with Jekyll
How we used YAML front-matter to massively change the layout for different posts on our agency’s new website
0
2017-08-13T06:55:35
https://dev.to/mrmartineau/creating-dynamic-layouts-with-jekyll
jekyll
--- title: Creating dynamic layouts with Jekyll published: true description: How we used YAML front-matter to massively change the layout for different posts on our agency’s new website tags: jekyll --- ## How we used YAML front-matter to massively change the layout for different posts on our agency’s new web...
mrmartineau
7,774
Understanding Accountability
This post was first published on CoderHood as Understanding Accountability. CoderHood is a blog dedic...
0
2017-09-06T14:29:55
https://www.coderhood.com/understanding-accountability/
career, leadership, management
--- title: Understanding Accountability published: true description: tags: career, leadership, management canonical_url: https://www.coderhood.com/understanding-accountability/ cover_image: https://thepracticaldev.s3.amazonaws.com/i/fp431gvrjv7sixtza0ua.png --- This post was first published on [CoderHood](ht...
lpasqualis
7,950
How Machine Learning and AI could eventually replace development work
The future of development in terms of the Machine learning advances in not so bad.
0
2017-09-11T15:00:28
https://dev.to/theodesp/how-machine-learning-and-ai-could-eventually-replace-development-work
ai, machinelearning
--- title: How Machine Learning and AI could eventually replace development work published: true description: The future of development in terms of the Machine learning advances in not so bad. tags: AI, Machine learning --- ![machines](https://thepracticaldev.s3.amazonaws.com/i/evnjzrsc3o00t7q8qpld.jpg) Recent...
theodesp
7,960
ara
ara
0
2017-09-11T18:02:50
https://dev.to/racheltal14/ara
ara
--- title: ara published: true description: ara tags: ara --- ara
racheltal14
8,138
A full time developer and a full time hacker
Having no knowledge about cyber security as a developer is dangerous, its wise to at least have an idea.
0
2017-09-15T21:46:08
https://dev.to/lemuelogbunude/a-full-time-developer-and-a-full-time-hacker
career, programming, security, beginners
--- title: "A full time developer and a full time hacker" published: true description: Having no knowledge about cyber security as a developer is dangerous, its wise to at least have an idea. tags: #career #programming #security #beginners --- <img src="https://thepracticaldev.s3.amazonaws.com/i/5095fl4m89dlk...
lemuelogbunude
9,206
Detaching Unix Child Processes with Go
Sharing my experience working with detached-child processes in Go.
0
2017-10-03T13:48:38
https://dev.to/foresthoffman/detaching-unix-child-processes-with-go-80n
go, unix, webdev, showdev
--- title: Detaching Unix Child Processes with Go published: true description: Sharing my experience working with detached-child processes in Go. tags: go, unix, webdev, showdev cover_image: https://dev-to-uploads.s3.amazonaws.com/uploads/articles/32e1nep6dxb60zn22gxf.jpg --- EDIT (5/13/2019): `midproc` and `midprocru...
foresthoffman
9,322
How to write your first CLI with Thor
A brief tutorial on how to create your first CLI
0
2017-10-04T17:21:50
https://dev.to/fbzga/how-to-write-your-first-cli-with-thor-bam
ruby, thor, cli
--- title: How to write your first CLI with Thor published: true description: A brief tutorial on how to create your first CLI tags: Ruby, Thor, CLI --- At Magnetis we are moving our cloud infrastructure to Kubernetes. To do so I started creating a bunch of shell scripts inside our app. There is no problem with...
fbzga
9,327
Hello World with JS and Setting up your Development Environment
This post was originally posted on DailyDrip.com Today, we are going to set up our development...
0
2017-10-04T19:02:37
https://dev.to/boredcodeon/hello-world-with-js-and-setting-up-your-development-environment-4mi
javascript, javascriptzero
--- title: Hello World with JS and Setting up your Development Environment published: true tags: JavaScript, JavaScriptZero --- This post was originally posted on [DailyDrip.com](https://www.dailydrip.com/blog/hello-world-with-js-and-setting-up-your-development-environment) Today, we are going to set up our d...
boredcodeon