Swedish House Mafia ft. John Martin – Don't You Worry Child

Lyrics There was a time I used to look into my father's eyes In a happy home I was a king, I had a golden throne Those days are gone Now they're memories on the wall I hear the songs from the places where I was born Up on a hill across the blue lake That's where I had my first heartbreak I still remember how it all changed My father said Don't you worry, don't you worry, child See heaven's got a plan for you Don't you worry, don't you worry now Yeah Don't you worry, don't you worry now Yeah Don't you worry, don't you worry now Yeah There was a time I met a girl of a different kind We ruled the world I thought I'd never lose her out of sight We were so young I think of her now and then I still hear the songs reminding me of a friend Up on a hill across the blue lake That's where I had my first heartbreak I still remember how it all changed My father said Don't you worry, don't you worry, child See heaven's got a plan for you Don't you worry, don't you worry now Yeah Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh See heaven's got a plan for you See heaven's got a plan for you See heaven's got a plan for you Don't you worry, don't you worry, child See heaven's got a plan for you Don't you worry, don't you worry now Yeah Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh Oh-oh-oh-oh-oh-oh-oh Yeah Source: Musixmatch Songwriters: Steve Angello / Sebastian Ingrosso / Axel Hedfors / Martin Lindstrom / Michel Zitron / John Martin

Published on


Ask HN: What book changed your life?

Saw this post on Hacker’s News. A lot of interesting books to read. Book Links The Stormlight Archive (series) by Brandon Sanderson https://news.ycombinator.com/item?id=30739083 Jacob’s Room, Virginia Woolf https://news.ycombinator.com/user?id=thatjoeoverthr Dune Man’s Search For Meaning How to Practice: The Way to a Meaningful Life – the Dalai Lama Surely you’re joking Mr. Feynman Gödel, Escher, Bach: an Eternal Golden Braid Debt: The First 5000 Years Crucial Conversations: Tools for Talking when Stakes are High by Kerry Patterson Difficult Conversations: How to Discuss What Matters Most

Published on


Luther Vandross – Dance With My Father

Lyrics Back when I was a child Before life removed all the innocence My father would lift me high And dance with my mother and me and then Spin me around till I fell asleep Then up the stairs he would carry me And I knew for sure I was loved If I could get another chance Another walk, another dance with him I'd play a song that would never ever end How I'd love, love, love to dance with my father again, ooh When I and my mother would disagree To get my way I would run from her to him He'd make me laugh just to comfort me, yeah, yeah Then finally make me do just what my momma said Later that night when I was asleep He left a dollar under my sheet Never dreamed that he would be gone from me If I could steal one final glance, one final step One final dance with him I'd play a song that would never ever end 'Cause I'd love, love, love to dance with my father again Sometimes I'd listen outside her door And I'd hear how my mother cried for him I pray for her even more than me I pray for her even more than me I know I'm praying for much too much But could you send back the only man she loved?

Published on


Wheels and Engine Sound

Last year, we took Ayden to monster truck show. We didn’t know how loud these trucks can be. So we bought ear protection headphones for him. He was still feeling a little scared. Later he came up with idea that sound of engine comes from the tires. He would keep telling me that monster trucks tires are loud or they made it louder after he put on his headphone.

Published on


The Ultimate List of Web3 Resources | howtoweb3.guide

A collection of resources to get you started programming NFT’s, Dapps & all things Web3. — Read on www.howtoweb3.guide/

Published on


How to backup Kubernetes’ Config

The easiest solution seems to be following script by Stackoverflow user, Timothy Perez : <pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-bash" data-lang="bash">#!/bin/bash # NAMESPACED EXPORTS for ns in $( kubectl get ns --no-headers | cut -d &#34; &#34; -f1 ) ; do kubectl --namespace = &#34; ${ ns} &#34; get -o = json bindings,cm,ep,ev,limits,pvc,po,podtemplates,rc,quota,secrets,sa,svc,controllerrevisions,ds,deploy,rs,sts,localsubjectaccessreviews,hpa,cj,jobs,leases,ev,ds,deploy,ing,netpol,rs,pods,netpol,pdb,roles,rolebindings | \ jq '.items[] | select(.type!=&#34;kubernetes.io/service-account-token&#34;) | del( .spec.clusterIP, .metadata.uid, .metadata.selfLink, .metadata.resourceVersion, .metadata.creationTimestamp, .metadata.generation, .status, .spec.template.spec.securityContext, .spec.template.spec.dnsPolicy, .spec.template.spec.terminationGracePeriodSeconds, .spec.template.spec.restartPolicy )' >> &#34;.

Published on


Crispy-Skinned Baked Chicken Drumsticks

Ingredients 8 (4 oz each) skin-on chicken drumsticks (about 2 lb. total weight) 2 tablespoons olive oil 1 teaspoon salt ½ teaspoon black pepper 1 teaspoon garlic powder 1 teaspoon onion powder 1 teaspoon smoked paprika 1/4 teaspoon chilli pepper Instructions Preheat your oven to 400 degrees F. Line a rimmed baking sheet with parchment paper and arrange the drumsticks in a single layer on the parchment. Make the seasoning paste: In a medium bowl, use a fork or a spatula to mix the olive oil, salt, pepper, and spices.

Published on


LeetCode 605. Can Place Flowers

/** * @param {number[]} flowerbed * @param {number} n * @return {boolean} */ var canPlaceFlowers = function (flowerbed , n ) { for ( let i = 0 ; i < flowerbed .length ; i ++ ) { if (flowerbed [i ] == 0 && (i == 0 || flowerbed [i - 1 ] == 0 ) && (i == flowerbed .length - 1 || flowerbed [i + 1 ] == 0 )) { n -- flowerbed [i ] = 1 if (n < 1 ) return true } } return n <= 0 };

Published on


LeetCode 1268. Search Suggestions System

/** * @param {string[]} products * @param {string} searchWord * @return {string[][]} */ var suggestedProducts = function (products , searchWord ) { products .sort ((a , b ) => { if (a > b ) return 1 if (a < b ) return - 1 return 0 }) const r = [] for ( let i = 1 ; i <= searchWord .length ; i ++ ) { const arr = products .

Published on


LeetCode 253. Meeting Rooms II

Lack of built-in Priority Queues in JavaScript makes it a bit hard to do problems like this. I end looking at the solution: /** * @param {number[][]} intervals * @return {number} */ var minMeetingRooms = function (intervals ) { if (intervals .length < 1 ) return 0 const startTimes = [] const endTimes = [] for ( let i = 0 ; i < intervals .length ; i ++ ) { startTimes [i ] = intervals [i ][ 0 ] endTimes [i ] = intervals [i ][ 1 ] } startTimes .

Published on


Prev Next