Skip to content

Instantly share code, notes, and snippets.

View hvitis's full-sized avatar
👨‍🔬
Never trust atoms; they make up everything.

Adam Piskorek hvitis

👨‍🔬
Never trust atoms; they make up everything.
View GitHub Profile
@hvitis
hvitis / mixins.py
Created January 11, 2022 00:03 — forked from vst/mixins.py
Some Django model mixins
# Copyright (c) 2012, Vehbi Sinan Tunalioglu <vst@vsthost.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# - Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
@hvitis
hvitis / javascript_tips_01.js
Created January 11, 2022 10:08
🔥 JavaScript Syntactic Sugar 🍭
// Nullish coalescing operator with conditional chaining
let alien = {
isAware: true,
location : {
planet: "C435",
distance: 30 // light years
}
};
const alienGreeting = alien?.name ?? "Welcome Stranger!";