- PL/SQL Anonymous block sample with DBMS_APPLICATION_INFO.set_module example & PL/SQL procedure invocation
Monday, July 2, 2018
SQL Tips & Quirks
Friday, April 20, 2018
Gangtok Tour
- Rumtek Monastery
- Tsomgo or Changu Lake
- Ropeway: Awesome Cable Car Ride
- Ranka Monastery
- Ban Jhakri Waterfall
- Hanuman Tok
- Saramsa Garden
- Ganesh Tok
- Do-Drul Chorten Stupa
- Tashi View Point
- Enchey Monastery
- Bakthang Waterfall
- Khangchendzonga Biosphere Reserve
References
1. https://www.darjeeling-tourism.com/darj_000101.htm
2. http://www.transindiatravels.com/sikkim/gangtok/tourist-places-to-visit-in-gangtok/
Monday, September 11, 2017
JS add on's in developing Single Page Applications
Below are the common additional JS utilities, plugins or functionalities you may need while developing Single Page Applications:
Support for image types jpg and png is included.
fromHTML plugin does not render images which are part of table cells. You can use jsPDF fork https://github.com/Flamenco/jsPDF to address the same.
jsPDF
A very handy utility to generate PDF's at client side.Support for image types jpg and png is included.
fromHTML plugin does not render images which are part of table cells. You can use jsPDF fork https://github.com/Flamenco/jsPDF to address the same.
Tuesday, April 4, 2017
Android Development Tips
- How to access app files from internal storage
- adb shell
- run-as com.yourapp.package-name
- Now you can navigate to the app_<app_name> folder and go through the files.
- Copy file from desktop to device sdcard
- adb push d:\temp\delnow\console.log /sdcard
- Move file from sdcard to internal storage
- adb shell
- run-as com.sanjith.carcare
- mv /sdcard/console.log ./app_CarCare/.
- Application log viewing
- adb logcat | findstr "com.example.app"
- adb -d logcat | findstr "com.example.app" > C:\file-path
- Next
Monday, April 3, 2017
Monday, September 26, 2016
How to use Scala along with Spark for a Java Developer
Below are tips and tricks I have learnt about Spark with Scala
- How to create dataset of custom objects
import spark.implicits._ class MyObj(val i: Int) // ... val d = spark.createDataset(Seq(new MyObj(1),new MyObj(2),new MyObj(3)))
Will give you error, so instead use kyro encoderimport spark.implicits._ class MyObj(val i: Int) implicit val myObjEncoder = org.apache.spark.sql.Encoders.kryo[MyObj]
// ...
val d = spark.createDataset(Seq(new MyObj(1),new MyObj(2),new MyObj(3)))
Monday, September 5, 2016
Health Benefits of Kefir I have seen personally!
Disclaimer: This is not any medical advice or prescription, please consult doctor for any health issues. These are authors personal observations.
- Kefir drink is rich in B vitamins, enzymes which are essential for healthy individual.
- Kefir drink is very beneficial for dental health as the root cause of dental decay or any other dental problems are bad bacteria. Regular intake of water Kefir fermented with lemon or ginger improves the dental health a lot and also removes the bad breath from mouth.
- Candida infections are cleared. Kefir is instrumental in removing candida infections by drinking regular water Kefir. It removes candida infections in mouth, private parts.
- Tendency towards Alcohol is gone. Sugar craving is reduced and improved the responsible living attitude, I mean taking care of personal health.
- Brightens the skin by regular application on skin.
- Anti depressant, it inhibits the feel good feeling by boosting the serotonin production.
- Solves several gut issues ranging from indigestion, acidity, constipation etc.
- Diabetic patients need to be careful while using water kefir, as it may contain more sugars if not reduced by doing second fermentation. In my case regular drinking of second fermented drink has brought down my sugar levels to normal range.
Subscribe to:
Posts (Atom)
