Jump to content
People were interested in these podcasts
Play Episode
71min
A World of Difference
From Submissive Wife to Bold Truth-Teller: Michelle Moffitt on Breaking Free of Narcissistic Abuse
Does this sound familiar? Have you been told to just forgive and forget, to move on and put it all behind you, but the pain of not being believed or supported after abuse is still lingering? The ineffective advice you've been given has left you feeling isolated and unheard, but there's hope for finding the understanding and validation you truly deserve. Let's talk about how to heal from the trauma of not being believed and find the support you need to move forward. In this episode, you will be able to: Mastering strategies for overcoming narcissistic abuse in marriage. Discovering the path to healing from church-related trauma. Learning effective strategies for escaping abusive relationships. Cultivating emotional intelligence and mastering boundary setting. Navigating the journey of life after divorce and loss. My special guest is Michelle Moffitt Michelle Moffitt is a dynamic psychotherapist and leadership consultant known for guiding individuals and organizations through change using evidenced-based strategies. As a facilitator and speaker, she specializes in teaching Emotional Intelligence through effective communication, including conflict resolution, feedback delivery, negotiation, and setting boundaries. Her upcoming book, Cracked Open: A Journey to Resilient and Independent Mindset slated for release in January, dives into her real life journey to a resilient mindset, providing valuable insights for those navigating narcissistic abuse and church-related trauma. An overly optimistic Enneagram 7 wing 8, she infuses her work with positivity and actionable insights. A dedicated mom to five amazing adults, she seamlessly blends her professional knowledge with real-life experiences to empower her clients and audiences. Her passion for growth and development shines through in every aspect of her work, making her a sought-after voice in the fields of personal and professional transformation. The key moments in this episode are: 00:00:23 - Walking Through Traum
Mile High Huddle Podcast
MHI #249: How Serious is the WR/First Round Buzz at Broncos HQ?
Luke Patterson and Thomas Hall sift through the latest Broncos news and rumors, including Denver Broncos insiders pointing hard at the wide receiver class in Round 1, which lines up with the team's top 30 visits. What's the story? Luke Patterson: https://twitter.com/LukePattersonLPThomas Hall: https://twitter.com/ThomasHallNFLMerch: http://mhhmerch.com/Slam it here for more Broncos coverage: https://www.si.com/nfl/broncos/Mile High Huddle Live Stream Schedule / Denver Broncos Podcast(All Times MT)Sunday - 6:00 p.m. Mile High Huddle PodcastMonday - 7:30 a.m. Broncos for Breakfast Monday - 6:00 p.m. Mile High Huddle PodcastTuesday - 6:00 p.m. Building the BroncosWednesday - 7:30 a.m. Broncos for BreakfastWednesday - 6:00 p.m. Mile High InsidersThursday - 6:00 p.m. Mile High Huddle PodcastFriday - 6:00 p.m. Dove Valley Deep DiversSaturday - 6:00 p.m. Orange and Blue ViewAdvertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy
HIT Like a Girl Pod: Empowering Women in Health IT
Closing the Last Mile: AI's Role in Healthcare Transformation
🎙️ How can AI bridge the gap between data and actionable insights in healthcare?  In this episode of HIT Like a Girl, hosts Demi Radeva and Kim Perry, Chief Growth Officer of emtelligent, dive into the transformative potential of AI in healthcare. Kim shares her expertise on the evolution of clinical AI, particularly Natural Language Processing (NLP), and how it’s turning unstructured data into actionable insights.  The conversation explores: The progress and challenges of AI-driven documentation in healthcare. Why accuracy and transparency are non-negotiable in AI solutions. The critical role of healthcare-specific NLP tools in improving operational efficiency. How policy shifts and technological expertise are shaping the future of healthcare innovation. 💡 Kim’s insights highlight the importance of closing the “last mile” in healthcare AI—where data meets real-world impact. Key Moments: ⏱️ 01:03 | Current Trends and Challenges in Healthcare AI ⏱️ 02:34 | The Role of NLP in Clinical Documentation ⏱️ 03:46 | Overcoming Barriers to AI Adoption ⏱️ 07:34 | The Future of AI in Healthcare ⏱️ 10:19 | Conclusion and Final Thoughts 🎧 Tune in to discover how AI is revolutionizing healthcare—one insight at a time. Why Listen? This episode is a must-listen for anyone interested in AI, healthcare innovation, and the future of data-driven care. Kim’s expertise offers a roadmap for leveraging AI to improve efficiency, accuracy, and patient outcomes.
Westside Investors Network (WIN)
145. Traditional vs. Alternative Investments: Which is Right for You? with Denis Shapiro
ABOUT DENIS SHAPIRODenis began investing in real estate in 2012, when the market was just beginning to recover from the global financial crisis. He built a cash-flowing portfolio including many alternative assets, such as Note and ATM funds, mobile home parks, life insurance policies, tech start-ups, Industrial property, short-term rentals, affordable housing communities, and more. He co-founded an investment club for accredited investors in 2019. Following the success of his investor club, he launched SIH Capital Group. Denis wrote The Alternative Investment Almanac: Expert Insights on Building Personal Wealth in Non-Traditional Ways in 2021. His book is based on his own experience becoming a successful alternative asset investor and interviews with some of the best alternative asset investors in business today. THIS TOPIC IN A NUTSHELL: Denis's journey in real estate Investing in mutual funds & stocksHis take on Traditional vs Alternative investmentsExploring other asset classes outside real estateHow to choose assets to investThe commonality of alternative investmentsUnderwriting process on dealsFrom Joint Ventures to being the OperatorImplementing the business planChallenges in asset management Ways to create revenue Implementing systems to make life easierWhy they love affordable housingConnect with Denis     KEY QUOTE:  To us, asset management is the most important aspect of investment. Sometimes, It's easy to close, but it's hard to operate.    SUMMARY OF BUSINESS: SIH Capital Group was created with a mission to provide a consistent income to our investors using alternative investments rather than traditional Wall Street assets. We believe that alternative investments should be simple to understand, professionally vetted, and accessible to investors who want to grow their personal wealth. Our alternative investments are designed with simplicity, transparency, and honesty in mind. Those are the three attributes that we look for when we make our investments

Tech learning roadmaps…


dasari4kntr

Recommended Posts

  • 2 weeks later...
  On 12/4/2023 at 9:02 PM, PizzaReddy said:

taatha web socket vs http/rest

plese explain 

Expand  

websocket are used for streams of information...mostly used for live info...for example...if you are implmenting a stock market dashboard...you will get streams of ticker information...so to show the live dashboard...rest http is not optimal...so people use webscokets...

sample implmentation... (with the help of chatGPT)....

// server side

const WebSocket = require('ws');

const wss = new WebSocket.Server({ port: 8080 });

wss.on('connection', function connection(ws) {
  console.log('A new client connected!');

  ws.on('message', function incoming(message) {
    console.log('received: %s', message);

    // Echo the received message back to the client
    ws.send(`Echo: ${message}`);
  });

  ws.on('close', () => console.log('Client disconnected'));
});

console.log('WebSocket server started on ws://localhost:8080');

 

 

//client side

<!DOCTYPE html>
<html>
<body>
  <script>
    var ws = new WebSocket('ws://localhost:8080');

    ws.onopen = function() {
      console.log('Connected to the server');
      ws.send('Hello Server!');
    };

    ws.onmessage = function(evt) {
      console.log('Message from server:', evt.data);
    };

    ws.onclose = function() {
      console.log('Disconnected from the server');
    };
  </script>
</body>
</html>

 

  • Thanks 1
Link to comment
Share on other sites

https://microsoft.github.io/AI-For-Beginners/?id=getting-started

 

Artificial Intelligence for Beginners - A Curriculum

Sketchnote by [(@girlie_mac)](https://twitter.com/girlie_mac)

 

 

Content

No Lesson Intro PyTorch Keras/TensorFlow Lab
I Introduction to AI  
1 Introduction and History of AI Text      
II Symbolic AI  
2 Knowledge Representation and Expert Systems Text Expert System, Ontology, Concept Graph  
III Introduction to Neural Networks  
3 Perceptron Text Notebook Lab
4 Multi-Layered Perceptron and Creating our own Framework Text Notebook Lab
5 Intro to Frameworks (PyTorch/TensorFlow) and Overfitting Text PyTorch Keras/TensorFlow Lab
IV Computer Vision Microsoft Azure AI Fundamentals: Explore Computer Vision  
  Microsoft Learn Module on Computer Vision PyTorch TensorFlow  
6 Intro to Computer Vision. OpenCV Text Notebook Lab
7 Convolutional Neural Networks
CNN Architectures
Text
Text
PyTorch TensorFlow Lab
8 Pre-trained Networks and Transfer Learning
Training Tricks
Text
Text
PyTorch TensorFlow
Dropout sample
Adversarial Cat
Lab
9 Autoencoders and VAEs Text PyTorch TensorFlow  
10 Generative Adversarial Networks
Artistic Style Transfer
Text PyTorch TensorFlow GAN
Style Transfer
 
11 Object Detection Text PyTorch TensorFlow Lab
12 Semantic Segmentation. U-Net Text PyTorch TensorFlow  
V Natural Language Processing Microsoft Azure AI Fundamentals: Explore Natural Language Processing  
  Microsoft Learn Module on Natural language processing PyTorch TensorFlow  
13 Text Representation. Bow/TF-IDF Text PyTorch TensorFlow  
14 Semantic word embeddings. Word2Vec and GloVe Text PyTorch TensorFlow  
15 Language Modeling. Training your own embeddings Text PyTorch TensorFlow Lab
16 Recurrent Neural Networks Text PyTorch TensorFlow  
17 Generative Recurrent Networks Text PyTorch TensorFlow Lab
18 Transformers. BERT. Text PyTorch TensorFlow  
19 Named Entity Recognition Text   TensorFlow Lab
20 Large Language Models, Prompt Programming and Few-Shot Tasks Text PyTorch    
VI Other AI Techniques  
21 Genetic Algorithms Text Notebook  
22 Deep Reinforcement Learning Text PyTorch TensorFlow Lab
23 Multi-Agent Systems Text      
VII AI Ethics  
24 AI Ethics and Responsible AI Text MS Learn: Responsible AI Principles  
  Extras  
X1 Multi-Modal Networks, CLIP and VQGAN Text Notebook  







Mindmap of the Course

  • Upvote 1
Link to comment
Share on other sites

@dasari4kntr bro- I have ~ 10 years of IT experience. Out of 10 , I have 8 years on storage, VMware and other sysops related activities. And the remaining 1 year 9 months I have experience in Cloud and Devops(AWS services, Github and Terraform). What do you recommend the learning path for Generative AI to be competitive in this environment?

Link to comment
Share on other sites

  On 12/18/2023 at 5:40 PM, pinnigaaru said:

@dasari4kntr bro- I have ~ 10 years of experience. Out of 10 , I have 8 years on storage, VMware and other sysops related activities. And the remaining 1 year 9 months I have experience in Cloud and Devops(AWS services, Github and Terraform). What do you recommend the learning path for Generative AI to be competitive in this environment?

Expand  

currently deni meeda working bro..?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...