Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Shop
    1. Home
    2. oditha
    • Profile
    • Following 0
    • Followers 2
    • Topics 16
    • Posts 75
    • Best 15
    • Controversial 0
    • Groups 1

    oditha

    @oditha

    Web Development

    21
    Reputation
    317
    Profile views
    75
    Posts
    2
    Followers
    0
    Following
    Joined Last Online
    Website clicky.lk Location Badulla Age 32

    oditha Unfollow Follow
    Web Development

    Best posts made by oditha

    • Experienced ionic Developer needed!

      Hello

      We are looking for an experienced ionic developer to work in fitness challenging app. If interested please send PM.

      Thanx

      posted in Hybrid App Development
      oditha
      oditha
    • Angular CLI vs React JS vs Vue JS - වාසි අවාසි

      මී ෆ්රෙම්වර්ක්ස් පාවිච්චි කරලා අත්දැකීම් තියෙන වාසි අවාසි ගැන කියමුද?

      posted in Front-End Development
      oditha
      oditha
    • Learn frameworks

      Frameworks igena ganna hoda channel ekak. https://www.youtube.com/channel/UCUOtHgpCvk9h31dqBcxsAWw/playlists

      posted in General Discussion
      oditha
      oditha
    • Need Ionic / React Native Developers

      We are looking for the experienced Ionic / React Native developers for Contract basis.

      You are willing to joining with us drop an email or Whatsapp.

      [email protected]
      0777 311 381

      Thank You

      posted in Mobile Application Development
      oditha
      oditha
    • RE: front end frameworks

      Thaniyama Igena ganna puluwan JS basic gana idea ekak tiyenwa nm. meka balanna - https://www.youtube.com/channel/UCUOtHgpCvk9h31dqBcxsAWw/playlists

      posted in Front-End Development
      oditha
      oditha
    • RE: Laravel URL Rewrite !HELP!

      @root

      RewriteEngine On
      RewriteBase /
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.php [L]
      
      posted in General Discussion
      oditha
      oditha
    • RE: වෙබ් සයිට් හදන කොම්පැනි

      www.clicky.lk - 0777480080

      posted in Web Development
      oditha
      oditha
    • RE: Any one know to get water electricity (LECO,SLT ) payment api for laravel

      We can give solutions including CEB, Water bill, Mobile Bills, Reload API Solution. Please send an email to [email protected] for more infromaion.

      posted in Laravel Framework
      oditha
      oditha
    • RE: Vue JS Update data after db records update

      @root elakiri. man try karala balannam

      posted in Front-End Development
      oditha
      oditha
    • Laravel URL Rewrite !HELP!

      Apache webserver ekakata dapu laravel inventry management web application ekak tiyenwa.

      ex -
      abc.com/client1/
      abc.com/client2/

      Danata app eka use karanna "abc.com/client1/public/index.php/{route}" me widiyata yanna ona.
      meka "abc.com/client1/public/{route}" hari "abc.com/client1/{route}" me widiyata use karanna puluwan wenna pawichchi karanna puluwan htaccess rewrite rule eka mokkda?

      abc.com/client1/public/index.php/{route} >>>> abc.com/client1/public/{route} or abc.com/client1/{route}

      abc.com/client2/public/index.php/{route} >>>> abc.com/client2/public/{route} or abc.com/client2/{route}

      posted in General Discussion
      oditha
      oditha

    Latest posts made by oditha

    • RE: Any one know to get water electricity (LECO,SLT ) payment api for laravel

      @root Yes. I will do that ASAP

      posted in Laravel Framework
      oditha
      oditha
    • RE: Any one know to get water electricity (LECO,SLT ) payment api for laravel

      We can give solutions including CEB, Water bill, Mobile Bills, Reload API Solution. Please send an email to [email protected] for more infromaion.

      posted in Laravel Framework
      oditha
      oditha
    • RE: Experienced ionic Developer needed!

      @root Requirement eka balal budget ekak denna mata.

      posted in Hybrid App Development
      oditha
      oditha
    • RE: Typescrypt array help.

      @nb said in Typescrypt array help.:

                                                                                                                                                                                  distance: Number                                                                                                                                                                            }                                                                                                                                                                                                                                                                                                                                                         let steps: Array<Steps> = [                                                                                                                                                                                { startDate: '2020-10-21', endDate: '2020-10-22', steps: 101 },                                                                                                                                                                                 { startDate: '2020-10-22', endDate: '2020-10-23', steps: 102 },                                                                                                                                                                                { startDate: '2020-10-24', endDate: '2020-10-25', steps: 103 }                                                                                                                                                                            ];                                                                                                                                                                                                                                                                                                                                                         let activity: Array<Distance> = [                                                                                                                                                                                { startDate: '2020-10-21', endDate: '2020-10-22', distance: 101 },                                                                                                                                                                                 { startDate: '2020-10-22', endDate: '2020-10-23', distance: 102 },                                                                                                                                                                                { startDate: '2020-10-26', endDate: '2020-10-26', distance: 103 }                                                                                                                                                                            ];                                                                                                                                                                                                                                                                                                                                                         function join<L extends Record<string,any>, R extends Record<string,any>>(left: Array<L>,  right: Array<R>,  by: Array<string>) {                                                                                                                                                                                const joined: Array<L&R> = [];                                                                                                                                                                                                                                                                                                                                                             for (let l of left) {                                                                                                                                                                                    const fromRight = right.find(r => by.every((curr) => (r[curr] == l[curr]), true))                                                                                                                                                                                    if (fromRight === undefined)                                                                                                                                                                                        continue;                                                                                                                                                                                    joined.push({ ...fromRight, ...l})                                                                                                                                                                                }                                                                                                                                                                                                                                                                                                                                                             return joined;                                                                                                                                                                            }                                                                                                                                                                                                                                                                                                                                                         console.log(join(steps, activity, ['startDate', 'endDate']))                                                                                                                                                                            /*                                                                                                                                                                            [LOG]: [{                                                                                                                                                                              "startDate": "2020-10-21",                                                                                                                                                                              "endDate": "2020-10-22",                                                                                                                                                                              "distance": 101,                                                                                                                                                                              "steps": 101                                                                                                                                                                            }, {                                                                                                                                                                              "startDate": "2020-10-22",                                                                                                                                                                              "endDate": "2020-10-23",                                                                                                                                                                              "distance": 102,                                                                                                                                                                              "steps": 102                                                                                                                                                                            }]                                                                                                                                                                             */                                            
      

      Thanx Brother. man try karala balannam meka

      posted in Front-End Development
      oditha
      oditha
    • Experienced ionic Developer needed!

      Hello

      We are looking for an experienced ionic developer to work in fitness challenging app. If interested please send PM.

      Thanx

      posted in Hybrid App Development
      oditha
      oditha
    • Typescrypt array help.

      Parent array

      let activity = [
      { startDate: 2020-10-21, endDate: 2020-10-22, steps: 100, distance: 100 }, 
      { startDate: 2020-10-22, endDate: 2020-10-23, steps: 100, distance: 100 }
      ]
      

      මෙන්න මේ උඩ තියෙන Array එකට පහත දක්වලා තියෙන arrays 2න් ඩේටා ගන්න ඕන. මේ උඩ තියෙන ඇරේ එකේ startDate, endDate වලට සමාන අගයන් තියෙන පහල තියෙන ඇරෙස් වලින් ඩේටා අරගෙන ෆිල් කරවන්න ඕන. මේක කොහොමද කරගන්නෙ?

      let steps= [
      { startDate: 2020-10-21, endDate: 2020-10-22, steps: 100 }, 
      { startDate: 2020-10-22, endDate: 2020-10-23, steps: 100 }
      ]
      
      let activity = [
       { startDate: 2020-10-21, endDate: 2020-10-22, distance: 100 }, 
      { startDate: 2020-10-22, endDate: 2020-10-23, distance: 100 }
                                ]
      

      ස්තූතියි

      posted in Front-End Development
      oditha
      oditha
    • RE: Ionic Firebase social login help

      hri bro. man try karannam.. thanx

      posted in Hybrid App Development
      oditha
      oditha
    • RE: Ionic Firebase social login help

      @dev_lak said in Ionic Firebase social login help:

      Auth Service

      Auth Service ekedi api facebook ekata sambanayen plugins use karanwada? import statement thiyenwada?

      posted in Hybrid App Development
      oditha
      oditha
    • RE: Ionic Firebase social login help

      @dev_lak thank you very much, brother

      posted in Hybrid App Development
      oditha
      oditha
    • RE: Ionic Firebase social login help

      @dev_lak meka hari brother mn wade hariyata karagatta. facebook eken native popup eka ganna ekatat help ekak denna puluwanda?

      posted in Hybrid App Development
      oditha
      oditha