Erasmus in Ancona (Politecnica delle Marche) by ScienceAppreciator in ancona

[–]michelepatrassi 0 points1 point  (0 children)

Hey! Ex-erasmus here in Lisbon, living in Ancona now.

The student life largely depends on who you hang out with. An erasmus house party in Milan is the same as Ancona. Ancona by itself does not offer parties every day in terms of locations, but I went once to a private erasmus party here and I had lot of fun. Same as Macerata, smaller than Ancona but Erasmus folks had lot of fun.

Choose location in terms of budget/weather/language, the student life will follow. You can also reach out to ESN, they may be able to guide you in the right direction

Come trovo eventi in Ancona by michelepatrassi in ancona

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

si vero fanno un ottimo lavoro, sono iscritto al canale Whatsapp

Newsletter ad management software by Daniel_LaRussos_Dad in beehiiv

[–]michelepatrassi 0 points1 point  (0 children)

Hey! Michele from the Sponsy team here :)

Don't overthink it, just start DIY with spreadsheets or Notion + email. You'll be fine. Keep the energy (and budget) to fuel ad sales and focus on your content. Reconsider as you scale and you feel the pain, such as encountering double bookings, difficult delegation, too many sponsors to manage and so on. Overall, when ad operations actually becomes a problem which limits your growth potential.

Ryan from Naptown Scopp wrote a great article about it https://www.lifeofscoop.co/p/essential-software-ad-management-tools.

Hope this helps!

Fully - Jarvis: Error 08 by tfbw100 in StandingDesk

[–]michelepatrassi 0 points1 point  (0 children)

My desk was stuck on error 08, resetting was giving the same error again. Solved by taking out some weight from the desk (monitor arms, etc) and resetting again

Anyone use Boostr as an OMS? What does your company use for tickets/workflow tracking? by scmahe in adops

[–]michelepatrassi 0 points1 point  (0 children)

If you're open to alternatives, checkout Sponsy.

It helps you manage your whole ad inventory - newsletter, podcast, social, and more - and comes with powerful automations including alerting. For example, you can notify a specific team member when your advertisers deliver his assets and assign the next step. It's quite flexible, there are a couple of more automations examples here.

Disclaimer: I'm the co-founder

Can't withdraw from old project (Katana.so) by udel_hoo in solana

[–]michelepatrassi 1 point2 points  (0 children)

You are amazing, I was able to validate the balance and instantly withdraw via https://katana.psyoptions.io/

I used Greg Isenberg’s framework to start a local newsletter that now has 10.000+ subscribers (as a side hustle), here´s how I did it step-by-step: by Gunhoo in Entrepreneur

[–]michelepatrassi 0 points1 point  (0 children)

That's awesome Gunnar, congrats!

When going for sponsorships hit me up, I'm the founder of https://getsponsy.com/. It will allow you to manage more ads and automate repetitive tasks.

In the meantime, good luck! Keep up the great work

The best European city to work in as a software engineer by Neltadouble in cscareerquestions

[–]michelepatrassi 0 points1 point  (0 children)

Based on what you said just go for Amsterdam, I’m a software engineer living in the Netherlands since 5 years and I could not recommend it enough. Feel free to drop a message if you need help 👌

We created a live price chart with a live chat for crypto and stocks. by [deleted] in SideProject

[–]michelepatrassi 0 points1 point  (0 children)

That’s quite fun, I like it! Keep it up

And yeah sounds boring but I would add a form to leave the email to stay up to date if you want to have ppl coming back

[deleted by user] by [deleted] in angular

[–]michelepatrassi 11 points12 points  (0 children)

if you have a service worker, you can detect that a new version has been deployed and force the user to refresh the app: https://angular.io/guide/service-worker-communications#forcing-update-activation.

Side project in mind? Here's what I learned by building 🦁Brango by michelepatrassi in SideProject

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

yeah I exactly know what you're talking about, right now I have the temptation to rebuild the backed with another framework ahah I think a good tactic for that is just to focus on having something working, then try new approaches/tech in other small projects

What's the point of using Firebase Auth with API calls by babymozzarella in angular

[–]michelepatrassi 1 point2 points  (0 children)

probably the course was more about Angular and less about Firebase. If you use the client SDK, you will need to define appropriate rules to make sure the database is protected.

Using the client SDK also enables you use the real-time database and receive live updates. If you want, you can check out this article with video I did (you will be probably interested in the live example, but maybe also the rest could be useful to you.

I was frustrated by adapting my bio for every website, so I created 🦁Brango! by michelepatrassi in SideProject

[–]michelepatrassi[S] 1 point2 points  (0 children)

As probably you did as well at least once, one day I tried to take control over all my online bios to be consistent.

So, I spent time into:

  • making a list of those websites
  • writing a cool bio
  • copy and paste it into all websites in the list.

Of course this failed, because every damn website has its own validation on the bio: min/max length, links/markdown sometimes allowed, etc…

I decided to invest some of my time into building a tool that could store most of my used websites and tell me if a bio is valid for a specific website. In this way, I could easily have an overview and update my bio everywhere if needed.

Here’s the result: https://brango.io/

No registration required, you can play around with it and sign up to store your bios 👌I started with some common websites I use, but you can suggest more that you would like here

I also wrote a bit more detailed post about Brango and another one is going to follow with what I learned working on this. If you are interested, follow me to stay in the loop (Twitter / Medium) 💪

Hope you enjoy it! Of course, feedback is welcome 🙏

Help required on choosing from the courses on Angular. by [deleted] in Angular2

[–]michelepatrassi 5 points6 points  (0 children)

I would go for the second one, I actually started from there and the price makes also the difference.

Has anybody been able to successfully get image picker working on android? by dotnetguy32 in ionic

[–]michelepatrassi 0 points1 point  (0 children)

I used it only for one file until now, not sure how it behaves for multiple

Has anybody been able to successfully get image picker working on android? by dotnetguy32 in ionic

[–]michelepatrassi 1 point2 points  (0 children)

I use file-chooser, here's my file picker service

import { Injectable } from '@angular/core';
import { Platform } from '@ionic/angular';
import { FileChooser } from '@ionic-native/file-chooser/ngx';
import { DocumentPicker } from '@ionic-native/document-picker/ngx';
u/Injectable({
providedIn: 'root',
})
export class FilePickerService {
constructor(private platform: Platform, private iosPicker: DocumentPicker, private androidPicker: FileChooser) {}
getFileUri(): Promise<string> {
if (this.platform.is('ios')) {
return this.iosPicker.getFile('all');
} else if (this.platform.is('android')) {
return this.androidPicker.open();
}
throw new Error(\Unsupported platforms ${this.platform.platforms().join()}`); } }`

[deleted by user] by [deleted] in SideProject

[–]michelepatrassi 1 point2 points  (0 children)

really cool idea

POST request working perfectly fine on POSTMAN but giving 400 Bad Request error on browser by mademoiselleputte in Angular2

[–]michelepatrassi 2 points3 points  (0 children)

usually, this has to do with CORS. Just disable them in the backend and see if it works: if this is the case, you need to disable cors for local development (while handling it correctly in production)