<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Posts on abschill's blog</title><link>https://blog.abschill.com/posts/</link><description>Recent content in Posts on abschill's blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>dev3141592@gmail.com (abschill)</managingEditor><webMaster>dev3141592@gmail.com (abschill)</webMaster><copyright>©2022, something, in theory</copyright><lastBuildDate>Fri, 05 Aug 2022 00:00:00 +0000</lastBuildDate><sy:updatePeriod>weekly</sy:updatePeriod><atom:link href="https://blog.abschill.com/posts/index.xml" rel="self" type="application/rss+xml"/><item><title>Quick Tips - javascript proxies</title><link>https://blog.abschill.com/posts/quick-tips/proxy-js/</link><pubDate>Fri, 05 Aug 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Fri, 05 Aug 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/proxy-js/</guid><description>The Proxy object in javascript Allows you to create a wrapper for another object, which can intercept and redefine fundamental operations for that object.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/javascript.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>javascript</category><category>quick-tips</category></item><item><title>Quick Tips - npm dist tags</title><link>https://blog.abschill.com/posts/quick-tips/npm-dist-tags/</link><pubDate>Fri, 29 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Fri, 29 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/npm-dist-tags/</guid><description>Tags can be used to provide an alias instead of version numbers. For example, a project might choose to have multiple streams of development and use a different tag for each stream, e.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/npm.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>node</category><category>npm</category><category>quick-tips</category></item><item><title>Quick Tips - npm semver tokens</title><link>https://blog.abschill.com/posts/quick-tips/npm-semver-tokens/</link><pubDate>Fri, 29 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Fri, 29 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/npm-semver-tokens/</guid><description>You may have noticed before, in package.json files, the dependency versions include a prefix that tell npm how to look for updates.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/npm.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>node</category><category>npm</category><category>quick-tips</category></item><item><title>Quick Tips - npm lifecycle scripts</title><link>https://blog.abschill.com/posts/quick-tips/npm-lifecycle-scripts/</link><pubDate>Thu, 28 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Thu, 28 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/npm-lifecycle-scripts/</guid><description>NPM Lifecycle scripts The &amp;ldquo;scripts&amp;rdquo; property of your package.json file supports a number of built-in scripts and their preset life cycle events as well as arbitrary scripts.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/npm.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>node</category><category>npm</category><category>quick-tips</category></item><item><title>Quick Tips - publishing npm packages</title><link>https://blog.abschill.com/posts/quick-tips/publishing-npm-packages/</link><pubDate>Thu, 28 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Thu, 28 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/publishing-npm-packages/</guid><description>Publishing an NPM package Things to remember In package.json, make sure you define the following fields before publishing
main</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/npm.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>node</category><category>npm</category><category>quick-tips</category></item><item><title>Quick Tips - Set in Javascript</title><link>https://blog.abschill.com/posts/quick-tips/javascript-set/</link><pubDate>Wed, 27 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Wed, 27 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/javascript-set/</guid><description>When writing javascript, most of us default to using objects/arrays when we need to store stuff. It makes the most sense usually, but there are 2 other types that are often slept on.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/javascript.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>code-quality</category><category>quick-tips</category></item><item><title>Quick Tips - Map in Javascript</title><link>https://blog.abschill.com/posts/quick-tips/javascript-map/</link><pubDate>Mon, 25 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Mon, 25 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/javascript-map/</guid><description>When writing javascript, most of us default to using objects/arrays when we need to store stuff. It makes the most sense usually, but there are 2 other types that are often slept on.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/javascript.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>code-quality</category><category>quick-tips</category></item><item><title>Quick Tips - variadic unions in typescript</title><link>https://blog.abschill.com/posts/quick-tips/variadic-unions/</link><pubDate>Thu, 14 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Thu, 14 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/variadic-unions/</guid><description>A lot of the time, you want to define union types in typescript, and you would set it up like this by default for a small collection of enumerated values-as-types:</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/typescript.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>typescript</category><category>quick-tips</category></item><item><title>hugo is kind of amazing</title><link>https://blog.abschill.com/posts/hugo-is-awesome/</link><pubDate>Wed, 13 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Wed, 13 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/hugo-is-awesome/</guid><description>I think I finally enjoy having a blog in practice the way I enjoyed it in theory in my head when I would be like taking a shower or driving in traffic or something.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/hugo.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>hugo</category><category>effort</category><category>themes</category><category>go language</category><category>rationalizing my decisions in life</category></item><item><title>Quick Tips - npm workspaces</title><link>https://blog.abschill.com/posts/quick-tips/npm-workspaces/</link><pubDate>Tue, 12 Jul 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Tue, 12 Jul 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/npm-workspaces/</guid><description>Many of you might be in a similar position to where I was, thinking lerna still served some sort of useful purpose in the node ecosystem, but no, it doesnt apparently.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/npm.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>node</category><category>npm</category><category>quick-tips</category></item><item><title>Quick Tips - cwd vs dirname in node</title><link>https://blog.abschill.com/posts/quick-tips/cwd-vs-dirname/</link><pubDate>Tue, 21 Jun 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Tue, 21 Jun 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/cwd-vs-dirname/</guid><description>These 2 are commonly used to mean pretty different things in node.
process.cwd() is a function that is evaluated to the working directory of the process, by default this is the directory where the process was called from (where &amp;ldquo;node index.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/nodejs.png" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>node</category><category>quick-tips</category></item><item><title>Quick Tips - Early Returns</title><link>https://blog.abschill.com/posts/quick-tips/early-returns/</link><pubDate>Mon, 20 Jun 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Mon, 20 Jun 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/quick-tips/early-returns/</guid><description>A good tip to keep in mind when programming is minimizing your use of else statements. When possible, exit the function context earlier given a value that establishes the given return, rather than reflecting that with an else statement to check for something else.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comimages/programming.jpeg" medium="image"><media:title type="html">featured image</media:title></media:content><category>quick-tips</category><category>code-quality</category><category>quick-tips</category></item><item><title>Welcome to my new blog again</title><link>https://blog.abschill.com/posts/welcome-new/</link><pubDate>Sun, 12 Jun 2022 00:00:00 +0000</pubDate><author>dev3141592@gmail.com (abschill)</author><atom:modified>Sun, 12 Jun 2022 00:00:00 +0000</atom:modified><guid>https://blog.abschill.com/posts/welcome-new/</guid><description>As you may have noticed, there are less articles than there were before.
I decided I wanted to remove the longer tutorial posts I had because I am simply not interested in making that longer content and will be transitioning to primarily shorter &amp;ldquo;quick tips/opinion&amp;rdquo; types of posts instead.</description><dc:creator>abschill</dc:creator><media:content url="https://blog.abschill.comfavicon/sweatshirt.jpeg" medium="image"><media:title type="html">featured image</media:title></media:content><category>hugo</category><category>effort</category><category>themes</category><category>go language</category><category>rationalizing my decisions in life</category></item></channel></rss>