Read more

Show more
tab bar in flutter

tab bar in flutter

import 'package:flutter/material.dart' ; import 'package:get/get.dart' ; import 'package:luminary_fashion_customer_app/utils/constants/colors.dart' ; import '../controllers/booking_controller.dart' ; class BookingView extends…

Continue Reading
Promise vs observables

Promise vs observables

function data(){  return 'Hi Ankit';   return 'Hello Murli' // not a executable code.  }   var observable = Rx.Observable.create((observer: any) =>{   observer.next('Hi Ankit');   observer.next( 'Hello Murli');   })   obser…

Continue Reading
No title

No title

db.getCollection ( "orderhistories" ) .aggregate ([ { $match :{ orderId : 9335 }}, { $project :{ "workshop" :{ "addOnService" :{ "serviceId" : 1 , "product" : 1 …

Continue Reading
No title

No title

GROUP BY & SELECT PARTICULAR FIELDS - MONGO db.getCollection("fake_gps_user_records").aggregate([ {$group:{_id:"$userId",userName:{$first:"$userName"}}}, ])

Continue Reading
Hashing in nest js

Hashing in nest js

// // The key length is dependent on the algorithm. // // In this case for aes256, it is 32 bytes. const textToEncrypt = '1008' ; const iv = randomBytes ( 16 ); const password = 'Password used to generate key' ; //…

Continue Reading
Load More That is All