Comments for Coding is Love https://codingislove.com/ Mon, 18 Aug 2025 12:33:10 +0000 hourly 1 https://wordpress.org/?v=6.8.5 Comment on Behind the sun! Pure CSS Animation by Ifeatu Chinelo https://codingislove.com/behind-the-sun-css-animation/#comment-254341 Mon, 18 Aug 2025 12:33:10 +0000 https://codingislove.com/?p=3714#comment-254341 Please i need your code

]]>
Comment on Behind the sun! Pure CSS Animation by Ifeatu Chinelo https://codingislove.com/behind-the-sun-css-animation/#comment-254243 Sun, 17 Aug 2025 11:19:12 +0000 https://codingislove.com/?p=3714#comment-254243 I want your code please

]]>
Comment on How to add participants to a WhatsApp group using whatsapp-web.js by gowtham https://codingislove.com/add-participants-whatsapp-group-whatsapp-web-js/#comment-241310 Wed, 12 Feb 2025 07:28:53 +0000 https://codingislove.com/?p=3880#comment-241310 i have issue now addParticipants is not working showing me like addParticipants not function what can i do

]]>
Comment on Unable to find git in your PATH in Flutter commands (solved) by patrick https://codingislove.com/unable-to-find-git-path-flutter/#comment-241307 Tue, 11 Feb 2025 20:02:43 +0000 https://codingislove.com/?p=4035#comment-241307 git config –global –add safe.directory ‘*’
the above command solved my issue!

]]>
Comment on Game that made me play 1000 levels! by Ranjith kumar https://codingislove.com/game-made-play-1000-levels/#comment-240228 Thu, 09 Jan 2025 06:58:53 +0000 http://new.codingislove.com/?p=488#comment-240228 ]]> In reply to KoalaBear.

Awesome man 😁

]]>
Comment on Game that made me play 1000 levels! by KoalaBear https://codingislove.com/game-made-play-1000-levels/#comment-240227 Thu, 09 Jan 2025 06:57:28 +0000 http://new.codingislove.com/?p=488#comment-240227 ]]> In reply to KoalaBear.

Haha, the above comment just got approved. Now I’m at 3920 😅

]]>
Comment on XmlHttpRequest – Http requests in Excel VBA (Updated 2022) by shares https://codingislove.com/http-requests-excel-vba/#comment-235894 Sat, 14 Sep 2024 10:57:47 +0000 http://new.codingislove.com/?p=752#comment-235894 How can I “GET” this CSV in text form so I can then parse it in VBA? The send() method fails with “access denied”.
Example URL :
“https://docs.google.com/spreadsheets/d/e/2PACX-1vRE5XeARs0iTKboEAfnVbdr-XPq0SUltZ1YGNxFtFcg4Zl6CTjGwk3pg6sUti4wmC0T0TXZsidZCEDP/pub?gid=1267287684&single=true&output=csv”

]]>
Comment on Fix React native doctor issues (solved) by RoyyanXAVIER https://codingislove.com/fix-react-native-doctor-issues-solved/#comment-233377 Fri, 02 Aug 2024 03:47:29 +0000 https://codingislove.com/?p=4221#comment-233377 In reply to Abhinay.

man, same, get me an update if anyone know hows.

]]>
Comment on Game that made me play 1000 levels! by KoalaBear https://codingislove.com/game-made-play-1000-levels/#comment-227122 Mon, 17 Jun 2024 20:49:41 +0000 http://new.codingislove.com/?p=488#comment-227122 ]]> I’m currently at 2574 😂

]]>
Comment on How to build a simple weather app in Excel VBA by Grind https://codingislove.com/weather-app-in-excel-vba/#comment-224378 Tue, 28 May 2024 07:35:58 +0000 http://new.codingislove.com/?p=1609#comment-224378 In reply to Benjamin Holloway.

This works:
Private Sub CommandButton1_Click()
Dim xmlhttp As Object
Dim myurl As String
Dim xmlresponse As Object

Set xmlhttp = CreateObject(“MSXML2.serverXMLHTTP”)
Set xmlresponse = CreateObject(“MSXML2.DOMDocument”)

myurl = “http://api.openweathermap.org/data/2.5/weather?apikey=4a2360d14bf33378079d2e2d49e35ddb&mode=xml&units=imperial&q=” & Tabelle15.Range(“A2”).Value
xmlhttp.Open “GET”, myurl, False
xmlhttp.Send
xmlresponse.LoadXML (xmlhttp.responseText)
Tabelle15.Range(“B2”).Value = xmlresponse.SelectNodes(“//current/temperature/@value”)(0).Text
‘MsgBox (xmlresponse.getElementsByTagName(“temperature”)(0).Attributes(1).Text) Alternate method to parse XML
End Sub

]]>