Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Shop
    1. Home
    2. Popular
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month
    • Grasshopper

      Lanka Developers T Shirts
      General Discussion • tshirt • • Grasshopper

      23
      0
      Votes
      23
      Posts
      1097
      Views

      Rose Olive

      주소모음 is a must-have for anyone with too many bookmarks to manage.

    • Kasun Sampath

      html, css, js
      Web Development • web designing html css javascript • • Kasun Sampath

      22
      2
      Votes
      22
      Posts
      9262
      Views

      kusalrathna

      ඔන්න ප්‍රශ්නෙට මම cord එකක් ගැහුවා බලලා කියන්න ඕක හරිද කියලා
      මෙන්න ලින්ක් එක කොර්ඩ් එක online Try කරල බලන්න

      https://scrimba.com/c/cNg4dJTr

      වැඩේ හොඳ නම් මගේ youtube channel එකට subscribe පාරක් දීලා support එකක් දෙන්න
      https://www.youtube.com/channel/UCn_OWHM0zllZuVf1Rv0O5mg?

    • F

      Jquery Plugin for multiple image upload
      Front-End Development • jquery ajax html5 • • fern

      21
      1
      Votes
      21
      Posts
      6832
      Views

      F

      download manager ekak widiyata e app eka hadanna one machan

    • iampramuk

      Programming මුල සිට සරලව සිංහලෙන් (Including OOP) ✅
      Programming • programming c sharp oop • • iampramuk

      21
      4
      Votes
      21
      Posts
      4802
      Views

      iampramuk

      @Pasindu-Vishmika feedback ekata thanks machan ❤

    • dev_lak

      Ionic ecommerce Full App UI
      Mobile Application Development • app e-commerce ionic ionic 5 ionic ui • • dev_lak

      21
      2
      Votes
      21
      Posts
      4737
      Views

      dev_lak

      This is last episode.
      EPISODE 5 - Order Confirm & Checkout Pages (https://youtu.be/wk5BI1dNgZA)

    • A

      How to utilise GPT engine effectively in our software products!
      Artificial Intelligence • ai gpt ml nlp accuracy • • arsath maisoor

      21
      0
      Votes
      21
      Posts
      1135
      Views

      Rose Olive

      오피매니아 definitely seems to have mastered the art of massage.

    • A

      What is Plains Coreopsis also known as?
      Artificial Intelligence • coreopsis • • abodelook

      21
      0
      Votes
      21
      Posts
      815
      Views

      webasha5242

      Choosing the Best Cyber Security Training Institute in Pune for Career Growth is crucial for building a successful career in IT security, and WebAsha Technologies stands out for its industry-oriented, practical training approach.

    • dinlinux

      Hello Sri Lankan Developers
      Announcements • • dinlinux

      20
      8
      Votes
      20
      Posts
      5870
      Views

      dev_lak

      @hackr thank you, we need your contribution :smiley:

    • root

      The best Linux distro in 2018 (#1 in distrowatch.com)
      Linux • linux arch desktop os • • root

      20
      3
      Votes
      20
      Posts
      6005
      Views

      crxssrazr93

      @sudo said in The best Linux distro in 2018 (#1 in distrowatch.com):

      @crxssrazr93 i don't know man. I know few people who switched directly from windows to manjaro. But i agree a normie might not be able to do that.

      Exactly. I switched from Windows to Arch Linux back in the day too but the linux community kept pushing me back because I didn't know how to troubleshoot and fix or approach most problems that may arise if you use Arch. I use Manjaro extensively. Everyone was like "Arch is not for you, get a more user friendly os instead blah blah." Thank god I didn't give up but I did learn alot though it was a real sh*tstorm at the beginning. 10/10 would do it again.

    • uditha

      Free DATA SCIENCE AND MACHINE LEARNING WORKSHOP at Microsoft Sri Lanka
      AI Programming • data science machine learnin microsoft sri l deep learning • • uditha

      20
      4
      Votes
      20
      Posts
      5060
      Views

      uditha

      We can allow only 30 participants , Right now 550 registered . Kindly look for upcoming free events , if you unable to get email confirmation

    • J

      Sampath bank eke payment gateway udauwwak
      Web Development • laravel payment gateway php • • jtta6

      20
      0
      Votes
      20
      Posts
      5053
      Views

      M

      Payhere api url ekata POST request ekak yawanna tiyenne. HTML form ekak hadala eka submit karanna thiyenne. Form eke action ekata danna ona Payhere API URL eka. Oyage domain eka payhere eke whitelist karanna ona kalin. ethakota oyage domain eke idan POST request yawanna puluwan. ekata aniwayen ona fields tiyenawa. (email, name, address, amount wage ewa). me tiyenne man karapu widiya.

      .env file

      PAYHERE_MERCHENT_ID=24333554141 PAYHERE_SECRET=8xxxxxxxxxxxxxxxxxxxxxxxxxJ7J PAYHERE_API_URL=https://sandbox.payhere.lk/pay/checkout

      config/payhere.php

      return [ 'api_url' => env('PAYHERE_API_URL', 'https://sandbox.payhere.lk/pay/checkout'), 'merchant_id' => env('PAYHERE_MERCHENT_ID', 'no_merchent'), 'secret' => env('PAYHERE_SECRET', 'no_secrete'), 'return_url' => env('PAYHERE_RETURN_URL', config('app.url') . '/checkout/return'), 'notify_url' => env('PAYHERE_NOTIFY_URL', config('app.url') . '/checkout/notify'), 'cancel_url' => env('PAYHERE_CANCEL_URL', config('app.url') . '/checkout/cancel'), ];

      Submit Order details (amount, items, name, etc)

      <form class="width:100%" method="post" action="{{ config('payhere.api_url')}}"> @csrf <input type="hidden" name="merchant_id" value="{{ config('payhere.merchant_id') }}"> <input type="hidden" name="return_url" value="{{ config('payhere.return_url') }}"> <input type="hidden" name="cancel_url" value="{{ config('payhere.cancel_url') }}"> <input type="hidden" name="notify_url" value="{{ config('payhere.notify_url') }}"> <input type="hidden" name="order_id" value="{{ $order->reference }}"> <input type="hidden" name="items" value="My Packages"> <input type="hidden" name="currency" value="{{ $order->currency }}"> <input type="hidden" name="amount" value="{{ $order->amount }}"> <input type="hidden" name="first_name" value="{{ $order->first_name }}"> <input type="hidden" name="last_name" value="{{ $order->last_name }}"> <input type="hidden" name="email" value="{{ $order->email }}"> <input type="hidden" name="phone" value="{{ $order->phone }}"> <input type="hidden" name="address" value="{{ $order->address }}"> <input type="hidden" name="city" value="{{ $order->city }}"> <input type="hidden" name="country" value="{{ $order->country }}"> <input type="hidden" name="hash" value="{{ $order->hash }}"> <input type="submit" class="" value="Pay Now"> </form>
    • rashmiee

      Software Engineering - Internship
      General Discussion • software internship • • rashmiee

      20
      0
      Votes
      20
      Posts
      3575
      Views

      Grasshopper

      @root awesome root , can we join as developers for the job portal development .

    • D

      FREE: SKILLS ONLINE SRI LANKA PROGRAMME
      General Discussion • free courses education • • Dee

      19
      1
      Votes
      19
      Posts
      993
      Views

      Rose Olive

      오피가이드 helped me find the perfect massage therapist for my needs.

    • Manokaran Majushan

      Need Sinhala devs for react.js
      General Discussion • react-js react documentation translate github • • Manokaran Majushan

      17
      5
      Votes
      17
      Posts
      4716
      Views

      Prasad Madushan

      Is there anybody translate the doc. if so plz post the link, I could not found. thanks

    • Danushka96

      JAVA OOP සිංහලෙන්
      Programming • java oop programming thesigma • • Danushka96

      17
      2
      Votes
      17
      Posts
      4737
      Views

      Kalana

      Link tika break wela brother. aparade

    • Dinuwan Kalubowila

      MySQL DB Connection එක මෙහෙම දැම්මහම errors,warnings මුකුත් එන්නෙ නන් නෑ...ඒත් DB එකට data insert වෙන් නෑ..හේතුව මොකක්ද?.
      Back-End Development • c sharp mysql asp.net • • Dinuwan Kalubowila

      17
      0
      Votes
      17
      Posts
      3680
      Views

      Nubelle

      @Dinuwan-Kalubowila elzzz

    • shehan_s

      Profitable Niche Site එකක් WordPress හරහා නිර්මාණය කරන විදිය මුල සිට
      General Discussion • wordpress affiliate niche profitable emoney • • shehan_s

      16
      2
      Votes
      16
      Posts
      2328
      Views

      Rose Olive

      I love how 오피매니아 provides detailed reviews and ratings.

    • b6

      ⚖ Load Balancing vs ⚙ Failover
      Blogs • programming networking backend server setup deployment • • b6

      16
      7
      Votes
      16
      Posts
      3997
      Views

      Ruchi Harpreet Roy

      Read Antarvasna Hindi Me stories for bold, desi entertainment written in pure Hindi. Enjoy realistic romance, emotions, and thrill 👉 antarvasna hindi me.

    • b6

      What is Docker 🐋 ?
      System & Network Configurations • development deployment devops docker web development • • b6

      16
      4
      Votes
      16
      Posts
      4586
      Views

      b6

      @prabodhana You are welcome :)

    • Anushka Deshan Dharmasena

      Laravel IPG Integration
      Laravel Framework • laravel payment gateway visa • • Anushka Deshan Dharmasena

      16
      1
      Votes
      16
      Posts
      2511
      Views

      Nubelle

      @Kasun-Rathnayake Bro you have to request API doc from them.

    • 1
    • 2
    • 3
    • 4
    • 5
    • 9
    • 10
    • 2 / 10