This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FR: | |
| Quand tu gères un produit IA, tu jongles déjà entre le produit, la tech et la croissance. | |
| Puis arrive le marketing d'influence—et te voilà enseveli sous : | |
| → Des spreadsheets pour suivre 50+ conversations avec des créateurs | |
| → Des négociations de prix interminables | |
| → Des relances manuelles pour les deadlines de contenu | |
| → Des données éparpillées sur 10 plateformes différentes | |
| J'ai récemment découvert Aha—une plateforme de marketing d'influence où des employés IA gèrent toute la partie exécution. | |
| Ce qui m'a marqué : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func mapView(_ mapView: MKMapView, regionDidChangeAnimated animated: Bool) { | |
| let center = mapView.region.center | |
| let latitudeDelta = mapView.region.span.latitudeDelta | |
| let topPin = CLLocation(latitude: center.latitude - (latitudeDelta / 2), | |
| longitude: center.longitude) | |
| let bottomPin = CLLocation(latitude: center.latitude + (latitudeDelta / 2), | |
| longitude: center.longitude) | |
| let centerLocation = CLLocation(latitude: center.latitude, | |
| longitude: center.longitude) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func fetchMapLessons(around: CLLocation, | |
| within: Double, | |
| _ completionHandler: @escaping ([Any]?) -> Void) { | |
| let query = PFQuery(className: "ObjectClass") | |
| .addAscendingOrder("date") | |
| .whereKey("location", | |
| nearGeoPoint: PFGeoPoint(location: around), | |
| withinKilometers: within) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func fetchMapLessons(_ completionHandler: @escaping ([ObjectModel]?) -> Void) { | |
| let query = PFQuery(className: "ObjectClass") | |
| .addAscendingOrder("date") | |
| query.findObjectsInBackground { (objects, error) in | |
| guard let obj = objects else { | |
| completionHandler(nil) | |
| return | |
| } |