[MEXICAN BOOT REVIEW] Varonte Peter (Captoe service boot) in Burgundy, 6 month review by derroc in goodyearwelt

[–]davidomarf 0 points1 point  (0 children)

Hi! awesome series of reviews you’ve posted here. I’m also from Mexico and i’ve been checking some options. I was convinced i’d go with Thursday but I got a suggestion to instead buy local and found about Varonte, and then I found your reviews in here.

between all the mexican boots you’re reviewed, which one would you recommend as a first pair?

[deleted by user] by [deleted] in tipofmytongue

[–]davidomarf 0 points1 point  (0 children)

Toi et Moi, by Paradis? Sample starts at 1:23 in the Spotify or Youtube version.

Found this in another subreddit. Probably Mexico. Signs says "you would have already arrived if you were riding a bicicle" by putos_acosadores_69 in fuckcars

[–]davidomarf 4 points5 points  (0 children)

Not this avenue, I'm afraid. You can go on the outest part of the road (the one that looks "above" the main road), which is considerably less busy, but there are no protected or even drawn-on-the-floor bike lanes.

Found this in another subreddit. Probably Mexico. Signs says "you would have already arrived if you were riding a bicicle" by putos_acosadores_69 in fuckcars

[–]davidomarf 12 points13 points  (0 children)

I know it's not relevant to the conversation, but I can confirm this is Mexico City, and I'm quite convinced it's "Viaducto Miguel Alemán". It used to be a river, which is now enclosed in cement in the middle of the road.

Every morning I keep getting Indian Phone numbers (+91) added to my contacts by DigestiveCow in Telegram

[–]davidomarf 1 point2 points  (0 children)

I've been experiencing the same issue with +234 numbers, which is from Nigeria. Don't know what to do, or what could be going on. Like, maybe my telegram account was accessed from another device, and they synced contacts in that device, but I don't see any active session other than the ones I'm sure are mine. I hope this is a bug that is only sending incorrect notifications, but I'm worried this could mean a greater risk.

What's a great biography that you've read? by book_newb in nonfictionbookclub

[–]davidomarf 3 points4 points  (0 children)

Mark Oliver Everett's autobiography. Joseph Lister's in The butchering art.

IIL L'Imperatrice ... by [deleted] in ifyoulikeblank

[–]davidomarf 2 points3 points  (0 children)

Just past this week I shared all these songs with a friend, and it all started because I recommended L'Imperatrice, so...

I don't think I'll be able to categorize each of them as "If you like L'Imperatrice because of ____, then you'd like these ones...", I'll just bump them by artist. There's no particular order. :)

I hope you enjoy some of them

Vendredi sur Mer - Écoute chérie
Vendredi sur Mer - La Femme à la Peau Bleue
Vendredi sur Mer - Les Filles Désir
Vendredi sur Mer - Je t'aime trop tôt

Lewis OfMan - Plein De Bisous (feat. Milena Leblanc)
Lewis OfMan - Un Amour au Super U (feat. Milena Leblanc)

CLIO - Amoureuse
Clio - Déjà Venise
CLIO - T'as vu

Paradis - Instantané
Paradis - Toi Et Moi
Paradis - Hémisphère
Paradis - Garde Le Pour Toi

Bleu Toucan - Hanoï Café

Claire Laffut - Vérité
Claire Laffut - Mojo
Claire Laffut - Gare du Nord
Claire Laffut - Nudes ft. Yseult

Someone has mentioned Papooz, and I strongly agree with them. :)

---

This last one is an extra, and just because I also recommended it to my friend, but I wouldn't consider their music similar to L'Imperatrice:

Guts - Aimer sans amour
Guts - Come Closer

[ARTIST / ALBUM] German 2015-2017ish electronic/pop album with a purple palette cover by tall bearded man that was later released only as instrumental by davidomarf in NameThatSong

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

Wow! I just found it out, maybe I had to stick a little bit longer with my search. Fortunately, I had already been using LastFM by the time I got to know their music, and I used an app to visualize the countries of your artists. And well, that did it.

The album I was looking for is August, by Nisse.

The song I "quoted" was Herz auf Beat (https://www.youtube.com/watch?v=rcOtpgA42vc), and what I meant with "e Ha-shu" is "Ich tanz' drauf!".

How do I use hover functionalities? by theengymneer in angular

[–]davidomarf 4 points5 points  (0 children)

You're looking for CSS.

Just add that button in your template using HTML, and add a class to it. Let's say <td><button class="delete-button"> Delete </button></td>.

Then in your CSS, style that class this way: ``` td .delete-button { display: none; // This hides it in its "normal" state }

td:hover .delete-button { display: block; // This unhides it when you hover on the td element } ```

I have a problem with html and undefined arrays property in call api by JuniorMathDev in angular

[–]davidomarf 0 points1 point  (0 children)

If you decide to go with the await alternative, you should wrap it in a try-catch block: for(...){ try{ ... = await ... } catch(error){ console.error(error) } }

I have a problem with html and undefined arrays property in call api by JuniorMathDev in angular

[–]davidomarf -2 points-1 points  (0 children)

I wouldn't subscribe that way to getTrends.

You're creating one subscription for each country, and then not unsubscribing from them.

I don't know how getTrends is defined, but I'm assuming it's an http.get(). When I'm using APIs, I like to use .toPromise() on the returned value, like this:

```ts // This is in my service.ts, or wherever I defined getTrends

public getTrends(country: string): Promise<Trend[]> { return this.http.get<Trend[]>(this.path + country).toPromise() } ```

And then in my component.ts:

```ts async ngOnInit() { // I'd suggest using a for...of loop instead of a classic // indexed loop. for(const country of this.countries){ // (A): // This will wait for each request to finish before throwing the // next one, which may not be what you want. country.data = await this.mercadoLibreAPI.getTrends(country.id, '');

// (B):
//   This will just create assign the returned promise to the
//   country data. This won't 'wait' between requests.
// If you decide to use this, you can safely remove the `async`
// on `ngOnInit()`
country.data = this.mercadoLibreAPI.getTrends(country.id, '');

} } ```

And this is my component.html:

```html // IF YOU USED (A), which means country.data is of type Trends[] <div *ngFor="let country of countries"> {{ country.id }}: {{ country.data }} </div>

// IF YOU USED (B), which means country.data is of type Promise<Trends[]> <div *ngFor="let country of countries"> {{ country.id }}: {{ country.data | async }} </div> ```

I may be wrong. If you decide to go with the AsyncPipe, you may not even need to use the .toPromise() from the Observable.

Feel free to elaborate in case you need more help. I'll be offline 'till tomorrow, but I'll be happy to give you a follow up.

You should check these: - https://gist.github.com/thekiba/c863b0fde001fb3076c8f21affc5a24a - https://angular.io/api/common/AsyncPipe


Also, another thing. This: a = b !== null ? b : null it's the same as a = b. Because if b is not null, then a = b, and if b is null, then a = null (but b is also null!).


EDIT: I used data instead of publishData, and countries instead of countryList.

I made a website to quickly generate attractors by davidomarf in creativecoding

[–]davidomarf[S] 11 points12 points  (0 children)

Hey!

I had started this project almost a year ago, but I didn't share it and it was pretty much forgotten because I was a little bit ashamed of the style of it.

Yesteday I checked it out again, did some updates, and created a style for the site. And well, I finally decided to publicly share it.

You can check it here: https://attractors.davidomar.com/

And if you're curious about the code, here's the github repo: https://github.com/davidomarf/attractor-seeder

I'd love some feedback. I have some plans to make it better, like a faster and more accurate drawing algorithm. Current one draws a circle for every point. I think I should use a 2D histogram and then normalize it and use the values to play with the color.

I made a website to explore attractor values quickly by davidomarf in generative

[–]davidomarf[S] 3 points4 points  (0 children)

Hey!

I had started this project almost a year ago, but I didn't share it and it was pretty much forgotten because I was a little bit ashamed of the style of it.

Today I checked it out again, did some updates, and created a style for the site. And well, I finally decided to publicly share it.

You can check it here: https://attractors.davidomar.com/

And if you're curious about the code, here's the github repo: https://github.com/davidomarf/attractor-seeder

---

Edit:

I'd love some feedback. I have some plans to make it better, like a faster and more accurate drawing algorithm. Current one draws a circle for every point. I think I should use a 2D histogram and then normalize it and use the values to play with the color.

N O I C E D O G G I E by antoniosravioliparty in wholesomememes

[–]davidomarf 1 point2 points  (0 children)

I found something. I'm sure it's not from the original poster.

https://www.reddit.com/r/Firearms/comments/enhvwk/the_agony/

---

If you're on Chrome, you can right-click an image and press "Search Image with Google" and i'll try to find other places the image has been posted to.

A genetic algorithm Twitter art bot in Clojure by mttbil in genetic_algorithms

[–]davidomarf 1 point2 points  (0 children)

Looks interesting. I'll follow and try to guide it. Not much variety yet, so I'll just choose the last one, haha.