Skip to content

Instantly share code, notes, and snippets.

View dakbhavesh's full-sized avatar

Bhavesh Shah dakbhavesh

View GitHub Profile
@dakbhavesh
dakbhavesh / gist:4e9ae82e18b36b13fbd5e66c94676248
Created December 18, 2024 14:05
bhavesh-linkedin-profile.json
{
"public_identifier": "dakbhavesh",
"profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/person/dakbhavesh/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20241218%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20241218T135821Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=77d1404da9d5ef6ac539df80069accae7b77c8790abebd4ccaee772c0c6362de",
"background_cover_image_url": null,
"first_name": "Bhavesh",
"last_name": "Shah",
"full_name": "Bhavesh Shah",
"follower_count": 661,
"occupation": "Software Architect and Delivery Head at Brevitaz Systems",
"headline": "Crafting products & nurturing engineering teams | Software Architect | Entrepreneur",
@dakbhavesh
dakbhavesh / Json4s.sc
Last active August 20, 2016 15:11
Json serialization with enum name
import SampleType.SampleType
import org.json4s.NoTypeHints
import org.json4s.native.Serialization
import org.json4s.native.Serialization._
object SampleType extends Enumeration {
type SampleType = Value
val TYPE1, TYPE2 = Value
}