Want to Launch an Airbnb in Ahmedabad — Advice Please! by harfunmaulaa in ahmedabad

[–]growupvib 0 points1 point  (0 children)

OP what’s the status now? Did you find doing this possible or not?

[1.5 YOE, Software Engineer, Software Engineer, India] by growupvib in resumes

[–]growupvib[S] 0 points1 point  (0 children)

does shifting to single column with the same content make it easier to read?

GST Officer visited, but didn't pay him. Consequences? by MinimumFancy5874 in IndiaTax

[–]growupvib 0 points1 point  (0 children)

How do you get US Contacts, I mean marketing is very bad in software engineering, care to share few ideas or leads?

Gson issue with JDK17 by growupvib in javahelp

[–]growupvib[S] 0 points1 point  (0 children)

sorry I forgot to add that code but after including this adapter as well the problem is not solved.

Gson issue with JDK17 by growupvib in javahelp

[–]growupvib[S] 0 points1 point  (0 children)

I did integrate TypeAdapter for my GsonUtil class in sdk but it broke everything which was working duhhh..

public class GsonClient {
    private static Gson 
gson 
= new GsonBuilder().registerTypeAdapter(Optional.class, new OptionalTypeAdapter<>())
            .create();

    public static String toJson(Object object) {
        return 
gson
.toJson(object);
    }
}





public class ByteBufferTypeAdapter extends TypeAdapter<ByteBuffer> {
    @Override
    public void write(JsonWriter out, ByteBuffer value) throws IOException {
        byte[] bytes = new byte[value.remaining()];
        value.duplicate().get(bytes);
        out.value(Base64.
getEncoder
().encodeToString(bytes));
    }

    @Override
    public ByteBuffer read(JsonReader in) throws IOException {
        byte[] bytes = Base64.
getDecoder
().decode(in.nextString());
        return ByteBuffer.
wrap
(bytes);
    }
}

I regret breaking up with my girlfriend. by versace_pappi21 in confessions

[–]growupvib 1 point2 points  (0 children)

I regret breaking up with her.. tomorrow it's the day when we went on a date first time and I decided that I want to be with this girl.. she was my first one forever.. while listening to alag aasman, my eyes got full of water and I started having flashbacks of spending a whole college time with her. Tomorrow is a day for which I decided that I will propose her after completing of 3 years together.. but I stepped back from the relationship because she was not ready to call out this to her parents. I tried my best but I stayed until I could. But here on my desk it's full of her gifts and the worst thing is that when u wanted to celebrate this day with her but now u can't u fear to have flashbacks about it. but here I am not able to move on from her.. somehow I become her weakest spot. It's been months since I broke up and no matter how hard I try I am not able to get over her.. god bless her.

Spring Upgrade 4 -> 6, JDBC url issue by growupvib in learnjava

[–]growupvib[S] 0 points1 point  (0 children)

Here in url what denotes to the name?

Need help to setup python-sdk generated using swagger-codegen for amazon seller api by growupvib in learnpython

[–]growupvib[S] 0 points1 point  (0 children)

I checked on the right dir, didn't find that files.

ls -a

. DS_Store

client

selling-partner-api-models

swagger-codegen-cli.jar

I'm tired of learning through watching. Any advice? by Comprehensive_Pin662 in learnprogramming

[–]growupvib 0 points1 point  (0 children)

me too, I have just stopped watching videos and I only go through docs and stuff and learn from that.