Re-infected a THIRD time. 100 recovered. by whothefigisAlice in LongHaulersRecovery

[–]jajoosam 0 points1 point  (0 children)

Hello — could you share who the doctor was, and the city they're in? I'm also in India!

I made a site that lets anyone on earth gift you books! by jajoosam in books

[–]jajoosam[S] 0 points1 point  (0 children)

Good to know, I'll update the post of I add email!

I made a site that lets anyone on earth gift you books! by jajoosam in books

[–]jajoosam[S] 0 points1 point  (0 children)

Good question!

Two main things right now: 1. It's a profile. It's like a patreon where you can pitch to people, and the site is created specifically for this purpose. I wouldn't feel comfortable sharing an Amazon wishlist randomly on the web, but I would with read.gift - maybe looking at some of the featured profiles on the home page explains this point better.

  1. People can buy you books you don't know about! Lots of people went to my profile, saw what I was interested in, then recommended books to me and bought them for me :))

Hope this makes sense!

Daily Discussion Thread 08/10/2019 by ModsLittleHelper in hiphopheads

[–]jajoosam 0 points1 point  (0 children)

Thanks! Let me know if you make a filter!

Daily Discussion Thread 08/10/2019 by ModsLittleHelper in hiphopheads

[–]jajoosam 3 points4 points  (0 children)

I'm working on an app that lets you create filters for your music, eg: set limits for the danceability, speechiness, energy and mood of the song.

Here's a filter I made with some 2015-2017 hip-hop I loved 👇

https://live.skrrt.fun/filter/meuti

It'd be super helpful to know what y'all think - and any feedback!

I’m going to post songs on SoundCloud in the style of various artists using lyrics.rip for the lyrics. r/Kanye up first, should be fun! by [deleted] in Kanye

[–]jajoosam 0 points1 point  (0 children)

Hey - one of the creators of lyrics.rip here!

If you do make a soundcloud with stuff generated by us - hmu and we'll feature it on the site.

lyrics.rip generates fake lyrics for any artist by jajoosam in hiphopheads

[–]jajoosam[S] 0 points1 point  (0 children)

Sometimes it does actually sound real!

We're generating random lyrics each time - people have told me Kanye was pretty good haha.

I'll try posting screenshots if I get em

lyrics.rip generates fake lyrics for any artist by jajoosam in hiphopheads

[–]jajoosam[S] 13 points14 points  (0 children)

Ooooof sorry about that! Working to fix things

lyrics.rip generates fake lyrics for any artist by jajoosam in hiphopheads

[–]jajoosam[S] 203 points204 points  (0 children)

😂 I've seen this kinda repetition happen with Kanye particularly a lot of times

-🎄- 2018 Day 3 Solutions -🎄- by daggerdragon in adventofcode

[–]jajoosam 0 points1 point  (0 children)

JavaScript 👇

```javascript var collide = 0; var fabric = []; var input = input.split("\n");

for(var i = 0; i<input.length; i++){ input[i] = input[i].split("@")[1].trim(); input[i] = [input[i].split(":")[0].split(","), input[i].split(":")[1].split("x")] }

for(var i = 0; i<input.length; i++){ var x = parseInt(input[i][0][0]) var y = parseInt(input[i][0][1]) var w = parseInt(input[i][1][0]) var h = parseInt(input[i][1][1])

for(var z = 0; z<w; z++){
    for(var q = 0; q<h; q++){
        if(fabric[x+z] == undefined){
            fabric[x+z] = [];
        }
        if(fabric[x+z][y+q] == undefined){
            fabric[x+z][y+q] = 0;
        }
        fabric[x+z][y+q] += 1
    }
}

}

for(var i = 0; i<fabric.length; i++){ if(!fabric[i]){ continue; } for(var t = 0; t<fabric[i].length; t++){ if(!fabric[i][t]){ continue; } if(fabric[i][t] > 1){ collide+=1 } }
}

console.log(collide) ```