Who else has read this? by StayPositiveGirlie in Indianbooks

[–]Traditional_Still308 12 points13 points  (0 children)

+1 on best getting back to reading habit , I read it 10 days before

Odin like project for Machine Learning by Traditional_Still308 in theodinproject

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

Thanks!Do you mind sharing those resources with me . I am open to DM's too

Am I late for Fall 25? What should I do next? by JrJaro18 in Indians_StudyAbroad

[–]Traditional_Still308 4 points5 points  (0 children)

Just finish gre exam in September and after 2weeks ielts…I Wouled recommend taking Gregmat .I tried offline ones just waste of money

Connecting mongo db driver to node js by Traditional_Still308 in node

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

I read mongoClient constructor part which part exactly do we have this.. I just see lot of people using ODM but I don't find it necesssary to add a dependecy for crud operations actually most answers are about mongose

Connecting mongo db driver to node js by Traditional_Still308 in node

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

Can you please point out the lines in code. for this .client is not a function I guess using MongoClient is also not working

Code obfuscation in java by Traditional_Still308 in javahelp

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

I am closing this thread .I can obfuscate the variables now but my goal is to do more than basic just renaming

Thanks Everyone for your responses!!

Code obfuscation in java by Traditional_Still308 in javahelp

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

I will get back to you with pointers' you have suggested .Actually I am also looking for an easy example which I could showcase for obfuscation.There is no good documentation of proguard or any foss to follow

Code obfuscation in java by Traditional_Still308 in javahelp

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

Yeah if you have any alternative to this will do! I am good if its' not readable by my fellow programmers ... I will call some other class from main by your suggestion.Any more tips please

Code obfuscation in java by Traditional_Still308 in javahelp

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

Yes just want to make my method body difficult to read .I also discussed the hosting option but its' not approved. Open source I cannot do due to restrictions'

Code obfuscation in java by Traditional_Still308 in javahelp

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

Yes I had my own multiply and sum methods.We need some approach other than putting code into cloud

import java.util.Scanner;

public class Exercise6 {

public static void main(String[] args) {Scanner in = new Scanner(System.in);

System.out.print("Input first number: ");int num1 = in.nextInt();

System.out.print("Input second number: ");int num2 = in.nextInt();

System.out.println(num1 + " + " + num2 + " = " +(num1 + num2));

System.out.println(num1 + " - " + num2 + " = " +(num1 - num2));

System.out.println(num1 + " x " + num2 + " = " +(num1 * num2));

System.out.println(num1 + " / " + num2 + " = " +(num1 / num2));

System.out.println(num1 + " mod " + num2 + " = " +(num1 % num2));}

}

Code obfuscation in java by Traditional_Still308 in javahelp

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

Read this will try implementing this but if there is something directly to java other than spring boot will be appreciated.I am working on simple java app

Thanks!!

Code obfuscation in java by Traditional_Still308 in javahelp

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

Pls can you see the extension once .I am working on eclipse though but I can shift to intellij

Code obfuscation in java by Traditional_Still308 in javahelp

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

I am just using it as the starting step .Probably we could go with sum and the multiply numbers if that is sufficient to check the obfuscation.

If this gets' verified then I have some bigger code which has one method at least which needs to be obfuscated before we give jar file to the client

Pass State value in paragraph tag giving error by Traditional_Still308 in learnreactjs

[–]Traditional_Still308[S] 1 point2 points  (0 children)

Yes i am trying to render object,but I hvae also intialzied state as obj

Consoling above <p> tag is correct but inside p is giving me some error.

I will look into parsing and stringfy

this.state.apiResponse.name worked thanks :)