Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Shop
    1. Home
    2. Nubelle
    3. Best
    • Profile
    • Following 31
    • Followers 31
    • Topics 177
    • Posts 727
    • Best 239
    • Controversial 2
    • Groups 6

    Best posts made by Nubelle

    • RE: Brand Consulting: How to Increase Value? - Blace - Graphic Design Sinhala

      patta brother

      posted in Blogs
      Nubelle
      Nubelle
    • Php OOP

      අහම්බෙන් හම්බුන සෙට් එකක් , php ඉගෙන ගන්න කෙනෙක්ට ඔනේ වෙයි

      86d6d087-af9d-453a-af53-855b92457225-image.png

      View

      posted in Web Development
      Nubelle
      Nubelle
    • RE: Send Emails without a server-side code with Angular

      wow good article

      posted in Front-End Development
      Nubelle
      Nubelle
    • Flutter and Mobile Development Session by Radika Dilanka

      Flutter and Mobile Development Session by Radika Dilanka

      ee02bee8-66ab-43b9-b1dd-8de31f39ebb7-image.png
      Flutter & Mobile Development Presentation, the session organised by the IEEE students branch at Rajarata University of Sri Lanka

      special thanks to Mathurantha Kanthakumar for inviting me.
      and another special Thanks for Mr. Akila Ishan for the video recording and proceeding.

      Link

      posted in Flutter
      Nubelle
      Nubelle
    • Mobile Game Development with Unity

      c0b39597-f398-4b35-a93f-858ec8580e2f-image.png

      Mobile Game Development with Unity an event by American Center and U.S. Embassy Colombo, Sri Lanka ....

      posted in Game Development
      Nubelle
      Nubelle
    • RE: All about .replaceAll() in Java

      good work bro

      posted in Blogs
      Nubelle
      Nubelle
    • SQL issue

      mysql වල පුලුවන්ද එකම රෙකෝඩ් එක query එකෙන් duplicate කරලා පෙන්නන්න

      posted in Web Development
      Nubelle
      Nubelle
    • RE: IONIC HELP

      ionic nam eting me denna tama @root @dev_lak

      posted in Hybrid App Development
      Nubelle
      Nubelle
    • What is Svelte? New Frontend Framework in 2020

      d003cc13-276e-4a40-932c-8bedf3ee06cb-image.png
      Svelte is the hot new front-end framework that has become the talk of the town among web developers. In the recent State of JS survey of 2019, it has been predicted to be the up-and-coming technology that may take over other frameworks like React and Vue in the next decade.

      What is different in Svelte?

      Svelte converts your app into ideal JavaScript at build time, rather than interpreting your application code at run time.

      Key Features

      Here are some of the key features of Svelte, and also the key differences from other frameworks.

      No Virtual DOM
      In React and Vue we use the Virtual DOM. There is an elaborate post we wrote earlier explaining Virtual DOM that you can checkout to understand how the Virtual DOM works. Svelte does not use the virtual DOM concept, and instead shifts the work into a compile step that happens when you build your app.

      With Svelte the code is compiled into small framework-free vanilla JavaScript code. It is guaranteed to be smaller, and faster and does not require the use of a Virtual DOM.

      Less Code
      Who doesn’t like writing less code. The lesser the code, the lesser the bugs. I am not talking about cramming all your code into unreadable chunks of code. I am talking about writing less code, without hampering readability. Svelte was created with a goal to reduce the amount of code that developers write. With other modern frontend frameworks, there is quite a bit of boilerplate code that comes with it.

      Let’s look at an example to see how Svelte compares with React. Let’s look at an example to update local component state using React and Svelte.

      React

      // Update state in React
      const [count, setCount] = useState(0);
      
      function increment() {
        setCount(count + 1);
      }
      

      Svelte

      // Update state in Svelte
      
      let count = 0;
      
      function increment() {
        count += 1;
      }
      

      You can see how a lot of code has been cut out in Svelte.

      In React, we would either have to use the useState hook, or set state using setState. Whereas in Svelte, this got drastically simplified. You can update the state with the assignment operator directly.

      This aspect of writing less code using Svelte is highly appealing to me. I am sure this is one of the top reasons for the increased interest in this new framework.

      Reference

      posted in Front-End Development
      Nubelle
      Nubelle
    • RE: Fiverr Advance Tips in Sinhala - Blace Graphic Design Sinhala

      Thanks bokka

      posted in Blogs
      Nubelle
      Nubelle
    • RE: php seo friendly url

      @kasun-viduranga math ohoma ekk awa menna meka help weida kiyala balana bro

      public function slugGenerate($title, $location ,$company, $category, $type ) {
              
              // replace non letter or digits by -
               $text = preg_replace('~[^\\pL\d]+~u', '-',$title.'-'.$location.'-'.$company.'-'.$category.'-'.$type);
              
               // trim
               $text = trim($text, '-');
              
               // transliterate
               $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
      
               // lowercase
               $text = strtolower($text);
      
               // remove unwanted characters
               $text = preg_replace('~[^-\w]+~', '', $text);
      
               if (empty($text))
               {
                 return 'n-a';
               }
               
               return $text;
               
         }
      
      posted in Web Development
      Nubelle
      Nubelle
    • RE: Google Code In

      @GeethOnion ou bro

      posted in General Discussion
      Nubelle
      Nubelle
    • RE: How to fix $supabase does not exist on type in NUXTJS

      You have to define a type.

      example :

      data(){
            return {
              $supabase :(this as any).$supabase,
            }
          },
      
      posted in Front-End Development
      Nubelle
      Nubelle
    • RE: C Programming මුල සිට ඉගෙනගනිමු (part 7 - Format Specifiers in C)

      Happy new year bro , thanks

      posted in Blogs
      Nubelle
      Nubelle
    • Free API Weather data ගන්න පුලුවන් එකක්

      Free API තියෙද Weather data ගන්න පුලුවන් එකක්

      posted in Web Development
      Nubelle
      Nubelle
    • RE: Kubernetes Sri Lanka Workshop(Dialog)

      @lahirunc Hi Lahiru , unfortunately registrations closed . we will let you know another workshop & meetups
      Thanks!
      cheers
      </Happy coding>

      posted in General Discussion
      Nubelle
      Nubelle
    • RE: Beginners tutorial for C++ (tutorial 1)

      patta digatama danna

      posted in Programming
      Nubelle
      Nubelle
    • RE: ලොවම මවිත කරන අලුත්ම malware එක XHelper

      Thank you broo

      posted in Blogs
      Nubelle
      Nubelle
    • NUXT.JS ESSENTIALS CHEAT SHEET

      NUXT.JS ESSENTIALS
      CHEAT SHEET

      6aa21322-b5b8-468f-ba88-9ff83f901eeb-image.png

      Download

      posted in Web Development
      Nubelle
      Nubelle
    • RE: Lanka Developers Meetup

      Good idea

      posted in General Discussion
      Nubelle
      Nubelle
    • 1
    • 2
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 9 / 12