<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Lê Hồng Long</title>
    <description>The latest articles on DEV Community by Lê Hồng Long (@lehonglong2411).</description>
    <link>https://dev.to/lehonglong2411</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F861437%2Facd4b552-b765-446c-a9db-1901d4312f01.jpeg</url>
      <title>DEV Community: Lê Hồng Long</title>
      <link>https://dev.to/lehonglong2411</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lehonglong2411"/>
    <language>en</language>
    <item>
      <title>Another Special Way to Learn JS</title>
      <dc:creator>Lê Hồng Long</dc:creator>
      <pubDate>Tue, 15 Jul 2025 14:35:54 +0000</pubDate>
      <link>https://dev.to/lehonglong2411/another-special-way-to-learn-js-3ddb</link>
      <guid>https://dev.to/lehonglong2411/another-special-way-to-learn-js-3ddb</guid>
      <description>&lt;p&gt;&lt;a href="https://eloquentjavascript.net/" rel="noopener noreferrer"&gt;https://eloquentjavascript.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check this link and comment the felling about that references&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>Fiori Dev</title>
      <dc:creator>Lê Hồng Long</dc:creator>
      <pubDate>Wed, 02 Jul 2025 07:39:33 +0000</pubDate>
      <link>https://dev.to/lehonglong2411/fiori-dev-4m2h</link>
      <guid>https://dev.to/lehonglong2411/fiori-dev-4m2h</guid>
      <description>&lt;ol&gt;
&lt;li&gt;Problems with Dev SAP in Web Bases&lt;/li&gt;
&lt;li&gt;Solving Problems&lt;/li&gt;
&lt;li&gt;Methologize to Solve&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>webdev</category>
      <category>fiori</category>
      <category>programming</category>
      <category>sap</category>
    </item>
    <item>
      <title>AMD Syntax in SAP UI5</title>
      <dc:creator>Lê Hồng Long</dc:creator>
      <pubDate>Fri, 20 Jun 2025 10:11:05 +0000</pubDate>
      <link>https://dev.to/lehonglong2411/amd-syntax-in-sap-ui5-4p7f</link>
      <guid>https://dev.to/lehonglong2411/amd-syntax-in-sap-ui5-4p7f</guid>
      <description>&lt;p&gt;&lt;strong&gt;1. Syntax&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sap.ui.define([
     , function( ) {
    });
});
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sap.ui.define([
    "sap/ui/core/mvc/Controller",
    "sap/m/MessageToast"
], function(Controller, MessageToast) {
    "use strict";
    return Controller.extend("ui5.walkthrough.controller.App", {
        onShowHello: function() {
            MessageToast.show("Hello World");
        }
    });
});
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Explain&lt;/strong&gt;&lt;br&gt;
Write in Webapp/index.js&lt;br&gt;
sap.ui.define is function to declare a new module in SAP UI5&lt;br&gt;
[] : array store: path of module dependencies, example:  "sap/ui/core/mvc/Controller"&lt;br&gt;
function( ) { }); module name is parameter of function, so called callback function.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Debugging&lt;/strong&gt;&lt;br&gt;
-Add breakpoint in F12(devtools)&lt;br&gt;
-Add line: debugger;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>howto</category>
      <category>frontend</category>
      <category>webdev</category>
    </item>
    <item>
      <title>UI5 vs ABAP RAP Programing</title>
      <dc:creator>Lê Hồng Long</dc:creator>
      <pubDate>Fri, 20 Jun 2025 09:58:32 +0000</pubDate>
      <link>https://dev.to/lehonglong2411/ui5-vs-abap-rap-programing-1jk2</link>
      <guid>https://dev.to/lehonglong2411/ui5-vs-abap-rap-programing-1jk2</guid>
      <description>&lt;ol&gt;
&lt;li&gt;JS&lt;/li&gt;
&lt;li&gt;ABAP&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>javascript</category>
      <category>abap</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>Road Map 2025</title>
      <dc:creator>Lê Hồng Long</dc:creator>
      <pubDate>Mon, 24 Mar 2025 05:38:43 +0000</pubDate>
      <link>https://dev.to/lehonglong2411/road-map-2025-4bba</link>
      <guid>https://dev.to/lehonglong2411/road-map-2025-4bba</guid>
      <description>&lt;p&gt;&lt;a href="https://levelup.gitconnected.com/software-engineer-roadmap-2025-the-complete-guide-2abfcd5a99ae" rel="noopener noreferrer"&gt;https://levelup.gitconnected.com/software-engineer-roadmap-2025-the-complete-guide-2abfcd5a99ae&lt;/a&gt;&lt;/p&gt;

</description>
      <category>roadmap</category>
    </item>
    <item>
      <title>SAP Clean Core</title>
      <dc:creator>Lê Hồng Long</dc:creator>
      <pubDate>Sat, 08 Mar 2025 01:28:02 +0000</pubDate>
      <link>https://dev.to/lehonglong2411/sap-clean-core-44c0</link>
      <guid>https://dev.to/lehonglong2411/sap-clean-core-44c0</guid>
      <description>&lt;p&gt;Reference: &lt;a href="https://learning.sap.com/learning-journeys/managing-clean-core-for-sap-s-4hana-cloud/analyzing-clean-core-components-1" rel="noopener noreferrer"&gt;https://learning.sap.com/learning-journeys/managing-clean-core-for-sap-s-4hana-cloud/analyzing-clean-core-components-1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What is "Clean" "Core" meaning:&lt;br&gt;
"Core": 5 dimensions&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Processes&lt;/li&gt;
&lt;li&gt;Extensions&lt;/li&gt;
&lt;li&gt;Data&lt;/li&gt;
&lt;li&gt;Integrations&lt;/li&gt;
&lt;li&gt;Operations
"Clean": Best pratice, methodologies, and tools are specific for each dimension.&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>cloud</category>
      <category>architecture</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
