Player FM - Internet Radio Done Right
Checked 2M ago
Vor fünf Jahren hinzugefügt
Inhalt bereitgestellt von João Otávio Cesco Careta. Alle Podcast-Inhalte, einschließlich Episoden, Grafiken und Podcast-Beschreibungen, werden direkt von João Otávio Cesco Careta oder seinem Podcast-Plattformpartner hochgeladen und bereitgestellt. Wenn Sie glauben, dass jemand Ihr urheberrechtlich geschütztes Werk ohne Ihre Erlaubnis nutzt, können Sie dem hier beschriebenen Verfahren folgen https://de.player.fm/legal.
Player FM - Podcast-App
Gehen Sie mit der App Player FM offline!
Gehen Sie mit der App Player FM offline!
Podcasts, die es wert sind, gehört zu werden
GESPONSERT
M
Motivational Speeches, Inspiration & Real Talk with Reginald D (Motivational Speeches/Inspirational Stories)


1 Tariffs For Your Life: Breaking Free From Emotional Debt, Spiritual Burnout & Hidden Trauma (Motivational Speech) 12:46
What if the stress, burnout, and emotional exhaustion you’re feeling isn’t just life — but an invisible fee you’ve been paying for years? In this raw and revealing motivational episode, Reginald D dives deep into the hidden emotional, spiritual, and mental tariffs that silently drain our joy, faith, and purpose. From trauma-induced beliefs to generational pain and toxic relationship cycles, Reginald D unpacks how we’ve been taxed by fear, doubt, shame, rejection — and how to cancel those spiritual fees once and for all. If you’ve ever felt stuck, unworthy, or spiritually bankrupt, this is your wake-up call to walk in the freedom Jesus already paid for . Let's declare your independence from emotional debt and build a life of healing, faith, and abundance. In today’s world, many are depleted and emotionally overwhelmed — not because they’re weak, but because they’re unknowingly paying hidden “tariffs” on their self-worth, identity, and peace. This episode tackles those unseen costs and empowers you to cancel emotional debts passed down from childhood, relationships, or trauma — replacing them with purpose, healing, and truth. If you’ve been overthinking, over giving, or overworking to feel “enough,” you’ll discover how to stop financing your past and finally live free. 3 Key Benefits You’ll Walk Away With: A renewed understanding of your identity in Christ and how to stop letting pain define you Practical insights to identify and cancel emotional and spiritual fees you never agreed to Encouragement to set boundaries, rewrite your internal beliefs, and step boldly into your purpose Press play now and cancel the emotional fees you’ve been paying too long — freedom is your new currency. Send us a text Support the show For daily motivation and inspiration, subscribe and follow Real Talk With Reginald D on social media: Instagram: realtalkwithreginaldd TikTok: @realtalkregd Youtube: @realtalkwithreginald Facebook: realtalkwithreginaldd Twitter Real Talk With Reginald D (@realtalkRegD) / Twitter Website: Real Talk With Reginald D https://www.realtalkwithreginaldd.com Real Talk With Reginald D - Merchandis e…
Dois Passos a Frente
Alle als (un)gespielt markieren ...
Manage series 2586587
Inhalt bereitgestellt von João Otávio Cesco Careta. Alle Podcast-Inhalte, einschließlich Episoden, Grafiken und Podcast-Beschreibungen, werden direkt von João Otávio Cesco Careta oder seinem Podcast-Plattformpartner hochgeladen und bereitgestellt. Wenn Sie glauben, dass jemand Ihr urheberrechtlich geschütztes Werk ohne Ihre Erlaubnis nutzt, können Sie dem hier beschriebenen Verfahren folgen https://de.player.fm/legal.
Falando sobre aqueles assuntos aleatórios que te fazem pensar nos momentos mais íntimos da sua vida, com um toque de humor.
…
continue reading
99 Episoden
Alle als (un)gespielt markieren ...
Manage series 2586587
Inhalt bereitgestellt von João Otávio Cesco Careta. Alle Podcast-Inhalte, einschließlich Episoden, Grafiken und Podcast-Beschreibungen, werden direkt von João Otávio Cesco Careta oder seinem Podcast-Plattformpartner hochgeladen und bereitgestellt. Wenn Sie glauben, dass jemand Ihr urheberrechtlich geschütztes Werk ohne Ihre Erlaubnis nutzt, können Sie dem hier beschriebenen Verfahren folgen https://de.player.fm/legal.
Falando sobre aqueles assuntos aleatórios que te fazem pensar nos momentos mais íntimos da sua vida, com um toque de humor.
…
continue reading
99 Episoden
Alle Folgen
×TRAPTHEFATO tocando no morro TRAPTHEFATO tocando no morro Ele diz que é rapper, mas age igual bitch A água 'tá roxa por causa do lean Maison Margiela no outfit 'Cê sabe, meus mano' não usa Besni Fumando maconha na frente dos cara' É nós que manda de fato na city .223 deixei guardada Eu tenho meus mano' que mata por mim Menorzin' de 12 'tá com o porte, gasto vinte mil na Block Dois atiradores, Conego e Doc Nego, eu sou vegano (Vegano), tô fumando brócolis Esse nigga é estranho, cara de…
Demorei para upar, porque estava jogando God of War Ragnarok
Vocês tem ideia de como que é ser pai?
Hoje vamos conhecer um dia aleatório, em forma de RPG; > Apenas hoje, no globo reporter;
Mermão, onde é que você esteja, a gente vai te zoar, sério, nós vamos; QUEM PERDOA É DEUS LESK;
Glub Gluuuuuuuuuuuuuuub
O que te faz feliz humano? Neste cast, discutimos coisas que nos deixam felizes pra caramba
Eleições chegaram, e agora humano e humana?
VOLTAMOS CARALHO! ~essa é a legenda;
D
Dois Passos a Frente

1 Mapping Keys to Multiple Values in a Dictionary #100 - Dois Passos a Frente 1:08:37
1:08:37
Später Spielen
Später Spielen
Listen
Gefällt mir
Geliked1:08:37
A dictionary is a mapping where each key is mapped to a single value. If you want to map keys to multiple values, you need to store the multiple values in another container such as a list or set; To easily construct such dictionaries, you can use defaultdict in the collections module. A feature of defaultdict is that it automatically initializes the first value so you can simply focus on adding items;…
#AQUI EU CRIO DOIS FOR, PORQUE EU PRECISO ANALISAR ITEM POR ITEM DA MATRIZ QUE FOI CRIADA; def verifica_virgula_todo(self, nome_arquivo): linhas_virgula = [] for i in range(0, len(self._dados)): for n in range(0, len(self._dados[i])): if ("," in self._dados[i][n]): # CASO TENHA ENTRADAS VALIDAS, EU ADICIONO O VALOR EM QUE i ESTÁ + 1, EM UM ARRAY; # ESTETICAMENTE MELHOR; linhas_virgula.append(i + 1) self._correto = False…
D
Dois Passos a Frente

É isso ai;
é isso....
Preciso estudar código, sem criatividade para descrição; void insertAfter(Node* previous, int value) // logo, eu preciso ser um ponteiro de um ponteiro. { //1. verificar se previous não é NULL; if(previous == NULL) { cout << "Previous can not be NULL"; return; } //2. Preparar o novo Node; Node* newNode = new Node(); newNode->Data = value; //3. Inserir o novo Node depois de previous; newNode->next = previous->next; //o que o meu Node a está apontando, meu novo Node aponta previous->next = newNode; // O Node A aponta para o novo Node; }…
int main () { std::vector nums = {1}; int val = 0; int pos = 0; bool check = false; auto i = nums.begin(); while (i !=nums.end()) { if((*i) != val) { i++; pos++; } else { check = true; break; } } if (!check) { pos = 0; auto j = nums.begin(); while (j != nums.end()) { if (val > (*j)) { j++; pos++; } else { check = true; break; } } } cout << pos << std::endl; for(int x : nums) { cout << x << "\t"; } return ; }…
Willkommen auf Player FM!
Player FM scannt gerade das Web nach Podcasts mit hoher Qualität, die du genießen kannst. Es ist die beste Podcast-App und funktioniert auf Android, iPhone und im Web. Melde dich an, um Abos geräteübergreifend zu synchronisieren.