Этот сайт использует файлы cookies. Продолжая просмотр страниц сайта, вы соглашаетесь с использованием файлов cookies. Если вам нужна дополнительная информация, пожалуйста, посетите страницу Политика файлов Cookie
Subscribe
Прямой эфир
Cryptocurrencies: 10467 / Markets: 103479
Market Cap: $ 2 740 866 528 558 / 24h Vol: $ 92 294 881 611 / BTC Dominance: 61.064653963924%

Н Новости

Использование ChatGPT o3-mini и DeepSeek при создании iOS приложения Countries “Страны Мира”

Что делает “животворящая” конкуренция?

Появление “думающей” DeepSeek, позволило бесплатным подписчикам ChatGPT получить доступ к “рассуждающей” ChatGPT o3-mini.

Сразу же появилось желание испытать этот ИИ, тем более что у меня уже есть “Опыт создания iOS приложения Countries с помощью Claude 3.5 Sonnet, ChatGPT 4.o1, ChatGPT 4.o-preview и Gemini 2.0 Flash”.

В приведенном выше посте я предложила всем ИИ создать довольно простое на первый взгляд тестовое iOS приложение Countries, которое показывает все страны Мира по регионам (Европа, Азия, Латинская Америка и т.д.) и для каждой страны её название и флаг, a также численность населения population, размер ВВП (валового внутреннего продукта) gdp и расположение страны на карте Мира.

Использовались данные Всемирного банка (World Bank), но мы не сообщали ИИ ни сайты, ни структуры данных, всё это ИИ должен найти сам и использовать их при создании iOS приложения.

Раньше я отдавала предпочтение Clause 3.5 Sonnet при создании iOS приложений, прибегая к ChatGPT 4.o1 для решения отдельных проблем.

Но при разработке этого конкретного iOS приложения Clause 3.5 Sonnet оказался совершенно беспомощным при декодировании нестандартных JSON данных API Всемирного Банка, поставляющих информацию о странах, и пришлось обратиться за помощью к ChatGPT 4.o1, Gemini 2.0 Flash и ChatGPT 4.o-preview.

Они решили эту проблему по-разному:

  • ChatGPT 4.o1 - с первого захода,

  • Gemini 1.5 Flash, также, как и Clause 3.5 Sonnet, не справилась с этой задачей,

  • Gemini 2.0 Flash - со второго захода,

  • ChatGPT 4.o-preview сразу предложил блестящее оригинальное решение.

Кроме того, все 3 ИИ: ChatGPT 4.o1, Gemini 2.0 Flash и ChatGPT 4.o-preview предлагали для многопоточной выборки данных из сети старый CGD (Central Grand Dispatch), так что приходилось дополнительно рефакторить код до современного async / await.

Так что опыт создания такого тестового iOS приложения с помощью Clause 3.5 Sonnet + ChatGPT 4.o1 у меня уже был.

Но появление “рассуждающих” DeepSeek и ChatGPT o3-mini (даже в бесплатном варианте) изменили всё. Они реально выводят разработку iOS приложений на более высокий уровень.

Вот решение, которое предложил ChatGPT o3-mini:

22d80c1744cff75a35cfd2ef4e357048.gif

A вот что предложил DeepSeek:

7f28bc0bcc3267f950bdf1d9a4585be2.gif

Забегая вперед скажу, что это тестовое приложение интересно тем, что API Всемирного банка предоставляет “странную” нестандартную структуру JSON данных на верхнем уровне, a также есть логические ошибки несоответствия при проектировании этого API, когда одинаковые параметры в JSON данных имею различные ТИПЫ, что может затруднить их декодирование. Было интересно посмотреть, как ИИ справится с этой “человеческой” нелогичностью.

Кроме того, в современном Swift сейчас действуют 3 способа работы с многопоточной выборкой данных:

  1. Старый GCD (Grand Central Dispatch) c callbacks

  2. Новый async / await

  3. Продвинутый Swift 6 strict concurrency, который предотвращает “гонку данных” (data races) на этапе компиляции за счет использования акторов actor и изоляции isolation.

Будет интересно понять, какой из них выберет ИИ и сможет ли перейти на самый продвинутый.

Появление задания по отображению страны Мира на карте также было предложено не случайно. Разработка приложения велась для iOS 17, a на WWDC 2023 был представлен новый MapKit APIs для SwiftUI Map. С появлением новых API интеграция карт Map в приложение SwiftUI стала еще проще в iOS 17. Недостатком является то, что вам, возможно, придется переписать некоторые части интеграции карт в существующем приложении SwiftUI. Будет интересно, смогут ли наши ИИ внедрить в приложение Countries совершенно новый Map API для iOS 17.

Примечание. Если хотите больше знать о Swift 6 strict concurrency прочтите статью Concurrency Step-by-Step: A Network Request или её перевод на русский язык “Многопоточность по шагам: Сетевой запрос”.

По итогам ChatGPT o3-mini:

  1. Без каких либо проблем справился с декодированием JSON данных, удивив некоторыми изобретательными решениями.

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил несколько вариантов перехода на Swift 6 strict concurrency с помощью @MainActor и маркировки функций выборки как nonisolated или использования Task.detached.

  4. Сначала предложил для карты старый API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Рассуждения краткие, по делу и длятся от 1 до 25 секунд, среднее время 8 секунд.

  7. Могу рекомендовать в качестве превосходного обучающего материала для iOS разработчиков.

По итогам DeepSeek:

  1. Без каких либо проблем справился с декодированием JSON данных, но застрял при установлении соответствия страны country и дополнительной информации о численности населения population и ВВП gdp, что объясняется “логическими ошибками” проектирования API Всемирного Банка

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил для Swift 6 strict concurrency использовать @MainActor для View Model, a после замечаний добавил маркировку функций выборки fetch как nonisolated.

  4. Сначала предложил старый Map API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений довольно успешно перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Плохо держит контекст: иногда для отработанных уже кусков кода предлагает код с предыдущими ошибками, так что результирующий код приложения на каждом этапе приходится собирать по кусочкам.

  7. Рассуждения очень пространные и длинные, но очень "живые" и любопытные, иногда правда сомнительные. Рассуждения длятся от 184 до 18 секунд, среднее время 50 секунд. A кроме того, последнее время часто можно видеть сообщение “Сервер занят. Пожалуйста, попробуйте позже.”:

f44dbb2fbe04d4e9f9eebefc44e1deda.png

Начинающим iOS программистам рекомендую использовать с крайней осторожностью в качестве обучающего материала - слишком много неоднозначных рассуждений относительно архитектуры iOS приложений.

Хотя по функциональным возможностям полученные ChatGPT o3-mini и DeepSeek iOS приложения приблизительно равны, код их абсолютно разный. Оба ИИ способны удивить не тривиальным изобретательным кодом. Качество кода можно оценить на Github CountryChatGPTo3 и CoutryDeepSeek.

Но использование DeepSeek потребовало больше времени и усилий программиста, работа ChatGPT o3-mini при меньших усилиях просто филигранна.

Так что приоритетным ИИ при разработке iOS приложений для меня на настоящий момент будет ChatGPT o3-mini.

Создание iOS приложения Countries для отображения стран Мира с помощью ChatGPT 03-mini

Итак, давайте попросим ChatGPT 03-mini создать полноценного iOS приложения Countries для отображения стран Мира по категориям с использованием SwiftUI и данных Всемирного Банка. При этом мы не будем сообщать ни сайты, ни структуры данных, всё это ИИ должен найти сам и использовать при создании приложения.

Создай iOS приложение, которое показывает страны Мира по категориям. Используй информацию Всемирного Банка.

Мы использовали режим “Reason”, который обещает применять логические выводы для получения результата, и “Search”, который позволит ИИ искать ответы в интернете:

fc090d3b955538d00a15592b24688a59.png

В результате мы получаем рассуждения, которые длятся 1 секунду:

204fdcf989cb9b74219dd89c2c1612bf.pngИ вот их перевод

Создание приложения

Я думаю о создании SwiftUI iOS приложения для демонстрации стран Мира по категориям, используя API Всемирного банка для таких данных, как название страны, регион и уровень дохода.

Формулирование структуры

Я пишу код SwiftUI приложения с моделью Country: Codable и ViewModel, использующей async/await для выборки списков стран из API Всемирного банка, классифицируя их по уровню дохода или региону.

Собираем всё вместе

Я работаю над декодированием второго элемента JSON, в котором перечислены страны countries с такими полями, как id, iso2Code, region, incomeLevel, capitalCity, longitude и latitude. Это включает определение структуры struct Country: Codable.

Преобразование данных

Я собираю по кусочкам структуру struct Country: Codable с такими полями, как id, iso2Code, name, region, incomeLevel, capitalCity, longitude и latitude. Также рассматриваю модель API ответа Response для декодирования JSON.

Создание моделей ответов Response

Я разрабатываю собственный декодер decoder для обработки массива JSON API Всемирного банка, сосредоточившись на втором элементе, содержащем данные о странах, и включив метаданные для управления страницами.

Компиляция данных о стране

Я собираю View Model в SwiftUI для выборки данных из API Всемирного банка, группирую страны по уровню дохода и готовлю View для их представления в категоризированных разделах.

Запуск приложения

Я создаю Swift приложение для отображения стран Мира по уровню дохода, используя разделы Section и категории, при этом предоставляя в распоряжение пользователя DetailView для более полной информации о стране.

Ниже приведен пример того, как можно создать приложение SwiftUI iOS, которое выбирает список стран Мира из API Всемирного банка, а затем отображает их, организованных по «категории» (в этом примере мы группируем их по уровню дохода incomeLevel).

URL для выборки стран Мира - это country endpoint API Всемирного банка (по адресу https://api.worldbank.org/v2/country?format=json), который возвращает двухэлементный разнородный массив JSON:

  • Первый элемент — это метаданные (например, количество страниц), а

  • Второй элемент — массив записей о странах.

    Мы можем создать пользовательский декодер decoder для «декодирования» этого массива верхнего уровня.

Ниже приведен полный код примера со следующими частями:

1. Модели данных (Data Model)

Создайте модель для страны. API возвращает такие поля, как id, name, region, incomeLevel и т. д. Мы также создаем вспомогательную модель для декодирования «странного» JSON массива верхнего уровня:

код Data Model
import Foundation

// MARK: - Models

// This struct is used to decode the top-level array.
// We ignore the first element (metadata) and then decode the second element as an array of Country.
struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}

// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}

// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}

// A helper type for nested category fields (like region, incomeLevel, etc.)
struct Category: Codable {
    let id: String
    let value: String
}

2. View Model

View Model отвечает за выборку данных из API Всемирного банка, а затем за группировку стран по (в данном случае) уровню дохода incomeLevel. Вы можете выбрать любую понравившуюся вам категоризацию (например, по региону region).

код View Miodel
import Foundation
import SwiftUI

class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group countries by income level (or any category)
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Using async/await (requires iOS 15+)
    @MainActor
    func fetchCountries() async {
        // Request more than the default per_page (here 300) to get most of the countries.
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            countries = response.countries
            // Group by income level (for example, "High income", "Low income", etc.)
            groupedCountries = Dictionary(grouping: countries, by: { $0.incomeLevel.value })
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
}

3. SwiftUI Views

Основной ContentView: список List, отображающий разделы Section (уровни дохода incomeLevel) с названиями стран. Нажатие на страну открывает подробный CountryDetailView.

код Views
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
          List {
              // Sort the keys (income levels) alphabetically
              ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { incomeLevel in
                 Section(header: Text(incomeLevel)) {
                     if let countries = viewModel.groupedCountries[incomeLevel] {
                       ForEach(countries) { country in
                          NavigationLink(destination: CountryDetailView(country: country)) {
                                    Text(country.name)
                          }
                       }
                     }
                 }
              }
          }
          .navigationTitle("World Countries")
          // Use the .task modifier to call our async fetch function on appear.
          .task {
              await viewModel.fetchCountries()
          }
        }
    }
}

Подробный CountryDetailView показывает дополнительную информацию о выбранной стране.

struct CountryDetailView: View {
    let country: Country
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Собираем все вместе

В главном файле вашего проекта Xcode (обычно помеченном @main) вы можете установить ContentView в качестве стартовой точки:

@main
struct WorldBankCountriesApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

Примечание: в этом примере используется синтаксис iOS 15+ async/await. Если вам нужна поддержка более ранних версий, вы можете использовать Combine или URLSession callbacks..

(См. также руководство Hacking with Swift по посылке и получению Codable данных с помощью URLSession для похожего шаблона. HACKINGWITHSWIFT.COM)

Объяснение

  1. Выборка и декодирование данных:

View Model выбирает данные из API endpoint Всемирного банка. Поскольку ответ response JSON представляет собой массив (сначала метаданные, затем фактический массив стран), для декодирования стран используется пользовательский init(from decoder: Decoder) в структуре CountryResponse.

(Подробнее о структурах, полученных в результате выборки см. в документации API Всемирного банка DATAHELPDESK.WORLDBANK.ORG.)

  1. Группировка и отображение данных:

После выборки страны countries группируются по уровню дохода incomeLevel с помощью Swift метода Dictionary(grouping:by:). В View каждая группа отображается как отдельный раздел Section. Это дает категориальное представление стран мира. (Для аналогичного подхода к группировке и отображению данных API в SwiftUI см. примеры выборки данных SwiftUI DEV.TO.)

  1. Async/Await:

Использование async/await обеспечивает отзывчивость UI во время выполнения сетевого запроса.

Этот пример дает отправную точку. Вы можете изменить логику группировки (например, по региону region или уровню дохода incomeLevel) или добавить больше деталей в CountryDetailView по мере необходимости.

Ссылки

HACKINGWITHSWIFT.COM – Статья на Hacking with Swift “Sending/receiving Codable data with URLSession and SwiftUI”) (“Посылка /получение Codable данных с помощью URLSession и SwiftUI”)

DATAHELPDESK.WORLDBANK.ORG – Базовые структуры вызовов API Всемирного банка

Этот пример должен помочь вам начать создавать iOS SwiftUI приложение, которое отображает страны Мира, организованные по категориям, с использованием данных API Всемирного банка. Удачного кодирования!

Версия 1. Запускаем приложение. Получаем результат:

5f25d90f646805abb6ea84820b5654ea.png

В списке стран мы получили НЕ только реальные страны Мира, но и агрегаты AGGREGATES, что для нас не желательно. Кроме того, мы хотим заносить страны в ту или иную категорию НЕ по уровню дохода incomeLevel, a по географическим регионам region.

Что касается кода, то ChatGPT o3-mini справился прекрасно. Несмотря на “странную” нестандартную структуру JSON данных на верхнем уровне, представляющую собой массив из 2-х разнородных элементов, ChatGPT o3-mini, используя пользовательский init (from decoder: Decoder) в структуре CountryResponse, получил правильные данные о странах countries. Выборка данных из сети выполнена с помощью современной async / await системы работы с многопоточностью.

Показ реальных стран (НЕ агрегатов) и группировка по регионам region

Давайте попросим ChatGPT o3-mini показать нам только реальные страны и сгруппировать их по регионам.

13b52eded3fb7c526e66e74e5a52116b.png

Покажи только реальные страны в списке стран и сгруппируйте их по регионам region

В результате мы получаем рассуждения, которые длятся 19 секунд:

4d5e0cd43a9c0767ae15a8f42b4e9884.pngИ вот их перевод:

Уточнение списка

Я размышляю над тем, что представляет собой «реальная страна», фильтруя агрегированные сущности, такие как «Арабский мир» ("Arab World") или «Европа и Центральная Азия» ("Europe & Central Asia" ) из API Всемирного банка, сосредоточившись исключительно на суверенных государствах.

Определение агрегатов

Я изучаю структуру JSON API Всемирного банка, чтобы определить поля, которые различают агрегированные сущности. Например, регионы, такие как «NA» или «Aggregates», вероятно, указывают на несуверенные сущности, которые можно отфильтровать, чтобы сосредоточиться на реальных суверенных государствах.

Определение агрегатов

Хорошо, дайте подумать. Агрегаты в API Всемирного банка обычно имеют значение region «Aggregates». Фильтрация их и сущностей с «NA» в качестве region.id кажется многообещающим. Код Swift может эффективно с этим справиться.

Уточнение модели

Хорошо, дайте подумать. Я дорабатываю View Model, чтобы отфильтровать агрегаты, гарантируя, что после декодирования страны не будут их содержать

countries = response.countries.filter { $0.region.value != "Aggregates" }.

Организация по региону

Я группирую реальные страны по регионам, используя словарь Dictionary в View Model. Обновляю ContentView заголовками header разделов Sections для регионов region и размещаю список соответствующих стран под каждым заголовком. Прогресс стабильный и продуманный.

Ниже приведен обновленный пример, который выбирает данные по странам Всемирного банка, отфильтровывает несуверенные "агрегаты" (т. е. оставляет только "реальные" страны Мира), а затем группирует их по регионам region. В этом примере мы предполагаем, что любая страна, значение региона region которой равно "Aggregates", должна быть исключена.

Код разделен на три части:

1. Модели данных(Data Model)

Определите свои модели, как и прежде. Ответ response верхнего уровня — это массив unkeyedContainer, который мы декодируем, игнорируя первый элемент (метаданные), а затем декодируем список стран:

код Data Model
import Foundation

// MARK: - Models

struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode and ignore metadata.
        _ = try container.decode(Meta.self)
        // Decode the countries array.
        countries = try container.decode([Country].self)
    }
}

struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}

struct Country: Codable, Identifiable {
    let id: String            // This is the country code.
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}

struct Category: Codable {
    let id: String
    let value: String
}

2. View Model

Теперь View Model выбирает данные, отфильтровывает все страны со значением region.value равным “Aggregates” (которые Всемирный банк использует для нереальных групп стран), а затем группирует оставшиеся страны по регионам region.

код View Model
import Foundation
import SwiftUI

class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    @MainActor
    func fetchCountries() async {
        // Use a per_page parameter high enough to include most countries.
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out aggregates - only include countries whose region value is not "Aggregates"
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            
            // Group the filtered countries by region.
            groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
}

3. SwiftUI Views

Основной List View:

Список стран сгруппирован в разделы Section по регионам (с названием региона в качестве заголовка). Нажатие на конкретную страну покажет подробную дополнительную информацию о стране в CountryDetailView.

код ContentView и CountryDetailView :
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
            List {
                // Sort region names alphabetically.
                ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { region in
                   Section(header: Text(region)) {
                      if let countriesInRegion = viewModel.groupedCountries[region] {
                        ForEach(countriesInRegion) { country in
                          NavigationLink(destination: CountryDetailView(country: country)) {
                                    Text(country.name)
                          }
                        }
                      }
                   }
                }
            }
            .navigationTitle("World Countries")
            .task {
                await viewModel.fetchCountries()
            }
        }
    }
}

Подробный CountryDetailView: показывает дополнительную информацию о выбранной стране.

struct CountryDetailView: View {
    let country: Country
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  1. Фильтрация реальных стран:

В методе View Model fetchCountries() после декодирования JSON мы отфильтровываем все страны, значение value региона region которых равно «Aggregates». Этот шаг гарантирует, что в вашем списке появятся только суверенные государства.

  1. Группировка по региону:

Оставшиеся страны затем группируются в словарь с помощью Dictionary(grouping:by:) с ключом region.value.

  1. Отображение данных:

SwiftUI список List использует раздел Section для каждого региона region, а нажатие на строку показывает подробное CountryDetailView c дополнительной информацией о стране.

В этом примере показано, как отображать только «реальные» страны, сгруппированные по региону. При необходимости вы можете дополнительно настроить критерии фильтрации. Удачного кодирования!

Версия 2. Запускаем приложение. Получаем результат:

18dc1e6e000bd0151825064033eee917.png

Сейчас в списке стран только реальные страны Мира, нет никаких агрегатов AGGREGATES. Кроме того, страны сгруппированы по географическим регионам region.

Что касается кода, то ChatGPT o3-mini справился прекрасно.

Добавляем численность населения population и ВВП gdp

Теперь мы хотим добавить численность населения population и ВВП gdp для каждой страны:

7b1ebc7916ca515a1d5e5b09830c5906.png

добавь численность населения population и ВВП gdp и флаг к каждой стране. Используй эмодзи для флага.

В результате мы получаем рассуждения, которые длятся 25 секунд:

8ed3b7c707064556ca29c0d638225830.pngИ вот их перевод:

Обогащение данных

Чтобы обогатить набор данных по странам данными о населении, ВВП и флаге, я использую API Всемирного банка. Население и ВВП берутся из определенных endpoints, а эмодзи флага выводится из кода страны.

Оценка эффективности API

Я рассматриваю либо отдельные вызовы для данных каждой страны, что требует больших затрат, либо массовый вызов indicator endpoint для оптимизации обработки путем объединения результатов.

Расширение модели

Я интегрирую поля population и gdp для населения и ВВП в модель страны Country, одновременно выводя эмодзи флага из ISO2 кода с помощью расширения extension Swift. Этот подход прост и эффективен.

Преобразование выбранных данных

Я думаю о получении данных о населении population и ВВП gdp путем выполнения раздельных API вызовов для множества стран, а затем анализа выбранных JSON данных с целью создания словаря для эффективного преобразования данных.

Реализация многопоточных вызовов

Объединение многопоточных выборок данных для населения population и ВВП gdp в View Model. Эти значения пока отсутствуют в модели страны Country, поэтому их можно передать непосредственно в View для интеграции.

Улучшение модели

Я думаю о добавлении дополнительных свойств для населения population и ВВП gdp в модель страны Country. Эти значения, извлеченные из разных endpoints, можно было бы предоставить отдельно или интегрировать с помощью вычисляемых свойств для ясности.

Улучшение обработки данных

Я думаю о том, следует ли добавлять дополнительные Optional переменные var для населения population и ВВП gdp в структуру страны Country, хранящуюся отдельно в View Model. Этот подход поддерживает четкую, управляемую структуру данных.

Настройка View Model

Я помещаю данные о населении population и ВВП gdp в словари внутри View Model, которые обновляются сразу же после выборки стран. Это обеспечивает организованное и актуальное управление данными.

Управление данными

Я настраиваю View Model для хранения данных о населении population и ВВП gdp в словарях. Это включает многопоточную выборку этих значений после выборки данных о странах, что обеспечивает плавный и организованный процесс выборки.

Улучшение обработки данных

Я настраиваю View Model для управления данными о населении population и ВВП gdp в словарях Dictionary, синхронизированных с идентификаторами соответствующих им стран, что обеспечивает эффективный и организованный поиск данных.

Обеспечение согласованности

Использование id с трехбуквенным ISO кодом для стран countries упрощает точную “привязку” данных о населении population и ВВП gdp из API Всемирного банка.

Точное сопоставление данных

Обеспечение того, чтобы трехбуквенные ISO коды в структуре страны Country правильно соответствовали countryiso3code API Всемирного банка для точной “привязки” данных о населении population и ВВП gdp.

Эффективная организация данных

Создание новых структур для данных о населении population и ВВП gdp для упрощения сопоставления по коду страны, что обеспечивает согласованность с API ответами response. Такой подход приведет к более четкой обработке и анализу данных.

Точная “привязка” данных

Я работаю над структурами для обработки данных о населении population и ВВП gdp, обеспечивая точную “привязку” данных по коду страны. Такой подход оптимизирует ясность и анализ данных.

Обновление модели

Я добавляю асинхронные async запросы для выборки данных о населении population и ВВП gdp, “привязывая” результаты выборки по коду страны с соответствующими словарями для эффективного управления данными и анализа.

Создание асинхронных функций

Я совершенствую асинхронные async функции для выборки данных о населении population и ВВП gdp по странам, декодирую их в словари и обрабатываю ошибки для обеспечения точности данных.

Улучшение UI

Я работаю над отображением населения population, ВВП gdp и эмодзи флага для каждой страны в View. Использование расширения String для эмодзи флага обеспечивает безупречное, интуитивно понятное представление данных.

Форматирование значений ВВП

Я создаю основной View со списком List для четкого отображения отформатированных данных о ВВП gdp и населении population, включая отсутствующие данные как «N/A», используя number formatters и условный рендеринг.

Ниже приведен обновленный полный пример. В этой версии мы:

  • Получаем список «реальных» стран (фильтруя агрегаты “Aggregates”)

  • В многопоточном режиме получаем последние данные о населении (индикатор «SP.POP.TOTL») и ВВП (индикатор «NY.GDP.MKTP.CD») для каждой страны (используя данные за последний год, например, 2022)

  • Вычисляем эмодзи флага из двухбуквенного ISO кода страны

  • Отображаем флаг, название, население и ВВП каждой страны в списке (сгруппированном по регионам)

1. Модели данных Data Model

Мы используем ту же модель Country (декодирование из массива верхнего уровня) и добавляем расширение extension для преобразования флагов в эмодзи. Мы также определяем простые модели для ответов response индикаторов Indicator.

код Data Model
import Foundation

// MARK: - Models
// This struct is used to decode the top-level array.
// We ignore the first element (metadata) and then decode the second element as an array of Country.
struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}
// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}
// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}
// A helper type for nested category fields (like region, incomeLevel, etc.)
struct Category: Codable {
    let id: String
    let value: String
}
//------
// MARK: - Indicator API Models
// Response to decode indicator data
struct IndicatorResponse: Codable {
    let data: [IndicatorData]
    
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        _ = try container.decode(Meta.self)
        data = try container.decode([IndicatorData].self)
    }
}
struct IndicatorData: Codable {
    let indicator: Indicator?
    let country: IndicatorCountry?
    let countryiso3code: String?
    let date: String?
    let value: Double?
    let unit: String?
    let obs_status: String?
    let decimal: Int?
}
struct Indicator: Codable {
    let id: String?
    let value: String?
}
struct IndicatorCountry: Codable {
    let id: String?
    let value: String?
}
// MARK: - Flag Emoji Extension
extension String {
    /// Converts a 2-letter country code into its corresponding flag emoji.
    var flagEmoji: String {
        self.uppercased().unicodeScalars.compactMap { scalar -> String? in
            guard let flagScalar = UnicodeScalar(127397 + scalar.value) else { return nil }
            return String(flagScalar)
        }.joined()
    }
}

2. View Model

View Model теперь выбирает список стран countries, фильтрует агрегаты “Aggregates”,, а затем — используя async let — выбирает последние данные о населении population и ВВП gdp для всех стран из endpoint индикатора. Мы сохраняем эти значения в словарях (ключом к которым служит трехбуквенный код страны), чтобы View могло их найти.

код View Model:
import SwiftUI
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Indicator dictionaries: country id -> value
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    @MainActor
    func fetchCountries() async {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out non‑sovereign aggregates (assume region value "Aggregates" means not a real country)
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            async let popResult = fetchPopulation()
            async let gdpResult = fetchGDP()
            _ = try await (popResult, gdpResult)
            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    // Fetch population (indicator "SP.POP.TOTL") for year 2022.
    func fetchPopulation() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
        await MainActor.run { self.populationData = dict }
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD") for year 2022.
    func fetchGDP() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        await MainActor.run { self.gdpData = dict }
    }
}

3. SwiftUI Views

В списке List теперь отображаются эмодзи флага каждой страны (вычисляется на основе двухбуквенного ISO кода), название, население population и ВВП gdp. Если значение недоступно, то отображается «N/A».

Основной View со списком List (сгруппирован по регионам):

Код ContentView и CountryDetailView
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
            List {
                ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { region in
                    Section(header: Text(region)) {
                        if let countries = viewModel.groupedCountries[region] {
                            ForEach(countries) { country in
                                NavigationLink(destination: CountryDetailView(
                                     country: country,
                                     population: viewModel.populationData[country.id],
                                                                              
                                     gdp: viewModel.gdpData[country.id])) {
                                    HStack {
                                        // Flag emoji from iso2Code
                                        Text(country.iso2Code.flagEmoji)
                                            .font(.largeTitle)
                                        VStack(alignment: .leading) {
                                            Text(country.name)
                                                .font(.headline)
                                            HStack {
                                                if let 
                                               pop = viewModel.populationData[country.id] {
                                                    Text("Population: \(pop)")
                                                } else {
                                                    Text("Population: N/A")
                                                }
                                                Spacer()
                                                if let gdp = viewModel.gdpData[country.id] {
                                                    Text("GDP: \(gdp, specifier: "%.0f")")
                                                } else {
                                                    Text("GDP: N/A")
                                                }
                                            }
                                            .font(.subheadline)
                                            .foregroundColor(.secondary)
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .navigationTitle("World Countries")
            .task {
                await viewModel.fetchCountries()
            }
        }
    }
}

Detail View (с дополнительной информацией):

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

Эмодзи флаг:

Расширение extension строки String преобразует двухбуквенный ISO код (например, «US») в соответствующий эмодзи флаг. Это используется как в списке List, так и в подробном CountryDetailView.

Население и ВВП:

Отдельные асинхронные async функции вызывают endpoints индикатора Всемирного банка для населения population и ВВП gdp за указанный год (в данном примере 2022). Результаты сохраняются в словарях, имеющих ключи по трехбуквенному коду страны.

(Этот подход по стилю похож на примеры использования URLSession с async/await

HACKINGWITHSWIFT.COM.)

Отображение данных:

В главном списке List для каждой страны отображаются флаг, название, население и ВВП (если доступно). В подробном CountryDetailView отображаются те же данные вместе с дополнительными полями.

В этом примере показано, как обогатить список стран реальными данными о населении и ВВП вместе с флаговым эмодзи в виде флага. Удачного кодирования!

Версия 3. Запускаем приложение. Получаем результат:

Выдается ошибка:

Error fetching countries: typeMismatch(Swift.String, Swift.DecodingError.Context(codingPath: [_CodingKey(stringValue: "Index 0", intValue: 0), CodingKeys(stringValue: "per_page", intValue: nil)], debugDescription: "Expected to decode String but found number instead.", underlyingError: nil))

(Ошибка при выборке стран: typeMismatch(Swift.String, Swift.DecodingError.Context(codingPath: [_CodingKey(stringValue: "Index 0", intValue: 0), CodingKeys(stringValue: "per_page", intValue: nil)], debugDescription: "Ожидается декодирование строки String, но вместо этого найдено число.", underlyingError: nil))

Поэтому информация о численности населения Population и ВВП GDP показывается как N/A как в основном списке стран, так и в дополнительной информации о стране.

6d422e0a486ac79313998407873859f2.png

Это опять связано с декодированием метаданных индикатора endpoint Indicator.

У нас используется одна и та же Модель Meta для метаданных:

// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int

Как для endpoint country при выборке стран:

 struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}

… так и для endpoint Indicator при выборке численности населения и ВВП:

// MARK: - Indicator API Models
// Response to decode indicator data
struct IndicatorResponse: Codable {
    let data: [IndicatorData]
    
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        _ = try container.decode(Meta.self)
        data = try container.decode([IndicatorData].self)
    }
}

Но судя по ошибке и просмотру “живых” JSON данных для численности населения, мы видим, что per_page в метаданных indicator является НЕ String, a число Int ):

69ca81b5fc5f8f5dce266aaaa9dac9ce.png

Все ИИ плохо работают с неаккуратно спроектированными человеком структурами.

И в этой ситуации ChatGPT удивила очень интересным решением.

Корректируем полe “per_page” в Индикаторе

Давайте сообщим об этом ChatGPT o3-mini:

30b8d95e7d6ad78670a41e210d518e24.png

В Meta для CountryResponse поле “per_page” является строкой String, a Meta для IndicatorResponse поле “per_page” является целым числом Int

В результате мы получаем рассуждения, которые длятся 10 секунд:

af78f60a42382a16c721ff79242883a1.pngВот их перевод:

Устранение несоответствий ТИПов

Я работаю над несоответствиями между 'per_page' как String в CountryResponse и Int в IndicatorDataResponse. Решение: пользовательский Decodable для унификации этих ТИПов.

Создание универсального ТИПа

Я разрабатываю IntOrString ТИП, который может управлять декодированием как Int, так и String. Этот подход может устранить несоответствие ТИПов 'per_page'. Теперь следующим шагом будет интеграция с ТИПом Meta.

Разработка решений

Я собираю воедино пользовательский ТИП IntOrString для декодирования per_page, специфичного для каждой endpoint. Этот адаптивный метод обеспечивает эффективное управление ТИПом Meta, поддерживая код оптимизированным и актуальным.

Повышение гибкости данных

Я создаю сообщение для устранения несоответствия в "per_page" в разных API. Реализация гибкого ТИПа для декодирования обеспечивает плавную интеграцию и согласованность данных.

Разработка решения

Я разрабатываю ТИП FlexibleInt для искусной обработки декодирования из Int или String, гарантируя, что поле Meta "per_page" останется согласованным, будь то целое число Int или строка String.

Когда API возвращает одно и то же поле, используя разные ТИПы (например, «per_page» как String в одном ответе response и как Int в другом), хорошим подходом является создание пользовательского ТИПа, который может декодировать любой из них. Например, вы можете определить ТИП (здесь он называется FlexibleInt), который пытается декодировать Int напрямую, а если это не удается, пытается декодировать String, а затем преобразовать его в Int. Затем вы используете этот ТИП в своей модели Meta.

Ниже приведен пример:

import Foundation

// A type that decodes either an Int or a String convertible to an Int.
struct FlexibleInt: Codable {
    let value: Int

    init(from decoder: Decoder) throws {
        let container = try decoder.singleValueContainer()
        if let intValue = try? container.decode(Int.self) {
            self.value = intValue
        } else if let stringValue = try? container.decode(String.self),
                  let intValue = Int(stringValue) {
            self.value = intValue
        } else {
            throw DecodingError.dataCorruptedError(
                in: container,
                debugDescription: "Expected Int or String convertible to Int"
            )
        }
    }
    
    func encode(to encoder: Encoder) throws {
        var container = encoder.singleValueContainer()
        try container.encode(value)
    }
}

// Update the Meta model to use FlexibleInt for per_page.
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: FlexibleInt  // now flexible
    let total: Int
}

Теперь, как в CountryResponse, так и в IndicatorDataResponse (или любом другом ответе response, который использует объект Meta), вы можете использовать этот же ТИП Meta. Такой подход гарантирует, что независимо от того, возвращает ли API «per_page» как строку String или как целое число Int, ваш код сможет декодировать его согласованно.

Объяснение

FlexibleInt:

Пользовательский ТИП сначала пытается декодировать как Int. Если это не удается, он декодирует String и преобразует его в Int. Если ни то, ни другое не работает, он выдает ошибку.

Модель Мeta:

Вместо того, чтобы определять "per_page" как фиксированный ТИП (Int или String), мы определяем его как FlexibleInt. Это позволяет использовать одну и ту же модель для обеих endpoints, где API возвращает другой ТИП для этого поля.

Это решение позволяет вашим моделям быть устойчивыми к небольшим несоответствиям API.

Версия 4. Запускаем приложение. Получаем результат:

15e34751913a2f3baa5b72bd7153651b.png

Приложение отлично работает - ошибок нет, но есть предупреждения:

266be672c8b652bc66b0e30d1c56f1dd.png

Избавляемся от предупреждений

Давайте попросим ChatGPT o3-mini разобраться с этими предупреждениями:

33c8a10a870137f45ff15e0dbea50499.png

ТИП, который “выводится из контекста” для константы ‘popResult’, это ‘()’, что может быть неожиданным. ТИП, который “выводится из контекста” для константы ‘gdpResult’, это ‘()’, что может быть неожиданным.

В результате мы получаем рассуждения, которые длятся 13 секунд:

c2ada3af7c40a5d99e449b36b8eec22b.pngВот их перевод:

Оценка выходных данных функций

Я собираю информацию о том, что fetchPopulation() и fetchGDP() возвращают Void. Это, в свою очередь, приводит к тому, что popResult и gdpResult имеют ТИП (), что неожиданно. Пришло время переосмыслить подход.

Возвращаясь к многопоточности

Я уточняю, как обрабатывать асинхронные async функции, сравнивая последовательные вызовы с try await против async let. Последовательные вызовы могут упростить обработку ТИПов и сократить количество ошибок.

Оценка вариантов

Я планирую различные способы одновременного вызова асинхронных async функций. Использование try await с ThrowingTaskGroup(of:) кажется самым простым и эффективным решением.

Управление многопоточностью

Я выясняю, как использовать асинхронные async функции и одновременно await их с помощью try await. Такой подход управляет ожидаемыми ТИПами и поддерживает эффективность обработки.

Баланс многопоточности

Я работаю над вариантами многопоточных асинхронных async вызовов функций, рассматривая передовой опыт для обеспечения эффективности и соответствия ожидаемым ТИПам. Хм, дайте подумать: эффективная многопоточность — это ключ.

Выбор решения

Я рассматриваю возможность удаления назначений для асинхронных функций, чтобы избежать предупреждений. Явные аннотации ТИПов или подчеркивания _ могут помочь. Такой подход может упростить процесс.

Разбор многопоточности

Я работаю над асинхронными вызовами функций, чтобы оптимизировать многопоточность. Явные аннотации ТИПов или подчеркивания _ могут помочь избежать предупреждений и обеспечить плавную обработку возвращаемых типов Void.

Выравнивание возвращаемых значений функций

Я гарантирую, что асинхронные вызовы функций соответствуют ожиданиям ТИПа Void. Явные аннотации ТИПов или подчеркивания _ помогают избежать предупреждений, улучшая процесс кодирования.

Предупреждение появляется, потому что ваши асинхронные async функции возвращают Void, поэтому привязка async let выводит из контекста” ТИП () (Void). Чтобы убрать предупреждение, вы можете явно аннотировать ТИП как Void или просто await их, не пытаясь захватить значение, которое вам не нужно. Например, обновите свой код следующим образом:

// In your fetchCountries() method
async let popResult: Void = fetchPopulation()
async let gdpResult: Void = fetchGDP()

try await popResult
try await gdpResult

В качестве альтернативы, если результаты вас вообще не интересуют, вы можете просто вызывать их последовательно:

try await fetchPopulation()
try await fetchGDP()

Использование явных аннотаций ТИПов (как в первом примере) дает понять, что вы ожидаете Void, и устраняет предупреждение “inferred type ()” («выведенный из контекста ТИП - ()»).

Используем второй альтернативный способ.

// Fetch population and GDP concurrently.
         //   async let popResult = fetchPopulation()
         //   async let gdpResult = fetchGDP()
             try await  fetchPopulation()
             try await fetchGDP()

У нас есть еще предупреждения:

75652e66221ec5a4694e88d0f353c4b7.png

Давайте попросим ChatGPT o3-mini разобраться с этими предупреждениями:

184f96d906ab1b7ad1668db869a607b7.png

ссылка на захваченную переменную var 'dict' в многопоточном коде, это ошибка в режиме Swift 6

В результате мы получаем рассуждения, которые длятся 17 секунд:

1eeabb080b3c77ee1b8f86a4a82b6c52.pngВот их перевод:

Устранение ошибки многопоточности

Довольно интересно, что Swift 6 отмечает проблемы с изменяемыми переменными в многопоточном коде. Чтобы исправить это,сделайте назначение локальным переменным в асинхронных замыканиях, обеспечивая неизменяемость.

Исследование проблем многопоточности

Я проверяю, является ли предупреждение Swift 6 о захвате переменной var 'dict' в многопоточном замыкании действительным. Проблема возникает во время выполнения блока MainActor.run, который захватывает изменяемую переменную 'dict'.

Смягчение изменяемости

Хм, я думаю сделать 'dict' неизменяемой переменной или скопировать её перед замыканием. Мы выполним назначение переменной за пределами замыкания, что безопасно и безошибочно. Swift 6 заставляет применять эти передовые практики.

Эта ошибка обычно возникает, когда изменяемая переменная (например, ваш локальный словарь 'dict') захватывается многопоточное замыкание. Один из способов исправить это — создать неизменяемую копию (константу let) словаря после того, как вы закончите его сборку, а затем использовать ее в замыкании MainActor. Например, обновите свои функции следующим образом:

код fetchPopulation() и fetchGDP()
func fetchPopulation() async throws {
    guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
    let (data, _) = try await URLSession.shared.data(from: url)
    let decoded = try JSONDecoder().decode(PopulationDataResponse.self, from: data)
    var dict: [String: Int] = [:]
    for item in decoded.data {
        if let code = item.countryiso3code, let value = item.value {
            dict[code] = Int(value)
        }
    }
    // Create an immutable copy before passing it to MainActor
    let result = dict
    await MainActor.run {
        self.populationData = result
    }
}

func fetchGDP() async throws {
    guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
    let (data, _) = try await URLSession.shared.data(from: url)
    let decoded = try JSONDecoder().decode(GDPDataResponse.self, from: data)
    var dict: [String: Double] = [:]
    for item in decoded.data {
        if let code = item.countryiso3code, let value = item.value {
            dict[code] = value
        }
    }
    let result = dict
    await MainActor.run {
        self.gdpData = result
    }
}

Объяснение

  • Неизменяемая копия: после создания вашего изменяемого словаря (dict) назначьте его константе (let result = dict). Это гарантирует, что замыкание, переданное в MainActor.run, захватит неизменяемое значение, что безопасно в многопоточных контекстах.

  • Замыкание MainActor.run: теперь замыкание использует result (константу let) для обновления вашего @Published свойства, избегая ошибки многопоточности.

Это должно устранить ошибку «reference to capture var 'dict'» в Swift 6 режиме.

Если я нахожусь в режиме Swift 5:

f1b736accff90af99b9271f8af76c1e7.png

… то предупреждения исчезли:


6a0f4a88915ace52306a59c8dd8b826b.png56059fdf8edd757d7742af29bef99855.png

Swift 6 concurrency

Но если я переключусь в Swift 6 режим:

79235ed0656337476c5604f35f0c0ea5.png

То вернутся не просто предупреждения, a ошибки, поскольку в режиме Swift 6 strict concurrency на уровне компиляции обнаруживаются ошибки, связанные с “гонкой данных” (data races):

cdb3a3473a0fc21a8e941a04faf92639.png22111d702da3a6d0c7a0655282ed05a1.png

Давайте сообщим об этих ошибках ChatGPT o3-mini:

cdbd80fec898247b22991c27fd28d36f.png

Посылка «self» рискует вызвать гонку данных в коде await MainActor.run {

self.populationData = result } в режиме Swift 6

В результате мы получаем рассуждения, которые длятся 6 секунд:

e76fa939142514aa52de6843e646325e.pngВот их перевод:

Управление гонками данных

Я изучаю обработку «self» в actor-изолированных замыканиях, чтобы избежать “гонок данных” (data races). Обеспечение надлежащей изоляции «self», особенно в fetchCountries, является ключевым фактором.

Определение лучшей настройки

Чтобы обеспечить безопасное назначение «self» в fetchCountries, маркировка всей View Model как @MainActor является многообещающим вариантом. Это эффективно предотвращает “гонки данных” (data races).

Обеспечение безопасности данных

Чтобы избежать “гонок данных” (data races), я рекомендую маркировать весь View Model класс class как @MainActor. Этот метод сохраняет «self» изолированным как MainActor, гарантируя безопасность обновлений свойств.

Сделаем акцент на изоляции

Хорошо, дайте-ка подумать. Маркировка всей View Model как @MainActor гарантирует, что свойства изолированы как MainActor, избегая “гонок данных” (data races) без необходимости захватывать «self» внутри MainActor.run.

Распространенное решение — убедиться, что ваша View Model уже изолирована как MainActor, чтобы вам не пришлось захватывать self внутри блока MainActor.run. Другими словами, пометьте свою View Model с помощью @MainActor. Например:

код View Model
import SwiftUI

@MainActor
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    @Published var groupedCountries: [String: [Country]] = [:]
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    func fetchCountries() async {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out aggregates
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            self.groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            try await  fetchPopulation()
            try await fetchGDP()            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    // Fetch Population (indicator "SP.POP.TOTL")
    func fetchPopulation() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(PopulationDataResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
        // Since self is already isolated to the main actor, assign directly.
        self.populationData = dict
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD")
    func fetchGDP() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(GDPDataResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        self.gdpData = dict
    }
}

Зачем использовать @MainActor?

Отмечая свою View Model с помощью @MainActor, вы гарантируете, что все свойства и функции в ней будут выполняться на MainActor. Таким образом, когда вы обновляете свои @Published свойства (например, populationData или gdpData), вы уже находитесь в основном потоке (main thread) и вам не нужно беспокоиться о захвате self в замыкании MainActor.run, что в Swift 6 может привести к “гонкам данных”(data races), если self НЕ изолирован.

Такой подход должен устранить предупреждение или сообщение об ошибке о “гонке данных” (data races), одновременно гарантируя безопасное обновление self на MainActor.

Версия 5. Запускаем приложение. Получаем результат:

f6f926d9e655fa099266aca06f228246.gif

Есть небольшая задержка в появлении данных на экране, которая, возможно, связана с @MainActor.

Все fetch функции выполняем на background

Давайте попробуем все fetch функции выполнить на background.

b5b181f4dda553f7b40dd4bb023fa105.png

Как запустить функцию fetch в фоновом режиме, а не в основном потоке?

В результате мы получаем рассуждения, которые длятся 6 секунд:

c72d809e17d8adbd1e5b36fb2e82576c.pngВот их перевод:

Обработка сетевых вызовов

Хорошо, дайте подумать. Задача заключается в управлении функцией fetch в View Model, которая является @MainActor, гарантируя, что обновления UI находятся в основном потоке, а сетевые вызовы — в фоновом потоке.

Размышляя о фоновом выполнении

Мне интересно, как nonisolated методы в классе @MainActor могут работать в фоновом режиме. Интересно, что маркировка их как nonisolated позволяет это сделать.

Управление nonisolated методами

Я рассматриваю возможность использования nonisolated методов для таких задач, как выборка данных и их декодирование. Просто предостерегаю от доступа к состоянию или обновлению UI из этих методов, чтобы сохранить actor изоляцию.

Навигация по nonisolated функции

Я думаю о том, чтобы маркировать функции как nonisolated в классе @MainActor, гарантируя, что обновления self будут на MainActor, избегая при этом прямого доступа к MainActor изолированным состояниям.

Балансировка выполнения

Я разбираюсь, как маркировка методов как nonisolated в классе @MainActor позволяет выполнять фоновое выполнение без прямого доступа к свойствам, MainActor изолированным.

Обеспечение безопасного потока данных

Отмечая fetch функции как nonisolated в классе @MainActor, я гарантирую, что они будут работать в фоновых потоках. Прямой доступ к MainActor свойствам не допускается; должны возвращаться только вычисленные значения.

Обеспечение безопасных обновлений

Я отмечаю, что nonisolated функции в классе @MainActor должны возвращать только вычисленные значения, а обновления должны выполняться безопасно на MainActor для поддержания принципов потокобезопасности и изоляции.

Ниже приведен пример View Model, которая помечена @MainActor (чтобы ее @Published свойства безопасно обновлялись в основном потоке), но использует nonisolated фоновые функции для выполнения выборки из сети и декодирования. Эти nonisolated функции возвращают выбранные данные, а не обновляют состояние напрямую. Затем MainActor функция loadCountries ожидает await эти результаты и обновляет состояние UI.

код view Model
@MainActor
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Indicator dictionaries: country id -> value
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    func loadCountries() async {
        do {
            // This network call runs off the background thread.
            let fetchedCountries = try await fetchCountriesInBackground()
            // Now update the UI on the main actor
            countries = fetchedCountries
            groupedCountries = Dictionary(grouping: fetchedCountries, 
                                                by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            // This network call runs off the background thread.
            async let popResult = fetchPopulation()
            async let gdpResult = fetchGDP()
            let (pop, gdp) = try await (popResult, gdpResult)
            // Now update the UI on the main actor
            self.populationData = pop
            self.gdpData = gdp
            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    nonisolated private func fetchCountriesInBackground() async throws -> [Country] {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            throw URLError(.badURL)
        }
        let (data, _) = try await URLSession.shared.data(from: url)
        let response = try JSONDecoder().decode(CountryResponse.self, from: data)
        // Filter out aggregates here if desired.
        return response.countries.filter { $0.region.value != "Aggregates" }
    }
    
    // Fetch population (indicator "SP.POP.TOTL") for year 2022.
    nonisolated private func fetchPopulation() async throws -> [String: Int] {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return [:]}
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
              return dict
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD") for year 2022.
    nonisolated private func fetchGDP() async throws ->  [String: Double]{
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return   [:]}
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        return dict
    }
}

Как это работает:

  1. nonisolated функции:

  • Функции fetchCountriesInBackground(), fetchPopulation() и fetchGDP() помечены как nonisolated, поэтому они могут работать в фоновом потоке. Они выполняют сетевые вызовы и декодирование JSON без доступа к какому-либо изолированному состоянию @MainActor.

  1. loadCountries() на MainActor:

  • Функция loadCountries() — это функция @MainActor, которая вызывает эти nonisolated функции (используя await). После завершения фоновой работы она обновляет @Published свойства (например, страны countries, groupedCountries и т. д.) на MainActor.

  1. Многопоточная выборка:

  • Данные о населении и ВВП выбираются одновременно с помощью синтаксиса async let, а их результаты ожидаются await вместе.

Этот шаблон четко отделяет тяжелую работу по выборке из сети/декодированию (выполняемую вне основного потока) от обновлений UI (которые должны выполняться на MainActor). Удачного кодирования!

Версия 6. Запускаем приложение.

Получаем результат:

9a3c7bca444e24ef9b7453f20acd33af.gif

Это все, что мы можем сделать с многопоточностью.

Добавляет карту страны

6640a2f46d3969529083d6111097bf2d.png

Покажи страну на карте в CountryDetailView

В результате мы получаем рассуждения, которые длятся 8 секунд:

0d38e9e185c034dbc18b2032b60b56e5.pngВот их перевод:

Обновление View

Я интегрирую MapKit View в CountryDetailView с помощью SwiftUI. Это включает import MapKit, преобразование широты latitude и долготы longitude страны в Doubles и настройку координат региона.

Улучшение отображения

Я добавляю новый раздел Section в CountryDetailView для отображения карты. Это включает инициализацию координат региона с широтой latitude и долготой longitude страны country и включение маркера MapMarker для подсвечивания местоположения столицы страны на карте.

Обеспечение географической точности

Я убеждаюсь, что широта latitude и долгота longitude правильно преобразованы в Double для MapKit. Затем я проверяю модель данных на предмет правильной обработки ТИПов данных и создания аннотаций на карты.

Установка границ территории

Я определяю View Map(coordinateRegion: $region, annotationItems: [country]) с координатами региона, центрированного на широте latitude и долготе longitude страны, обеспечивая точность представления географических данных.

Ниже приведена обновленная версия CountryDetailView, которая добавляет View Map, показывающее местоположение страны. В этом примере мы создаем MKCoordinateRegion (используя широту и долготу из модели Country, которые хранятся в виде строк String), а затем отображаем карту с маркером в этом месте. Мы добавляем этот новый раздел Section “Map” (“Карта”) в форму Form под другими разделами Section.

Обязательно импортируйте import MapKit в свой файл.

Код CountryDetailView:
import SwiftUI
import MapKit

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Create a region state from the country's latitude/longitude.
    @State private var region: MKCoordinateRegion
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert latitude/longitude strings to Double.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        _region = State(initialValue: MKCoordinateRegion(
            center: CLLocationCoordinate2D(latitude: lat, longitude: lon),
            span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
        ))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
             }
            
            Section(header: Text("Map")) {
                // Display the map with a marker for the country.
                Map(coordinateRegion: $region, annotationItems: [country]) { country in
                    // For annotation, convert the coordinate strings to Double.
                    let lat = Double(country.latitude) ?? 0.0
                    let lon = Double(country.longitude) ?? 0.0
                    return MapMarker(coordinate: 
                                    CLLocationCoordinate2D(latitude: lat, longitude: lon))
                }
                .frame(height: 300)
                .clipShape(RoundedRectangle(cornerRadius: 10))
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  1. Импорт import MapKit:

Мы импортируем import MapKit для использования SwiftUI View карты Map и соответствующих ТИПов.

  1. Координаты региона:

В инициализаторе init мы преобразуем широту latitude и долготу longitude страны country (которые хранятся в виде строк String) в значения Double. Они используются для создания начального MKCoordinateRegion с диапазоном (latitudeDelta и longitudeDelta), который определяет уровень масштабирования на карте.

Раздел карты Map Section:

Добавлен новый раздел Section с заголовком «Map». Map View ограничено состоянием region. Мы предоставляем массив [country], содержащий одну страну country, в качестве annotationItems, чтобы MapMarker отображался в координатах этой страны.

Это обновление отображает местоположение страны на карте в подробном View.

Версия 7. Запускаем приложение - получаем результат:

97025734b1ac9846d313735d3da6cd07.gif

Всё прекрасно работает, но у нас есть предупреждения:

7e8d88019b23bd4e9c95de216ab98b86.png

init(coordinateRegion:, interactionModes: ) was deprecated in iOS 17.0, use Map initializers that use MapContentBuilder instead.

(init(coordinateRegion:, interactionModes: ) устарел в iOS 17.0, вместо этого используйте инициализаторы Map с MapContentBuilder.)

eb95c68c987f3ff5d1ffd84ef91be916.png

MapMarker was deprecated in iOS 17.0, use Marker along with Map initializers that use MapContentBuilder instead.

(MapMarker устарел в iOS 17.0, вместо него используйте Marker вместе с Map инициализаторами c MapContentBuilder.)

Обновление SwiftUI Map для iOS 17

0af6641ae4599b9e3493b61e7bc329a4.png

init(coordinateRegion:, interactionModes: ) устарел в iOS 17.0, вместо этого используйте инициализаторы Map с MapContentBuilder. MapMarker устарел в iOS 17.0, вместо него используйте Marker вместе с Map инициализаторами c MapContentBuilder.

В результате мы получаем рассуждения, которые длятся 8 секунд:

fc0f2f8f3175bf5c547ff437a906d0ec.pngВот их перевод:

Рассмотрение MapCameraPosition

С новыми изменениями API в iOS 17 вместо старого MapPosition теперь используется новый MapCameraPosition. Это предполагает переход к более ориентированной на камеру обработке Map Views. Я припоминаю, что MapCameraPosition конкретно описывает положение камеры, что, по-видимому, является альтернативой устаревшим методам. Я должен подтвердить детали, но это определенно новый подход API, представленный в iOS 17.

Обновление до MapCameraPosition

В iOS 17 новый API карт Map в SwiftUI включает MapCameraPosition, заменяя старый MapPosition. Для этого требуются обновления кода. Мне нужно обеспечить использование инициализатора Map(cameraPosition: Binding<MapCameraPosition>). Новая структура MapCameraPosition включает такие свойства, как центр камеры, наклон, направление, высота и т. д.

Я думаю, что обновленный код должен правильно использовать MapCameraPosition, инициализируя его с координатами coordinates и другими параметрами. После установки мы можем привязать его к карте и включить маркеры. Позвольте мне еще раз проверить детали.

Ниже представлена ​​обновленная версия CountryDetailView, которая использует новый MapCameraPosition iOS 17. В этом примере мы используем новую @State переменную var position: MapCameraPosition. Затем мы передаем эту позицию position в новый инициализатор карты Map (position: $position). Маркер Marker также используется с его обязательными параметрами.

Убедитесь, что вы компилируете с помощью Xcode 15 (или более поздней версии), а ваш deployment target установлен ​​на iOS 17 или более позднюю версию.

код CountryDetailView:
import MapKit

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Use the new state property for the map's position.
        @State private var position: MapCameraPosition
   
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert latitude/longitude strings to Double.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        
        // Initialize the MapPCameraPosition
                _position = State(initialValue:.region(MKCoordinateRegion(
                    center: CLLocationCoordinate2D(latitude: lat, longitude: lon), span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
                )))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
            }
            
            Section(header: Text("Map")) {
              
                // Use the new iOS 17 Map initializer with a MapContentBuilder.
               Map (position: $position){
                   // For annotation, convert the coordinate strings to Double.
                   let lat = Double(country.latitude) ?? 0.0
                   let lon = Double(country.longitude) ?? 0.0
                   Marker ("",coordinate: CLLocationCoordinate2D(latitude: lat, longitude: lon))
                                }
                .frame(height: 300)
                .clipShape(RoundedRectangle(cornerRadius: 10))
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  • MapCameraPosition:

Мы создаем @State свойство с именем cameraPosition ТИПа MapCameraPosition. В инициализаторе мы преобразуем широту и долготу страны (представленные как строки String) в CLLocationCoordinate2D. Затем мы инициализируем камеру с этим центром, а также высотой (уровнем масштабирования), углом наклона и направлением.

  • Инициализатор карты Map:

Новый инициализатор iOS 17 Map(cameraPosition: $cameraPosition) { … } принимает привязку к MapCameraPosition и использует хвостовое замыкание для определения содержимого карты. В этом случае мы размещаем Marker в нужном месте.

  • Маркер Marker:

Инициализатору Marker теперь требуются координаты coordinate и параметр положения position (мы используем .automatic).

Это переработанное View использует MapCameraPosition, чтобы камерой вашей карты Map можно было управлять с помощью нового API iOS 17. Удачного кодирования!

У нас нет предупреждений и ошибок компиляции.

Версия 8. Запускаем приложение - Получаем результат:

2998d1204cbcf29182b27eded9915b76.gif

Местоположение столицы страны на карте

Но надо сказать, что географические координаты широта latitude и долгота longitude в структуре struct Country, полученные с помощью API Всемирного Банка и соответствующие стране Country, соответствуют местоположению, близкому к расположению столицы страны capitalCity, но не точному её местоположению:

// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String  // широта
    let latitude: String   // долгота
}

Давайте получим координаты точного местоположения столицы и покажем столицу на карте:

c2b82022da81a93ce57866d28dde9835.png

Добавь на карту маркер Marker столицы страны

В результате мы получаем рассуждения, которые длятся 10 секунд:

116980a3bd29aca977fc9aeec684314f.pngВот их перевод:

Уточнение информации о маркере Marker столицы

Итак, пользователь хочет добавить маркер Marker на карту Map для столицы страны. CountryDetailView уже имеет маркер Marker в центре страны с использованием положения камеры, но теперь нам нужен еще один маркер Marker для столицы. Проблема в том, что модель Country содержит только строку String для столицы «capitalCity» (название города), а не координаты coordinates (широта latitude и долгота longitude), необходимые для маркера Marker. Я думаю, нам нужно будет уточнить, где получить эти координаты coordinates — предоставляет ли их API Всемирного банка или нам нужен другой источник?

Рассматриваем маркер Marker для столицы на карте Map

Модель Country имеет координату (широта latitude и долгота longitude) для центра страны, а свойство «capitalCity» — это просто строка String с названием города, а не координаты. Это означает, что мне нужно получить координаты для столицы, но API их не предоставляет. Вариант первый: я мог бы использовать geocode для названия столицы, хотя это асинхронно и требует вызова геокодирования geocode. Вариант второй: предположим, что столица является центром страны, но это может быть неточно. Последнее может потребовать добавления решения геокодирования, например CLGeocoder.

Геокодирование маркера Marker столицы

API Всемирного банка предоставляет название столицы capitalCity, но не ее координаты, поэтому геокодирование необходимо для получения ее положения, которое будет выполнено асинхронно. Если данные недоступны, я мог бы предположить, что столица находится в центре страны, хотя это не всегда точно. Для реализации я мог бы показать, как использовать CLGeocoder для получения координат столицы. В примере я предлагаю добавить переменную состояния capitalCoordinate и использовать .task для вызова геокодирования внутри View с резервным вариантом отображения маркера Marker центра страны , если геокодирование не удается или столица для данной страны отсутствует.

Ниже приведена обновленная версия CountryDetailView, которая добавляет второй маркер Marker для столицы страны country. В этом примере мы используем новый API карт Map iOS 17 с MapCameraPosition для управления камерой карты и добавляем два маркера:

  1. Маркер в центре страны (с широтой latitude /долготы longitude страны country) и

  2. Маркер для столицы. Поскольку API Всемирного банка предоставляет только название столицы capitalCity, мы используем CLGeocoder для асинхронного получения ее координат. (Обязательно импортируйте import CoreLocation.)

Если геокодирование столицы прошло успешно, маркер добавляется с меткой Label, указывающей название столицы.

Ниже приведен полный код:
import SwiftUI
import MapKit
import CoreLocation

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Use MapCameraPosition to control the camera.
    @State private var position: MapCameraPosition
    // Will hold the capital city coordinate after geocoding.
    @State private var capitalCoordinate: CLLocationCoordinate2D? = nil
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert the country's latitude/longitude (as Strings) to a coordinate.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        let center = CLLocationCoordinate2D(latitude: lat, longitude: lon)
        _position = State(initialValue:.region(MKCoordinateRegion( center: center, 
                    span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
                )))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
            
            Section(header: Text("Map")) {
                // Use the new initializer that accepts a binding to MapCameraPosition.
                Map(position: $cameraPosition) {
                    // Marker for the country's center.
                   let lat = Double(country.latitude) ?? 0.0
                   let lon = Double(country.longitude) ?? 0.0
                  
                   // Marker for the country's center.
                   if country.capitalCity == "" {
                       Marker("\(country.name)", coordinate: 
                              CLLocationCoordinate2D(latitude: lat, longitude: lon))
                   }
                    
                    // If the capital city's coordinate is available, add a marker.
                    if let capitalCoordinate = capitalCoordinate {
                        Marker(coordinate: capitalCoordinate, position: .automatic) {
                            // Use a Label to indicate the capital city.
                            Label("Capital: \(country.capitalCity)", 
                                                       systemImage: "building.columns")
                        }
                    }
                }
                .frame(height: 300)
                .task {
                    await geocodeCapital()
                }
            }
        }
        .navigationTitle(country.name)
    }
    
    // Geocode the capital city name to obtain its coordinates.
     nonisolated func geocodeCapital() async {
        let geocoder = CLGeocoder()
        do {
            let placemarks = try await geocoder.geocodeAddressString(country.capitalCity)
            if let location = placemarks.first?.location {
               await MainActor.run {
                    capitalCoordinate = location.coordinate
               }
            }
        } catch {
            print("Error geocoding capital city: \(error)")
        }
    }
}

Объяснение

  • Map и Camera:

Мы инициализируем MapCameraPosition, используя широту latitude и долготу longitude страны country. Этот новый API iOS 17 позволяет нам управлять камерой через эту привязку.

  • Два маркера:

• Первый маркер Marker размещается в центре камеры (представляя координаты страны).

• Второй маркер Marker добавляется только в том случае, если координаты столицы coordinates получены с помощью геокодирования. Мы используем новый инициализатор маркера Marker, который принимает метку Label с параметром position: .automatic, чтобы позволить SwiftUI автоматически позиционировать маркер.

  • Геокодирование столицы:

В модификаторе .task в разделе Section карты Map мы вызываем geocodeCapital(). Эта функция использует CLGeocoder для асинхронного геокодирования названия столицы. В случае успеха она обновляет переменную состояния capitalCoordinate, что, в свою очередь, заставляет View добавлять маркер Marker.

Это решение использует новый API карт из iOS 17 (включая MapCameraPosition и Marker) и добавляет дополнительный маркер Marker для столицы. Удачного кодирования!

ad14d04c72ecaf1e594b4fcf953a14b4.png

запускай geocodeCapital() в фоновом режиме.

В результате мы получаем рассуждения, которые длятся 7 секунд:

Вот их перевод:

Запуск geocodeCapital() в фоновом режиме

Пользователь хочет запустить geocodeCapital() в фоновом потоке. Сейчас мы используем CLGeocoder с асинхронным API и начиная с iOS 16 доступен асинхронный метод geocodeAddressString.

Чтобы запустить geocodeCapital() в фоновом режиме, я мог бы обернуть его в Task.detached или пометить как nonisolated и вызвать его оттуда. Поскольку мы находимся в SwiftUI View, оно по умолчанию запускается на MainActor.

Запуск geocodeCapital() в фоновом режиме

Чтобы запустить geocodeCapital() в фоновом потоке, я хочу использовать Task.detached для асинхронной обработки работы геокодирования. Однако, поскольку мне нужно обновить capitalCoordinate, который является свойством @State, я должен убедиться, что обновление UI происходит на MainActor.

Итак, мой план — создать Task.detached для выполнения логики геокодирования, а затем использовать MainActor.run для обновления координат coordinate после получения результата. Но я буду осторожен с захватом self в Task.detached.

Ниже представлена ​​обновленная реализация вашей функции geocodeCapital(), которая запускает геокодирование в фоновом потоке с помощью Task.detached. В этой версии мы захватываем только необходимое значение (строку String capitalCity), чтобы Task.detached не захватывала self без необходимости. После завершения фоновой работы мы обновляем capitalCoordinate на MainActor.

код geocodeCapital():
func geocodeCapital() async {
    // Capture the capital city string so that the detached task doesn't capture self.
    let capitalCity = country.capitalCity
    
    let coordinate: CLLocationCoordinate2D? = await Task.detached { [capitalCity] in
        let geocoder = CLGeocoder()
        do {
            let placemarks = try await geocoder.geocodeAddressString(capitalCity)
            return placemarks.first?.location?.coordinate
        } catch {
            print("Error geocoding capital city: \(error)")
            return nil
        }
    }.value

    if let coordinate = coordinate {
        await MainActor.run {
            self.capitalCoordinate = coordinate
        }
    }
}

Версия 9. Запускаем приложение - Получаем результат:

d645539d63b8a9fe00043769d7dcd49c.gif

Заключение

ChatGPT o3-mini на настоящий момент является лучшим ИИ для iOS разработки.

В предложенной задаче разработки iOS приложения Countries он:

  1. Без каких либо проблем справился с декодированием JSON данных

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил несколько вариантов перехода на Swift 6 strict concurrency с помощью @MainActor и маркировки функций выборки как nonisolated или использования Task.detached.

  4. Сначала предложил старый Map API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Рассуждения краткие, по делу и длятся от 1 до 25 секунд, среднее время 8 секунд.

  7. Могу рекомендовать в качестве обучающего материала для iOS разработчиков.

Источник

  • 26.11.24 21:59 [email protected]

    In a world brimming with enticing investment opportunities, it is crucial to tread carefully. The rise of digital currencies has attracted many eager investors, but along with this excitement lurk deceitful characters ready to exploit the unsuspecting. I learned this lesson the hard way, and I want to share my story in the hopes that it can save someone from making the same mistakes I did. It all began innocently enough when I came across an engaging individual on Facebook. Lured in by promises of high returns in the cryptocurrency market, I felt the electric thrill of potential wealth coursing through me. Initial investments returned some profits, and that exhilarating taste of success fueled my ambition. Encouraged by a meager withdrawal, I decided to commit even more funds. This was the moment I let my guard down, blinded by greed. As time went on, the red flags started to multiply. The moment I tried to withdraw my earnings, a cascade of unreasonable fees appeared like a thick mist, obscuring the truth. “Just a little more,” they said, “Just until the next phase.” I watched my hard-earned money slip through my fingers as I scraped together every last cent to pay those relentless fees. My trust had become my downfall. In the end, I lost not just a significant amount of cash, but my peace of mind about $1.1 million vanished into the abyss of false promises and hollow guarantees. But despair birthed hope. After a cascade of letdowns, I enlisted the help of KAY-NINE CYBER SERVICES, a team that specializes in reclaiming lost funds from scams. Amazingly, they worked tirelessly to piece together what had been ripped away, providing me with honest guidance when I felt utterly defeated. Their expertise in navigating the treacherous waters of crypto recovery was a lifeline I desperately needed. To anyone reading this, please let my story serve as a warning. High returns often come wrapped in the guise of deception. Protect your investments, scrutinize every opportunity, and trust your instincts. Remember, the allure of quick riches can lead you straight to heartbreak, but with cautious determination and support, it is possible to begin healing from such devastating loss. Stay informed, stay vigilant, and may you choose your investment paths wisely. Email: kaynine @ cyberservices . com

  • 26.11.24 23:12 rickrobinson8

    FAST SOLUTION FOR CYPTOCURRENCY RECOVERY SPARTAN TECH GROUP RETRIEVAL

  • 26.11.24 23:12 rickrobinson8

    Although recovering from the terrible effects of investment fraud can seem like an impossible task, it is possible to regain financial stability and go on with the correct assistance and tools. In my own experience with Wizard Web Recovery, a specialized company that assisted me in navigating the difficulties of recouping my losses following my fall prey to a sophisticated online fraud, that was undoubtedly the case. My life money had disappeared in an instant, leaving me in a state of shock when I first contacted Spartan Tech Group Retrieval through this Email: spartantechretrieval (@) g r o u p m a i l .c o m The compassionate and knowledgeable team there quickly put my mind at ease, outlining a clear and comprehensive plan of action. They painstakingly examined every aspect of my case, using their broad business contacts and knowledge to track the movement of my pilfered money. They empowered me to make knowledgeable decisions regarding the rehabilitation process by keeping me updated and involved at every stage. But what I valued most was their unrelenting commitment and perseverance; they persisted in trying every option until a sizable amount of my lost money had been successfully restored. It was a long and arduous journey, filled with ups and downs, but having Spartan Tech Group Retrieval in my corner made all the difference. Thanks to their tireless efforts, I was eventually able to rebuild my financial foundation and reclaim a sense of security and control over my life. While the emotional scars of investment fraud may never fully heal, working with this remarkable organization played a crucial role in my ability to move forward and recover. For proper talks, contact on WhatsApp:+1 (971) 4 8 7 - 3 5 3 8 and Telegram:+1 (581) 2 8 6 - 8 0 9 2 Thank you for your time reading as it will be of help.

  • 27.11.24 00:39 [email protected]

    Although recovering lost or inaccessible Bitcoin can be difficult and unpleasant, it is frequently possible to get back access to one's digital assets with the correct help and direction. Regarding the subject at hand, the examination of Trust Geeks Hack Expert Website www://trustgeekshackexpert.com/ assistance after an error emphasizes how important specialized services may be in negotiating the difficulties of Bitcoin recovery. These providers possess the technical expertise and resources necessary to assess the situation, identify the root cause of the issue, and devise a tailored solution to retrieve the lost funds. By delving deeper into the specifics of Trust Geeks Hack Expert approach, we can gain valuable insights into the nuances of this process. Perhaps they leveraged advanced blockchain analysis tools to trace the transaction history and pinpoint the location of the missing Bitcoins. Or they may have collaborated with the relevant parties, such as exchanges or wallet providers, to facilitate the recovery process. Equally important is the level of personalized support and communication that Trust Geeks Hack Expert likely provided, guiding the affected individual through each step of the recovery effort and offering reassurance during what can be an anxious and uncertain time. The success of their efforts, as evidenced by the positive outcome, underscores the importance of seeking out reputable and experienced service providers when faced with a Bitcoin-related mishap, as they possess the specialized knowledge and resources to navigate these challenges and restore access to one's digital assets. Email.. [email protected]

  • 27.11.24 09:10 Michal Novotny

    The biggest issue with cryptocurrency is that it is unregulated, wh ich is why different people can come up with different fake stories all the time, and it is unfortunate that platforms like Facebook and others only care about the money they make from them through ads. I saw an ad on Facebook for Cointiger and fell into the scam, losing over $30,000. I reported it to Facebook, but they did nothing until I discovered deftrecoup . c o m from a crypto community; they retrieved approximately 95% of the total amount I lost.

  • 01.12.24 17:21 KollanderMurdasanu

    REACH OUT TO THEM WhatsApp + 156 172 63 697 Telegram (@)Techcyberforc We were in quite a bit of distress. The thrill of our crypto investments, which had once sparked excitement in our lives, was slowly turning into anxiety when my husband pointed out unusual withdrawal issues. At first, we brushed it off as minor glitches, but the situation escalated when we found ourselves facing login re-validation requests that essentially locked us out of our crypto wallet—despite entering the correct credentials. Frustrated and anxious, we sought advice from a few friends, only to hit a wall of uncertainty. Turning to the vast expanse of the internet felt daunting, but in doing so, we stumbled upon TECH CYBER FORCE RECOVERY. I approached them with a mix of skepticism and hope; after all, my understanding of these technical matters was quite limited. Yet, from our very first interaction, it was clear that they were the experts we desperately needed. They walked us through the intricacies of the recovery process, patiently explaining each mechanism—even if some of it went over my head, their reassurance was calming. Our responsibility was simple: to provide the correct information to prove our ownership of the crypto account, and thankfully, we remained on point in our responses. in a timely fashion, TECH CYBER FORCE RECOVERY delivered on their promises, addressing all our withdrawal and access issues exactly when they said they would. The relief we felt was immense, and the integrity they displayed made me confident in fully recommending their services. If you ever find yourself in a similar predicament with your crypto investments, I wholeheartedly suggest reaching out to them. You can connect with TECH CYBER FORCE RECOVERY through their contact details for assistance and valuable guidance. Remember, hope is only a reach away!

  • 02.12.24 23:02 ytre89

    Online crypto investment can seem like a promising opportunity, but it's crucial to recognize that there are no guarantees. My experience serves as a stark reminder of this reality. I was drawn in by the allure of high returns and the persuasive marketing tactics employed by various brokers. Their polished presentations and testimonials made it seem easy to profit from cryptocurrency trading. Everything appeared to be legitimate. I received enticing messages about the potential for substantial gains, and the brokers seemed knowledgeable and professional. Driven by excitement and the fear of missing out, I invested a significant amount of my savings. The promise of quick profits overshadowed the red flags I should have noticed. I trusted these brokers without conducting proper research, which was a major mistake. As time went on, I realized that the promised returns were nothing but illusions. My attempts to withdraw funds were met with endless excuses and delays. It became painfully clear that I had fallen victim. The reality hit hard: my hard-earned money was gone, I lost my peace of mind and sanity. In my desperation, I sought help from a company called DEFTRECOUP. That was the turning point for me as I had a good conversation and eventually filed a complaint via DEFTRECOUP COM. They were quite delicate and ensured I got out of the most difficult situation of my life in one piece.

  • 04.12.24 22:24 andreygagloev

    When I first heard about Bitcoin back in 2018, I was skeptical. The idea of a decentralized, digital currency seemed too good to be true. But I was intrigued as I learned more about the technology behind it and its potential. I started small, investing just a few hundred dollars, dipping my toes into the cryptocurrency waters. At first, it was exhilarating to watch the value of my investment grow exponentially. I felt like I was part of the future, an early adopter of this revolutionary new asset. But that euphoria was short-lived. One day, I logged into my digital wallet only to find it empty - my Bitcoin had vanished without a trace. It turned out that the online exchange I had trusted had been hacked, and my funds were stolen. I was devastated, both financially and emotionally. All the potential I had seen in Bitcoin was tainted by the harsh reality that with decentralization came a lack of regulation and oversight. My hard-earned money was gone, lost to the ether of the digital world. This experience taught me a painful lesson about the price of trust in the uncharted territory of cryptocurrency. While the technology holds incredible promise, the risks can be catastrophic if you don't approach it with extreme caution. My Bitcoin investment gamble had failed, and I was left to pick up the pieces, wiser but poorer for having placed my faith in the wrong hands. My sincere appreciation goes to MUYERN TRUST HACKER. You are my hero in recovering my lost funds. Send a direct m a i l ( muyerntrusted ( @ ) mail-me ( . )c o m ) or message on whats app : + 1 ( 4-4-0 ) ( 3 -3 -5 ) ( 0-2-0-5 )

  • 12.12.24 00:35 amandagregory

    HOW TO HIRE A HACKER TO RECOVER STOLEN BITCOIN WITH FASTFUND RECOVERY

  • 12.12.24 00:35 amandagregory

    HOW TO HIRE A HACKER TO RECOVER STOLEN BITCOIN WITH FASTFUND RECOVERY... A few months ago, I made a huge mistake. I invested in what seemed like a legitimate crypto opportunity, only to find out I’d been scammed. I lost a significant amount of money, and the scam platform vanished overnight. I felt completely lost.I had heard of Fastfund Recovery and decided to reach out, even though I was skeptical. From the first conversation, they made me feel heard and understood. They explained the recovery process clearly and kept me updated every step of the way.Within weeks, Fastfund Recovery successfully to recovered my lost funds—something I honestly didn’t think was possible. Their team was professional, transparent, and genuinely caring. I can’t thank them enough for turning a nightmare into a hopeful outcome. If you’re in a similar situation, don’t hesitate to contact them. They truly deliver on their promises. Gmail::: fastfundrecovery8(@)gmail com .....Whatsapp ::: 1::807::::500::::7554

  • 19.12.24 17:07 rebeccabenjamin

    USDT RECOVERY EXPERT REVIEWS DUNAMIS CYBER SOLUTION It's great to hear that you've found a way to recover your Bitcoin and achieve financial stability, but I urge you to be cautious with services like DUNAMIS CYBER SOLUTION Recovery." While it can be tempting to turn to these companies when you’re desperate to recover lost funds, many such services are scams, designed to exploit those in vulnerable situations. Always research thoroughly before engaging with any recovery service. In the world of cryptocurrency, security is crucial. To protect your assets, use strong passwords, enable two-factor authentication, and consider using cold wallets (offline storage) for long-term storage. If you do seek professional help, make sure the company is reputable and has positive, verifiable reviews from trusted sources. While it’s good that you found a solution, it’s also important to be aware of potential scams targeting cryptocurrency users. Stay informed about security practices, and make sure you take every step to safeguard your investments. If you need help with crypto security tips or to find trustworthy resources, feel free to ask! [email protected] +13433030545 [email protected]

  • 24.12.24 08:33 dddana

    Отличная подборка сервисов! Хотелось бы дополнить список рекомендацией: нажмите сюда - https://airbrush.com/background-remover. Этот инструмент отлично справляется с удалением фона, сохраняя при этом высокое качество изображения. Очень удобен для быстрого редактирования фото. Было бы здорово увидеть его в вашей статье!

  • 27.12.24 00:21 swiftdream

    I lost about $475,000.00 USD to a fake cryptocurrency trading platform a few weeks back after I got lured into the trading platform with the intent of earning a 15% profit daily trading on the platform. It was a hell of a time for me as I could hardly pay my bills and got me ruined financially. I had to confide in a close friend of mine who then introduced me to this crypto recovery team with the best recovery SWIFTDREAM i contacted them and they were able to completely recover my stolen digital assets with ease. Their service was superb, and my problems were solved in swift action, It only took them 48 hours to investigate and track down those scammers and my funds were returned to me. I strongly recommend this team to anyone going through a similar situation with their investment or fund theft to look up this team for the best appropriate solution to avoid losing huge funds to these scammers. Send complaint to Email: info [email protected]

  • 31.12.24 04:53 Annette_Phillips

    There are a lot of untrue recommendations and it's hard to tell who is legit. If you have lost crypto to scam expresshacker99@gmailcom is the best option I can bet on that cause I have seen lot of recommendations about them and I'm a witness on their capabilities. They will surely help out. Took me long to find them. The wonderful part is no upfront fee till crypto is recover successfully that's how genuine they are.

  • 04.01.25 04:56 florencestella

    THE BEST CERTIFIED CRYPTOCURRENCY RECOVERY EXPERT DUNAMIS CYBER SOLUTION

  • 04.01.25 04:57 florencestella

    THE BEST CERTIFIED CRYPTOCURRENCY RECOVERY EXPERT DUNAMIS CYBER SOLUTION It sounds like you went through a very frustrating experience with Cointrack, where your access to your own funds was unjustly restricted for months without clear communication or a solution. The extended periods of account freezes, lack of transparency, and vague customer support responses would make anyone anxious. It’s understandable that you suspected the issue could be related to your login activity, but it’s surprising that something as minor as using the same Wi-Fi network could trigger such severe restrictions. I’m glad to hear that DUNAMIS CYBER SOLUTION Recovery was able to help you get your account unlocked and resolve the issue. It’s unfortunate that you had to seek third-party assistance, but it’s a relief that the situation was eventually addressed. If you plan on using any platforms like this again, you might want to be extra cautious, especially when dealing with sensitive financial matters. And if you ever need to share your experience to help others avoid similar issues, feel free to reach out. It might be helpful for others to know about both the pitfalls and the eventual resolution through services like DUNAMIS CYBER SOLUTION Recovery. [email protected] +13433030545 [email protected]

  • 06.01.25 19:09 michaeljordan15

    We now live in a world where most business transactions are conducted through Bitcoin and cryptocurrency. With the rapid growth of digital currencies, everyone seems eager to get involved in Bitcoin and cryptocurrency investments. This surge in interest has unfortunately led to the rise of many fraudulent platforms designed to exploit unsuspecting individuals. People are often promised massive profits, only to lose huge sums of money when they realize the platform they invested in was a scam. contact with WhatsApp: +1 (443) 859 - 2886 Email @ digitaltechguard.com Telegram: digitaltechguardrecovery.com website link:: https://digitaltechguard.com This was exactly what happened to me five months ago. I was excited about the opportunity to invest in Bitcoin, hoping to earn a steady return of 20%. I found a platform that seemed legitimate and made my investment, eagerly anticipating the day when I would be able to withdraw my earnings. When the withdrawal day arrived, however, I encountered an issue. My bank account was not credited, despite seeing my balance and the supposed profits in my account on the platform. At first, I assumed it was just a technical glitch. I thought, "Maybe it’s a delay in the system, and everything will be sorted out soon." However, when I tried to contact customer support, the line was either disconnected or completely unresponsive. My doubts started to grow, but I wanted to give them the benefit of the doubt and waited throughout the day to see if the situation would resolve itself. But by the end of the day, I realized something was terribly wrong. I had been swindled, and my hard-earned money was gone. The realization hit me hard. I had fallen victim to one of the many fraudulent Bitcoin platforms that promise high returns and disappear once they have your money. I knew I had to act quickly to try and recover what I had lost. I started searching online for any possible solutions, reading reviews and recommendations from others who had faced similar situations. That’s when I came across many positive reviews about Digital Tech Guard Recovery. After reading about their success stories, I decided to reach out and use their services. I can honestly say that Digital Tech Guard Recovery exceeded all my expectations. Their team was professional, efficient, and transparent throughout the process. Within a short time, they helped me recover a significant portion of my lost funds, which I thought was impossible. I am incredibly grateful to Digital Tech Guard Recovery for their dedication and expertise in helping me get my money back. If you’ve been scammed like I was, don’t lose hope. There are solutions, and Digital Tech Guard Recovery is truly one of the best. Thank you, Digital Tech Guard Recovery! You guys are the best. Good luck to everyone trying to navigate this challenging space. Stay safe.

  • 18.01.25 12:41 michaeldavenport218

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance, contact [email protected] Capital Crypto Recover on Telegram OR Call Number +1 (336)390-6684 via email: [email protected]

  • 18.01.25 12:41 michaeldavenport218

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance, contact [email protected] Capital Crypto Recover on Telegram OR Call Number +1 (336)390-6684 via email: [email protected]

  • 20.01.25 15:39 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact: [email protected]

  • 22.01.25 21:43 DoraJaimes23

    Recovery expert. I lost my bitcoin to fake blockchain impostors on Facebook, they contacted me as blockchain official support and i fell stupidly for their mischievous act, this made them gain access into my blockchain wallet whereby 7.0938 btc was stolen from my wallet in total .I was almost in a comma and dumbfounded because this was all my savings i relied on . Then I made a research online and found a recovery expert , with the contact address- { RECOVERYHACKER101 (@) GMAIL . COM }... I wrote directly to the specialist explaining my loss. Hence, he helped me recover a significant part of my investment just after 2 days he helped me launch the recovery program , and the culprits were identified as well , all thanks to his expertise . I hope I have been able to help someone as well . Reach out to the recovery specialist to recover you lost funds from any form of online scam Thanks

  • 23.01.25 02:36 [email protected]

    After falling victim to a fraudulent Bitcoin mining scam, I found myself in a desperate situation. I had invested $50,000 into a cloud mining website called Miningpool, which turned out to be a complete scam. For months, I tried reaching out to the company, but I was unable to access my funds, and I quickly realized I had been taken for a ride. In my search for help, I came across TrustGeeks Hack Expert, a service that claimed to help people recover lost funds from crypto scams. Though skeptical at first, I decided to give them a try. Here’s my experience with their service.When I initially contacted TrustGeeks Hack Expert Email.. Trustgeekshackexpert{At}fastservice{Dot}com , I was understandably hesitant. Like many others, I had been tricked into believing my Bitcoin investments were legitimate, only to discover they were locked in a non-spendable wallet with no way of accessing them. However, after sharing my story and details about the scam, the team assured me they had handled similar cases and had the expertise to help. They requested basic information about my investment and began their investigation immediately. The recovery process was nothing short of professional. Unlike many other services that promise quick fixes but fail to deliver, TrustGeeks Hack Expert kept me informed at every stage. They regularly updated me on their progress and were completely transparent about the challenges they faced. There were moments when I wondered if the process would work, but the team’s professionalism and reassurance gave me hope. They were honest about the time it would take and did not make any unrealistic promises, which I truly appreciated. After several weeks of work, TrustGeeks Hack Expert successfully recovered not just my $50,000 investment, but also the so-called profits that had been locked away in the scam's non-spendable wallet. This was a huge relief, as I had resigned myself to the idea that I had lost everything. The entire recovery process was discreet and handled with the utmost care, ensuring that the scam company remained unaware of the recovery efforts, which helped prevent further complications. TeleGram iD. Trustgeekshackexpert & What's A p p +1 7 1 9 4 9 2 2 6 9 3

  • 23.01.25 02:37 [email protected]

    After falling victim to a fraudulent Bitcoin mining scam, I found myself in a desperate situation. I had invested $50,000 into a cloud mining website called Miningpool, which turned out to be a complete scam. For months, I tried reaching out to the company, but I was unable to access my funds, and I quickly realized I had been taken for a ride. In my search for help, I came across TrustGeeks Hack Expert, a service that claimed to help people recover lost funds from crypto scams. Though skeptical at first, I decided to give them a try. Here’s my experience with their service.When I initially contacted TrustGeeks Hack Expert Email.. Trustgeekshackexpert{At}fastservice{Dot}com , I was understandably hesitant. Like many others, I had been tricked into believing my Bitcoin investments were legitimate, only to discover they were locked in a non-spendable wallet with no way of accessing them. However, after sharing my story and details about the scam, the team assured me they had handled similar cases and had the expertise to help. They requested basic information about my investment and began their investigation immediately. The recovery process was nothing short of professional. Unlike many other services that promise quick fixes but fail to deliver, TrustGeeks Hack Expert kept me informed at every stage. They regularly updated me on their progress and were completely transparent about the challenges they faced. There were moments when I wondered if the process would work, but the team’s professionalism and reassurance gave me hope. They were honest about the time it would take and did not make any unrealistic promises, which I truly appreciated. After several weeks of work, TrustGeeks Hack Expert successfully recovered not just my $50,000 investment, but also the so-called profits that had been locked away in the scam's non-spendable wallet. This was a huge relief, as I had resigned myself to the idea that I had lost everything. The entire recovery process was discreet and handled with the utmost care, ensuring that the scam company remained unaware of the recovery efforts, which helped prevent further complications. TeleGram iD. Trustgeekshackexpert & What's A p p +1 7 1 9 4 9 2 2 6 9 3

  • 23.01.25 14:20 nellymargaret

    DUNAM CYBER SOLUTION BTC-ETH RECOVERY EXPERT

  • 23.01.25 14:20 nellymargaret

    DUNAM CYBER SOLUTION BTC-ETH RECOVERY EXPERT I had tried to secure my Bitcoin wallet, maybe a bit too aggressively, enabling every security feature imaginable: two-factor authentication, biometric verification, intricate passwords-the whole shebang. I wanted to make it impossible for anybody to get to my money. I tried to make this impregnable fortress of security and ended up locking myself out of my wallet with $700,000 in Bitcoin. It wasn't until I tried to access my wallet that I realized the trap I had set for myself. I was greeted with an endless series of security checks-passwords, codes, facial recognition, and more. I could remember parts of my multi-layered security setup but not enough to actually get in. In fact, my money was behind this digital fortress, and the more I tried to fix it, the worse it seemed to get. I kept tripping over my own layers of protection, unable to find a way back in. Panic quickly set in when I realized I had made it almost impossible for myself to access my own money. That is when I called DUNAMIS CYBER SOLUTION From that very first call, they reassured me that I wasn't the first person to make this kind of mistake and certainly wouldn't be the last. They listened attentively to my explanation and got to work straight away. Their team methodically began to untangle my overly complicated setup. Patience and expertise managed to crack each layer of security step by step until they had restored access to my wallet. [email protected] +13433030545 [email protected]

  • 26.01.25 03:54 [email protected]

    Losing access to my crypto wallet account was one of the most stressful experiences ever. After spending countless hours building up my portfolio, I suddenly found myself locked out of my account without access. To make matters worse, the email address I had linked to my wallet was no longer active. When I tried reaching out, I received an error message stating that the domain was no longer in use, leaving me in complete confusion and panic. It was as though everything I had worked so hard for was gone, and I had no idea how to get it back. The hardest part wasn’t just the loss of access it was the feeling of helplessness. Crypto transactions are often irreversible, and since my wallet held significant investments, the thought that my hard-earned money could be lost forever was incredibly disheartening. I spent hours scouring forums and searching for ways to recover my funds, but most of the advice seemed either too vague or too complicated to be of any real help. With no support from the wallet provider and my email account out of reach, I was left feeling like I had no way to fix the situation.That’s when I found out about Trust Geeks Hack Expert . I was hesitant at first, but after reading about their expertise in recovering lost crypto wallets, I decided to give them a try. I reached out to their team, and from the very beginning, they were professional, understanding, and empathetic to my situation. They quickly assured me that there was a way to recover my wallet, and they got to work immediately.Thanks to Trust Geeks Hack Expert , my wallet and funds were recovered, and I couldn’t be more grateful. The process wasn’t easy, but their team guided me through each step with precision and care. The sense of relief I felt when I regained access to my crypto wallet and saw my funds safely back in place was indescribable. If you find yourself in a similar situation, I highly recommend reaching out to Trust Geeks Hack Expert. contact Them through EMAIL: [email protected] + WEBSITE. HTTPS://TRUSTGEEKSHACKEXPERT.COM + TELE GRAM: TRUSTGEEKSHACKEXPERT

  • 28.01.25 21:48 [email protected]

    It’s unfortunate that many people have become victims of scams, and some are facing challenges accessing their Bitcoin wallets. However, there's excellent news! With Chris Wang, you can count on top-notch service that guarantees results in hacking. We have successfully helped both individuals and organizations recover lost files, passwords, funds, and more. If you need assistance, don’t hesitate—check out recoverypro247 on Google Mail! What specific methods does Chris Wang use to recover lost funds and passwords? Are there any guarantees regarding the success rate of the recovery services offered? What are the initial steps to begin the recovery process with recoverypro247? this things i tend to ask

  • 02.02.25 20:53 Michael9090

    I lost over $155,000 in an investment trading company last year; I was down because the company refused to let me make withdrawals and kept asking for more money…. My friend in the military introduced me to a recovery agent Crypto Assets Recovery with the email address [email protected] and he’s been really helpful, he made a successful recovery of 95% of my investment in less than 24 hours, I’m so grateful to him. If you are a victim of a binary scam and need to get your money back, please don’t hesitate to contact Crypto Assets Recovery in any of the information below. EMAIL: [email protected] WHATSAPP NUMBER : +18125892766

  • 05.02.25 00:04 Jannetjeersten

    TECH CYBER FORCE RECOVERY quickly took action, filing my case and working tirelessly on my behalf. Within just four days, I received the surprising news that my 40,000 CAD had been successfully refunded and deposited back into my bank account. I was overjoyed and relieved to see the money returned, especially after the stressful experience. Thanks to TECH CYBER FORCE RECOVERY’s professionalism and dedication, I was able to recover my funds. This experience taught me an important lesson about being cautious with online investments and the importance of seeking expert help when dealing with scams. I am truly grateful to EMAIL: support(@)techcyberforcerecovery(.)com OR WhatsApp: +.1.5.6.1.7.2.6.3.6.9.7 for their assistance, which allowed me to reclaim my money and end the holiday season on a much brighter note.

  • 06.02.25 19:42 Marta Golomb

    My name is Marta, and I’m sharing my experience in the hope that it might help others avoid a similar scam. A few weeks ago, I received an email that appeared to be from the "Department of Health and Human Services (DHS)." It claimed I was eligible for a $72,000 grant debit card, which seemed like an incredible opportunity. At first, I was skeptical, but the email looked so professional and convincing that I thought it might be real. The email instructed me to click on a link to claim the grant, and unfortunately, I followed through. I filled out some personal details, and then, unexpectedly, I was told I needed to pay a "processing fee" to finalize the grant. I was hesitant, but the urgency of the message pushed me to make the payment, believing it was a necessary step to receive the funds. Once the payment was made, things quickly went downhill. The website became unreachable, and I couldn’t get in touch with anyone from the supposed DHS. It soon became clear that I had been scammed. The email, which seemed so legitimate, had been a clever trick to steal my money.Devastated and unsure of what to do, I began searching for ways to recover my lost funds. That’s when I found Tech Cyber Force Recovery, a team of experts who specialize in tracing stolen money and assisting victims of online fraud. They were incredibly reassuring and quickly got to work on my case. After several days of investigation, they managed to track down the scammers and recover my funds. I can’t express how grateful I am for their help. Without Tech Cyber Force Recovery, I don’t know what I would have done. This experience has taught me a valuable lesson: online scams are more common than I realized, and the scammers behind them are incredibly skilled. They prey on people’s trust, making it easy to fall for their tricks. HOW CAN I RECOVER MY LOST BTC,USDT =Telegram= +1 561-726-36-97 =WhatsApp= +1 561-726-36-97

  • 08.02.25 05:45 [email protected]

    I'm incredibly grateful that I did enough research to recover my stolen cryptocurrency. When I first fell victim to a scam, I felt hopeless and lost, unsure if I'd ever see my funds again. A few months ago, I was approached by someone on Telegram who claimed to have a lucrative investment opportunity in cryptocurrencies. They promised huge returns and played on my emotions, making it seem like a can't-miss chance. I was so eager to make my money grow that I didn't fully vet the situation, and unfortunately, I ended up falling for the scam. They guided me to invest a significant amount of money, and soon after, I realized I had been duped. The scammers blocked me, and my funds were gone. I felt devastated. All of my savings had been wiped out in what seemed like an instant, and the feeling of being taken advantage of was crushing. I spent days researching how to recover my stolen cryptocurrency but found the process to be overwhelming and complicated. I was starting to lose hope when I came across Trust Geeks Hack Expert. At first, I was skeptical about reaching out to a cryptocurrency recovery company, but after reading testimonials and researching their reputation, I decided to give them a try. I contacted Trust Geeks Hack Expert Website: www://trustgeekshackexpert.com/, and I was immediately reassured by their professionalism and expertise. They took the time to listen to my situation, and they were honest about what could and could not be done. What stood out to me was their deep understanding of cryptocurrency fraud and the recovery process. They were able to track down the scammers and initiate the recovery of my stolen funds, step by step. Thanks to Trust Geeks Hack Expert, I was able to get back a significant portion of the cryptocurrency I had lost. Their team was responsive, transparent, and diligent in their efforts. I was kept informed throughout the entire process, and they made sure I felt supported every step of the way. I truly can't thank them enough for their dedication and for restoring my faith in the possibility of recovery after such a devastating loss. I will definitely recommend Trust Geeks Hack Expert to anyone who has fallen victim to a cryptocurrency scam. TeleGram: Trustgeekshackexpert & what's A p p  +1 7 1 9 4 9 2 2 6 9 3

  • 08.02.25 05:46 [email protected]

    I'm incredibly grateful that I did enough research to recover my stolen cryptocurrency. When I first fell victim to a scam, I felt hopeless and lost, unsure if I'd ever see my funds again. A few months ago, I was approached by someone on Telegram who claimed to have a lucrative investment opportunity in cryptocurrencies. They promised huge returns and played on my emotions, making it seem like a can't-miss chance. I was so eager to make my money grow that I didn't fully vet the situation, and unfortunately, I ended up falling for the scam. They guided me to invest a significant amount of money, and soon after, I realized I had been duped. The scammers blocked me, and my funds were gone. I felt devastated. All of my savings had been wiped out in what seemed like an instant, and the feeling of being taken advantage of was crushing. I spent days researching how to recover my stolen cryptocurrency but found the process to be overwhelming and complicated. I was starting to lose hope when I came across Trust Geeks Hack Expert. At first, I was skeptical about reaching out to a cryptocurrency recovery company, but after reading testimonials and researching their reputation, I decided to give them a try. I contacted Trust Geeks Hack Expert Website: www://trustgeekshackexpert.com/, and I was immediately reassured by their professionalism and expertise. They took the time to listen to my situation, and they were honest about what could and could not be done. What stood out to me was their deep understanding of cryptocurrency fraud and the recovery process. They were able to track down the scammers and initiate the recovery of my stolen funds, step by step. Thanks to Trust Geeks Hack Expert, I was able to get back a significant portion of the cryptocurrency I had lost. Their team was responsive, transparent, and diligent in their efforts. I was kept informed throughout the entire process, and they made sure I felt supported every step of the way. I truly can't thank them enough for their dedication and for restoring my faith in the possibility of recovery after such a devastating loss. I will definitely recommend Trust Geeks Hack Expert to anyone who has fallen victim to a cryptocurrency scam. TeleGram: Trustgeekshackexpert & what's A p p  +1 7 1 9 4 9 2 2 6 9 3

  • 10.02.25 21:22 sulabhakuchchal

    W.W.W.techcyberforcerecovery.com   MAIL. [email protected] My name is sulabha kuchchal, and I’m from Mumbai. A few months ago, I faced a nightmare scenario that many in the crypto world fear: I lost access to my $60,000 wallet after a malware attack. The hacker gained control of my private keys, and I was unable to access my funds. Panic set in immediately as I realized the magnitude of the situation. Like anyone in my shoes, I felt completely helpless. But luckily, a friend recommended TECH CYBER FORCE RECOVERY, and it turned out to be the best advice I could have gotten. From the moment I reached out to TECH CYBER FORCE RECOVERY, I felt a sense of relief.

  • 11.02.25 04:24 heyemiliohutchinson

    I invested substantially in Bitcoin, believing it would secure my future. For a while, things seemed to be going well. The market fluctuated, but I was confident my investment would pay off. But catastrophe struck without warning. I lost access to my Bitcoin holdings as a result of several technical issues and inadequate security measures. Every coin in my wallet suddenly disappeared, leaving me with an overpowering sense of grief. The emotional impact of this loss was far greater than I had imagined. I spiraled into despair, feeling as though my dreams of financial independence were crushed. I was on the verge of giving up when I came across Assets_Recovery_Crusader. Being willing to give them a chance, I had nothing left to lose. They listened to my narrative and took the time to comprehend the particulars of my circumstance, rather than treating me like a case number. They worked diligently, using their advanced recovery techniques and deep understanding of blockchain technology to track down my lost Bitcoin. Assets_Recovery_Crusader rebuilt my trust in the bitcoin space. The financial impact had a significant emotional toll, but I was able to get past it thanks to Assets_Recovery_Crusader’s proficiency and persistence. For proper talks, reach out to them via TELEGRAM : Assets_Recovery_Crusader EMAIL: [email protected]

  • 11.02.25 22:46 jimmybrown

    HIRE A HACKE DUNAMIS CYBER SOLUTION

  • 11.02.25 22:46 jimmybrown

    HIRE A HACKE DUNAMIS CYBER SOLUTIONI was just hours away from sealing the biggest real estate deal of my life- the kind of deal that would make one feel like a financial genius. It was the dream property, and all I had to do was transfer my $450,000 Bitcoin deposit. Simple, right? Wrong. I pulled up my crypto wallet, ready to finalize the transfer, and access was denied. No big deal. Maybe I mistyped the password. I tried again. Access denied. Panic started seeping in. I switched devices. Rebooted my system. I entered every password I had ever used since the dawn of time, including my childhood nickname and my favorite pizza topping. Still. Nothing. This wasn't a glitch. This was a full-scale disaster. The seller was waiting; my real estate agent was waiting. And my money? Trapped in a digital vault I suddenly had no key to. Every worst-case scenario flooded my head: Had I been hacked? Did I lock myself out? Was this some kind of cosmic payback for every time I blew off software updates? Just about the time I was getting comfortable in my new identity as the guy who almost bought a house, I remembered that a friend, a crypto lawyer-once said something to me about a recovery service. I called him with the urgency of a man dangling off a cliff. The moment I said what happened, he cut me off: "Email DUNAMIS CYBER SOLUTION Recovery. Now." I didn't ask questions. I dialed quicker than I'd ever dialed in my life. From the second they answered, I knew I was with the pros. There was no hemming, no hawing; this team must have handled its fair share of this particular type of nightmare. They talked me through the process, asked the right questions, and went to work like surgeons in a digital operating room. Minutes felt like hours. I was at DEFCON 1, stress-wise. I paced and stared at my phone, wondering if it was time to move into a cave because, at this rate, homeownership was not looking good. Then—the call came: "We got it." I just about collapsed with relief. My funds were safe. My wallet was unlocked. The Bitcoin was transferred just in time, and I signed the contract with literal seconds to spare. And that night, almost lost to the tech catastrophe of the century in that house, I made a couple of vows: never underestimate proper wallet management and always keep DUNAMIS CYBER SOLUTION Recovery on speed dial. [email protected] +13433030545

  • 13.02.25 14:45 aoifewalsh130

    TELEGRAM: u/BestwebwizardRecovery EMAIL: [email protected] WEBSITE: https://bestwebwizrecovery.com/ The money I invested was meant for something incredibly important—my wedding. After months of saving, I had finally accumulated enough to make the day truly special. Wanting to grow this fund, I came across a crypto site called Abcfxb.pro, which promised daily returns through “AI crypto arbitrage trading.” They claimed they could deliver 1% returns on my investment every day, and I saw this as an opportunity to multiply my savings quickly. I thought it was the perfect way to ensure I’d have enough to cover all the wedding expenses. For the first few days, everything seemed perfect. I saw the promised returns and was able to withdraw money without any issues. It felt like a legitimate opportunity, and I was excited as my wedding fund grew. However, things took a turn when I tried to withdraw again. The site claimed that my account balance had fallen below their liquidity requirement and asked me to deposit more funds to proceed. Reluctantly, I deposited more money, believing it was just a minor issue. But the situation only worsened. I was then told that my withdrawal would take 50 days due to “blockchain congestion.” I wasn’t too concerned at first, thinking it was just a delay. But after 50 days, I still hadn’t received my funds, and they gave me the same excuse. Desperate, I contacted the site again, only to be informed that I would need to pay a 15% fee for “technical support” from the “Federal Reserve’s blockchain regulator” before I could withdraw my money. By now, I realized I had fallen victim to a scam. As I researched further, I found that others had been scammed in the same way, and the scammers had moved to another site with nearly the same layout. It was then that I came across a review from another victim, who explained how Best Web Wizard Recovery had helped him recover his lost funds. Desperate for a solution, I reached out to Best Web Wizard Recovery. To my relief, they responded quickly and professionally. Within six hours, they had successfully recovered my full investment. I was beyond grateful, especially since the money had been intended for my wedding. Thanks to their help, I was able to not only get my money back but also go ahead with my wedding as planned. It was a day I will always cherish, and I owe it to Best Web Wizard Recovery for helping me make it a reality. I highly recommend their services to anyone who has fallen victim to a crypto scam.

  • 13.02.25 16:50 andytom798

    I lost $210,000 worth of Bitcoin to a group of fake blockchain impostors on Red note, a Chinese app. They contacted me, pretending to be official blockchain support, and I was misled into believing they were legitimate. At the time, I had been saving up in Bitcoin, hoping to take advantage of the rising market. The scammers were convincing, and I made the mistake of trusting them with access to my blockchain wallet. To my shock and disbelief, they stole a total of $10,000 worth of Bitcoin from my wallet. It was devastating, as this amount represented all of my hard-earned savings. I was in utter disbelief, feeling foolish for falling for their deceptive tactics. I felt lost, as though everything I had worked towards was taken from me in an instant. Thankfully, my uncle suggested I reach out to an expert in cryptocurrency recovery. After doing some research online, I came across CYBERPOINT RECOVERY COMPANY. I was hesitant at first, but their positive reviews gave me some hope. I decided to contact them directly and explained my situation, including the amount I had lost and how the scammers had gained access to my account. To my relief, the team at CYBERPOINT RECOVERY responded quickly and assured me they could help. They launched a detailed recovery program, using advanced tools and techniques to trace the stolen Bitcoin. Within a matter of days, they successfully recovered my full $210,000 worth of Bitcoin, and they even identified the individuals behind the scam. Their expertise and professionalism made a huge difference, and I was incredibly grateful for their support. If you find yourself in a similar situation, I highly recommend reaching out to Cyber Constable Intelligence. They helped me recover my funds when I thought all hope was lost. Whether you’ve lost money to scammers or any other form of online fraud, they have the knowledge and resources to help you get your funds back. Don’t give up there are experts who can help you reclaim what you’ve lost. I’m sharing my story to hopefully guide others who are going through something similar. Here's Their Info Below ([email protected]) or W.H.A.T.S.A.P.P:+1.7.6.0.9.2.3.7.4.0.7

  • 13.02.25 16:52 birenderkumar20101

    I was able to reclaim my lost Bitcoin assets worth of $480,99 which i had lost to the scam company known as Capitalix fx a scam company pretending to be an investment platform which alot of people including myself have lost their funds to, sadly not all would be fortunate enough to retrieve back their funds like I did but if you’re reading this today then you’re already a step closer towards regaining your lost digital assets, CYBERPOINT RECOVERY COMPANY successfully retrieved back my funds in less than of 48hours after I sought for their help to get back my funds. This experience has taught me the importance of carrying out my due diligence before embracing any financial opportunity presented to me and while risk taking may be a part of the journey, some risks are not worth taking and never again will I involve myself with any online financial investment. It’s only right that we seek for external intervention and support of a higher knowledge system when it comes to digital assets recovery, Get in contact today with the team to get started on Email: ([email protected])

  • 13.02.25 17:37 eunice49954

    Agent Jasmine Lopez focuses on recovering stolen cryptocurrency, particularly USDT. She is well-known for helping victims of digital asset theft. Her reputation arises from successful recoveries that have allowed many to regain their lost funds. I witnessed this when $122,000 was taken from me. Thanks to Ms. Lopez's skills, I recovered the entire amount in just 24 hours. Her prompt response and effective methods relieved my financial burden. Ms. Lopez’s commitment to helping others is evident. She is always available to offer solutions to those facing similar problems. For assistance, she can be reached via email at recoveryfundprovider@gmail . com or contacted directly on WhatsApp and text at +44 - 7366 445035. Her Instagram handle is recoveryfundprovider.

  • 14.02.25 02:50 Vladimir876

    I was able to reclaim my lost Bitcoin assets worth of $480,99 which i had lost to the scam company known as Capitalix fx a scam company pretending to be an investment platform which alot of people including myself have lost their funds to, sadly not all would be fortunate enough to retrieve back their funds like I did but if you’re reading this today then you’re already a step closer towards regaining your lost digital assets, CYBERPOINT RECOVERY COMPANY successfully retrieved back my funds in less than of 48hours after I sought for their help to get back my funds. This experience has taught me the importance of carrying out my due diligence before embracing any financial opportunity presented to me and while risk taking may be a part of the journey, some risks are not worth taking and never again will I involve myself with any online financial investment. It’s only right that we seek for external intervention and support of a higher knowledge system when it comes to digital assets recovery, Get in contact today with the team to get started on Email: ([email protected]) or W.H.A.T.S.A.P.P:+1.7.6.0.9.2.3.7.4.0.7

  • 14.02.25 02:56 christophadelbert3

    Я был в полном смятении, когда потерял все свои сбережения, инвестируя в криптовалюту. Со мной связалась онлайн женщина по электронной почте, выдавая себя за менеджера по работе с клиентами банка, которая сказала мне, что я могу удвоить свои сбережения, инвестируя в криптовалюту. Я никогда не думал, что это будет мошенничество, и я потеряю все. Это продолжалось неделями, пока я не понял, что меня обманули. Вся надежда была потеряна, я был опустошен и разорен, к счастью для меня, я наткнулся на статью в моем местном бюллетене о CYBERPUNK RECOVERY Bitcoin Recovery. Я связался с ними и предоставил всю информацию по моему делу. Я был поражен тем, как быстро они вернули мои криптовалютные средства и смогли отследить этих мошенников. Я действительно благодарен за их услуги и рекомендую CYBERPUNK RECOVERY всем, кому нужно вернуть свои средства. Настоятельно рекомендую вам связаться с CYBERPUNK, если вы потеряли свои биткойны USDT или ETH из-за инвестиций в биткойны Электронная почта: ([email protected]) W.h.a.t.s.A.p.p (+.1.7.6.0.9.2.3.7.4.0.7)

  • 14.02.25 02:56 christophadelbert3

    I was in total dismay when I lost my entire savings investing in cryptocurrency, I was contacted online by a lady through email pretending to be an account manager of a bank, who told me I could make double my savings through cryptocurrency investment, I never imagined it would be a scam and I was going to lose everything. It went on for weeks until I realized that I have been scammed. All hope was lost, I was devastated and broke, fortunately for me, I came across an article on my local bulletin about CYBERPUNK RECOVERY Bitcoin Recovery, I contacted them and provided all the information regarding my case, I was amazed at how quickly they recovered my cryptocurrency funds and was able to trace down those scammers. I’m truly grateful for their service and I recommend CYBERPUNK RECOVERY to everyone who needs to recover their funds urge you to contact CYBERPUNK if you have lost your bitcoin USDT or ETH through bitcoin investment Email: ([email protected]) WhatsApp (+17609237407)

  • 14.02.25 15:33 prelogmilivoj

    I never imagined I would find myself in a situation where I was scammed out of such a significant amount of money, but it happened. I became a victim of a fake online donation project that cost me over $30,000. It all started innocently enough when I was searching for assistance after a devastating fire incident in California. While looking for support, I came across an advertisement that seemed to offer donations for fire victims. The ad appeared legitimate, and I reached out to the project manager to inquire about how to receive the donations. The manager was very convincing and insisted that in order to qualify for the donations, I needed to pay $30,000 upfront. In return, I was promised $1 million in donations. It sounded a bit too good to be true, but in my desperate situation, I made the mistake of believing it. The thought of receiving a substantial amount of help to rebuild after the fire clouded my judgment, and I went ahead and sent the money. However, after transferring the funds, the promised donations never arrived, and the manager disappeared. That’s when I realized I had been scammed. Feeling lost, helpless, and completely betrayed, I tried everything I could to contact the scammer, but all my efforts were in vain. Desperation led me to search for help online, hoping to find a way to recover my money and potentially track down the scammer. That’s when I stumbled upon several testimonies from others who had fallen victim to similar scams and had been helped by a company called Tech Cyber Force Recovery. I reached out to them immediately, providing all the details of the scam and the information I had gathered. To my immense relief, the experts at Tech Cyber Force Recovery acted swiftly. Within just 27 hours, they were able to locate the scammer and initiate the recovery process. Not only did they help me recover the $30,000 I had lost, but the most satisfying part was that the scammer was apprehended by local authorities in their region. Thanks to Tech Cyber Force Recovery, I was able to get my money back and hold the scammer accountable for their actions. I am incredibly grateful for their professionalism, expertise, and dedication to helping victims like me. If you have fallen victim to a scam or fraudulent activity, I highly recommend contacting Tech Cyber Force Recovery. They provide swift and efficient recovery assistance, and I can confidently say they made all the difference in my situation. ☎☎ 1️⃣5️⃣6️⃣1️⃣7️⃣2️⃣6️⃣3️⃣6️⃣9️⃣7️⃣ ☎☎ 📩 1️⃣5️⃣6️⃣1️⃣7️⃣2️⃣6️⃣3️⃣6️⃣9️⃣7️⃣ 📩

  • 14.02.25 22:12 eunice49954

    Agent Jasmine Lopez focuses on recovering stolen cryptocurrency, particularly USDT. She is well-known for helping victims of digital asset theft. Her reputation arises from successful recoveries that have allowed many to regain their lost funds. I witnessed this when $122,000 was taken from me. Thanks to Ms. Lopez's skills, I recovered the entire amount in just 24 hours. Her prompt response and effective methods relieved my financial burden. Ms. Lopez’s commitment to helping others is evident. She is always available to offer solutions to those facing similar problems. For assistance, she can be reached via email at recoveryfundprovider@gmail . com or contacted directly on WhatsApp and text at +44 - 7366 445035. Her Instagram handle is recoveryfundprovider.

  • 15.02.25 02:51 Michelle Lynn

    Living in Los Angeles, I never imagined I’d face such a difficult chapter in my life. At the time, my wife was pregnant, and we were both excited about starting a family. I fell victim to a series of scams, losing over $170,000 in total. Just when I thought things couldn’t get worse, I received a call from someone who promised to help me recover my losses. Desperate to fix the situation, I went along with it, hoping for a breakthrough. But it turned out to be another scam. However, most of the options I found either seemed dubious or offered no real guarantees. That’s when I came across Cyber Constable Intelligence. It was a company recommended in a Facebook community The team worked tirelessly on my case, and after some time, they successfully recovered 99% of my investment. Although I didn’t recover everything, the 99% recovery was a huge relief They also educated me on how to better protect my digital Asset Here's Their Website Info www cyberconstableintelligence com

  • 15.02.25 02:51 Michelle Lynn

    Living in Los Angeles, I never imagined I’d face such a difficult chapter in my life. At the time, my wife was pregnant, and we were both excited about starting a family. I fell victim to a series of scams, losing over $170,000 in total. Just when I thought things couldn’t get worse, I received a call from someone who promised to help me recover my losses. Desperate to fix the situation, I went along with it, hoping for a breakthrough. But it turned out to be another scam. However, most of the options I found either seemed dubious or offered no real guarantees. That’s when I came across Cyber Constable Intelligence. It was a company recommended in a Facebook community The team worked tirelessly on my case, and after some time, they successfully recovered 99% of my investment. Although I didn’t recover everything, the 99% recovery was a huge relief They also educated me on how to better protect my digital Asset Here's Their Website Info www cyberconstableintelligence com, WhatsApp Info: 1 (252) 378-7611

  • 16.02.25 01:01 Peter

    I fell victim to a crypto scam and lost a significant amount of money. What are the most effective strategies to recover my funds? I've heard about legal actions, contacting authorities, and hiring recovery experts, but I'm not sure where to start. Can you provide some guidance on the best ways to recover money lost in a crypto scam? Well if this is you, [email protected] gat you covered get in touch and thank me later

  • 16.02.25 20:06 eunice49954

    Agent Lopez specializes in recovering stolen cryptocurrencies, especially Bitcoin/USDT. She has built a strong reputation for helping victims reclaim their lost funds. A personal example highlights her effectiveness: I lost $111,000 and, thanks to her prompt action, I recovered it all within 24 hours. Her dedication and skills eased my financial stress. She is always ready to assist others with similar issues. For help, she can be reached by email at Recoveryfundprovider@gmail. com or contact her through WhatsApp at +44 736 644 5035. Her Insta is recoveryfundprovider.

  • 18.02.25 19:35 donovancristina

    Now, I’m that person sharing my success story on LinkedIn, telling others about the amazing team at TECH CYBER FORCE RECOVERY who literally saved my financial life. I’ve also become that guy who proudly shares advice like “Always back up your wallet, and if you don’t have TECH CYBER FORCE RECOVERY on speed dial.” So, a big thank you to TECH CYBER FORCE RECOVERY if I ever get a chance to meet the team, I might just offer to buy them a drink. They’ve earned it. FOR CRYPTO HIRING WEBSITE WWW://techcyberforcerecovery.com WHATSAPP : ⏩ wa.me/15617263697

  • 18.02.25 22:13 keithphillip671

    WhatsApp +44,7,4,9,3,5,1,3,3,8,5 Telegram @Franciscohack The day my son uncovered the truth—that the man I entrusted my hopes of wealth and companionship with through a cryptocurrency platform was a cunning scammer was the day my world crumbled. The staggering realization that I had been swindled out of 150,000.00 Euro worth of Bitcoin left me in a state of profound despair. As a 73-year-old grappling with loneliness, I had sought solace in what I believed to be a genuine connection, only to find deceit and betrayal. Countless sleepless nights were spent in tears, mourning not only the financial devastation but also the crushing blow to my trust. Attempts to verify the authenticity of our interactions were met with hostility, further deepening my sense of isolation. Through the loss it was my son who became my beacon of resilience. He took upon himself the arduous task of tracing the scam and seeking justice on my behalf. Through meticulous effort and determination, he unearthed {F R A N C I S C O H A C K}, renowned for their expertise in recovering funds lost to cryptocurrency scams. Entrusting them with screenshots and evidence of the fraudulent transactions, my son initiated the journey to reclaim what had been callously taken from me. {F R A N C I S C O H A C K} approached our plight with empathy and unwavering professionalism, immediately instilling a sense of confidence in their abilities. Despite my initial skepticism, their transparent communication and methodical approach reassured us throughout the recovery process. Regular updates on their progress and insights into their strategies provided much-needed reassurance and kept our hopes alive amid the uncertainty. Their commitment to transparency and client welfare was evident in every interaction, fostering a sense of partnership rather than mere service. Miraculously, in what felt like an eternity but was actually an impressively brief period, {F R A N C I S C O H A C K} delivered the astonishing news—I had recovered the entire 150,000.00 Euro worth of stolen Bitcoin. The flood of relief and disbelief was overwhelming, marking not just the restitution of financial losses but the restoration of my faith in justice. {F R A N C I S C O H A C K} proficiency in navigating the intricate landscape of blockchain technology and online fraud was nothing short of extraordinary. Their dedication to securing justice and restoring client confidence set them apart as more than just experts—they were steadfast allies in a fight against digital deceit. What resonated deeply with me {F R A N C I S C O H A C K} integrity and compassion. Despite the monumental recovery, they maintained transparency regarding their fees and ensured fairness in all dealings. Their proactive guidance on cybersecurity measures further underscored their commitment to safeguarding clients from future threats. It was clear that their mission extended beyond recovery—it encompassed education, prevention, and genuine advocacy for those ensnared by cyber fraud. ([email protected]) fills me with profound gratitude. They not only rescued my financial security but also provided invaluable emotional support during a time of profound vulnerability. To anyone navigating the aftermath of cryptocurrency fraud, I wholeheartedly endorse {F R A N C I S C O H A C K}. They epitomize integrity, expertise, and unwavering dedication to their clients' well-being. My experience with {F R A N C I S C O H A C K} transcended mere recovery—it was a transformative journey of resilience, restoration, and renewed hope in the face of adversity.

  • 21.02.25 07:42 daniel231101

    I never thought I would fall victim to a crypto scam until I was convinced of a crypto investment scam that saw me lose all my entire assets worth $487,000 to a crypto investment manager who convinced me I could earn more from my investment. I thought it was all gone for good but I kept looking for ways to get back my stolen crypto assets and finally came across Ethical Hack Recovery, a crypto recovery/spying company that has been very successful in the recovery of crypto for many other victims of crypto scams and people who lost access to their crypto. I’m truly grateful for their help as I was able to recover my stolen crypto assets and get my life back together. I highly recommend their services EMAIL ETHICALHACKERS009 AT @GMAIL DOT COM whatsapp +14106350697

  • 21.02.25 21:38 eunice49954

    Jasmine Lopez specializes in recovering stolen cryptocurrencies, especially ETH/USDT. She has built a strong reputation for helping victims reclaim their lost funds. A personal example highlights her effectiveness: I lost $111,000 and, thanks to her prompt action, I recovered it all within 24 hours. Her dedication and skills eased my financial stress. She is always ready to assist others with similar issues. For help, she can be reached by email at Recoveryfundprovider@gmail. com or contact her through WhatsApp at +44 736 644 5035. Her Insta is recoveryfundprovider.

  • 22.02.25 18:01 benluna0991

    Mark Zuckerberg. That’s the name I was introduced to when I first encountered the cryptocurrency mining platform, WHATS Invest. A person claiming to be Zuckerberg himself reached out to me, saying that he was personally backing the platform to help investors like me earn passive income. At first, I was skeptical—after all, how often do you get a direct connection to one of the world’s most famous tech entrepreneurs? But this individual seemed convincing and assured me that many people were already seeing substantial returns on their investments. He promised me a great opportunity to secure my financial future, so I decided to take the plunge and invest $10,000 into WHATS Invest. They told me that I could expect to see significant returns in just a few months, with payouts of at least $1,500 or more each month. I was excited, believing this would be my way out of financial struggles. However, as time passed, things didn’t go according to plan. Months went by, and I received very little communication. When I finally did receive a payout, it was nowhere near the $1,500 I was promised. Instead, I received just $200, barely 13% of what I had expected. Frustrated, I contacted the support team, but the responses were vague and unhelpful. No clear answers or solutions were offered, and my trust in the platform quickly started to erode. It became painfully clear that I wasn’t going to get anywhere with WHATS Invest, and I began to worry that my $10,000 might be lost for good. That's when I discovered Certified Recovery Services. Desperate to recover my funds, I decided to reach out to them for help. In just 24 hours, they worked tirelessly to recover the majority of my funds, successfully retrieving $8,500 85% of my initial investment. I couldn’t believe how quickly and efficiently they worked to get my money back. I’m extremely grateful for Certified Recovery Servicer's fast and professional service. Without them, I would have been left with a significant loss, and I would have had no idea how to move forward. If you find yourself in a similar situation with WHATS Invest or any other platform that isn’t delivering as promised, I highly recommend reaching out to Certified Recovery Services They were a lifesaver for me, helping me recover nearly all of my funds. It's reassuring to know that trustworthy services like this exist to help people when things go wrong. They also specialize in recovering money lost to online scams, so if you’ve fallen victim to such a scam, don’t hesitate to contact Certified Recovery Services they can help! Here's Their Info Below: WhatsApp: +1(740)258‑1417 mail: [email protected], [email protected] Website info; https://certifiedrecoveryservices.com

  • 23.02.25 22:00 eunice49954

    Jasmine Lopez specializes in recovering stolen cryptocurrencies, especially ETH/USDT. She has built a strong reputation for helping victims reclaim their lost funds. A personal example highlights her effectiveness: I lost $111,000 and, thanks to her prompt action, I recovered it all within 24 hours. Her dedication and skills eased my financial stress. She is always ready to assist others with similar issues. For help, she can be reached by email at Recoveryfundprovider@gmail. com or contact her through WhatsApp at +44 736 644 5035. Her Insta is recoveryfundprovider.

  • 24.02.25 06:36 ANDREW DAVIS

    RECOVER YOUR SCAMMED FUNDS AND CRYPTOCURRENCY VIA SPOTLIGHT RECOVERY Professional hackers at Spotlight Recovery provide services for compromised devices, accounts, and websites as well as for recovering stolen bitcoin and money from scams. They finish their work safely and quickly. Their order has been fulfilled since day one, and the victim will never be conscious of the outside entrance. Very few even attempt to give critical information, look into network security, or discreetly discuss personal issues. The Spotlight Recovery Crew helped me recover $264,000 that was stolen from my corporate bitcoin wallet, and I appreciate them giving me further details on the unidentified people. In the event that you have been defrauded of your hard-earned cash or bitcoins, contact SPOTLIGHT RECOVERY CREW at Contact: [email protected]

  • 24.02.25 07:19 maggie4567

    Jasmine Lopez specializes in recovering stolen cryptocurrencies, especially ETH/USDT. She has built a strong reputation for helping victims reclaim their lost funds. A personal example highlights her effectiveness: I lost $111,000 and, thanks to her prompt action, I recovered it all within 24 hours. Her dedication and skills eased my financial stress. She is always ready to assist others with similar issues. For help, she can be reached by email at Recoveryfundprovider@gmail. com or contact her through WhatsApp at +44 736 644 5035. Her Insta is recoveryfundprovider.

  • 24.02.25 07:19 maggie4567

    Jasmine Lopez specializes in recovering stolen cryptocurrencies, especially ETH/USDT. She has built a strong reputation for helping victims reclaim their lost funds. A personal example highlights her effectiveness: I lost $111,000 and, thanks to her prompt action, I recovered it all within 24 hours. Her dedication and skills eased my financial stress. She is always ready to assist others with similar issues. For help, she can be reached by email at Recoveryfundprovider@gmail. com or contact her through WhatsApp at +44 736 644 5035. Her Insta is recoveryfundprovider.

  • 24.02.25 07:19 maggie4567

    Jasmine Lopez specializes in recovering stolen cryptocurrencies, especially ETH/USDT. She has built a strong reputation for helping victims reclaim their lost funds. A personal example highlights her effectiveness: I lost $111,000 and, thanks to her prompt action, I recovered it all within 24 hours. Her dedication and skills eased my financial stress. She is always ready to assist others with similar issues. For help, she can be reached by email at Recoveryfundprovider@gmail. com or contact her through WhatsApp at +44 736 644 5035. Her Insta is recoveryfundprovider.

  • 27.02.25 12:46 monikaguttmacher

    Weddings are supposed to be magical, but the months leading up to mine were anything but. Already, wedding planning was a high-stress, sleep-deprived whirlwind: endless details to manage, from venue deposits and guest lists to dress fittings and vendor contracts. But nothing-and I mean, nothing-compared to the panic that washed over me when I realized that somehow, I had lost access to my Bitcoin wallet-with $600,000 inside. It happened in the worst possible way. In between juggling my to-do lists and trying to keep my sanity intact, I lost my seed phrase. I went through my apartment like a tornado, flipping through notebooks, checking every email, every file-nothing. I sat there in stunned silence, heart pounding, trying to process the fact that my entire savings, my security, and my financial future might have just vanished. In utter despair, I vented to my bridesmaid's group chat for some sympathetic words from the girls. Instead, one casually threw out a name that would change everything in a second: "Have you ever heard of Tech Cyber Force Recovery? They recovered Bitcoin for my cousin. You should call them." I had never heard of them before, but at that moment, I would have tried anything. I immediately looked them up, scoured reviews, and found story after story of people just like me—people who thought they had lost everything, only for Tech Cyber Force Recovery to pull off the impossible. That was all the convincing I needed. From the very first call, I knew I was in good hands. Their team was calm, professional, and incredibly knowledgeable. They explained the recovery process in a way that made sense, even through my stress-fogged brain. Every step of the way, they kept me informed, reassured me, and made me feel like this nightmare actually had a solution. And then, just a few days later, I got the message: "We have recovered your Bitcoin." (EMAIL. support @ tech cyber force recovery . com) OR WHATSAPP (+1 56 17 26 36 97) I could hardly believe my eyes: Six. Hundred. Thousand. Dollars. In my hands again. I let out my longest breath ever and almost cried, relieved. It felt like I woke up from a bad dream, but it was real, and Tech Cyber Force Recovery had done it. Because of them, I walked down the aisle not just as a bride, but as someone who had dodged financial catastrophe. Instead of spending my honeymoon stressing over lost funds, I got to actually enjoy it—knowing that my wallet, and my future, were secure. Would I refer to them? In a heartbeat. If you ever find yourself in that situation, please don't freak out, just call Tech Cyber Force Recovery. They really are the real deal.

  • 03.03.25 09:35 emiliar

    - [url=https://amongus3d.pro/]Among Us 3D[/url] - A 3D version of the popular social deduction game, enhancing the gameplay experience.

  • 03.03.25 09:35 emiliar

    <a href="https://howtodateanentity.org/">How to Date An Entity (And Stay Alive)</a> - A psychological dating sim that combines romance with existential horror and government conspiracies.

  • 03.03.25 09:36 emiliar

    [PoE 2 Planner](https://poe2planner.org/) - A free online skill tree planner for Path of Exile 2, helping players optimize their character builds.

  • 03.03.25 09:36 emiliar

    [How to Date An Entity (And Stay Alive)] - A psychological dating sim that combines romance with existential horror and government conspiracies.

  • 03.03.25 09:37 emiliar

    [[How to Date An Entity (And Stay Alive)]] - A psychological dating sim that combines romance with existential horror and government conspiracies.

  • 07.03.25 15:18 Ariduk

    BEST LINK FOR RECOVERY SCAM ON TRADING INVESTMENT AND OTHERS TROUBLESHOOT?  Welcome To General Hacking Techniques Service known as DHACKERS.  Year 2025 we are active and best in what we do, as we give Solution to every problem concerning Web3 INTERNET activities, we guide you right to a positive fund Recovery e.t.c. Question From Most of Our Client, HOW POSSIBLE AND TIME WILL IT TAKE TO RECOVERY LOST OR SCAM  FUND? Our Answer.  Yes is 89.9% possible and how long it takes your Fund to be recovered depend on you.  The fact is there are lot of fake binary investment companies out their, same a lot fake recovery companies and agents too.                   CAUTION 1). Make sure you ask one or two questions concerning the service and how they render there recovery services. 2) Do not give out your scammed details to any agent or hacker when you are not yet ready to recover back your fund. 3) do not make any payment when you are not sure of the service if you are to make one. (4) We discovered that most of this fake hacker or agent do give us scam details, playing the victim, because they can afford the service charge. 5) As long you have your scam details with you, you can recover your fund back anytime any-day with the right channel. Contact us from our Front Desk. [email protected] For advice and services, our standby Guru email. [email protected] [email protected]  List of Service. ▶️Binary Recovery ▶️Data Recovery  ▶️University Result Upgraded ▶️Clear your Internet Blunder and controversy  ➡️Increase your Credit Score  ➡️Wiping of Criminal Records  ➡️Social Media Hack  ➡️Blank ATM Card  ➡️Load and wipe ➡️Phone Hacking ➡️Private Key Reset etc.  For quick response. Email [email protected]  Border us with your jobs and allow us give you positive result with our hacking skills.  All Right Reserved (c)2025

  • 08.03.25 04:42 andreassenhedda

    If you’ve fallen victim to online scammers who have deceived you into investing your hard-earned money through fraudulent Bitcoin schemes, know that you're not alone. Countless individuals have been misled by scammers using various tactics to swindle money through deceptive investment platforms or promises of high returns. These scams often come in the form of fake cryptocurrency investments, Ponzi schemes, or phishing scams designed to steal your Bitcoin and other assets. Unfortunately, many victims suffer not only financial loss but also the psychological toll of realizing they’ve been taken advantage of. In some cases, scammers go even further, threatening legal consequences or using intimidation to keep victims silent. However, all hope is not lost. There are ways to recover your funds and potentially even bring those responsible to justice. One promising resource that can assist in reclaiming lost funds is Lee Ultimate Hacker, a trusted platform designed to help victims of online fraud. This service specializes in helping individuals who have been scammed through cryptocurrency investments or similar schemes. The platform’s expertise can help you navigate the process of recovering your money, giving you a chance to fight back against those who’ve wronged you. To begin the recovery process, it’s important to gather any proof of payment or transaction history involving the scammers. This evidence is crucial in tracing the flow of funds and identifying the scam operation behind it. Once you have collected your documentation, you can reach out to Lee Ultimate Hacker via LEEULTIMATEHACKER @ AOL . COM or wh@tsapp +1 (715) 314 - 9248 for assistance. They offer professional services to investigate fraudulent schemes, track Bitcoin transactions, and work to reverse fraudulent transfers. The recovery process can be complex and requires expert knowledge of blockchain technology and financial investigations, but with the help of a dedicated team, you’ll have a better chance of seeing your funds returned. In addition to helping you recover your assets, Lee Ultimate Hacker also works towards identifying the scammers and reporting them to the appropriate authorities. They understand the urgency of halting these fraudsters before they can victimize others. With their assistance, you not only increase the chances of recovering your funds but also play a part in holding cybercriminals accountable. If you've been affected by Bitcoin scams or other fraudulent online activities, reaching out to a service like Lee Ultimate Hacker can provide hope and a clear path forward. Their team can guide you through the recovery process, offering expert support while you take steps to reclaim what you’ve lost. It’s time to take action and work toward reclaiming your hard-earned money.

  • 08.03.25 18:20 Diegolola514gmail.com

    [email protected]

  • 08.03.25 18:23 faridasumadi

    WEBSITE W.W.W.techcyberforcerecovery.com WHATSAPP +1 561.726.36.97 EMAIL [email protected] I Thought I Was Too Smart to Be Scammed, Until I Was. I'm an attorney, so precision and caution are second nature to me. My life is one of airtight contracts and triple-checking every single detail. I'm the one people come to for counsel. But none of that counted for anything on the day I lost $750,000 in Bitcoin to a scam. It started with what seemed like a normal email, polished, professional, with the same logo as my cryptocurrency exchange's support team. I was between client meetings, juggling calls and drafting agreements, when it arrived. The email warned of "suspicious activity" on my account. My heart pounding, I reacted reflexively. I clicked on the link. I entered my login credentials. I verified my wallet address. The reality hit me like a blow to the chest. My balance was zero seconds later. The screen went dim as horror roiled in my stomach. The Bitcoin I had worked so hard to accumulate over the years, stored for my retirement and my children's future, was gone. I felt embarrassed. Lawyers are supposed to outwit criminals, not get preyed on by them. Mortified, I asked a client, a cybersecurity specialist, for advice, expecting criticism. But he just suggested TECH CYBER FORCE RECOVERY. He assured me that they dealt with delicate situations like mine. I was confident from the first call that I was in good hands. They treated me with empathy and discretion by their staff, no patronizing lectures. They understood the sensitive nature of my business and assured me of complete confidentiality. Their forensic experts dove into blockchain analysis with attention to detail that rivaled my own legal work. They tracked the stolen money through a complex network of offshore wallets and cryptocurrency tumblers tech jargon that appeared right out of a spy thriller. Once they had identified the thieves, they initiated a blockchain reversal process, a cutting-edge method I was not even aware was possible. Three weeks of suffering later, my Bitcoin was back. Every Satoshi counted for. I sat in front of my desk, looking at the refilled balance, tears withheld. TECH CYBER FORCE RECOVERY not only restored my assets, they provided legal-grade documentation that empowered me to bring charges against the scammers. Today, I share my story with colleagues as a warning. Even the best minds get it. But when they do, it is nice to know the Wizards have your back.

  • 09.03.25 17:22 Wayne707

    ‎Scammers have ruined the forex trading market, they have deceived many people with their fake promises on high returns. I learnt my lesson the hard way. I only pity people who still consider investing with them. Please try and make your researches, you will definitely come across better and reliable forex trading agencies that would help you yield profit and not ripping off your money. Also, if your money has been ripped-off by these scammers, you can report to a regulated crypto investigative unit who make use of software to get money back. If you encounter with some issue make sure you contact ( [email protected] ) they're recovery expert and a very professional one at that. ‎

  • 10.03.25 18:18 springwilli

    RECLAIM MY LOSSES REVIEWS HIRE DUNAMIS CYBER SOLUTIONI have always taken a security-first approach with my Bitcoin. That's why I put my hardware wallet in a fireproof safe-because you never know. Turned out I should have been even more paranoid. A few months ago, a fire took hold in my house. I lost nearly everything: the electronics, furniture, irreplaceable memorabilia. But when I dug through the remains, there it was: my Ledger hardware wallet, somehow intact. I held it up like some sort of post-apocalyptic movie scene, thinking, "At least my Bitcoin survived." But then, fate was not quite done with me: when I powered it on, it showed no signs of life whatsoever. The heat had fried the internal chip, and all I had was a melted, lifeless brick. That's when I realized my entire $680,000 in Bitcoin was trapped inside. At first, I told myself: "There has to be a way." From forensic data recovery to DIY repair tricks, everything I could conceivably Google, I researched. I considered buying an identical Ledger device and swapping components: spoiler, not a good idea unless you are an electrical engineer. Nothing worked. Every expert I contacted had the same answer: "Your Bitcoin is gone." I refused to accept that. That's when I found DUNAMIS CYBER SOLUTION I was skeptical, to say the least. If the manufacturer couldn't help me, how would they? At that point, I had no other choice but to try them. The first call I made, I immediately knew I was dealing with pros: no absurd promises, no giving of hopes, just explanation of their entire process with clarity-from advanced forensic techniques to secure data reconstruction. I mailed them my charred wallet, still half expecting a miracle to be impossible. Four days later, an email arrived. The subject line? "We have good news." They had successfully extracted my seed phrase and restored every single Bitcoin. I couldn't believe it. I had gone from losing everything to recovering $680,000 worth of crypto in just days. If your hardware wallet is damaged, dead, or seems irreparable, please do not give up. Just call DUNAMIS CYBER SOLUTION. They really did pull off some sort of high-stakes rescue operation on my behalf, and believe me, it was the stuff of legend. [email protected] +13433030545

  • 10.03.25 20:19 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected]

  • 10.03.25 20:19 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected]

  • 11.03.25 13:35 cristydavis101

    Не обманывайтесь различными свидетельствами в Интернете, которые, скорее всего, неверны. Я использовал несколько вариантов восстановления, которые в конце концов меня разочаровали, но должен признаться, что CYBERPOINT RECOVERY, который я в конечном итоге нашел, является лучшим из всех. Лучше потратить время на поиски надежного профессионала, который поможет вам вернуть украденные или потерянные криптовалюты, такие как биткойны, чем стать жертвой других хакеров-любителей, которые не справятся с этой работой. ([email protected]) — самый надежный и подлинный эксперт по блокчейн-технологиям, с которым вы можете работать, чтобы вернуть то, что вы потеряли из-за мошенников. Они помогли мне встать на ноги, и я очень благодарен за это. Свяжитесь с ними по электронной почте сегодня, чтобы как можно скорее вернуть потерянные монеты… W.H.A.T.S.A.P.P:+1.7.6.0.9.2.3.7.4.0.7

  • 11.03.25 13:36 cristydavis101

    Don’t be deceived by different testimonies online that is most likely wrong. I have made use of several recovery options that got me disappointed at the end of the day but I must confess that the CYBERPOINT RECOVERY I eventually found is the best out here. It’s better you devise your time to find the valid professional that can help you recover your stolen or lost crypto such as bitcoins rather than falling victim of other amateur hackers that cannot get the job done. ([email protected]) is the most reliable and authentic blockchain tech expert you can work with to recover what you lost to scammers. They helped me get back on my feet and I’m very grateful for that. Contact their email today to recover your lost coins ASAP… W.H.A.T.S.A.P.P:+1.7.6.0.9.2.3.7.4.0.7

  • 11.03.25 16:23 dannywilliams

    HOW DO I RECOVER MY STOLEN ETH HIRE OPTIMUM HACKERS RECOVERY

  • 11.03.25 16:23 dannywilliams

    HOW DO I RECOVER MY STOLEN ETH HIRE OPTIMUM HACKERS RECOVERY "I am incredibly thankful to Optimum Hackers Recovery for their amazing work in retrieving my stolen Ethereum. After falling victim to a fake investment platform, I felt hopeless. Their team was professional, responsive, and dedicated, guiding me through every step of the recovery process. Thanks to their expertise, I was able to recover my funds and regain my peace of mind. I highly recommend their services to anyone who has faced similar challenges!" E.M.A.I.L [email protected] W.h.a.t.s.a.p.p: +1.2.5.6.2.5.6.8.6.3.6.

  • 11.03.25 16:25 ricciordonez

    I recovered my lost money, and I can't stop stressing how much DUNENECTARWEBEXPERT has transformed my life. Suppose you're involved in any investment or review platform for potential gains. In that case, I highly recommend contacting DUNENECTARWEBEXPERT via Telegram to verify their legitimacy because they will continue to ask you for deposits until you are financially and emotionally devastated. Don't fall for these investment scams; please reach out to DUNENECTARWEBEXPERT via Telegram to help you recover your lost money and crypto assets from these crooks. Email: support AT dunenectarwebexpert DOT com Website: https://dunenectarwebexpert.com/ Telegram: dunenectarwebexpert

  • 12.03.25 05:35 cholevasaca

    As the senior teacher at Greenfield Academy, I wanted to share our ordeal with TECH CYBER FORCE RECOVERY after our school was targeted by a malicious virus attack that withdrew a significant amount of money from our bank account. A third-party virus infiltrated our system and accessed our financial accounts, resulting in a USD 50,000 withdrawal. This attack left us in a state of shock and panic, as it posed a serious threat to our school's financial stability. Upon realizing what had happened, we immediately contacted TECH CYBER FORCE RECOVERY for help. Their team responded promptly and began investigating the situation. They worked tirelessly to track down the virus, analyze its behavior, and understand how it had bypassed our security measures. Most importantly, they focused on recovering the funds that had been stolen from our bank account. Thanks to TECH CYBER FORCE RECOVERY's quick and expert intervention, they were able to successfully recover all the funds that had been withdrawn. Their team worked closely with our bank and utilized advanced recovery methods to ensure the full amount was returned to our account. We were incredibly relieved to see the stolen funds restored, and their efforts prevented any further financial loss. I am incredibly grateful for TECH CYBER FORCE RECOVERY's professionalism, expertise, and swift action in helping us recover the stolen funds. Their team not only managed to undo the damage caused by the virus but also ensured that our financial security was restored. I highly recommend their services to any organization dealing with similar cyberattacks, as their team truly went above and beyond to resolve the issue and protect our assets. CONTACTING THEM TECH CYBER FORCE RECOVERY EMAIL. [email protected]

  • 14.03.25 21:40 adelfinalongo

    I had the worst experience of my life when the unthinkable happened and my valued Bitcoin wallet disappeared , I was literally lost and was convinced I’m never getting it back , but all thanks to LEE ULTIMATE HACKER the experienced and ethical hacker on the web and PI they were able to retrieve and help me recover my Bitcoin wallet. This highly skilled team of cyber expertise came to my rescue with their deep technical knowledge and cutting-edge tools to trace cryptocurrency and private investigative prowess they were rapid to pin point the exact location of my missing Bitcoin, LEE ULTIMATE HACKER extracted my crypto with modern technology, transparency and guidance on each step they took, keeping me on the loop and reassuring me that all will be well: contact LEE ULTIMATE HACKER via LEEULTIMATEHACKER @ AOL . COM telegram: LEEULTIMATE wh@tsapp +1 (715) 314 - 9248 for all your cryptocurrency problems and you’ll have a prompt and sure solution.

  • 15.03.25 00:29 irenmroma

    CRYPTOCURRENCY RECOVERY FIRM DUNAMIS CYBER SOLUTION

  • 15.03.25 00:29 irenmroma

    CRYPTOCURRENCY RECOVERY FIRM DUNAMIS CYBER SOLUTIONIn 2025, I never imagined I would fall victim to a phishing scam, but that’s exactly what happened to me. As a graphic designer in California, I spend a lot of time online and thought I was pretty savvy when it came to spotting potential scams. But one day, I received an email that seemed to be from my bank, Wells Fargo. It looked official and warned me about suspicious activity on my account. The message instructed me to click a link and verify my account details to prevent further issues. Trusting it was legitimate, I followed the instructions and entered my personal banking information.Unfortunately, it was a trap. The email wasn’t from my bank at all. It was from a hacker who had gained access to my sensitive information. Soon after, I noticed a significant withdrawal of $2,300 from my account. Panicked, I contacted Wells Fargo immediately, but despite their efforts, they weren’t able to recover the lost funds. I felt helpless and frustrated, unsure of what to do next.That’s when I heard about DUNAMIS CYBER SOLUTION. Desperate for help, I reached out to their team, and they quickly got to work. They began by investigating the scam and managed to track the hacker’s IP address. They didn’t stop there they worked directly with Wells Fargo to share the findings and helped them investigate further.Thanks to their expertise and fast action,DUNAMIS CYBER SOLUTION was able to facilitate the recovery of $1,800. While I didn’t get the full $2,300 back, I was incredibly grateful for their efforts. It felt like a weight had been lifted, knowing that some of my money had been recovered.This experience taught me an important lesson about online security and the dangers of phishing scams. I was lucky to find DUNAMIS CYBER SOLUTION, and I’m thankful for their support in helping me get back a significant portion of what I lost. Their professionalism and dedication made a stressful situation much more manageable, and I now know how crucial it is to be vigilant and seek help when dealing with online fraud. [email protected] +13433030545

  • 15.03.25 14:34 spencerwerner

    It wasn’t an easy process, and it required patience, but the team’s dedication, attention to detail, and methodical approach paid off. I felt an overwhelming sense of relief and gratitude. What had once seemed like a permanent loss was now being reversed, thanks to the help of Tech Cyber Force Recovery. Not only did the recovery restore my financial situation, but it also restored my sense of trust and confidence. I had almost given up hope, but now, with my funds recovered, I feel like I can move forward. I’ve learned valuable lessons from this experience, and I’m more cautious about my financial decisions in the future. What began as a desperate search on Red Note turned into a life-changing recovery. Thanks to Tech Cyber Force Recovery, I now feel more hopeful about my financial future, with the knowledge that recovery is possible. telegram (@)techcyberforc texts (+1 5.6.1.7.2.6.3.6.9.7)

  • 17.03.25 02:30 [email protected]

    "Work smart and not hard" that's these scammers' slogan. They lure you with promises of luxury and lifetime riches without you doing anything besides investing in their investment schemes, and if you ever fall prey, they will siphon you of every penny dry. I fell victim to it, but was fortunate to be helped by the best recovery expert (TRUST GEEKS HACK EXPERT). They are more than just recovery specialists; they are allies in the fight against online fraud. Trust their expertise and let them guide you towards reclaiming control over your financial future.for assistance, visit website https://trustgeekshackexpert.com/ Wh@t's A p p  +1-7-1-9-4-9-2-2-6-9-3 <> E mail: Trustgeekshackexpert{@}fastservice{.}com

  • 17.03.25 12:20 browne

    When trying to recover lost cryptocurrency, it is important to enlist the assistance of recovery specialists who have knowledge in monitoring and evaluating digital assets, as they are better equipped to navigate the complex digital currency market and locate any stolen assets. As a result, I advise you to get in touch with forensic asset firm. Email: [email protected]

  • 17.03.25 13:14 vinnypraise

    SPEAK WITH A LICENSED ALPHA KEY BTC/USDT RECOVERY HACKER As of right now, ALPHA KEY RECOVERY is the only authorized and genuine recovery hacker that I will recommend to anyone in the world for a very good reason. I can't express how grateful I am to them for helping me overcome my depression; they are truly a blessing in disguise. If you have any data recovery concerns, you should contact ALPHA KEY RECOVERY.

  • 17.03.25 13:14 vinnypraise

    SPEAK WITH A LICENSED ALPHA KEY BTC/USDT RECOVERY HACKER As of right now, ALPHA KEY RECOVERY is the only authorized and genuine recovery hacker that I will recommend to anyone in the world for a very good reason. I can't express how grateful I am to them for helping me overcome my depression; they are truly a blessing in disguise. If you have any data recovery concerns, you should contact ALPHA KEY RECOVERY.

  • 17.03.25 15:23 Charlesagrimes

    Running the small business was hard enough in itself without having to suffer such stress as loss of access to a Bitcoin wallet. I had put $532,000 into Bitcoin for my business in case of emergencies, but one day, the wallet was nowhere to be seen. I had trusted it to my friend while he managed my financials, little knowing he would prove less than trustworthy. I couldn't envision the gut-wrenching feeling coupled with a great feeling of folly for having placed so much trust in someone else's hands. I could not believe my eyes to see that all of my digital fortune was gone. Literally, every second of my busy day froze in disbelief as I tried to conceive the loss. I remembered the hours I had put into building my business, securing my investments, and planning for the future. Now, I was staring at an empty wallet that once held my safety net. This hit me hard-not only had I lost $532,000, but the betrayal hurt further because it came from someone I considered reliable. The emotional toll was huge, and this financial hit could cripple my business. In the midst of my despair, I knew I had to act fast. I went online, searching everywhere for a solution through which I could get back in control of my finances. That is where I came across Digital resolution services. I knew them for recovery related to lost crypto, but also somehow skeptical. At that point, it looked like I had nothing left to lose. I reached out, and with our very first conversation, I gained the impression that they did understand my situation. Their team was nothing short of extraordinary. They approached my case with professionalism and empathy, meticulously explaining the recovery process in clear, simple terms that alleviated some of my anxiety. They set realistic expectations while promising to do everything possible to retrieve my funds. Over the next several weeks, they worked tirelessly, employing advanced blockchain forensic techniques and sophisticated tracking tools that I’d never even heard of before. It kept me informed with constant updates and gave me hope in this desperate time. Finally, it came-the day Digital resolution services recovered my lost Bitcoin. Relief overwhelmed me, and it wasn't all about the money but control and self-trust in my financial future. This experience taught me the most valuable lesson: never lose control over your own financial security and never put blind trust in anyone. With Digital resolution services, I recovered not only my $532,000 but also learned how to protect my assets better in the future. Contact Digital Resolution Services: Email: digitalresolutionservices (@) myself. c o m WhatsApp: +1 (361) 260-8628 Stay protected Charles agrimes

  • 18.03.25 23:49 lindaspringer311

    My name is Linda Springer, and I am part of an ultra-high-net-worth family in the United Kingdom. Managing our wealth has always been a top priority, and I’ve always looked for opportunities to grow and diversify our investments. When I was introduced to an offshore banking investment program called Market Fund, it seemed like the perfect opportunity to enhance our portfolio. The program promised impressive returns, and with professional advisors and seemingly legitimate documentation, I felt confident that it was a secure investment. However, my trust in Market Fund quickly proved to be misplaced. Initially, everything seemed to go smoothly. Reports showed strong growth, and I was reassured by the continuous updates from the program’s advisors. But when I tried to withdraw my funds, everything took a sharp turn. The Market Fund website became unresponsive, and all my attempts to reach the advisors through emails and phone calls went unanswered. It was then that I realized I had fallen victim to a scam, and the £60,000 I had invested was gone. Feeling devastated and unsure of what to do next, I turned to a friend I had met at a club called The Vault. During one of our conversations, Alex, a fellow club-goer, mentioned how Rapid Digital Recovery had helped them recover funds from a similar fraudulent scheme. Intrigued by their success story, I decided to reach out to Rapid Digital Recovery....Whatsapp: +1 4 14 80 71 4 85.. hoping they could help me recover my money as well. From the moment I contacted them, the team at Rapid Digital Recovery took immediate action. They began investigating the scam and used advanced technology to trace the origins of Market Fund. Through their efforts, they uncovered a network of fake websites and shell companies that had been designed to deceive investors like myself. Thanks to their persistence and expertise, Rapid Digital Recovery successfully recovered the £60,000 I had lost.....Email: rapid digital recovery (@) execs. com.. Not only did they restore my financial security, but they also exposed the fraudulent operation behind Market Fund, preventing others from falling victim to the same scam. While the experience was incredibly stressful, it served as an important reminder of the need for due diligence and professional oversight when dealing with offshore investments. I am incredibly grateful to Rapid Digital Recovery for their support, expertise, and determination in recovering my funds. Telegram: h t t p s: // t. me /Rapiddigitalrecovery1

  • 20.03.25 17:21 katherineingram

    Dr. Katherine Ingram

  • 20.03.25 17:21 katherineingram

    CRYPTOCURRENCY RECOVERY FIRM \ FOLKWIN EXPERT RECOVERY. I, Dr. Katherine Ingram, had always been committed to giving my best to my patients in Melbourne, Australia. But everything changed when I was suddenly hit with a medical malpractice lawsuit. The stress and anxiety that came with the legal battle left me feeling overwhelmed, and I was desperate for a solution. In my search for help, I found "MedLegal Solutions," a firm that promised a quick and easy resolution for just $27,000 AUD. They assured me they would handle everything swiftly, easing my burden. Desperate to resolve the situation, I handed over the money, trusting them to take care of the rest. However, as the weeks turned into months, I heard nothing. Calls went unanswered, emails went ignored, and I began to feel more and more helpless. It became clear that something was wrong, and I realized I had been deceived. The more I tried to contact them, the more I found myself being ignored. I soon understood that I was much deeper than I had initially feared. That’s when I turned to Folkwin Expert Recovery for help. From the moment I contacted them, they sprang into action. They immediately began investigating MedLegal Solutions and quickly uncovered a massive web of deceit. It turned out that MedLegal Solutions wasn’t just an incompetent firm; it was part of an elaborate scam. They were operating under multiple false identities across Sydney, Brisbane, and regional Victoria, targeting vulnerable individuals like myself. Folkwin Expert Recovery didn’t just uncover the fraud, they took it one step further. They worked tirelessly with authorities in Melbourne to track down and dismantle the fraudulent operation. They didn’t rest until MedLegal Solutions was shut down for good, ensuring that no one else would fall victim to their schemes. Thanks to their expert recovery efforts, I was able to recover every single cent of my $27,000.This entire ordeal was a wake-up call for me. It was a difficult and stressful time, but ultimately, I came out victorious. Thanks to Folkwin Expert Recovery, not only did I get my money back, but I also found peace knowing that MedLegal Solutions was no longer in business and that their fraudulent operation had been dismantled. It was a painful lesson, but in the end, my finances were intact, and I could move forward with a sense of closure. FOLKWIN EXPERT RECOVERY DETAILS\\ Telegram: @Folkwin_expert_recovery Or Email: Folkwinexpertrecovery(@)tech-center DOT com   Regards, Dr. Katherine Ingram.

  • 20.03.25 19:34 ysabelbristol

    I am YSABEL, a medical student living with my grandmother. For the past few years, I’ve been diligently saving my grandmother’s money to ensure she has a comfortable and secure future. I invested over $40,000 into an online platform, which promised significant returns. After completing several steps, they told me that to withdraw the money, I needed to make another payment of $73,000. As a medical student, my time is already stretched thin, and managing my grandmother’s finances on top of my studies was overwhelming. That's when a costudent, who had gone through a similar experience, recommended MUYERN TRUST HACKER. Initially, I was skeptical. After all, how could anyone help me recover the money I had already lost to such a sophisticated scam? But after reaching out to them, I quickly realized I was in good hands. From the very first conversation, the team at MUYERN TRUST HACKER was professional, compassionate, and knowledgeable. They understood the gravity of my situation and took the time to thoroughly review all the details of my case. They explained the recovery process clearly, step by step, and assured me that they would work tirelessly to help recover the funds I had lost. Their expertise in dealing with online fraud was evident, and for the first time in weeks, I felt a sense of hope that I could regain control over this situation. The recovery process wasn’t immediate, and there were moments of uncertainty, but MUYERN TRUST HACKER remained dedicated and persistent. As someone who has been working hard to save and protect my grandmother’s money, it was devastating to feel like I might lose everything to a scam. But MUYERN TRUST HACKER gave me the support, expertise, and guidance I needed to recover what was lost. I’m deeply grateful for their help, and I now have a renewed sense of hope that I can protect my grandmother’s future. If you find yourself in a similar situation, feeling trapped and overwhelmed by a fraudulent company, I highly recommend MUYERN TRUST HACKER. (Whats A p p at + 1 (440) (335) (0205)  Their team provides real solutions, and their professionalism and dedication were a lifeline for me during a very difficult time. Thanks to them, I feel confident that I can move forward and continue to protect my grandmother’s savings. Alternatively, contact their tele gram also if you need immediate attention at muyerntrusthackertech.

  • 21.03.25 21:19 carmenbeechum643

    (Telegram: https:// t. me/Pro_ Wizard_ Gilbert_ Recovery) Email (pro wizard gilbert recovery (@) engineer. com) I never imagined I would fall victim to a cryptocurrency scam, but that's exactly what happened. My name is [Carmen Beechum, and I invested $500,000 into what | believed was a legitimate trading platform. Everything appeared professional-the website was well-designed, customer service was responsive, and my trading account even showed promising returns.It all seemed too good to be false.However, when I attempted to withdraw my funds, I was met with endless delays and excuses. First, they claimed there were technical issues, then they needed additional verification, and finally, they requested a release fee before processing my withdrawal. Despite complying with their demands, my account was eventually frozen, and all communication from the platform ceased. That's when reality hit me—l had been scammed out of half a million dollars. Desperate to find a way to recover my money, I searched online for solutions. That's when I came across PRO WIZARD GIlBERT RECOVERY, a company dedicated to helping victims of online financial fraud. At first, I was skeptical-after all, I had already been deceived once, and the last thing I wanted was to fall for another scam. But after speaking with their team and reviewing their success stories, I decided to take a chance.Their experts immediately got to work, using advanced blockchain forensics and investigative tools to trace my stolen funds. WhatsApp: +1 (920) 408‑1234 They identified the fraudulent wallets where my money had been transferred and collaborated with financial institutions and law enforcement agencies to take action. Thanks to their persistence and expertise, they were able to freeze the scammers' accounts and successfully recover my $500,000. What seemed like a devastating loss turned into a remarkable recovery. I am incredibly grateful to PRO WIZARD GIlBERT RECOVERY for not only retrieving my funds but also restoring my peace of mind. My experience serves as a warning to others-always be cautious with online investments, but if you ever become a victim, know that recovery is possible with the right experts on your side.

  • 22.03.25 14:13 [email protected]

    The glow of RGB lights still haunts me. There I was, mid-stream, hyping up a Fortnite squad when an email pretending to be a sponsorship opportunity with the subject line "ENERGY DRINK COLLAB!!! *" appeared on my second monitor. I clicked— big mistake. By the time my chat spammed "*SCAM ALERT" in neon caps, a trojan had already ghosted my Bitcoin wallet, $320,000 gone, poof, like a noob disconnecting mid-game. My facecam caught the exact moment my soul left my body: jaw open, headset tilted, the background of anime posters judging me silently. The VOD blew up. Of course, it did. Pandemonium erupted. Donation alerts became panic emojis. My mods DM'd links to "HOW TO FIX CRYPTO THEFT" amidst banning trolls. My wallet? A barren wasteland. My DMs? A cemetery of "*F"s and crypto-bros pitching recovery scams. Then, a lifeline—a chatter named *xX_Cryptosolution_69 typed, "TRUST GEEKS HACK EXPERT. THEY CLAPPED A HACKER FOR MY DOGE ONCE." Desperate, I Googled them mid-stream, muting to scream into a pillow. TRUST GEEKS HACK EXPERT team responded like NPCs scripted for heroics. “Send us the malware file,” they said. “**And your wallet logs. We’ll handle the rest.” For 12 days, they reverse-engineered the trojan, dissecting its code like speed runners cracking a glitch. The virus, it turned out, was a knockoff ransomware dubbed “Crypto rush” (its dev had left a “HACK THE PLANET!!” Easter egg in the code, cringe). TRUST GEEKS HACK EXPERT squad traced its path, resurrecting private keys from registry fragments and backup clouds I’d forgotten existed. The return stream was record-breaking. I rebooted my rig, wallet restored, and titled the stream "HOW I UNBRICKED $320K (AND MY CAREER)." Chatters donated Bitcoin out of solidarity, and schadenfreude. Even my rival streamer, DrL33tGamer, raided me with 10k viewers. TRUST GEEKS HACK EXPERT? They viewed anonymously and left a sub with the message: "GG EZ. These internet Gandalfs didn't just fix a hack—they authored the greatest plot twist in my online existence. Now, my new website, Stream Vault, runs on a server guarded like Fort Knox, and I vet sponsors like the CIA. That fake energy drink company? Its domain now points to a Rickroll. If your crypto gets pawned by a script kiddie, skip the rage quit. Ping the TRUST GEEKS. They're the ultimate cheat code for catastrophe. Just maybe have a malware scanner in closer proximity than your energy drinks next time. (CONTACT SERVICE ) Email, Trustgeekshackexpert[At]fastservice[Dot]com Telegram, Trustgeekshackexpert Email, [email protected] Website, www://trustgeekshackexpert.com

  • 23.03.25 12:24 maryjul75

    There are not many reviews about free crypto recovery fixed but the ones that exist are mostly positive. I have no idea how that is possible, but it is clear that they are fabricated. However, there are also negative reviews – and I highly recommend paying attention to them. These are real people describing their unfortunate experiences with this scam. It’s the same story as always – fraudsters create a fake website to con people out of money. Nothing new but look no more and contact FASTRECOVERYAGENT These types of scams are everywhere. If you have already lost money to scammers i mean any type be it sending to scammers account , or if you have a case about stolen bitcoin , usdt, or any type of cryptocurrency whatsoever just reach out to www.fastrecoveryagent.com, i really owe this group of recovery expert because they saved me after bad investment with a fake broker, i literally owe them my life as they saved me from some bunch of scammers, but see how life is , i got every cent of my investment back with the profit , reach out to to them today and tell them from Mary because i promise them i will tell the whole world when the recovery is complete, and here i go after i got my recovered assets thats why im doing what i promised. do not fall for another scam. contact the,m today!!!!

  • 23.03.25 22:01 joaneldnde

    The ground trembled like a nervous intern on espresso shots. One minute, I was monitoring my geothermal Bitcoin miners, humming in harmony with Iceland's most unpredictable volcano. Next? An eruption painted the sky gray with ash, raining destruction like an out-of-control blockchain fork. Power cables flickered out. Servers turned into abstract-art pieces. And my wallet with $460,000 worth of mining revenue fried faster than a motherboard in a tidal wave of lava. I was knee-deep in volcanic mud, clutching the charred wallet, wondering if the universe had a vendetta against renewable energy. For weeks, I’d played geothermal gambler, harnessing Earth’s anger to mine crypto. Now, Mother Nature had countered with a literal power move. My wallet’s backups? Corrupted by ash-clogged drives. My cold storage? Warmer than a freshly erupted fissure. Even the volcanologists on my team shrugged. “We predict lava, not ledger errors,” one said, handing me a business card signed at the edges. “Try these Cyber Constable Intelligence. They’ve fixed crypto in weird places.” Cyber Constable Intelligence phoned on the first ring. Cyber Constable Intelligence saved not just crypto. They demonstrated that even the fury of nature cannot surpass human tenacity. My operation now operates robustly, excavating coins with Earth's anger and a backup generator sufficient to run a small glacier. The volcano? Still grumbling. My wallet? Locked inside a fireproof safe, as irony bites sharper than an Icelandic winter. If your crypto somehow gets smothered beneath the pyroclastic ash of life, skip the freak-out. Call the Cybers. They'll dig through lava streams until your cash bubbles up to the surface. Just maybe set up your rigs a few miles closer to the crater next time. If you’re facing a similar problem I highly recommend contacting Cyber Constable Intelligence 📞 WhatsApp:+1 (2 5 2 ) 3 7 8 7 6 1 1 🌐 Website: www cyberconstableintelligence.com 📩 Telegram: https://t.me/cyberconstable

  • 23.03.25 22:18 [email protected]

    A few months ago, I stumbled upon a post about a cryptocurrency investment platform that I thought was a good idea for me to invest in crypto, I didn’t realize I was being catfished by the cryptocurrency investment manager who promised me huge returns on my investment. I lost my capital of $170,000 and interest without receiving any profits in return, I was devastated And I realized I had been scammed out of my cryptocurrency. I felt hopeless and didn’t know where to turn. i searched everywhere for a solution and That’s when my friend introduced me to a Crypto recovery platform Trust Geeks Hack Expert. At first, I was skeptical—after all, I had just been scammed—but Trust Geeks Hack Expert professionalism and transparency reassured me. They took the time to analyze my case, track my lost funds, and guide me through the recovery process. To my amazement, they successfully retrieved my stolen crypto! I can’t express how grateful I am to Trust Geeks Hack Expert team. Their expertise and dedication gave me a second chance. If you’ve been a victim of a crypto scam, don’t lose hope—Trust Geeks Hack Expert. is the real deal! for assistance, Email: [email protected] (TeleGram:: Trustgeekshackexpert) & what's A p p  +1 7 1 9 4 9 2 2 6 9 3

  • 24.03.25 10:03 Diegolola514gmail.com

    "I am incredibly grateful to Sylvester Bryant for his exceptional expertise and assistance in recovering my USDC funds, which were lost to a phishing scam. Thanks to his diligent efforts, he successfully retrieved €480,000 worth of USDC that I thought was gone forever. If you or anyone you know has fallen victim to a similar situation, I highly recommend reaching out to Sylvester for professional assistance. You can contact him via email at Yt7cracker@gmail. com or through WhatsApp/text message at +1 512 577 7957. He is truly a reliable and skilled professional in recovering assets from online scams."

  • 25.03.25 18:06 maryjul75

    Fast Agent Recovery is a consulting firm that specializes in the recovery of assets from financial fraud. We know how to recover your funds and we have helped thousands of scam victims from around the world to recover their money. If you are a victim of Binary Options fraud, Forex fraud, Bitcoin fraud, Dating scams or one of the many other the online fraudulent practices that permeate the internet then file a complaint on www.fastrecoveryagent,.com to get an assessment if we can help you get your money back too. File a complaint: https://www.fastrecoveryagent.com/

  • 27.03.25 01:52 debrapavon89

    The moment my cold storage device flatlined, erasing $385,000 in Bitcoin I’d saved to launch a chain of zero-waste cafés, I became a ghost haunting my own life. I scrolled through forums until my eyes were streaming, trawling through threads filled with such mouthfuls as "irreversible blockchain entropy" and "cryptographic oblivion A Reddit thread finally revealed to me Cyber Constable Intelligence I reached out, the team at Cyber Constable Intelligence took immediate action. They began tracing the fraudulent car auction site and thoroughly investigating the scam. To my relief, after several weeks of hard work, Cyber Constable Intelligence successfully tracked down the scammers and recovered the full $385,000 I had lost. Their hard work allowed me to move on from this unfortunate experience, I highly recommend their services to anyone who has been affected by online fraud Reach out to their Info below WhatsApp: 1 252378-7611 Website info; www.cyberconstableintelligence.com

Для участия в Чате вам необходим бесплатный аккаунт pro-blockchain.com Войти Регистрация
Есть вопросы?
С вами на связи 24/7
Help Icon