[ { "message_id": "a92522cc8cc184586fe18c114bfd2c470049283da761a5f71ae1795dbdadb62e", "sticker": null, "text": "Hello can you help me?", "from_id": "fb98ecf734f2703ea391b13de51cec2edb9fcdf7fc88df90b9c263930f34f7e1", "reply_to": null, "datetime": "2023-01-01T19:34:41+00:00" }, { "message_id": "106e29d1fb5e191f1232b089f6b4cf4d43e1ae422394fdfb533f84630f680e3b", "sticker": null, "text": "You have a string with the following value: tup tuup tuuup tuuuup\nwith a regular expression, change into x all repetitions of the letter u, considering at least 2 repetitions but no more than 3 repeated letters\nprint the result", "from_id": "fb98ecf734f2703ea391b13de51cec2edb9fcdf7fc88df90b9c263930f34f7e1", "reply_to": null, "datetime": "2023-01-01T19:35:52+00:00" }, { "message_id": "5b19da8bf718e8563d872e72da6d7682b587485db05df1e1f3bc7635cedfc344", "sticker": null, "text": "What do you need help with", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "106e29d1fb5e191f1232b089f6b4cf4d43e1ae422394fdfb533f84630f680e3b", "datetime": "2023-01-02T00:31:32+00:00" }, { "message_id": "f7bc7e862b33692d8226edf552871ff81f4a97b7be444629af50df4d00234ba0", "sticker": null, "text": "my tutor wants me to do this exercise with regex but i don't understand how to do it", "from_id": "fb98ecf734f2703ea391b13de51cec2edb9fcdf7fc88df90b9c263930f34f7e1", "reply_to": null, "datetime": "2023-01-02T00:32:49+00:00" }, { "message_id": "4d45d685bce4cb403de9ba6a5d0731ef14849e87446e81227943814a5d1d27d7", "sticker": null, "text": "Start with the end result, do you know what the output should look like", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-02T00:34:29+00:00" }, { "message_id": "18b9d5ba72b0fb6608c0f49208abc5b6bcb61d62eacdc3ccd238207c0c22390a", "sticker": null, "text": "Hey\nDoes anyone know how to calculate the elapsed time of our program in sec?", "from_id": "206f93a967908d3f6b580d6e8297461981441a1402db301193870bae74e74f60", "reply_to": null, "datetime": "2023-01-02T08:00:29+00:00" }, { "message_id": "a026bede87351003541a769240909542ccc9d19c02b92ecbbaeab45c3c77614a", "sticker": null, "text": "Store System.miliseconds at the beginning,\nSubtract value from System.miliseconds at the end /when you want to calculate \n\nDivide by a thousand to convert to seconds", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": "18b9d5ba72b0fb6608c0f49208abc5b6bcb61d62eacdc3ccd238207c0c22390a", "datetime": "2023-01-02T08:09:33+00:00" }, { "message_id": "b8f522465f97e389fdc1a2aa4c5ca7079ba73a2796fcbcee5748e6db2f09584e", "sticker": null, "text": "Thank u🙌🏽", "from_id": "206f93a967908d3f6b580d6e8297461981441a1402db301193870bae74e74f60", "reply_to": "a026bede87351003541a769240909542ccc9d19c02b92ecbbaeab45c3c77614a", "datetime": "2023-01-02T10:06:25+00:00" }, { "message_id": "7386d9b26156e2e850a8323fb2d1f81759351ec54b50cc2e3a4e6e6d08864186", "sticker": null, "text": "Hey anyone working with web3j?!", "from_id": "91711e4561bf7302fb34ff985327fbf6ceabd3b15bcba12424b69778576afbea", "reply_to": null, "datetime": "2023-01-02T13:38:59+00:00" }, { "message_id": "3b8618f72000bae051251bde92fb75d3e4017375abfe65d0f06dd647a36cd7b2", "sticker": null, "text": "```public class ElapsedTime {\n public static void main(String[] args) {\n long startTime = System.currentTimeMillis();\n\n // code that you want to measure the execution time of goes here\n\n long endTime = System.currentTimeMillis();\n long elapsedTime = endTime - startTime;\n double elapsedTimeInSeconds = elapsedTime / 1000.0;\n\n System.out.println(\"Elapsed time in seconds: \" + elapsedTimeInSeconds);\n }\n}```", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "a026bede87351003541a769240909542ccc9d19c02b92ecbbaeab45c3c77614a", "datetime": "2023-01-02T15:13:47+00:00" }, { "message_id": "44e22ba69719e1562215397f9ce9ce49a2216801336bc87e8d31d209488c81d5", "sticker": null, "text": "Yh", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": "3b8618f72000bae051251bde92fb75d3e4017375abfe65d0f06dd647a36cd7b2", "datetime": "2023-01-02T16:21:02+00:00" }, { "message_id": "eee3ed6a171b3936de23f6b91b2d40bf6cac9625f8ad46efe6eabb8d3121a9a1", "sticker": null, "text": "long startTime = System.currentTimeMillis();\n\n// Your code goes here\n\nlong endTime = System.currentTimeMillis();\nlong elapsedTime = endTime - startTime;\ndouble elapsedTimeInSeconds = elapsedTime / 1000.0;\n\nSystem.out.println(\"Elapsed time: \" + elapsedTimeInSeconds + \" seconds\");", "from_id": "15c2c6c673d00781876887347a9189270af30175375f969a5812dcc895b3fb65", "reply_to": "18b9d5ba72b0fb6608c0f49208abc5b6bcb61d62eacdc3ccd238207c0c22390a", "datetime": "2023-01-02T22:19:50+00:00" }, { "message_id": "e0a5fc3b069488e260f389d9e21b887df99ba9b00d58e2cfe819d5cddf3e0921", "sticker": null, "text": "i have a question, so im apparently not able to declare a method inside a method in java, but if i put my method before the \npublic static void main(string[] argr) then the variables inside the methods i've declared are not identified by the console\ni'm so confused on how to make it work", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-02T22:30:53+00:00" }, { "message_id": "2c0d89fd28c61557d3a9217acded84d4577573204dde87620126c2fdd9499d70", "sticker": null, "text": "Yes because of scope. Show us what you are talking about and tell us exactly what your goal is so we can better advise you", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "e0a5fc3b069488e260f389d9e21b887df99ba9b00d58e2cfe819d5cddf3e0921", "datetime": "2023-01-03T06:32:07+00:00" }, { "message_id": "f2aa00ad13bf8d9f579d627804f825e36cac037ebb06c03b36ba21963587aafa", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2b8cfcac5bd46a219d87f722bf8000652eba4c5823e043affd7e90a7f81fed3c", "reply_to": null, "datetime": "2023-01-03T07:21:18+00:00" }, { "message_id": "5e01f35efa496dd84f10a6ee50ca2f11cce3a7ec269b079df9be1b7435be7992", "sticker": null, "text": "Hii\nI have a question If I want to become a back-ground programmer, what should I learn and what skills do companies need? I am interested in Java and I know C++", "from_id": "0f442822ab350f1ad78f07cae25d209e0488f37e4a27246bc55b85b0875e6616", "reply_to": null, "datetime": "2023-01-03T15:02:40+00:00" }, { "message_id": "5e32b24042306a1086697e721737ac7c1111cffc921ba04fd653eef8df286239", "sticker": null, "text": "you can't declare first method in second method,\nmaybe the first method declared scope is limited,\nwe know the scope have four type:public,protect,private,default,you can google these ,learn how to use it.\ni don't know the detail ,just guess what happened,hope help you", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": "e0a5fc3b069488e260f389d9e21b887df99ba9b00d58e2cfe819d5cddf3e0921", "datetime": "2023-01-04T03:11:46+00:00" }, { "message_id": "0ebd47c612703b3ad7637f20030e42e50d2c750764f1c97a70bee8b96fae019c", "sticker": null, "text": "Hello", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-04T07:13:54+00:00" }, { "message_id": "c467d9691667df84cea17d4384fd9107418ce5d2f4a0f942c293c011527e2f92", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": null, "datetime": "2023-01-04T13:29:19+00:00" }, { "message_id": "c3bff8e768bed04412486d6f7c1ec8787a8771954657cf8a33c4f66692ba1517", "sticker": null, "text": "Can any one please send java web application connect with RDS source code along with pom.xml file......", "from_id": "fbe73b4af623233a5f7097de56d0522f6210a6741b6f9d77fd77ad5e6ba44e5b", "reply_to": null, "datetime": "2023-01-04T18:30:39+00:00" }, { "message_id": "130f278a74cefd36858025a6662fc3e9b96ebbe0e9894c50e5626d45dabd1894", "sticker": null, "text": "Scope of the variables, they’re are local to that method. Maybe create the class separately and have those variables as instance attributes", "from_id": "d7b1dc95b90e9e1b65ac60de02e58995b3a24b5feba3005ac734b990af7e3371", "reply_to": "e0a5fc3b069488e260f389d9e21b887df99ba9b00d58e2cfe819d5cddf3e0921", "datetime": "2023-01-05T01:50:46+00:00" }, { "message_id": "c1ceb34f14b6df059d6db3621e93281dbd9742116fc192e8752eb56a84a8afff", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": null, "datetime": "2023-01-05T23:31:52+00:00" }, { "message_id": "84530318a0eb33f2cca6e941d8e05d4245fc5aeac0411eaa0031755d1a33fb81", "sticker": null, "text": "The **main** method is where Java execution begins. You can put any body of code in the main method.\n\nHowever, you want to group this body of code and give a name to it. In other words, you want to put a method in the **main** method. \n\nYou can call the method in the **main** method but you cannot **declare it** within it. \n\nIs it even necessary? Because, face it - a method is just a fancy word given to a body of code that performs a particular function.\n\nThe good thing about methods is that by group the code, you can always execute it by using only the method's name.\n\n**main** is just like the method you have created. It just has a special status as a special method where execution begins.\n\nSo, in summary, declare the method either before or after the main method but within the class and call the method within the main method. If it's **static** , no need to create an instance.\n\nAnd as others rightly put it, keys know what you intend to do and we may better advise you accordingly.\n\nPardon my lengthy reply.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "e0a5fc3b069488e260f389d9e21b887df99ba9b00d58e2cfe819d5cddf3e0921", "datetime": "2023-01-05T23:39:32+00:00" }, { "message_id": "512537d8df96486aa7e3b43fb65864ee70dcb4796fdf01218efaab0ccee8b825", "sticker": null, "text": "Hi guys, I have a question about big data storage, I have about 10W terminal,They upload 3KB JSON data every one second. Each piece of data contains 800 signal items, data needs to be stored permanently, how to store and read quickly. I want to know what kind of database can be supported. We use HDFS to store now. It's not a long-term solution. because it's slow when I read some data. Do you have any good suggestions?", "from_id": "0334ec4f5f18c3fdb56548513245bb16ffa3c33a1957fddd8b9ea1b48b8e8096", "reply_to": null, "datetime": "2023-01-06T09:10:14+00:00" }, { "message_id": "ae41ecc7c2b4f1a2d0cfa0697fef33fa9da884b8930cd4255b0feb17aea9bcdf", "sticker": null, "text": "oh, sorry , it's 100000 terminals", "from_id": "0334ec4f5f18c3fdb56548513245bb16ffa3c33a1957fddd8b9ea1b48b8e8096", "reply_to": null, "datetime": "2023-01-06T09:15:22+00:00" }, { "message_id": "426801b1b5671487e0a31d3a6ac523157589698fc963be166e07a8429e03bdaa", "sticker": null, "text": "A possible solution for storing large amounts of JSON data with fast access requirements could be to use a NoSQL database such as MongoDB or Cassandra. These databases are optimized for unstructured data processing and offer a good balance of read/write speed and scalability.\n\nHowever, choosing the right database will depend on the type of queries you want to perform on the data and the performance required. You may need to do some experimenting to determine which option works best for your specific needs.\n\nAnother factor to consider is scalability management. As your data load increases, you'll want to ensure that the database you choose can support the continued growth in data volume and queries without compromising performance. You may need to implement a deployment solution to achieve this kind of scalability.\n\nAdditionally, it might be worth considering using a batch-based data management system, such as Apache Hadoop, along with a NoSQL database for real-time processing. This could provide the flexibility to manage data efficiently and meet quick access requirements.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "512537d8df96486aa7e3b43fb65864ee70dcb4796fdf01218efaab0ccee8b825", "datetime": "2023-01-06T10:05:30+00:00" }, { "message_id": "a5576008ddd037851fe376cbcc2e758db6e7bf0b5d90a0bfcd94f5fd2b0920dd", "sticker": null, "text": "Thank you very much. In fact, we have tried some databases, such as mongoDb, clickhouse, etc., but due to the large amount of data, the effect is not very good, so we may have to try to split and adjust the data at the business layer.", "from_id": "0334ec4f5f18c3fdb56548513245bb16ffa3c33a1957fddd8b9ea1b48b8e8096", "reply_to": "426801b1b5671487e0a31d3a6ac523157589698fc963be166e07a8429e03bdaa", "datetime": "2023-01-06T12:21:00+00:00" }, { "message_id": "d31222153dff96e16925f774cbfc696c5d162212e2f22b27be0de0d81f181765", "sticker": null, "text": "Hi ,how I generate nb between 5 and 15?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-01-06T13:13:23+00:00" }, { "message_id": "a9152a2a9ead7d46b270f0694c54c02c8b1b063fa7223207d26cf55c20a537e4", "sticker": null, "text": "```import java.util.Random;\n\npublic class Main {\n public static void main(String[] args) {\n Random rand = new Random();\n\n // Genera un numero casuale compreso tra 5 e 15 (estremi inclusi)\n int num = rand.nextInt(11) + 5;\n\n System.out.println(num);\n }\n}```", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "d31222153dff96e16925f774cbfc696c5d162212e2f22b27be0de0d81f181765", "datetime": "2023-01-06T13:15:20+00:00" }, { "message_id": "896f68dde2d416d530885afb20230b9413c2d7aed9c0eb0afaa49be4945179cb", "sticker": null, "text": "why 11?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-01-06T13:27:32+00:00" }, { "message_id": "a594604918248f334247cf37e39343b591970c721bd5397df9b50bcc0e71f69a", "sticker": null, "text": "I need to use int n=(int)(Math.random()*5+15) why that is wrong?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-01-06T13:28:35+00:00" }, { "message_id": "f28971d571c7ebfb002f5fd482ffdb18503255e5dea15de040bd1ea87eb1a9f7", "sticker": null, "text": "They are random numbers from 5 to 11, both can print 11 and can print another number, but without exceeding the number 11", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "896f68dde2d416d530885afb20230b9413c2d7aed9c0eb0afaa49be4945179cb", "datetime": "2023-01-06T13:30:39+00:00" }, { "message_id": "c35fe393544b92faf9a51f4bcc51491f96dae6f671b42da0f864da4be72dc3e1", "sticker": null, "text": "Is that clear to you? or not ?", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "896f68dde2d416d530885afb20230b9413c2d7aed9c0eb0afaa49be4945179cb", "datetime": "2023-01-06T13:36:08+00:00" }, { "message_id": "27836c24eb4f8666d3641975d53b8cd17f70e276b0a4f0476071efd1fd902034", "sticker": null, "text": "no", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-01-06T14:28:03+00:00" }, { "message_id": "6beaa2d53700ce55a1dd3a0487e34ebf613f81ddda28e6982044b058e628039b", "sticker": "891885078961979400/891885078961979576.gif", "text": "", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "27836c24eb4f8666d3641975d53b8cd17f70e276b0a4f0476071efd1fd902034", "datetime": "2023-01-06T14:29:21+00:00" }, { "message_id": "d9f0ab820989c882f2504f9150a17f973d3a6864d7f7a7124cd31eb5ae0d86d3", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": null, "datetime": "2023-01-07T11:15:30+00:00" }, { "message_id": "42fa253b75facf0f6eaaa512c5b5834e0a06e622737f075b9ebbb2a998b7a8b1", "sticker": null, "text": "Hi, Can anyone please explain what is middleware and middleware server", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2023-01-07T11:21:17+00:00" }, { "message_id": "9b291c88ed7445cf76ec95f19ce4ed1d1796102ab9146807e75d46158e2931ff", "sticker": null, "text": "Anyone who can solve aptitude question please dm me", "from_id": "a12bd10ddba8eccb8119cccc0325f18dc19fdc1f5255c30fff7178989c5d9eb8", "reply_to": null, "datetime": "2023-01-07T14:43:29+00:00" }, { "message_id": "eb3b50bdca21b2bf1e3fa06e918e21b8618f2c4524f31a088e89b6dfe09a5423", "sticker": null, "text": "connect with me on LinkedIn please linkedin.com/in/niyrch", "from_id": "afd6e763247b64c91f3db3e445793a8db61633f0193c0f6538eb6eeaa5b04e28", "reply_to": null, "datetime": "2023-01-07T16:23:33+00:00" }, { "message_id": "23a2389d78a5a4868ee4cb0f91b8d90bd1ea51be115c46264484dfb49f72932c", "sticker": null, "text": "some people just ignore me because I have small network, you know", "from_id": "afd6e763247b64c91f3db3e445793a8db61633f0193c0f6538eb6eeaa5b04e28", "reply_to": null, "datetime": "2023-01-07T16:25:30+00:00" }, { "message_id": "4be2405b1756b20e6cfee5c8a2d984128cff5c6694854bce86e52f7d1013d16d", "sticker": null, "text": "my friend, that will be never case.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "23a2389d78a5a4868ee4cb0f91b8d90bd1ea51be115c46264484dfb49f72932c", "datetime": "2023-01-07T16:36:04+00:00" }, { "message_id": "15ee82f4d548c5b1786b6f017679ced182cb13fe610039761891127307039bca", "sticker": null, "text": "why do you think so?", "from_id": "afd6e763247b64c91f3db3e445793a8db61633f0193c0f6538eb6eeaa5b04e28", "reply_to": "4be2405b1756b20e6cfee5c8a2d984128cff5c6694854bce86e52f7d1013d16d", "datetime": "2023-01-07T16:41:52+00:00" }, { "message_id": "49ab610412a7ecca96590f7aefd6856d2f0ea9cdb2d4abdbdad0087130809316", "sticker": null, "text": "I also have small network. but i am trying to expand it.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": null, "datetime": "2023-01-07T16:42:52+00:00" }, { "message_id": "6182ad1e67b8119365da2aadd5fc0ebe7f0cfe640218b879e7e45d9974ad5275", "sticker": null, "text": "Any one help me to learn python or any coding programming language any one teach me through online or offline", "from_id": "4bbe40d91125d5341cc98f577c1ed0f266aa4a68f9d265fdf290ceddd15e6f60", "reply_to": null, "datetime": "2023-01-07T17:30:41+00:00" }, { "message_id": "4bd19ba2de3a1cba2e9a016604d4cce84b77935016977c6d32ccdc149bfe3875", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "4ec0108c5803ef4b34179ad9ec1baa92e848b1dfacb654935fd26a4c567baccd", "reply_to": null, "datetime": "2023-01-07T17:34:42+00:00" }, { "message_id": "46105c7c602f898f252687b4d5a81de026adaa889295b296305d731fc2b234c1", "sticker": null, "text": "random shuffling with array ,this question is difficult or no?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-01-07T18:07:59+00:00" }, { "message_id": "871a8ac32c234ae7a79a2ce17192c5f8b3c275ec551ec5cbef4bcf367b75289d", "sticker": null, "text": "Hi", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": null, "datetime": "2023-01-07T19:36:52+00:00" }, { "message_id": "f1b212d2805ef316e4c0eb8a3154e5fe242e8005dcdf7b6c3d4132fd63aac988", "sticker": null, "text": "Hey", "from_id": "924624e2f3fd70dd167cf00592105cc41dc87a494d2f0d6584dc93f925933d2b", "reply_to": null, "datetime": "2023-01-07T19:36:59+00:00" }, { "message_id": "9638d1e93d27aaa05f3e17066ab19ca9c04274186c89f36676e4ff82a1e25db3", "sticker": null, "text": "easy", "from_id": "0e99546c5ed00e135d402a26094c7dedb89a253acf39fe6731576e4bb2ac537e", "reply_to": "46105c7c602f898f252687b4d5a81de026adaa889295b296305d731fc2b234c1", "datetime": "2023-01-07T23:48:25+00:00" }, { "message_id": "2e60c4219709b4fc9f61eec56da6e6dd0c60c82f1a83d78c6fabc736a75a0fed", "sticker": null, "text": "14", "from_id": "78fd76c3a25b835cd68410c2bd957dedaea25208eb7422c0960c658152622e81", "reply_to": null, "datetime": "2023-01-08T01:16:12+00:00" }, { "message_id": "4536b10417a3db673269c7e19d7d3ae68a4f57fd16fb663841663d350db2d59f", "sticker": null, "text": "public void shuffleArray() {\n int[] arr = new int[]{1,2,3,4,5,6,7,8};\n //array to list\n List list = Arrays.stream(arr).boxed().collect(Collectors.toList());\n //shuffle\n Collections.shuffle(list);\n //list to array\n arr = list.stream().mapToInt(num -> num).toArray();\n System.out.println(\"------------------shuffled array------------------\");\n Arrays.stream(arr).forEach(System.out::println);\n }", "from_id": "0e99546c5ed00e135d402a26094c7dedb89a253acf39fe6731576e4bb2ac537e", "reply_to": "46105c7c602f898f252687b4d5a81de026adaa889295b296305d731fc2b234c1", "datetime": "2023-01-08T01:25:36+00:00" }, { "message_id": "7de41683d92508b9db35b6c7d31c6b556187934c7c459050ed3a838f08e789da", "sticker": null, "text": "Hi,I write code in netbeans the output is infinte and the\n program has crashed and I can no longer log in. What should I do?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-01-08T09:14:16+00:00" }, { "message_id": "04bcde81e5a6a14b688b7f3585f9483cb27f6beb4c316a105fc0d816b963af78", "sticker": null, "text": "its probably a loop logic error", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "7de41683d92508b9db35b6c7d31c6b556187934c7c459050ed3a838f08e789da", "datetime": "2023-01-08T12:35:35+00:00" }, { "message_id": "21c5a07ac2f93859dfb97bd13f3c254890661aefe1f3826b76b67d5fea9e1d20", "sticker": null, "text": "Pls anyone tell this\n\nclass Main{\n    public static void main(String[] args){\n\n        int x = 130;\n        byte y = (byte) x;\n        System.out.println(y);\n\n    }\n}", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-08T18:00:16+00:00" }, { "message_id": "14b937d1ef27dac87fb7d9557338ea3693babbd0944ed2b002326542df1f19fc", "sticker": null, "text": "What will be the output of the following code", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-08T18:00:33+00:00" }, { "message_id": "c30efb0bfa96a6f77625ca89e1d4f7320ac88686830d8d3096dfa88c84d4af50", "sticker": null, "text": "This code will print the value of y, which was assigned to 130 by casting from int to byte. However, the value of y will change during the casting process due to the way byte values ​​are interpreted in Java.\nIn Java, a byte is interpreted as an 8-bit number that can take on values ​​between -128 and 127. When casting from an int to a byte, the value is changed to fit within this range of values. In this case, the value of x (130) is too large to fit in one byte and will therefore be changed during casting.\nThe final result will be that y will have the value -126. So, the code will print -126.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "14b937d1ef27dac87fb7d9557338ea3693babbd0944ed2b002326542df1f19fc", "datetime": "2023-01-08T18:04:06+00:00" }, { "message_id": "ec5abdbef143342b1351b32f6baa04d218df53ae7376871d8fcb3d3635711165", "sticker": null, "text": "Bro is it important for beginners to know about this, or a beginner could understand it later after getting a good understanding in Java.", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "c30efb0bfa96a6f77625ca89e1d4f7320ac88686830d8d3096dfa88c84d4af50", "datetime": "2023-01-08T18:07:56+00:00" }, { "message_id": "36273b95017004dd2814b6c442532efdd726be0d866e7029ae54f102c8d94854", "sticker": null, "text": "```public void shuffleArray() {\n int[] arr = new int[]{1,2,3,4,5,6,7,8};\n List list = Arrays.asList(arr);\n Collections.shuffle(list);\n arr = list.stream().mapToInt(Integer::intValue).toArray();\n System.out.println(\"------------------shuffled array------------------\");\n Arrays.stream(arr).forEach(System.out::println);\n}```", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "4536b10417a3db673269c7e19d7d3ae68a4f57fd16fb663841663d350db2d59f", "datetime": "2023-01-08T18:08:04+00:00" }, { "message_id": "c288b287167b88ee05fd43e6d0cb67705f174e422cc153437d0bb1bb7a831470", "sticker": null, "text": "Tell bro", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "ec5abdbef143342b1351b32f6baa04d218df53ae7376871d8fcb3d3635711165", "datetime": "2023-01-08T18:08:42+00:00" }, { "message_id": "0bf06f8cab844ac481de213166ad8c1da1ecf75cd893cd38299c38212bb3e7e2", "sticker": null, "text": "Aaaah sorry I thought you needed help.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "ec5abdbef143342b1351b32f6baa04d218df53ae7376871d8fcb3d3635711165", "datetime": "2023-01-08T18:08:55+00:00" }, { "message_id": "043fdc94de3552ad20f4cc6a538c9cf1dff3194152c3b177693a35298f9db8b7", "sticker": null, "text": "Yes i need help", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "0bf06f8cab844ac481de213166ad8c1da1ecf75cd893cd38299c38212bb3e7e2", "datetime": "2023-01-08T18:09:09+00:00" }, { "message_id": "de5835e4e425b4337507131c4a6cedb17a74dcc4ca33852938ba45bbe3ded060", "sticker": null, "text": "I am a beginner in java", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-08T18:09:30+00:00" }, { "message_id": "25c9e29c4c875328aec84da7da9cdc521598fe8880129cc8b5b567b07e66d9a9", "sticker": null, "text": "Aaah okay, write your exercise and I'll help you.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "de5835e4e425b4337507131c4a6cedb17a74dcc4ca33852938ba45bbe3ded060", "datetime": "2023-01-08T18:10:29+00:00" }, { "message_id": "f7cc71deb0d04874ff12b089367e400b930caaa0afe10404a9c078ce006a7c72", "sticker": null, "text": "Is it important to know about the byte concept in java for beginners", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "25c9e29c4c875328aec84da7da9cdc521598fe8880129cc8b5b567b07e66d9a9", "datetime": "2023-01-08T18:11:38+00:00" }, { "message_id": "6f676dd5cf15eecae5a8bb11395c5ed66ae41a0c77a5e886ef9345681dd5ecc5", "sticker": null, "text": "Want to know what bytes are in Java? Explain yourself better it's already difficult to understand English for me.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "f7cc71deb0d04874ff12b089367e400b930caaa0afe10404a9c078ce006a7c72", "datetime": "2023-01-08T18:12:41+00:00" }, { "message_id": "a68b057fe1a4dd891f1341d2becc27bf42e4478912b6d6a89a7ea0633aa0e819", "sticker": null, "text": "Means", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "6f676dd5cf15eecae5a8bb11395c5ed66ae41a0c77a5e886ef9345681dd5ecc5", "datetime": "2023-01-08T18:13:16+00:00" }, { "message_id": "f2003f6105002923c6b7334c8a56aae232c771a57e1bafe5f96f91ae89348aad", "sticker": null, "text": "Bro from where are you", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "6f676dd5cf15eecae5a8bb11395c5ed66ae41a0c77a5e886ef9345681dd5ecc5", "datetime": "2023-01-08T18:13:45+00:00" }, { "message_id": "6991802cb67920a39698750dca927993448a36cbae3e39717fe9f707a4646440", "sticker": null, "text": "Italy", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "f2003f6105002923c6b7334c8a56aae232c771a57e1bafe5f96f91ae89348aad", "datetime": "2023-01-08T18:13:54+00:00" }, { "message_id": "9f2e52be115c9eb7f0b5c093bc8854787bd9ea1de873de43f4c055609731cb38", "sticker": null, "text": "Ohh, Ohhk", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "6991802cb67920a39698750dca927993448a36cbae3e39717fe9f707a4646440", "datetime": "2023-01-08T18:14:02+00:00" }, { "message_id": "c19df416e581278d028f20527b96c018f313e983f0a9bda4914679bb482d14f6", "sticker": null, "text": "Should I learn about byte as a beginner", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-08T18:14:21+00:00" }, { "message_id": "b5662892a57d57b6d904fa6243fae838c28aaebc190fc885ee2e20de6fbcaddb", "sticker": null, "text": "Bytes are a primitive data type in Java that represent an 8-bit number. They can assume values ​​between -128 and 127.\nBytes are useful when working with small amounts of data or when you want to save memory space. For example, you might use a byte to store the value of an ASCII character or the sign of an integer.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "c19df416e581278d028f20527b96c018f313e983f0a9bda4914679bb482d14f6", "datetime": "2023-01-08T18:16:25+00:00" }, { "message_id": "a9c0a662c81abe40bca7d250e93965285e0aea74f2f3edde704015c11e98cdeb", "sticker": null, "text": "I searched for the simplest words to make you understand.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "c19df416e581278d028f20527b96c018f313e983f0a9bda4914679bb482d14f6", "datetime": "2023-01-08T18:17:40+00:00" }, { "message_id": "635f19669b8b48cd78f05bfe52ccf4bfbdb55e544486d71404f5fa786d93e5be", "sticker": null, "text": "Ohhk, bro thanks for you efforts. I finally understood it.", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "a9c0a662c81abe40bca7d250e93965285e0aea74f2f3edde704015c11e98cdeb", "datetime": "2023-01-08T18:19:02+00:00" }, { "message_id": "a61dc92d2470e7fe522cac6079178315f58ba6d2a0b9d970ea1ef0c07e75f899", "sticker": null, "text": "GREAT!!!! 💪💪💪💪", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "635f19669b8b48cd78f05bfe52ccf4bfbdb55e544486d71404f5fa786d93e5be", "datetime": "2023-01-08T18:19:30+00:00" }, { "message_id": "a059420b23a0028aee34e38beb9f2f98280b7987136f496faee89428fb643f2f", "sticker": null, "text": "I sent you a photo in your pv", "from_id": "0239b823040e8a6b927d22df6d3cedc671dae9c27c3484f76fce0e7b3dfc8fe1", "reply_to": "635f19669b8b48cd78f05bfe52ccf4bfbdb55e544486d71404f5fa786d93e5be", "datetime": "2023-01-08T18:19:53+00:00" }, { "message_id": "4dc11af83b1f084807cd6375ce42b678a684c5fe133c311c9466dc9a94741e6e", "sticker": null, "text": "Thanks, Bro", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "a059420b23a0028aee34e38beb9f2f98280b7987136f496faee89428fb643f2f", "datetime": "2023-01-08T18:20:38+00:00" }, { "message_id": "2f1061ea91df0db3517fd1f7baf3442c79c6a04934d227560b74a8bf2077e987", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "4bd19ba2de3a1cba2e9a016604d4cce84b77935016977c6d32ccdc149bfe3875", "datetime": "2023-01-08T21:50:41+00:00" }, { "message_id": "2ae4843102747732423e588d93edef11e4711764c02cc717d9d4c14fc01cf2b8", "sticker": null, "text": "Thanks 👍", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "2f1061ea91df0db3517fd1f7baf3442c79c6a04934d227560b74a8bf2077e987", "datetime": "2023-01-08T23:04:28+00:00" }, { "message_id": "8d11aa6e2e706bdb9db88a05610304ac8072075dfcabd18138677c161ad119bf", "sticker": null, "text": "Are you from Iran ?\nAg Irani hasti goroh barname nvici chi dari?", "from_id": "0f442822ab350f1ad78f07cae25d209e0488f37e4a27246bc55b85b0875e6616", "reply_to": "46105c7c602f898f252687b4d5a81de026adaa889295b296305d731fc2b234c1", "datetime": "2023-01-08T23:36:20+00:00" }, { "message_id": "aecc5e562c31d853d0e75a3eeb9a269ba77eed2a10542d653f72a7d62c4c4013", "sticker": null, "text": "English only please and thanks", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "8d11aa6e2e706bdb9db88a05610304ac8072075dfcabd18138677c161ad119bf", "datetime": "2023-01-08T23:58:25+00:00" }, { "message_id": "2cf7fd229d548d221f014c72c59ceea1977230f21afdb1404aab9d5a1e4939de", "sticker": null, "text": "Ok\n sorry", "from_id": "0f442822ab350f1ad78f07cae25d209e0488f37e4a27246bc55b85b0875e6616", "reply_to": "aecc5e562c31d853d0e75a3eeb9a269ba77eed2a10542d653f72a7d62c4c4013", "datetime": "2023-01-09T00:08:36+00:00" }, { "message_id": "16fff875e7e6e51b90389f96b2e202a887fad359875fde55093696395d3ce990", "sticker": null, "text": "Np!", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-09T00:09:54+00:00" }, { "message_id": "8885e388f5efcf43869d81d1923aa09f774fd170aa32a89ad60c57d700712270", "sticker": null, "text": "Hello everyone! I am from Russia. Can anybody to send my roadmap for learning java?", "from_id": "8b9575dca9d8091aabbb917dd3dcb8b2e25ed22b4e5db82c83f3caeccb877472", "reply_to": null, "datetime": "2023-01-09T00:45:13+00:00" }, { "message_id": "a39da92a2a25776a279ca834badd8948f9c2a1c9f6b0b905a3d5fbe9b372fbc6", "sticker": null, "text": "javaSE->javaWeb->spring frameworks->mybatis then springboot,springcloud.\nit is my roadmap.", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-01-09T03:38:43+00:00" }, { "message_id": "092334ad43643777b2b7ef1ee55dffcc9295292f4d90931057f071f862ef03a9", "sticker": null, "text": "hello everyone", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T04:10:07+00:00" }, { "message_id": "3c89703d69dff60c5f24b7428c02d82ec401953e4c245b8dde08f9951ef752c9", "sticker": null, "text": "how to user InlineKeyboardButton Telegram Login Widget by Java", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T04:11:34+00:00" }, { "message_id": "0effc59393d1c3ea498d2c6f468ff2ff78e7978050591e7cfc798c2cfeb242e8", "sticker": null, "text": "i will pay", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T04:11:43+00:00" }, { "message_id": "cc0378cb99164e9ec204c5ea146d8d0c158459f3a8c5e5f4ebc39cf4d0004b6a", "sticker": null, "text": "i want to click button open url", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T04:12:33+00:00" }, { "message_id": "a3a1a0ea3ba325e79c4077baa2e39de1fcd21a376e022943914d63cb296a6348", "sticker": null, "text": "The Telegram Login Widget is an easy way for users to login to your bot on Telegram using their Telegram account. To use the login widget, you first need to create a bot on Telegram and get its auth token.\nIf you need help, I'll do it for you.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "3c89703d69dff60c5f24b7428c02d82ec401953e4c245b8dde08f9951ef752c9", "datetime": "2023-01-09T05:52:51+00:00" }, { "message_id": "b30ac4f3682b3d7f7ebef74c730c0cd750a862c115668a56e041be41bb285151", "sticker": null, "text": "If so, contact me privately and I'll tell you", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "3c89703d69dff60c5f24b7428c02d82ec401953e4c245b8dde08f9951ef752c9", "datetime": "2023-01-09T05:53:42+00:00" }, { "message_id": "95dd22ee13344b73e279bf5d27227734ecb1e3a8a965e638e31db09f4e5b11ca", "sticker": null, "text": "1.import org.telegram.telegrambots.meta.api.objects.replykeyboard.buttons.InlineKeyboardButton;\n\n\n2. Next, you can create an InlineKeyboardButton object by calling the constructor and passing in the desired parameters, such as the text to display on the button and the callback data to be sent to your bot when the button is pressed. For example:\n\n\nInlineKeyboardButton button = new InlineKeyboardButton(\"Button Text\").setCallbackData(\"callback data\");\n\n\n3. You can then add the button to an InlineKeyboardMarkup object, which is used to represent a custom keyboard with inline buttons. You can do this by creating a new InlineKeyboardMarkup object and then calling the `add(List>)` method on it, passing in a list of lists of InlineKeyboardButton objects. For example:\n\n\nInlineKeyboardMarkup markup = new InlineKeyboardMarkup();\nList> buttons = new ArrayList<>();\nbuttons.add(Collections.singletonList(button));\nmarkup.add(buttons);\n\n\n4. Finally, you can use the InlineKeyboardMarkup object to set the reply markup for a message sent by your bot. To do this, you can call the `setReplyMarkup(InlineKeyboardMarkup)` method on the SendMessage object before calling the `execute()` method to send the message. For example:\n\n\nSendMessage message = new SendMessage().setChatId(chatId).setText(\"Message Text\");\nmessage.setReplyMarkup(markup);\nbot.execute(message);`\n\nI hope this helps! i copy from search result.", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-01-09T06:48:07+00:00" }, { "message_id": "bd4b550da9632461b64098572aa35e74b59e07d2f4c2991724477e1678aa6037", "sticker": null, "text": "thanks", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": "95dd22ee13344b73e279bf5d27227734ecb1e3a8a965e638e31db09f4e5b11ca", "datetime": "2023-01-09T06:53:45+00:00" }, { "message_id": "a84ddc14aafabbdfd1cf7e958b6d42611ddea13a93cf92878924b0f584e7495e", "sticker": null, "text": "Yes why pay for something you can google search for? You are asking to be taken advantage of", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-09T07:26:00+00:00" }, { "message_id": "404feaa290b43b4f54c777c9009ce14c82d7719a282f258b423957f944f4540d", "sticker": null, "text": "Hello everybody :)\nI'm an Italian web developer guy ^^\nI work with Java (with Spring framework) for the backend and Angular.js for the frontend", "from_id": "a3d9059c394662c501f5c8df775a2dd0ee8e5c900dcc0fa18f8e5fabe34cfb7a", "reply_to": null, "datetime": "2023-01-09T08:22:51+00:00" }, { "message_id": "67778cf2d15284c7cb40e6bbb995abac2d7b24415d717c23e6a80c6544a81efe", "sticker": null, "text": "Java roadmap bta dijiye", "from_id": "2b4d0fbf27e5d18cc268b6db5ed758d87e7c233c21d58e9f7fef5a8acecfa8a9", "reply_to": null, "datetime": "2023-01-09T13:41:58+00:00" }, { "message_id": "8a11b711b39ed31e646920d1cf481e70659b2ce41627605ec25a0a1bc8fecbc2", "sticker": null, "text": "I'm a beginner. So can someone suggest me which language should I learn..?", "from_id": "e8c0a788c26ccceabc6ca89f6dd95db9a1cc1bf4f73eb84a35360b098374f44e", "reply_to": null, "datetime": "2023-01-09T13:48:56+00:00" }, { "message_id": "08031bd14854ae1258c7a40e70c9385e01d542f60383d075b0c52088a7613ce8", "sticker": null, "text": "Anyone send me Java notes step by step", "from_id": "e8c0a788c26ccceabc6ca89f6dd95db9a1cc1bf4f73eb84a35360b098374f44e", "reply_to": null, "datetime": "2023-01-09T13:49:17+00:00" }, { "message_id": "dd44689d7e8823b5e3e6f66d201b2acc7c869a03ae047dc415b6ec4eba64e277", "sticker": null, "text": "Pyrhon", "from_id": "1188c87dab538b7d6fb30b1aaf38fe562a786f8c6e41e88fc734220de5288cee", "reply_to": "8a11b711b39ed31e646920d1cf481e70659b2ce41627605ec25a0a1bc8fecbc2", "datetime": "2023-01-09T13:51:25+00:00" }, { "message_id": "b1a11227354be0f075f439a37c436209960dc77273ac37dafed9f4450fbd3c8d", "sticker": null, "text": "Python", "from_id": "1188c87dab538b7d6fb30b1aaf38fe562a786f8c6e41e88fc734220de5288cee", "reply_to": null, "datetime": "2023-01-09T13:51:32+00:00" }, { "message_id": "cf8a71e250deae74486cd2bea99cbfe47ecdac02e45fce76017521990b42947e", "sticker": null, "text": "Okk thanks", "from_id": "e8c0a788c26ccceabc6ca89f6dd95db9a1cc1bf4f73eb84a35360b098374f44e", "reply_to": "b1a11227354be0f075f439a37c436209960dc77273ac37dafed9f4450fbd3c8d", "datetime": "2023-01-09T14:06:35+00:00" }, { "message_id": "1c5f484ff73844275667011679e4c65d3e498fe693df39aff598bf006b71c715", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": null, "datetime": "2023-01-09T14:48:28+00:00" }, { "message_id": "b64614c0971d6326cc2618da04f31a52f516eee43a6da6ae08f152f7d2338d08", "sticker": null, "text": "User Authorization", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T15:21:43+00:00" }, { "message_id": "70ade4690283ec406ccfca27b3e7a05464f42c8ae11dd69f82105a0b6e77b864", "sticker": null, "text": "how to use Telegram Login Widget InlineKeyboardButton LoginUrl", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T15:43:40+00:00" }, { "message_id": "b189f3dfa9afa5f6183667499790fa122895e9f4ff235b97a566066217d7f003", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T15:51:09+00:00" }, { "message_id": "427d1d077c4124c0f68b3eb0f28adc5b46d400f3127dcf0307a5cb5a9c34fbcd", "sticker": null, "text": "how to use by java", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-09T15:51:22+00:00" }, { "message_id": "9c24ef1c731b4ad2b6e35086ae1e218bcc603f9cf9582cdc6bb22096217c3fea", "sticker": null, "text": "Hello", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-09T17:26:50+00:00" }, { "message_id": "98bfef0ab5028d2af56c5ec8fe3bfbaa21b17e92344ae8a460533e413add7016", "sticker": null, "text": "As a beginner should I learn about stack and heap memory in java", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-09T17:27:12+00:00" }, { "message_id": "8355c54d6ac6c76c9aa7ecc112f8b2106b21f63c5a621fc4c5480666d9c4f607", "sticker": null, "text": "As a beginner, I suggest you to learn the basics of programming such as variables, loops, if conditions and so on", "from_id": "a3d9059c394662c501f5c8df775a2dd0ee8e5c900dcc0fa18f8e5fabe34cfb7a", "reply_to": "98bfef0ab5028d2af56c5ec8fe3bfbaa21b17e92344ae8a460533e413add7016", "datetime": "2023-01-09T18:29:44+00:00" }, { "message_id": "066e23906d500b2f2d449635f3ff1a442d50c94f07dc3207d718600fedb7fdfb", "sticker": null, "text": "It depends on what you mean for \"beginner\"", "from_id": "a3d9059c394662c501f5c8df775a2dd0ee8e5c900dcc0fa18f8e5fabe34cfb7a", "reply_to": null, "datetime": "2023-01-09T18:30:18+00:00" }, { "message_id": "1b3e65b13a4e3fee5841559d99efebdb445904e5dcc4c98a6c0b78f19023a30b", "sticker": null, "text": "No i had already knew the basics of programming such as loops, conditional statements, etc. But I am confused what the topics should i know to be a Android developer.", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "8355c54d6ac6c76c9aa7ecc112f8b2106b21f63c5a621fc4c5480666d9c4f607", "datetime": "2023-01-09T18:31:30+00:00" }, { "message_id": "cd3d4cf7dc36b9f57b1459d8573d900a23e435e865d6a2cff959a820e022ab12", "sticker": null, "text": "In java", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-09T18:31:41+00:00" }, { "message_id": "681ae7f8b995ed8ba91420c15033102004becbb59da9a7074d0377fc645446cf", "sticker": null, "text": "Oh, I see\nUmh... I don't know about Android development. But it could be useful knowing about stack and heap memory, I think\nNot needed, but useful 🤔", "from_id": "a3d9059c394662c501f5c8df775a2dd0ee8e5c900dcc0fa18f8e5fabe34cfb7a", "reply_to": null, "datetime": "2023-01-09T18:32:37+00:00" }, { "message_id": "ec38db17a5558711b257a9422a3cc99fbca90284b579d401628a71db8c6ab16d", "sticker": null, "text": "Ohh, Ohhk", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": "681ae7f8b995ed8ba91420c15033102004becbb59da9a7074d0377fc645446cf", "datetime": "2023-01-09T18:40:00+00:00" }, { "message_id": "cc2becc65a26fbbfd4a0d7174fe99099f1a11f80aa8e858909945d10ea3ca8e6", "sticker": null, "text": "Hi all", "from_id": "1134c61fdcba45d510ee4647b9fe81bee2ce6f45b24cd5e36e5042f4792db497", "reply_to": null, "datetime": "2023-01-09T19:19:31+00:00" }, { "message_id": "bf39c011025aec503bd15c4b2ef6b8dfc89f5a2fb52bda06e8c7947583d75262", "sticker": null, "text": "middlware can be any function or feature which runs in middle (in between when u send a request and get back the response)", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "42fa253b75facf0f6eaaa512c5b5834e0a06e622737f075b9ebbb2a998b7a8b1", "datetime": "2023-01-09T19:25:18+00:00" }, { "message_id": "e7c831b9a5558c5b7c5bafd6a9cde9a888115b2b1118d688dbd22a3c0e3e9e4e", "sticker": null, "text": "very easy", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "46105c7c602f898f252687b4d5a81de026adaa889295b296305d731fc2b234c1", "datetime": "2023-01-09T19:25:42+00:00" }, { "message_id": "5a30ee22ea2eb07e9ea989d7492d1eb4690654fcf1997d6a3e4f172c916207fc", "sticker": null, "text": "yeah sure", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "8885e388f5efcf43869d81d1923aa09f774fd170aa32a89ad60c57d700712270", "datetime": "2023-01-09T19:26:34+00:00" }, { "message_id": "7ccce4881ea5dad3e511a22333bfbe6e32e86bc9d45c72428748950a989d8490", "sticker": null, "text": "core java, \nadvanced java \nservlet, jdbc, jsp(not necessary) \nspring framework, spring boot, spring security, spring batch", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "8885e388f5efcf43869d81d1923aa09f774fd170aa32a89ad60c57d700712270", "datetime": "2023-01-09T19:27:42+00:00" }, { "message_id": "0524d09e115419946dae526d9bf7d44f71775e543e5adad512a1e0a582481f8f", "sticker": null, "text": "if u r in first year I will suggest c language to learn the basic concepts of programming or u can start with java(only if u think u can do anything) btw java is the best language to learn oops and some basic programming concepts \n\nbut if u r some senior and dont want to go in depth and want to learn web development or something u can go with JavaScript ( the easiest and shortcut path)", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "8a11b711b39ed31e646920d1cf481e70659b2ce41627605ec25a0a1bc8fecbc2", "datetime": "2023-01-09T19:30:36+00:00" }, { "message_id": "03f67bab7224c5b724d2f999e44c0b2f5e4e7b835566bcff189f1e4def952360", "sticker": null, "text": "Thank you", "from_id": "8b9575dca9d8091aabbb917dd3dcb8b2e25ed22b4e5db82c83f3caeccb877472", "reply_to": "7ccce4881ea5dad3e511a22333bfbe6e32e86bc9d45c72428748950a989d8490", "datetime": "2023-01-09T20:20:54+00:00" }, { "message_id": "e12ee99c23fd24806b94c47896b8c88d275c5ccda0029f9addb31455c0f6e9be", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": null, "datetime": "2023-01-09T21:31:35+00:00" }, { "message_id": "82b180378696489c05787f039d85ac0bb7712163a4cfe385a7b665d04dfe71b2", "sticker": null, "text": "hi is anyone help me", "from_id": "0f35ffb87b0ed8db30fb481eef44a756732f741f995ee9dfbcf9df331e4516fc", "reply_to": null, "datetime": "2023-01-10T01:30:12+00:00" }, { "message_id": "34e11ce798bac8e8c0f3ba60b1c2a5b2d759863f1360c527ff93951b763074f3", "sticker": null, "text": "who used in telegram bot development", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-10T02:08:18+00:00" }, { "message_id": "4e236488bbae6e955f8d7ff9efa44450948e99d37806bd7283f4fd81a7ed092f", "sticker": null, "text": "hello good morning is anyone help me 😭", "from_id": "0f35ffb87b0ed8db30fb481eef44a756732f741f995ee9dfbcf9df331e4516fc", "reply_to": null, "datetime": "2023-01-10T02:42:33+00:00" }, { "message_id": "f7500c369fa6175939a9c1ea90b89ede41b5ec882f66a741299d7581494542d1", "sticker": null, "text": "it must be due to infinite loop put some real condition", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "7de41683d92508b9db35b6c7d31c6b556187934c7c459050ed3a838f08e789da", "datetime": "2023-01-10T05:27:20+00:00" }, { "message_id": "e10e46bcee8f00e141aa282125badd75489da7b68ed8c9cd6c9a302798b87465", "sticker": null, "text": "Please what does this mean \"In a for loop, the continue keyword causes control to immediately jump to the update statement.\"", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-01-10T09:30:39+00:00" }, { "message_id": "120caa90818b1d4d9c5363a834609660fa09e08ea3d1aab395cc2454fb0aa7db", "sticker": null, "text": "Skip the following lines to the next iteration.", "from_id": "d7b1dc95b90e9e1b65ac60de02e58995b3a24b5feba3005ac734b990af7e3371", "reply_to": "e10e46bcee8f00e141aa282125badd75489da7b68ed8c9cd6c9a302798b87465", "datetime": "2023-01-10T09:32:00+00:00" }, { "message_id": "307161c9eca84ad14aa6a0b8fba53d0b86f668761b1c6bdd3c3d0bc5dc167597", "sticker": null, "text": "Thanks", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": "120caa90818b1d4d9c5363a834609660fa09e08ea3d1aab395cc2454fb0aa7db", "datetime": "2023-01-10T09:32:21+00:00" }, { "message_id": "a0fd22d2c9d5c01b3ad3f19905f6ca37adb2a984e5028f245d2452fee1d17922", "sticker": null, "text": "You welcome", "from_id": "d7b1dc95b90e9e1b65ac60de02e58995b3a24b5feba3005ac734b990af7e3371", "reply_to": null, "datetime": "2023-01-10T09:34:21+00:00" }, { "message_id": "4263eac09a266f2a381569aae1b4dfa2e49fe39cc6224978799dcfafb3dca596", "sticker": null, "text": "Please refrain from those type of messages. I deleted it. Thanks", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "cc2becc65a26fbbfd4a0d7174fe99099f1a11f80aa8e858909945d10ea3ca8e6", "datetime": "2023-01-10T09:35:13+00:00" }, { "message_id": "7bfe3e8721903c14f92a26ac3b5fb7c43ffe09fc1c3c685ffb5ab923b77c7534", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "4e236488bbae6e955f8d7ff9efa44450948e99d37806bd7283f4fd81a7ed092f", "datetime": "2023-01-10T09:35:33+00:00" }, { "message_id": "2edb7a61f18188a08d7dc3154941eec65c8dc7500bb037cc86adf85c7c6250a4", "sticker": null, "text": "Please what does this mean for an expression in an enhanced for loop \"This evaluates to the array you need to loop through. The expression can be an array variable or method call that returns an array.\"", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-01-10T09:36:38+00:00" }, { "message_id": "9ddc32f4cd7c8d17a6ebf3994e857491f828395b3e14563fab9488cea406c270", "sticker": null, "text": "Are you taking a test/exam", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "2edb7a61f18188a08d7dc3154941eec65c8dc7500bb037cc86adf85c7c6250a4", "datetime": "2023-01-10T09:37:15+00:00" }, { "message_id": "7d773f6e5f66ae0af5fe5e4ea5c5e4bb3dfadc9e26735a02fdbc8248185dbdf7", "sticker": null, "text": "Naaa", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-01-10T09:37:23+00:00" }, { "message_id": "00034ffafc06f53a7b5cad2d868905892f098ffe98b9bf296d39246d69d2f690", "sticker": null, "text": "I'm reading", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-01-10T09:37:27+00:00" }, { "message_id": "d7ec8a3d8761e7d0ea8f6476e8f6dfa0fc265eed7acaf328aca439d483abcec3", "sticker": null, "text": "I can show you proof", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-01-10T09:37:32+00:00" }, { "message_id": "5ca4b8c89150a49bbdc73a2b3c42e3a5ee9e39665ccaa18aabb53d4c1889dc54", "sticker": null, "text": "I'm not able to send a picture", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-01-10T09:38:29+00:00" }, { "message_id": "9d2aef1d06e84b51b03bfef96fd30e57518087bd7cdd15dbaf9d221f0ef3733a", "sticker": null, "text": "If you take any Android development book or course, you should be able to develop on the platform after completing. \n\nAnd which apps you want to develop should be considered.\n\nYou should understand that Kotlin is now the official language for Android. Java is still in use and 100% interoperable with Kotlin.\n\nIf you know Java, Kotlin won't be a problem but don't worry study Kotlin now. Worry creating Android apps in Java now.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "1b3e65b13a4e3fee5841559d99efebdb445904e5dcc4c98a6c0b78f19023a30b", "datetime": "2023-01-10T09:40:47+00:00" }, { "message_id": "d386c7f04a3a6c95efbd23cccc6350c309c3335a643016b0bce0082a8c6ffa21", "sticker": null, "text": "I saw it. Do you see the array “names” in your example? \nfor (String name : names) {…} “names” is the expression. It’s the array that’s being iterated over. \nFirst, a bunch of names is added to the array, then it reads like this: for each name in the names array, print the name", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-10T09:44:26+00:00" }, { "message_id": "a343b591da61749f70f27518ffa269e743278da5b965af750286937ead6820e1", "sticker": null, "text": "You can take shots with your phone's camera and upload.\n\nThe **enhanced for loop** is what it is. It is a shorthand or enhanced form of the for loop. No need to specify control variable, explicitly initialize it and add and update statement.\n\nIt skins through the array for you. Unfortunately, with enhanced for loop, unlike traditional loop, you cannot\n\n(1) be picky with your elements in the array\n\n(2) iterate backwards\n\n(3) perform any arithmetic on the data", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "5ca4b8c89150a49bbdc73a2b3c42e3a5ee9e39665ccaa18aabb53d4c1889dc54", "datetime": "2023-01-10T09:44:28+00:00" }, { "message_id": "ebbd0367022690456da07d7e062109cf5541c12054cdc11cb4ed2d781098203e", "sticker": null, "text": "So the expression is the name of the iterable", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": "d386c7f04a3a6c95efbd23cccc6350c309c3335a643016b0bce0082a8c6ffa21", "datetime": "2023-01-10T09:46:33+00:00" }, { "message_id": "642cade3cd8bef32e79b2c7c9a6e7e7faf8057b8c1f283e2fe86399fa3b66c5f", "sticker": null, "text": "It’s the iterable itself. As your example states, it could be a method call returning an array (or list etc.)", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-10T10:15:15+00:00" }, { "message_id": "534e91217d8e4ea78c1126f9ef58f6e8990b96c9b9dd2c54c7adf119846c2647", "sticker": null, "text": "Ok thanks", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": "642cade3cd8bef32e79b2c7c9a6e7e7faf8057b8c1f283e2fe86399fa3b66c5f", "datetime": "2023-01-10T10:26:22+00:00" }, { "message_id": "15f7bc8dc97c17ce552c3243b19c27068fa69a4a23be600238ccb1e42157d801", "sticker": null, "text": "What about the declaration", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": "642cade3cd8bef32e79b2c7c9a6e7e7faf8057b8c1f283e2fe86399fa3b66c5f", "datetime": "2023-01-10T10:26:43+00:00" }, { "message_id": "eb8d33ba6b24ee61f6d0d850d3848bb533195af48d3529eafccfdbc4b06908ec", "sticker": null, "text": "The result is -126.\n\n**Explanation***\n\nConverting from int to byte involves typecasting as you've shown.\n\nDo you remember your number bases from Algebra class? If you convert from a bigger to a smaller base, you divide.\n\nThe byte has range -128 to 127.\n\n**Two things to keep in mind**\n(1) Is the number positive or negative? If it's positive, we will add 1 to the result we'll get from division. This is called the Two\"s complement. Note that if we divide the -128 to 127 range to negative and positive, we have -128 to 0 and 0 to 127. Java starts index from 0 so depending on the sign, we add or subtract 1\n\n(2) Is the number even or odd? \n\nOk. Let me consider your case.\n\nThe answer is -126 in bytes.\n\nWhy?\n\nStep 1: divide 130/128 = 1.015625\n\nBut this result is stored in an int variable so Java truncates it to only the Integer value. Hence, we get only 1\n\nStep 2: Because the result is positive, it's in the 0 to 127 range. To get to 128 we need to add 1. Thus, we have 1+1=2 \n\nStep 3. 2 is an even number do we do the following. \n\nDividend - divisor × result\n130- 128×2 = -126 in bytes", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "21c5a07ac2f93859dfb97bd13f3c254890661aefe1f3826b76b67d5fea9e1d20", "datetime": "2023-01-10T12:20:11+00:00" }, { "message_id": "d895d4a88fd8385cbf526dff7b9ac306434250dee9e463a3c45acef3f191faa6", "sticker": null, "text": "I'm writing a series on typecasting. Hope to add this", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "eb8d33ba6b24ee61f6d0d850d3848bb533195af48d3529eafccfdbc4b06908ec", "datetime": "2023-01-10T12:25:09+00:00" }, { "message_id": "72ea4356536578a22a268b6d41cef278499824b6684c567a8e4b2c5399f8f2ea", "sticker": null, "text": "Recommend several Java learning video websites", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-10T14:17:32+00:00" }, { "message_id": "7a8e4528af337605a819ba69f97d7fa9ade5b9049fc0f9d7f0561190a51934c7", "sticker": null, "text": "That’s the variable String name", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "15f7bc8dc97c17ce552c3243b19c27068fa69a4a23be600238ccb1e42157d801", "datetime": "2023-01-10T17:39:35+00:00" }, { "message_id": "93e1412a7f9e5aabe311f7260e94b651d776ffa37ecea5f5e1c50d51a58dad50", "sticker": null, "text": "hiii", "from_id": "08f3e4edf5582abf06873b887f344bc1b87692d496aaea07e364226a1c12c2fa", "reply_to": null, "datetime": "2023-01-10T21:07:42+00:00" }, { "message_id": "2e5d1654e3ff64f6a3979a8d55365b0f5f21e9607eb900c9487538ca77b489d7", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "72ea4356536578a22a268b6d41cef278499824b6684c567a8e4b2c5399f8f2ea", "datetime": "2023-01-11T07:35:48+00:00" }, { "message_id": "3adfb93bd806001cd6610f3f10879faea2f0771385504e53e85b9c85030685b2", "sticker": null, "text": "How to know which programming language Android app is made in?\n\n*App is already in my phone", "from_id": "ce2b2fd9625b623acd12c3855a11451a020be6594c528b39343e2dab88bfd1a5", "reply_to": null, "datetime": "2023-01-11T11:14:12+00:00" }, { "message_id": "4ee2f6a89c5bfec857df77322660522690e28c13610ac1d978c7d8236405bebf", "sticker": null, "text": "An easy way is to go online, type the apps name and check on Wikipedia. Developers put info on their apps especially on what Programming language or frameworks used.\n\nYou may also check your process manager to see if the Virtual Machine (VM) is active when the app is running. \n\nIf it's active, it's likely it was built in Java, C#, Jython, Kotlin or any language that runs on the virtual machine, especially the JVM, if you're on android", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "3adfb93bd806001cd6610f3f10879faea2f0771385504e53e85b9c85030685b2", "datetime": "2023-01-11T13:28:15+00:00" }, { "message_id": "434ae95449957611ab48a90d1a659d94f403dc28bc674ec0ef6f22c3c9b77353", "sticker": null, "text": "dm me", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "a8378b9b5bc7c4535d24c3eb5dced936ce65119f7edf6a75afe2e2c491a36ab6", "datetime": "2023-01-11T14:45:09+00:00" }, { "message_id": "65e57b20c9748da11be54ffb636be4de471117cf6136f1021f5557c860f1ee54", "sticker": null, "text": "You can easily unzip it by changing the extension to .zip", "from_id": "062207335eb621887a08d7821ec8853afa896b4d67bd6ff23486d58517bcfd8a", "reply_to": "3adfb93bd806001cd6610f3f10879faea2f0771385504e53e85b9c85030685b2", "datetime": "2023-01-12T12:36:00+00:00" }, { "message_id": "d492906b457043b9515d16ba5b0f422aa8d7920509f256f8a2a5c79fe4a0231f", "sticker": null, "text": "Hi all.\nI need java program for shuffle numbers.\nInput : 123456\nOutput : 214365\n\nAnyone knows please send me program.", "from_id": "d9c614cb558fcf42eb1e8cc40f28eaf9583586a92e983dcb2153ea5ff41ac7ae", "reply_to": null, "datetime": "2023-01-12T14:56:50+00:00" }, { "message_id": "5bdb24c8df39a0032dcc6e24b62f7fad76c5aa5cad723a8d2d176375dd5c4b56", "sticker": null, "text": "Hi all.\nI need java program for shuffle numbers without using inbuilt method.\nInput : 123456\nOutput : 214365\n\nAnyone knows please send me program.", "from_id": "d9c614cb558fcf42eb1e8cc40f28eaf9583586a92e983dcb2153ea5ff41ac7ae", "reply_to": null, "datetime": "2023-01-12T15:35:53+00:00" }, { "message_id": "f92748bb273e97ebed0271b49135fd5fc467b8a56cf63c8db127c8dec8a1a27a", "sticker": null, "text": "I wrote it to you", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "5bdb24c8df39a0032dcc6e24b62f7fad76c5aa5cad723a8d2d176375dd5c4b56", "datetime": "2023-01-12T15:47:31+00:00" }, { "message_id": "e0358fca85c3358b650fab60843aeaf9cf7071f31536f98a52518e19dbef0795", "sticker": null, "text": "Bro without using collection", "from_id": "d9c614cb558fcf42eb1e8cc40f28eaf9583586a92e983dcb2153ea5ff41ac7ae", "reply_to": "5bdb24c8df39a0032dcc6e24b62f7fad76c5aa5cad723a8d2d176375dd5c4b56", "datetime": "2023-01-12T15:56:04+00:00" }, { "message_id": "cf47d2308b059cbd28c9214cd03c685d12af70b09dc390236ea68287c670abfa", "sticker": null, "text": "I want shuffle like 1st and 2nd element shuffle then 3rd and 4th then 5th and 6th", "from_id": "d9c614cb558fcf42eb1e8cc40f28eaf9583586a92e983dcb2153ea5ff41ac7ae", "reply_to": "f92748bb273e97ebed0271b49135fd5fc467b8a56cf63c8db127c8dec8a1a27a", "datetime": "2023-01-12T15:57:45+00:00" }, { "message_id": "75989ac5135cf6b3a16cf485158660bf6a964c5c11bf7479d6f78338c2984aa1", "sticker": null, "text": "We won’t do your work for you. What problems are you having? Why can’t you do it", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "cf47d2308b059cbd28c9214cd03c685d12af70b09dc390236ea68287c670abfa", "datetime": "2023-01-12T16:04:08+00:00" }, { "message_id": "8453a51a39890086f260ffab176cb1c34b49971f802b9ea66a39ee895f9ab36e", "sticker": null, "text": "Heyyyyyyy how are you ???", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "75989ac5135cf6b3a16cf485158660bf6a964c5c11bf7479d6f78338c2984aa1", "datetime": "2023-01-12T16:04:53+00:00" }, { "message_id": "1fe1dccbfed1b2cc8fd4a7d6677bfbf1ee3bbb01b65e30aad4cba829f2968d79", "sticker": null, "text": "/stat@#USER", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": null, "datetime": "2023-01-12T16:05:00+00:00" }, { "message_id": "955bc2b1cc998e571a4c20619ee724b71bb8fbb198a489aa8799ce06462716a2", "sticker": null, "text": "Total messages: 114069", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-01-12T16:05:00+00:00" }, { "message_id": "8ea0a7065b39e8472d8c81f23b8d4abddb8a354c46eb5153fcc8aefa0138a307", "sticker": null, "text": "I hope you remember me", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "75989ac5135cf6b3a16cf485158660bf6a964c5c11bf7479d6f78338c2984aa1", "datetime": "2023-01-12T16:05:23+00:00" }, { "message_id": "882eb090e970901a5b6adedd1babed94e2e48ee5d3beea260dc5ff2c913eacbf", "sticker": null, "text": "I want to get started with using java for backend", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": null, "datetime": "2023-01-12T16:45:06+00:00" }, { "message_id": "9b1f4155542b24035eb8545631a58aa742da417a143c74f167af526d678879d4", "sticker": null, "text": "Please where/how do I start \nResources say servlets but no clear description on how to start with that", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": null, "datetime": "2023-01-12T16:45:52+00:00" }, { "message_id": "354c2f15173f9e5a7d7bebce91585a9b15b967467956845b8e1b52af3b9c46fd", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "9b1f4155542b24035eb8545631a58aa742da417a143c74f167af526d678879d4", "datetime": "2023-01-12T18:35:15+00:00" }, { "message_id": "aa015086e3cb9727192ecd970db6dfc8e37797675a9532b972ecc60439773507", "sticker": null, "text": "I have a video tutorial for learning servlets. I used it myself when I started learning Java for backend. If you want it I can share you a download link", "from_id": "ff05cc331267264d4900255e0b8699ae71f94d25deedaba67d3479d83d82e5ae", "reply_to": "9b1f4155542b24035eb8545631a58aa742da417a143c74f167af526d678879d4", "datetime": "2023-01-12T19:40:03+00:00" }, { "message_id": "c0a11f716b7010723c49c9c4fb8fd4c731c80211f4cd2fc5ca7fae63bafc161c", "sticker": null, "text": "Hello, I want to learn java, could you give me a course recommendation or a study document?", "from_id": "91279247b39e59bf3ab453c0f3bcb94802d9424c86f790639570dde0b35b676b", "reply_to": null, "datetime": "2023-01-12T22:48:38+00:00" }, { "message_id": "f5c64470e5335ed6ba2f1ff40ce370345ed15346a344794b8b3f96f36b6c41cc", "sticker": null, "text": "Is love that", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": "aa015086e3cb9727192ecd970db6dfc8e37797675a9532b972ecc60439773507", "datetime": "2023-01-12T23:10:44+00:00" }, { "message_id": "4301130f8a30fe5b1311345e039a07a914bf54afd7f01084f969d26861cb1184", "sticker": null, "text": "This isn't really useful to me", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": "354c2f15173f9e5a7d7bebce91585a9b15b967467956845b8e1b52af3b9c46fd", "datetime": "2023-01-12T23:11:30+00:00" }, { "message_id": "197630f916938565945eb43890d04490d09daab02c8378d314c9e658b2246577", "sticker": null, "text": "I already use java in other fields\nI'm just looking for how to get started with java backend", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": null, "datetime": "2023-01-12T23:11:52+00:00" }, { "message_id": "d27b34ac896980d44c3f136c5d6c03347d7dbea33010000f538507ca9d85f908", "sticker": null, "text": "This is how I did it:\nI learned servlets then Hibernate as ORM at last Spring boot and Spring security frameworks. You may prefer to learn in different order but I suggest to start learning Hinernate before Spring boot.", "from_id": "ff05cc331267264d4900255e0b8699ae71f94d25deedaba67d3479d83d82e5ae", "reply_to": "197630f916938565945eb43890d04490d09daab02c8378d314c9e658b2246577", "datetime": "2023-01-12T23:31:30+00:00" }, { "message_id": "a37695624210a98e4a8f465b0f87c730c974a80f318ceb062d5bf65cd3060f53", "sticker": null, "text": "Thanks !!", "from_id": "0c484cfb8c945a31375a84da438204598fe9e407319ae248ee23ece8c56090a1", "reply_to": "d27b34ac896980d44c3f136c5d6c03347d7dbea33010000f538507ca9d85f908", "datetime": "2023-01-12T23:34:01+00:00" }, { "message_id": "e7d68f7b8ce2607daa34f668e12f948b4900ab1e48abc4410a00f09aa384d4f9", "sticker": null, "text": "I will send you the link a little later", "from_id": "ff05cc331267264d4900255e0b8699ae71f94d25deedaba67d3479d83d82e5ae", "reply_to": "a37695624210a98e4a8f465b0f87c730c974a80f318ceb062d5bf65cd3060f53", "datetime": "2023-01-12T23:36:19+00:00" }, { "message_id": "25bee611c1528a19d94aeeac002c151a881f08661116a443cd4cba44f26e8c55", "sticker": null, "text": "Your welcome.", "from_id": "ff05cc331267264d4900255e0b8699ae71f94d25deedaba67d3479d83d82e5ae", "reply_to": "a37695624210a98e4a8f465b0f87c730c974a80f318ceb062d5bf65cd3060f53", "datetime": "2023-01-12T23:36:43+00:00" }, { "message_id": "8a3452784b7d770b816f2d809a0167dece7fdb53e230616323a007379fc674be", "sticker": null, "text": "Hello friends, I work in reverse engineering, if anyone has any questions or help or projects, send me a message", "from_id": "06ff26b33c3d8d829bd23325dab6f22bfa86536dd7a3d6d0c10e66b09d8db6ea", "reply_to": null, "datetime": "2023-01-14T00:40:06+00:00" }, { "message_id": "4e65334e1e802325ab2540dab91126677032520c745cb8a7db231a1fb4dc1c54", "sticker": null, "text": "How can I reverse engineering an apk file to make changes in app.\n\nI tried an tool and it created files in smali", "from_id": "ce2b2fd9625b623acd12c3855a11451a020be6594c528b39343e2dab88bfd1a5", "reply_to": "8a3452784b7d770b816f2d809a0167dece7fdb53e230616323a007379fc674be", "datetime": "2023-01-14T03:38:13+00:00" }, { "message_id": "cf6ce2de572e7d1594eb67ef9dd2918b4c020910a3233be3f77a0b6ae73e8c48", "sticker": null, "text": "I have a flutter app need to reverse engineer how the API signature algorithm works\nI Try to decompile with jeb or jadx, I can’t find any useful Java code on that apk file, could you\nHelp take a look on this app?\nOfz, I will pay, feel free to pm me", "from_id": "fc31139a75699d681b3644e564ae0f8a03d35fe76e606a9ea5095b946f304a2c", "reply_to": "8a3452784b7d770b816f2d809a0167dece7fdb53e230616323a007379fc674be", "datetime": "2023-01-14T04:05:23+00:00" }, { "message_id": "2bbd0b696c6b3bde05b7350366f89c08913a938d18a036860ae9038fc8da99dc", "sticker": null, "text": "how to use ReplyKeyboardMarkup", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-14T06:56:43+00:00" }, { "message_id": "3fae3b91a2e4811960a32cd9cf9ad5ed2d31cfc97c861e2d945c9b942d6aa9a4", "sticker": null, "text": "ReplyKeyboardMarkup?", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-14T07:00:45+00:00" }, { "message_id": "93c3a82856c50807952878ea0f4df713f8ca7240ce0ee3f9470d6eac2674bbcd", "sticker": null, "text": "I only do windows apps\nBut I also have advanced Android courses. If you want, send me a message and I will send you a professional crack", "from_id": "06ff26b33c3d8d829bd23325dab6f22bfa86536dd7a3d6d0c10e66b09d8db6ea", "reply_to": "cf6ce2de572e7d1594eb67ef9dd2918b4c020910a3233be3f77a0b6ae73e8c48", "datetime": "2023-01-14T10:37:02+00:00" }, { "message_id": "2c440d12fc4b2ddf57240aa7f4f265a3a35d0a86b8fcbac8758ddb4083f05443", "sticker": null, "text": "You must compile with the program and look for that command\nI know Android, but I don't crack it", "from_id": "06ff26b33c3d8d829bd23325dab6f22bfa86536dd7a3d6d0c10e66b09d8db6ea", "reply_to": "4e65334e1e802325ab2540dab91126677032520c745cb8a7db231a1fb4dc1c54", "datetime": "2023-01-14T10:38:58+00:00" }, { "message_id": "3778d060403a50cea0a53622fa83f733b53fb9dc68aa791d26ddff11d05d54e4", "sticker": null, "text": "First ! First thing! Before you doing any movements, before you thinking about \"HelloWorld\", even before you type \"Java Course\" in google. Youtube - > BroCode -> Java for beginners.", "from_id": "a0bfe76b2aa75b9b96146f197463e258d4ecf09d0dd8b588792693b74e11c275", "reply_to": "c0a11f716b7010723c49c9c4fb8fd4c731c80211f4cd2fc5ca7fae63bafc161c", "datetime": "2023-01-14T20:16:13+00:00" }, { "message_id": "d807366facdd9c75a2c7aaf253c312f00c3739d13768d78847fcf314ab58f0b5", "sticker": null, "text": "JFrame still use in normal working\n?", "from_id": "43938986b978a38d0796a93f5fe52579646fa82f2d8141d811ac2d5d8e3aef3c", "reply_to": null, "datetime": "2023-01-15T01:17:41+00:00" }, { "message_id": "45e56a246bc76d556675bb6f82db8033c9db649545f6ef5d97c1ccc45cd0b1ea", "sticker": null, "text": "most java web projects already base on springboot", "from_id": "43938986b978a38d0796a93f5fe52579646fa82f2d8141d811ac2d5d8e3aef3c", "reply_to": null, "datetime": "2023-01-15T01:20:13+00:00" }, { "message_id": "b72d87c828741dd7d7b656cfb320823589b0a5cfb64af684ce7e32c97d97d7b7", "sticker": null, "text": "Without DSA is it possible to become java developer?", "from_id": "6bde88c1cec3900238b76165e126a9dc2ff03f3c92a7f9ca3284cf47530f4c3b", "reply_to": null, "datetime": "2023-01-15T01:29:08+00:00" }, { "message_id": "eb1828ea452407db2832ffe560e912852f9018dea95963ff675b9414cebf92f8", "sticker": null, "text": "hello i have a question.", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-01-15T11:39:08+00:00" }, { "message_id": "d8a752e4759bea70188710371e5f0216ef6fa9e962baa0cd2e0f034e14431b7e", "sticker": null, "text": "Hey guys \nDo u know why when we want to calculate the run of a code it always shows 0.0?", "from_id": "206f93a967908d3f6b580d6e8297461981441a1402db301193870bae74e74f60", "reply_to": null, "datetime": "2023-01-15T13:49:50+00:00" }, { "message_id": "a7aa4a3ac1fbf0c79bf188a80f532db2098114c856832ba0f206fc79ed12c0c2", "sticker": null, "text": "?", "from_id": "0674d29fa70a39c67279c852a46846db37ffd5f073591767d70484d87a724680", "reply_to": "eb1828ea452407db2832ffe560e912852f9018dea95963ff675b9414cebf92f8", "datetime": "2023-01-15T13:51:36+00:00" }, { "message_id": "19d74a45a0319d678ad5482be73f909ae6ee57f65326de48132fbd5a5cfcdc33", "sticker": null, "text": "Hello thier", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2023-01-15T16:40:05+00:00" }, { "message_id": "d77275f282fe12b25f3c3a007b9201a61e3a1b74e57777e6b6c928ed87d0bd92", "sticker": null, "text": "How are guys", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2023-01-15T16:40:09+00:00" }, { "message_id": "5371b2a7618b5982a14dc006ea183cafed6a971800294a433f9d57822e400195", "sticker": null, "text": "What's up", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2023-01-15T16:40:12+00:00" }, { "message_id": "a792a25bc43688f0e4cace890b59bfeda88f24b55928561f26469a8bfff25d2b", "sticker": null, "text": "Hi all , is it possible to add job postings in the group ?", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": null, "datetime": "2023-01-15T17:17:27+00:00" }, { "message_id": "5c1d9c481590b902b1e54a8a03c34f0ccaadb5e32825ed0388046930b67a506e", "sticker": null, "text": "Yes as long as you get permission and they are legitimate", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-15T17:24:23+00:00" }, { "message_id": "4344809f97550a65be7a714f42903abb0075b85779d4493e4a7b23a18ce10556", "sticker": null, "text": "He how are you ?\nAll right then for those in need I offer my availability for help in java.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "5c1d9c481590b902b1e54a8a03c34f0ccaadb5e32825ed0388046930b67a506e", "datetime": "2023-01-15T17:26:06+00:00" }, { "message_id": "9bfad8d8ba73446f0c1bdc3ce7c23dfc50664790983006960865a8503ef76201", "sticker": null, "text": "That’s not a job posting", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-15T18:30:29+00:00" }, { "message_id": "afe12acbd286ac688442f4f9fc060790855d4a6307d04a578fead0b8641f91de", "sticker": null, "text": "No, it's me offering to help", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "9bfad8d8ba73446f0c1bdc3ce7c23dfc50664790983006960865a8503ef76201", "datetime": "2023-01-15T19:00:25+00:00" }, { "message_id": "a34dc139ad5cc6ad97d91ce788ae69620436c278ab0d86182644a40277e37acb", "sticker": null, "text": "You can offer to help but you asked about job postings 😊", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-15T19:25:29+00:00" }, { "message_id": "d9b106b46b75f7076a4ce8912cf9bd47c8e8a747230e0f4a51e95a465fdb0d2a", "sticker": null, "text": "Yes you're right, damn translation hahahahah.\nAnyway yes I volunteer to help", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "a34dc139ad5cc6ad97d91ce788ae69620436c278ab0d86182644a40277e37acb", "datetime": "2023-01-15T19:35:17+00:00" }, { "message_id": "492053065ed017f42aae8c1f37647cec9d3d2b464f8760bb4ba0373b0309a0ea", "sticker": null, "text": "Hi we need more information.\nYou should post your question better", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "d8a752e4759bea70188710371e5f0216ef6fa9e962baa0cd2e0f034e14431b7e", "datetime": "2023-01-15T19:40:18+00:00" }, { "message_id": "0bf8531a8a41e976ca4e581337fef10c7de0a183d8f6cfd1cecc44cf297c6e5e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "eb1828ea452407db2832ffe560e912852f9018dea95963ff675b9414cebf92f8", "datetime": "2023-01-15T21:35:03+00:00" }, { "message_id": "a886193d34ad7cf8579d2dc356225c56fd11a8eff43658ad97a4bbc30734e957", "sticker": null, "text": "What kind of task and please put your time zone.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "551201797d84ce294841558b2f797860537270af37756c0f25bc0cc739cdbeb4", "datetime": "2023-01-17T16:57:24+00:00" }, { "message_id": "eb163317e86ad393b741c7266dd99459bd46b2b7e8d5b7a2a22ebf8822c31397", "sticker": null, "text": "hy", "from_id": "0033ccb42a3f9dfbc110c5de2865d26642ebe9d5979b41b71a27cb613274f770", "reply_to": null, "datetime": "2023-01-18T02:45:56+00:00" }, { "message_id": "8eeaf3676924d7b959d654d15456ef35316d3233f7a1cbd2bebf1f5ccecc4758", "sticker": null, "text": "dm", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "11f23affbda78ff52f6ca41f0de4cfaf982a002cc9e8afbb2752bd0748289699", "datetime": "2023-01-18T03:22:53+00:00" }, { "message_id": "6e7024ae7a491c1127a5c3c353550beb589611d742e35d50502852104852aca0", "sticker": null, "text": "Dm", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "11f23affbda78ff52f6ca41f0de4cfaf982a002cc9e8afbb2752bd0748289699", "datetime": "2023-01-18T04:15:57+00:00" }, { "message_id": "d90550c2cf49c7927c7cf4870f2df665855848f8128b7394b187286c7c18d268", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-01-18T08:18:22+00:00" }, { "message_id": "47434820ff2b6380505dd85e2f52153df6cf1960540c2fc02bde90d4c0b1280b", "sticker": null, "text": "These are the jobs he's trying to post.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "d90550c2cf49c7927c7cf4870f2df665855848f8128b7394b187286c7c18d268", "datetime": "2023-01-18T08:20:07+00:00" }, { "message_id": "90f722c115c04247faff974dfcc5b052cb06012a2a06478fefc456b4431d0e5a", "sticker": null, "text": "Hello, I have a question about AI. Are ChatGPT and AlphaCode going to replace programmers? And will programming forums be closed?", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2023-01-18T13:04:22+00:00" }, { "message_id": "a8af91bbcfc8968d804487ef3d6b090ea3a69c0cfc8d530bbe7bbd4446680da3", "sticker": null, "text": "Hi, I don't think even for gpt chat it's not perfect.\nHe thinks he's wrong too hahahah.\nThe programmer will never die", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "90f722c115c04247faff974dfcc5b052cb06012a2a06478fefc456b4431d0e5a", "datetime": "2023-01-18T13:06:14+00:00" }, { "message_id": "b47e3f9ef6d9978db9baf4aade28f068c7776625c4c3170f9c2e86e451edce98", "sticker": null, "text": "Which country do you think has the best programmers?", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-18T13:12:08+00:00" }, { "message_id": "c8c7f8d457d8f9f79e78fcde80a76f3ecf1c5cab5010fe60739cdbc2fe4f662c", "sticker": null, "text": "Afghanistan, without any doubts", "from_id": "63e1ebcae009afc49650721f032cb814f1ff7c1013413dec51ce491b8dd056ba", "reply_to": "b47e3f9ef6d9978db9baf4aade28f068c7776625c4c3170f9c2e86e451edce98", "datetime": "2023-01-18T13:13:31+00:00" }, { "message_id": "01fb86857ecbd6925291a618f7ba240f2774b7352f906d1d133a8c6a94fb5404", "sticker": null, "text": "In my personal opinion they are the United States and India", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "b47e3f9ef6d9978db9baf4aade28f068c7776625c4c3170f9c2e86e451edce98", "datetime": "2023-01-18T13:13:50+00:00" }, { "message_id": "a9fc2cc926afa3dfce081a12108e9b30596ce7c949c00f5839e7d376b9641c30", "sticker": null, "text": "I think it's my country, North Korea, because if you don't do it well, you may be shot", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-18T13:16:28+00:00" }, { "message_id": "1168c55686c261e4917943223a31fe2bb8a64c65d37fc2635054c9077b35c4d5", "sticker": null, "text": "really?", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "a9fc2cc926afa3dfce081a12108e9b30596ce7c949c00f5839e7d376b9641c30", "datetime": "2023-01-18T13:17:03+00:00" }, { "message_id": "07e1d6be91e1038904def72d18baf372720376daf66825f543bcfe989bb6607e", "sticker": null, "text": "😂😂😂", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-01-18T13:17:21+00:00" }, { "message_id": "72b49568761d5346bb88cd76d49e10a1936c729659cc0509039fb10b5d43ea39", "sticker": "919985748604616739/919985748604617701.gif", "text": "", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": null, "datetime": "2023-01-18T13:17:28+00:00" }, { "message_id": "e99b3d1b42168afd716953a0954ae09cc6f28fd2e7761f3053f65daa840acf4a", "sticker": null, "text": "That's true,cause this is North Korea.Everything you do is for the country and political.If you don't do it as well as they told you.you gonna be shot😂", "from_id": "ff9deb6af26044e0255b76766989bd0b7d2d5e2e215a0b0cf32d8153421a66dd", "reply_to": "1168c55686c261e4917943223a31fe2bb8a64c65d37fc2635054c9077b35c4d5", "datetime": "2023-01-18T13:42:40+00:00" }, { "message_id": "befab688fcce37cc3007baaf700a958234ef5a304141ed3dc3cfbf022f2bb1e9", "sticker": null, "text": "Do you think that they are more dangerous that Taliban?😂", "from_id": "63e1ebcae009afc49650721f032cb814f1ff7c1013413dec51ce491b8dd056ba", "reply_to": "e99b3d1b42168afd716953a0954ae09cc6f28fd2e7761f3053f65daa840acf4a", "datetime": "2023-01-18T13:45:34+00:00" }, { "message_id": "3a5b0e009893e4e9cbe8d08f6c6a7a15f6de575123582a739784a5b4dce34180", "sticker": null, "text": "In my personal view india have more programmers. But USA have better programmers.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "b47e3f9ef6d9978db9baf4aade28f068c7776625c4c3170f9c2e86e451edce98", "datetime": "2023-01-18T14:14:23+00:00" }, { "message_id": "45238e62ed18a7d243e45a9410e240068599c2ff0d5c139a6091f56355568fef", "sticker": null, "text": "USA have more better environment provide to programmers.\nlike more big tech company or high salary.\nBut USA's programmers are make up by many country's people.\nIs that right?", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-01-18T15:23:46+00:00" }, { "message_id": "cd3f7b44d2415e1e6d7a85420c4613c06983db144a4fe41dc9cef8518455c39f", "sticker": null, "text": "There are no \"best\" - it's all about the demand for the end user. For example, our HR software is 10x better than anything abroad. The efficiency standards are better abroad, but then customer service is horrendous.\n\nThere's never a best. Take your programming skills and apply them towards a company based on THEIR use case. My healthcare business, many programmers abroad don't understand the concept. However, if I tell them I need a API, they do it without thinking. People abroad have a tendency to try and catching a flying knife. Some can do it! Haha. Most can't.\n\nI am using SellFul.com and looking for anybody who wants ground floor to a new ERP that's gaining ground here. A full stack product with ugly guts, but in time they will prevail here (at least in my client sectors). Per project preferred. Complete automation of e commerce that is consumer driven (because our country you have to hand hold...😁).", "from_id": "943b865e3530b4377f1be5a1977e96f09faaa3912201e319cb973ddca6914cf9", "reply_to": "b47e3f9ef6d9978db9baf4aade28f068c7776625c4c3170f9c2e86e451edce98", "datetime": "2023-01-18T15:29:58+00:00" }, { "message_id": "a151c35ffa7b4d31f3251a3b20dfa1b2de8baa8cc75d922063dbc446897fe6eb", "sticker": null, "text": "11", "from_id": "943b865e3530b4377f1be5a1977e96f09faaa3912201e319cb973ddca6914cf9", "reply_to": null, "datetime": "2023-01-18T17:28:56+00:00" }, { "message_id": "79eb3d9a9a21c853ec5a7172f4da9c4f5d19eae4dec0a0fedd2aad3c92eeb912", "sticker": null, "text": "Anyone here from Java batch of saurabh sir (my sir g) ?\nI want to know is it worth it to purchase the Java batch of saurabh sir?", "from_id": "f3f74a3ae13cb43409b802a3bcdb79419a94dbe5b86d7739bf468a71fca37344", "reply_to": null, "datetime": "2023-01-19T05:06:53+00:00" }, { "message_id": "7825d1b8e664a800703d3cd8f376811739c9469a9172692c69cc80e465cb6e6b", "sticker": null, "text": "China Korea Russia", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": "b47e3f9ef6d9978db9baf4aade28f068c7776625c4c3170f9c2e86e451edce98", "datetime": "2023-01-19T06:21:26+00:00" }, { "message_id": "1416cae1b199d357267a45089ad8199057704a68259addbddaba4b4a05debd60", "sticker": null, "text": "I can bet my ass on it", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": "7825d1b8e664a800703d3cd8f376811739c9469a9172692c69cc80e465cb6e6b", "datetime": "2023-01-19T06:21:42+00:00" }, { "message_id": "a3bff3b4e999c5ede8ca928a9e284a8401e9dac77a3667eb905a99840a6067bc", "sticker": null, "text": "What's your level , beginner intermediate,", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": "79eb3d9a9a21c853ec5a7172f4da9c4f5d19eae4dec0a0fedd2aad3c92eeb912", "datetime": "2023-01-19T06:22:44+00:00" }, { "message_id": "fa1e2becdefe6e9b0b5340f8cb19256f5cb46f3d5cec58470c6e8b8c23833ada", "sticker": null, "text": "Oh no no , I thought Ethical hackers not programmers", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": "1416cae1b199d357267a45089ad8199057704a68259addbddaba4b4a05debd60", "datetime": "2023-01-19T06:23:16+00:00" }, { "message_id": "3909e7684a7be6984fffa0238f7b891450f04c0700f67b1900121d9605103a2f", "sticker": null, "text": "it's prejudice.USA have more hackers than these country.\nSuch as PRISM in 2007, undersea oil pipeline leaked in 2020 by hackers", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": "7825d1b8e664a800703d3cd8f376811739c9469a9172692c69cc80e465cb6e6b", "datetime": "2023-01-19T09:15:48+00:00" }, { "message_id": "d8ec3bb37d2bab12095cebbe4d65667208269066efa4b52e466762cf273fcd49", "sticker": null, "text": "USA is silent 🔕", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": null, "datetime": "2023-01-19T09:17:27+00:00" }, { "message_id": "d0acfee4cae7a0838cc40d805adbd5a743b7e89af7b3489cc5b3eccd13a21e57", "sticker": null, "text": "They are worst case", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": null, "datetime": "2023-01-19T09:18:07+00:00" }, { "message_id": "024440aca92b329c4c461026f4a5667b6464b5de6590cd2feadbaf13cb7b1a62", "sticker": null, "text": "Mofos are every where , every field", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": null, "datetime": "2023-01-19T09:18:26+00:00" }, { "message_id": "8278c3e7d7c96de3fbcd2487de05ec663a2f2b3a988559186fc6d84aed3dc021", "sticker": null, "text": "Hello everyone, can anyone tell me what is the difference between LinkedList and ArrayList", "from_id": "b8de756dc9ae673d14097345fe40563a973ae4359745ca01b8a3ef9f2f20fde5", "reply_to": null, "datetime": "2023-01-19T12:47:28+00:00" }, { "message_id": "d90ebeca2f848b2e64edd53531185cd6c6abab16d63c521eaa6dd03a2f85909a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "8278c3e7d7c96de3fbcd2487de05ec663a2f2b3a988559186fc6d84aed3dc021", "datetime": "2023-01-19T13:17:07+00:00" }, { "message_id": "e815c0c902ee819bc9031ce727f462a036bc457f85898aab14910c1cb04f2196", "sticker": null, "text": "Or you can read source code of these classes\nThis is probably a better way to learn", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "d90ebeca2f848b2e64edd53531185cd6c6abab16d63c521eaa6dd03a2f85909a", "datetime": "2023-01-19T13:33:49+00:00" }, { "message_id": "223b6f159b526da623227702ffbbc1319146aa0eb275b12cc73cc7b1f849b9e4", "sticker": null, "text": "Is there anyone experienced with opengl?\nI'm trying to implement gui/hud library\nAnd i need someone with similar experience to discuss possible implementation problems or ask for advice", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": null, "datetime": "2023-01-19T14:00:54+00:00" }, { "message_id": "130e97651db06ab9919ae2e8ea105727e7038585532879b8b9bac64e072549a8", "sticker": null, "text": "I am beginner", "from_id": "f3f74a3ae13cb43409b802a3bcdb79419a94dbe5b86d7739bf468a71fca37344", "reply_to": "a3bff3b4e999c5ede8ca928a9e284a8401e9dac77a3667eb905a99840a6067bc", "datetime": "2023-01-20T06:51:39+00:00" }, { "message_id": "7831382dff9887d0833761f5178b47d6f2e689097efd2c3532802a6d7eb24cd2", "sticker": null, "text": "What kind of app", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": "20ab8cb75de23f33fdd7b826d13a488e406df098ff35c05754c4e92595af47eb", "datetime": "2023-01-20T08:46:18+00:00" }, { "message_id": "f96eb50a56ef51b5a822a74746edbe9e42736488561ab16d19041e9464e43fa1", "sticker": null, "text": "Total messages: 114507", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-01-20T12:07:57+00:00" }, { "message_id": "bee7dfd8d9573b44c28fc55a4dae9ca2525fdab2f35c76286196c2e5c66859d5", "sticker": null, "text": "hi \nevery one\ni am full stack developer and i wana help people \nwho wants to learn java for free from A to Z \ntell me or comes pv. \nim full stack developer \ni wana help you to learn more \n100 % off", "from_id": "a2efee9c1a924ad75347b20c3e5073b33f5f927432f8db7dcaf28b801d4c1e6c", "reply_to": null, "datetime": "2023-01-20T14:28:11+00:00" }, { "message_id": "524ce2694717490e1d1f93d92620030f94eb9acdc3c31f56c3733d301c5fc428", "sticker": null, "text": "dm", "from_id": "ff05cc331267264d4900255e0b8699ae71f94d25deedaba67d3479d83d82e5ae", "reply_to": "9b253e2f83429bcd4258ecfd7928e6860535e37cf37c5fe4a7a200c43c354e89", "datetime": "2023-01-20T17:21:09+00:00" }, { "message_id": "ce161d9ce73072f7a86432ecc9677bb48173520546e6453ad8f3a7fd681c0a7e", "sticker": null, "text": "need help!\nI'm getting error when click on run button (ctrl+alt+N) in VSCode - Error: Could not find or load main class Knapsack\nbut\n when I click on run button which is next to main, it is working fine. Any ideas?", "from_id": "5ff3cc70c3ecc84e8c72478c3c50b764e57b5eab0386c151ae3cebc50305defa", "reply_to": null, "datetime": "2023-01-22T08:51:51+00:00" }, { "message_id": "1bee38867c71254a87fed15c995d71e5765ae8a6702bdff263ab2eca8b0453d1", "sticker": null, "text": "maybe rebuild or restart", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-01-22T12:24:49+00:00" }, { "message_id": "ee4502c410ca5546f9832d2f5633856e9f110abcea4850ed4b4ab9415864f5be", "sticker": null, "text": "Hlo...im just starting to learn java\nCan you help me by giving some problems that i require to practice?", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": "bee7dfd8d9573b44c28fc55a4dae9ca2525fdab2f35c76286196c2e5c66859d5", "datetime": "2023-01-22T12:40:25+00:00" }, { "message_id": "bbaf23e05d9c0a9709bb4b451d5d2644a5805de983e7efdd4aa87e9d7fd81f91", "sticker": null, "text": "Learning in classes doesn't really feel like I'm really learning much", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": null, "datetime": "2023-01-22T12:41:11+00:00" }, { "message_id": "ec1e4f31711d13a079504263259200cf1fb71c8376a0cefdce517c1ff896e1a1", "sticker": null, "text": "And i really lack in coming up with ideas on my own", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": null, "datetime": "2023-01-22T12:42:04+00:00" }, { "message_id": "2a296c08660de599950c08b7bc8bdb726feadc8784f5be87917099cd3ebedff4", "sticker": null, "text": "Got it...thank you", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": "73626c7c330e8bd1e84db6a9d45f860abb35c9096b1b2c0e1bb58cb13f9291b0", "datetime": "2023-01-22T15:08:49+00:00" }, { "message_id": "b76b248bec83c6813a712ee7caa2f0ec2ad550111b46e4575cddbba6f7ee0b65", "sticker": null, "text": "Do you know any other language or have any idea about programming languages or you are a beginner", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": "ee4502c410ca5546f9832d2f5633856e9f110abcea4850ed4b4ab9415864f5be", "datetime": "2023-01-22T16:59:56+00:00" }, { "message_id": "b8b93f0ed5f7d7a7ada31d2cbd0ca7a25212cdc298940f6e949925c1f21928e8", "sticker": null, "text": "double sum = 0;\nfor (int i=1; i <= 100; i++) {\nsum += (1/i);\n}\nSystem.out.println(sum);\n\nwhy is my code not working???", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-22T17:16:33+00:00" }, { "message_id": "83d087d5b91ab8d479784e764e72bda829a70391167265637b846342a5b6b3b5", "sticker": null, "text": "im making a program to print the sum of 1/1 + 1/2 + 1/3.....1/100", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "b8b93f0ed5f7d7a7ada31d2cbd0ca7a25212cdc298940f6e949925c1f21928e8", "datetime": "2023-01-22T17:18:37+00:00" }, { "message_id": "09a979e6eb54caa16bfb5b7c362b49844fd45e99b206f410b830480ee3b7f525", "sticker": null, "text": "i dont get whats wrong", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-22T17:18:42+00:00" }, { "message_id": "de3f3b6a1936b346d744447b124845c7c766611b7b4f70a6f076b2ab7c83f03a", "sticker": null, "text": "it keeps on printing 1 only", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-22T17:18:48+00:00" }, { "message_id": "76b2f7f1e455d87537602e0b89340336e94e07e8f5c78aa68b0f12317397fdc4", "sticker": null, "text": "I suggest you to buy couple of books *with exercises*. \nExercises there are usually created to match the topic, and often they evolve topic by topic. When you're comfortable with the language itself, you can buy second book that targets the framework for what you're aiming for - backend or android. For the second book, choose the one where there's *single* application being developed through the whole book, that's the best one. I'm backend dev, so can tell you how this is for backend - usually there is some kind of \"shop application\" being developed chapter by chapter. It's very nice since the author not just goes topic by topic, but applies it", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "ee4502c410ca5546f9832d2f5633856e9f110abcea4850ed4b4ab9415864f5be", "datetime": "2023-01-22T17:19:14+00:00" }, { "message_id": "d2729e7e4adc3a8f79a9b496e46657213c75589d3d26fe6e6ad8ce5b97563d2a", "sticker": null, "text": "which IDE are you using?", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "b8b93f0ed5f7d7a7ada31d2cbd0ca7a25212cdc298940f6e949925c1f21928e8", "datetime": "2023-01-22T17:19:54+00:00" }, { "message_id": "1cead67dea176cd3097602011a62b5b72a4c771ba27ec70cbd165d84458d9871", "sticker": null, "text": "- Need freelancer specialist in Java\n- perfect in OOP \n- perfect in Spring boot framework and has a lot of projects in it\n- knowledge in flutter\n\nKindly, send your work to the direct message", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": null, "datetime": "2023-01-22T17:20:53+00:00" }, { "message_id": "ed7e5ba88a710c6ce9d52815029de5b5a6435ad6d11a295e2fe1d7872b8f95ba", "sticker": null, "text": "netbeans", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "d2729e7e4adc3a8f79a9b496e46657213c75589d3d26fe6e6ad8ce5b97563d2a", "datetime": "2023-01-22T17:21:32+00:00" }, { "message_id": "94770554e886b5eb89625cd3dfa8180bdf4108a4c2c802b3735f84098e612819", "sticker": null, "text": "PS: but nothing will give you more boost in your skills and overall understanding of the software development process than real job with more experienced people. So I highly recommend to try to get your first job ASAP. Or not necessarily the job per se, but just the opportunity to learn from people with experience. Internship or any kind of courses/academy where you can talk to real people.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "ee4502c410ca5546f9832d2f5633856e9f110abcea4850ed4b4ab9415864f5be", "datetime": "2023-01-22T17:23:31+00:00" }, { "message_id": "021784ec50efb68721cb20e477cd89aeee8ac3c365781a7958505e00fd412655", "sticker": null, "text": "Anyone knows where the logic error is", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "b8b93f0ed5f7d7a7ada31d2cbd0ca7a25212cdc298940f6e949925c1f21928e8", "datetime": "2023-01-22T17:25:47+00:00" }, { "message_id": "fea72b61f092a1c1fda319152a602686754a4b6970f0952247169586ca126534", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "ed7e5ba88a710c6ce9d52815029de5b5a6435ad6d11a295e2fe1d7872b8f95ba", "datetime": "2023-01-22T17:26:01+00:00" }, { "message_id": "baed7ac2d4b837e8541f428e4027f2d67788951c441ffe98d2a4cc427a8d11be", "sticker": null, "text": "The wrong in the fraction integer over integer", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": "b8b93f0ed5f7d7a7ada31d2cbd0ca7a25212cdc298940f6e949925c1f21928e8", "datetime": "2023-01-22T17:28:23+00:00" }, { "message_id": "ed5767855ee366ba81e51394279985a520c8b7df1b3aaf095e295aae913d092a", "sticker": null, "text": "I didn't use netbeans for more than 10 years, so the only thing I'm not entirely sure will work - is the build system you're using. I'm 99% sure that you don't use any build system yet. In that case things will work like in the video. But if you do use build system, then there might be a trick how to launch it in debug mode.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "ed7e5ba88a710c6ce9d52815029de5b5a6435ad6d11a295e2fe1d7872b8f95ba", "datetime": "2023-01-22T17:30:26+00:00" }, { "message_id": "3577d7b22bd71a07b12b509c97e6a4e52f29faf0d8fc39178e1c5b051118ef82", "sticker": null, "text": "Try double over int\n\nOr float over int", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": "b8b93f0ed5f7d7a7ada31d2cbd0ca7a25212cdc298940f6e949925c1f21928e8", "datetime": "2023-01-22T17:30:38+00:00" }, { "message_id": "534c2719ce9bed70d9e7ee40cd4480832ca4734c256e1c8bac764ebc64c9b9d4", "sticker": null, "text": "double sum = 0;\nfor (int i=1; i <= 100; i++) {\nsum += (1**.0f**/i);\n}\nSystem.out.println(sum);", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": null, "datetime": "2023-01-22T17:32:05+00:00" }, { "message_id": "88d3e769aa1b0ec03aeba5c5cad93c07298b383da0cb26e061da34f86ed9fd51", "sticker": null, "text": "you are smart", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "baed7ac2d4b837e8541f428e4027f2d67788951c441ffe98d2a4cc427a8d11be", "datetime": "2023-01-22T17:33:09+00:00" }, { "message_id": "39b0d2bd882d5ca506f0cf9748e0cf8221b4d631534c7bff7e1f4010e0778747", "sticker": null, "text": "i just changed the \"int\" i to \"double\" i and now it works", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-22T17:33:21+00:00" }, { "message_id": "59b6fab795fb80051782f3d4a8b679b82cfc7781bf1eea1604f0c164bc434334", "sticker": null, "text": "ur a legend tysm", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-22T17:33:23+00:00" }, { "message_id": "d79904f4ec414bde84c43f679ccb4c37e5135095506e0b0ef8f0b3358cafd90e", "sticker": null, "text": "Thanks 😅\n\nI am still learning", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": null, "datetime": "2023-01-22T17:34:13+00:00" }, { "message_id": "a750976b0227b6bacd4c2b83dda1edd564772dff2c5d1efd3158a414dfe346b5", "sticker": null, "text": "though why wasnt it working when it was an int?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-22T17:34:15+00:00" }, { "message_id": "cca66c2ab7b859a61095fb483fa5f17a0a0f29bf96bbf528f5b5261a1f852dba", "sticker": null, "text": "it should've printed the sum 5 instead of\n5.1873 in that case", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-01-22T17:34:37+00:00" }, { "message_id": "a51eb2a6ee5437380cd8f1fe06ba203e773a24202f3846237e3b81596bbabc1c", "sticker": null, "text": "Because the compiler consider it as integer", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": "a750976b0227b6bacd4c2b83dda1edd564772dff2c5d1efd3158a414dfe346b5", "datetime": "2023-01-22T17:35:24+00:00" }, { "message_id": "78b6b4e7df18491b7c2d0520b4c5985bbfb00db97076978d9af19b0996049f65", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "a750976b0227b6bacd4c2b83dda1edd564772dff2c5d1efd3158a414dfe346b5", "datetime": "2023-01-22T17:47:35+00:00" }, { "message_id": "cabdaca9a839e33bedd8b5402c0851aeff6c516613ab9b1d146f79475d6fb76c", "sticker": null, "text": "(last one particularly, if you're interested in integer math)", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2023-01-22T17:48:01+00:00" }, { "message_id": "a5b0c73396de1eb31b9aa50c8ea261f11b7c3b84012de67a779173eb8e552d0a", "sticker": null, "text": "I have really basic knowledge about C language and i mean i only know how a simple program works and few functions", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": "b76b248bec83c6813a712ee7caa2f0ec2ad550111b46e4575cddbba6f7ee0b65", "datetime": "2023-01-23T01:14:57+00:00" }, { "message_id": "ab7d999afb2847fddb6e72b0d579cb362799badd3fbedcfa8461bdd3a5755155", "sticker": null, "text": "it is easy cast the sum to integer", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": "cca66c2ab7b859a61095fb483fa5f17a0a0f29bf96bbf528f5b5261a1f852dba", "datetime": "2023-01-23T04:07:16+00:00" }, { "message_id": "6cd98240e9efeedcd19877330998e67fd4e6b19d8b48cbe3459f669c95beb6d7", "sticker": null, "text": "__(int)sum__", "from_id": "fcfa2c2770d5c629d84e7bfdf84880e2326afd8f20d75a32464100f6d25e7c9f", "reply_to": null, "datetime": "2023-01-23T04:07:47+00:00" }, { "message_id": "2d23a5d2ecb3752fc6fd662027f7dc5952c880f18bbc899c3fe606764e1f6627", "sticker": null, "text": "Anyone have used captcha solving services like 2captcha or others and tell me about his experience? was it good, bad ?", "from_id": "ff05cc331267264d4900255e0b8699ae71f94d25deedaba67d3479d83d82e5ae", "reply_to": null, "datetime": "2023-01-23T10:30:59+00:00" }, { "message_id": "afda204e917e58a693cc7ebfd6c03698aac17def4263c565df7875aa3d2e5368", "sticker": null, "text": "Yo", "from_id": "3415c893dd4141ad0a19c2d99c0a74fb0560fdff70ee70effbf280b48893776c", "reply_to": null, "datetime": "2023-01-23T12:08:58+00:00" }, { "message_id": "b991108deed0aac09ab96886bdf3f31210a8e3bcf9033a16a713f3a48626d4cc", "sticker": null, "text": "Hi", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": null, "datetime": "2023-01-23T12:09:18+00:00" }, { "message_id": "27b369c8d35eebf28a7881546ed61d8266f8bfb7482a63af13d3bbfe97eac56e", "sticker": null, "text": "How are you", "from_id": "3415c893dd4141ad0a19c2d99c0a74fb0560fdff70ee70effbf280b48893776c", "reply_to": "b991108deed0aac09ab96886bdf3f31210a8e3bcf9033a16a713f3a48626d4cc", "datetime": "2023-01-23T12:12:41+00:00" }, { "message_id": "08fa634c7f0101521ed7841bf6d38c52af1670a341aae6b9cf8fb3b1cf36b335", "sticker": null, "text": "??", "from_id": "a292bab554bf28a8faaa00dac5fe598a9c4d7ba2a9fb9eb4693154d03a870151", "reply_to": "2d23a5d2ecb3752fc6fd662027f7dc5952c880f18bbc899c3fe606764e1f6627", "datetime": "2023-01-23T12:17:40+00:00" }, { "message_id": "8ad19a9c4102b2e605d59e100da4a701074fa02cea8cbee09265be3d09a9d453", "sticker": null, "text": "Fine", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "27b369c8d35eebf28a7881546ed61d8266f8bfb7482a63af13d3bbfe97eac56e", "datetime": "2023-01-23T14:08:05+00:00" }, { "message_id": "cfa8bb872099a95c8d003ba434d5fb9d9167ffa51621af55d7718680c3835211", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ddf0c43458e3c5bdbdc9bd72f1edad4cce799ff17c5a91335bd4294b7cc1f79a", "reply_to": null, "datetime": "2023-01-23T16:40:47+00:00" }, { "message_id": "db6ace76895a732136378c4ddcaa32076d8886f883222f682b784322348e603c", "sticker": null, "text": "i have a question from javaFX \nwho can help me??", "from_id": "2463e883f25f3e2561d3462c658c0d9e5c6d8d39122b053ef7fadfa98173ff25", "reply_to": null, "datetime": "2023-01-23T19:10:43+00:00" }, { "message_id": "b54023db0e4088f85a33dae7d60759d772c5f374f1d64a9a955653ef7137c3f5", "sticker": null, "text": "make sure that the chosen file is a valid fxml document", "from_id": "2463e883f25f3e2561d3462c658c0d9e5c6d8d39122b053ef7fadfa98173ff25", "reply_to": null, "datetime": "2023-01-23T19:10:58+00:00" }, { "message_id": "3db4a5bc285dfd9cf062ee279884c7ce3aef9b325415a24156e63f15e165dd0f", "sticker": null, "text": "i wanna fix this problem", "from_id": "2463e883f25f3e2561d3462c658c0d9e5c6d8d39122b053ef7fadfa98173ff25", "reply_to": "b54023db0e4088f85a33dae7d60759d772c5f374f1d64a9a955653ef7137c3f5", "datetime": "2023-01-23T19:11:22+00:00" }, { "message_id": "233899a6eeba7b5cd984bf1e49b81d19004f338b59c994052b05f0a2668383e7", "sticker": null, "text": "Guys how to do in MainActivity action, where when the switch is pressed, some action is done", "from_id": "830b3a41fe80e745a1d05c59dfebbea3507509c5717f06835c7ede20e50bec56", "reply_to": null, "datetime": "2023-01-23T21:38:05+00:00" }, { "message_id": "0c98e3ef700ffcde35998b01ae4a26ad2cd6710835ead40ce65033557bdb90a9", "sticker": null, "text": "Not working in java because you are using integer division.When dividing one integer by another integer, the result is rounded towards zero. So when you divide 1 by the numbers 1 to 100, you always get 1. To get decimal results, you must use the float or double data type.I need to change the declaration of the variable \"sum\" to be of type double instead of int. Also, the declaration of the variable \"i\" must be changed to be of type double instead of int, and the value of the sum must be calculated with the division operator / instead of / .you see ? as ```double sum = 0;\nfor (double i=1; i <= 100; i++) {\nsum += (1/i);\n}\nSystem.out.println(sum);``` \nLet me know if it works", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "b8b93f0ed5f7d7a7ada31d2cbd0ca7a25212cdc298940f6e949925c1f21928e8", "datetime": "2023-01-24T10:44:55+00:00" }, { "message_id": "9c8133b7370f67d7595bc09e681313d39e5b374ee54a3326fdf88ea31fbebcc3", "sticker": null, "text": "X = 5;\nY = 4;\nZ (x + y);\nSystem.out.println(z);", "from_id": "3aeee3c1b6edd751e91f99526215df2edb259437b4fc2a91f680d81c18a927e4", "reply_to": null, "datetime": "2023-01-24T14:51:58+00:00" }, { "message_id": "2ca21801459e9dfad3b3cd3a6ad1ecad5ad79b3d74cc4044a33b14ce338ddfa0", "sticker": null, "text": "hi everyone, i have a question how can I take a value from a LinkedHashMap> dataOfMonth, and then fill in a double hashmap in another class?", "from_id": "4c5aab1a55ad827b15bdb51c1cda2f833055c5547c4599a85153132da133d9c1", "reply_to": null, "datetime": "2023-01-24T18:03:52+00:00" }, { "message_id": "e7863d774c9cd37923781a29f3428aca45fd6d48594e607a7788bd595e627e68", "sticker": null, "text": "use iterator or streams", "from_id": "afd6e763247b64c91f3db3e445793a8db61633f0193c0f6538eb6eeaa5b04e28", "reply_to": "2ca21801459e9dfad3b3cd3a6ad1ecad5ad79b3d74cc4044a33b14ce338ddfa0", "datetime": "2023-01-24T18:06:57+00:00" }, { "message_id": "4c821725988a04c97cc9fd89cd1c2419d2c86305684e9c0e2381c7852b1dd686", "sticker": null, "text": "Hi for taking a value from a LinkedHashMap> dataOfMonth and compiling a double hashmap in another class", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "2ca21801459e9dfad3b3cd3a6ad1ecad5ad79b3d74cc4044a33b14ce338ddfa0", "datetime": "2023-01-25T13:15:40+00:00" }, { "message_id": "96e5164bf1de41d3c63b7269376782ff19ee7dca70103e0b31300dcfbba3560e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7a61a14d7a8eb869a33c43c1a09ea605a47c7b14a9f601596fcaa66dce382e40", "reply_to": null, "datetime": "2023-01-25T17:22:27+00:00" }, { "message_id": "2be3af84247100b2aeea9f9a5ef528fa1e8e37a97e830112b917568ffaef0b49", "sticker": null, "text": "Any one available for java assignment?", "from_id": "0742a1d58d5b24bd71ef271d6112a8baad61233336ab9fa804b2b251d1d3d53e", "reply_to": null, "datetime": "2023-01-26T08:45:34+00:00" }, { "message_id": "8852de0fcc4e84a7143fc9651697164dc416719b2a5c369cc93d32fa8cd1234a", "sticker": null, "text": "yes", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "2be3af84247100b2aeea9f9a5ef528fa1e8e37a97e830112b917568ffaef0b49", "datetime": "2023-01-26T09:57:51+00:00" }, { "message_id": "1dcbc734ae93c0b518717b1b5f8ccf75323048dc6435834890d68eeb56ad043e", "sticker": null, "text": "Here you are", "from_id": "0239b823040e8a6b927d22df6d3cedc671dae9c27c3484f76fce0e7b3dfc8fe1", "reply_to": "2be3af84247100b2aeea9f9a5ef528fa1e8e37a97e830112b917568ffaef0b49", "datetime": "2023-01-26T11:17:27+00:00" }, { "message_id": "f133fc71d5497a31cde21469b73691d90861c9934f8a856750dcb508a7219dd7", "sticker": null, "text": "Yes", "from_id": "9d22cac74b806786c9a7101e05fd784e2190230bda29a4cba5b3c942463e170c", "reply_to": "1939e86ead6ded353dd3b012feb6086420f1bff43c331d6b64c84464a3cd134b", "datetime": "2023-01-26T12:35:55+00:00" }, { "message_id": "aa5f3f45162fd71417ae988a20dfc6ddea6d784590ec27ee81c9b027dbaf0a19", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "2be3af84247100b2aeea9f9a5ef528fa1e8e37a97e830112b917568ffaef0b49", "datetime": "2023-01-26T16:21:43+00:00" }, { "message_id": "de5e56f48b551110ab53a6aa4b66f2f1b91578b6539cf267e12eac47c4ccf8fd", "sticker": null, "text": "Yepq", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "2be3af84247100b2aeea9f9a5ef528fa1e8e37a97e830112b917568ffaef0b49", "datetime": "2023-01-27T11:21:02+00:00" }, { "message_id": "1b2ab287fe8f69489061fc24279c9f7fae1b46aea3ff6db4bc1b33d11effdbe4", "sticker": null, "text": "I am a full stack developer with 5 years of experience. If anybody need job support or any kind of project contact me. Thanks", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": null, "datetime": "2023-01-27T15:37:55+00:00" }, { "message_id": "f150ffa40dfb75c26e24a5a6fcfec78b1e3cbce8d3629b34542c955c67b1c266", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "c19df416e581278d028f20527b96c018f313e983f0a9bda4914679bb482d14f6", "datetime": "2023-01-28T08:59:54+00:00" }, { "message_id": "f3eed0c567e07447af28c65aa7ea11913cada771221973fb0f11e7478b380a6a", "sticker": null, "text": "I think you should differentiate between **byte** and **Byte**. The two aren't the same.\n\n**byte** is a primitive data type alright but **Byte** is a wrapper class for **byte**.\n\nIn other words, *Byte** IS NOT primitive.\n\nThis is similar to **char** and **Character**.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "b5662892a57d57b6d904fa6243fae838c28aaebc190fc885ee2e20de6fbcaddb", "datetime": "2023-01-28T09:04:35+00:00" }, { "message_id": "7ae23e30294072ca6100710ad99573ca610735e2f4dd41f2fddecf534152bf68", "sticker": null, "text": "Scanner in=new Scanner(System.in);\n\nSystem.out.print(\"Enter value: \" );\n\nint input=in.nextInt();\n\nDon't use **nextLine** or **next**", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "6f56cf264ec60ff7f42298fd35d3a64eaaca02e0c2d212c06a65a9304082d52b", "datetime": "2023-01-28T09:15:53+00:00" }, { "message_id": "80e91cb09439842d020742fc36b435ea05f42afb03a19f16fafeaace139d6ac8", "sticker": null, "text": "Please what's a package in java", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-01-28T17:38:34+00:00" }, { "message_id": "2d70626e0b49a68ce7972904a35ba448456c665db2d720de75355c455d86e2dd", "sticker": null, "text": "ребята, снг коммьюнити", "from_id": "499db48d456518cf915d3aee54810f49d3d44813526a09405e4eb97aeb292df9", "reply_to": null, "datetime": "2023-01-28T19:41:29+00:00" }, { "message_id": "4c0cd80c9201b7a48a0e46c0efbe4aa3cb3d7356f42b39724382431a6e83ff4f", "sticker": null, "text": "пожалуйста", "from_id": "499db48d456518cf915d3aee54810f49d3d44813526a09405e4eb97aeb292df9", "reply_to": null, "datetime": "2023-01-28T19:41:32+00:00" }, { "message_id": "6f9233deffa467b6a5a2f7f7c2c266e5635dc5bdb97d9586914a8c048820a8a9", "sticker": null, "text": "очень нужна помощь", "from_id": "499db48d456518cf915d3aee54810f49d3d44813526a09405e4eb97aeb292df9", "reply_to": null, "datetime": "2023-01-28T19:41:36+00:00" }, { "message_id": "020eea247fd6b573873f6dec243b232bc4a4eb3a5bcc99639935993483a3978c", "sticker": null, "text": "guys, hello, need help with Eclipse", "from_id": "499db48d456518cf915d3aee54810f49d3d44813526a09405e4eb97aeb292df9", "reply_to": null, "datetime": "2023-01-28T19:41:48+00:00" }, { "message_id": "815bf3016be984395238b1d8f3ea8cc667e7888d3c8e1218dc12f7081af5decb", "sticker": null, "text": "Скачай inteleg idea", "from_id": "ee3c37b6d5db8160e87ea83b08d509203bc9b532231afc3346ed468184c55b90", "reply_to": "020eea247fd6b573873f6dec243b232bc4a4eb3a5bcc99639935993483a3978c", "datetime": "2023-01-29T06:05:24+00:00" }, { "message_id": "600c91d343f3566b323d4c2a683e3942baf4f309324e20efad565375da77693a", "sticker": null, "text": "i swear this language has the most weirdest looking alphabets", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "2d70626e0b49a68ce7972904a35ba448456c665db2d720de75355c455d86e2dd", "datetime": "2023-01-29T15:35:01+00:00" }, { "message_id": "de2e60581f60207d74c35e48afc3dedfe3253591415302ca5b55a98d92a110b9", "sticker": null, "text": "looking weird for English speaking people because of и й щ ы ж ю I bet", "from_id": "afd6e763247b64c91f3db3e445793a8db61633f0193c0f6538eb6eeaa5b04e28", "reply_to": "600c91d343f3566b323d4c2a683e3942baf4f309324e20efad565375da77693a", "datetime": "2023-01-29T17:18:27+00:00" }, { "message_id": "7682e1e57aac56a4f2e75e5296f44c42778448de7c41230ef3622e1215dff695", "sticker": null, "text": "Java this is web?", "from_id": "f6bde70d946f629e005a7419a14b9af105cfb59cd2ae751ded8aaafaa4c2dcb5", "reply_to": null, "datetime": "2023-01-29T20:22:59+00:00" }, { "message_id": "878e18b943d52282aee7d7218f7db816d109c5825b80994e3ebfbc6aa93180ac", "sticker": null, "text": "one drug addict proves to me that no, I'm not sure myself", "from_id": "f6bde70d946f629e005a7419a14b9af105cfb59cd2ae751ded8aaafaa4c2dcb5", "reply_to": null, "datetime": "2023-01-29T20:23:12+00:00" }, { "message_id": "193a966abe535030d613e9003dca28c4d5c17d7514ad3194e76f3cfdec65ba2d", "sticker": null, "text": "19", "from_id": "f6bde70d946f629e005a7419a14b9af105cfb59cd2ae751ded8aaafaa4c2dcb5", "reply_to": null, "datetime": "2023-01-29T20:23:23+00:00" }, { "message_id": "4d4e2cc966c00adbf20cee2c00c57f6592165eb3231729300c3ee8216c06c953", "sticker": null, "text": "just like APL for any arbitrary developer))", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "600c91d343f3566b323d4c2a683e3942baf4f309324e20efad565375da77693a", "datetime": "2023-01-29T21:59:42+00:00" }, { "message_id": "64970096642ca61350f586076d4df785a8113977d33652d70ae7ef84a3e13a6e", "sticker": null, "text": "System.out.println(\"hello\");", "from_id": "60480de1321b1611c49982caa1367109f57dc23f40514387e149c95ef2915326", "reply_to": null, "datetime": "2023-01-30T13:12:39+00:00" }, { "message_id": "ded93c130f748a59740578a9447a3c5f9f51a88fe823fb2ff8fa210b68128042", "sticker": null, "text": "System.out.println(\"Hi\");", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": "64970096642ca61350f586076d4df785a8113977d33652d70ae7ef84a3e13a6e", "datetime": "2023-01-30T13:20:48+00:00" }, { "message_id": "965bce52f70ee01d66947326c91b8524e6ace59e10bb59b64b0da03db5530fcf", "sticker": null, "text": "How r u?", "from_id": "60480de1321b1611c49982caa1367109f57dc23f40514387e149c95ef2915326", "reply_to": "ded93c130f748a59740578a9447a3c5f9f51a88fe823fb2ff8fa210b68128042", "datetime": "2023-01-30T13:38:02+00:00" }, { "message_id": "abeb229a2e176499104b134bc4068245c59e1943b10a60cda1525402c727c229", "sticker": null, "text": "I'm doing good, and u?", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": "965bce52f70ee01d66947326c91b8524e6ace59e10bb59b64b0da03db5530fcf", "datetime": "2023-01-30T13:39:41+00:00" }, { "message_id": "bf588bdb1d0bfc1af7861d622ce89d57c9271f845f0baed992516ddff9eef5a0", "sticker": null, "text": "F9", "from_id": "60480de1321b1611c49982caa1367109f57dc23f40514387e149c95ef2915326", "reply_to": "abeb229a2e176499104b134bc4068245c59e1943b10a60cda1525402c727c229", "datetime": "2023-01-30T13:41:15+00:00" }, { "message_id": "01838bf83d70dbcfa06d1985d213acceff8aec33f47c8caec52b2a22b1f32146", "sticker": null, "text": "Gr8", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": "bf588bdb1d0bfc1af7861d622ce89d57c9271f845f0baed992516ddff9eef5a0", "datetime": "2023-01-30T13:44:36+00:00" }, { "message_id": "2bd3e97b87db8db2128121a12a467c97c3dd400cb542a601b310f5bd94640b5d", "sticker": null, "text": "Where r u f vro?", "from_id": "60480de1321b1611c49982caa1367109f57dc23f40514387e149c95ef2915326", "reply_to": "01838bf83d70dbcfa06d1985d213acceff8aec33f47c8caec52b2a22b1f32146", "datetime": "2023-01-30T13:45:24+00:00" }, { "message_id": "8cb17a89f81ede60a2e48d2ac6f8449870353edb8a40520737ec6786aec980e3", "sticker": null, "text": "Palestine", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": "2bd3e97b87db8db2128121a12a467c97c3dd400cb542a601b310f5bd94640b5d", "datetime": "2023-01-30T13:56:33+00:00" }, { "message_id": "40f35d2c5c5bc8270e4cab5eebfcff994741fdec7f692f917626c16bd2ac894c", "sticker": null, "text": "Great 👍", "from_id": "60480de1321b1611c49982caa1367109f57dc23f40514387e149c95ef2915326", "reply_to": "8cb17a89f81ede60a2e48d2ac6f8449870353edb8a40520737ec6786aec980e3", "datetime": "2023-01-30T14:04:10+00:00" }, { "message_id": "6bd2d989034c6f5cbfe2d012b1fb0842dcce11688e14bc05a7d3c848c4541bcd", "sticker": null, "text": "Sout", "from_id": "bd3a763801e4ed7bc2acadb55121449c18d425ebd62c637c7b5b83b75bb7bda9", "reply_to": null, "datetime": "2023-01-30T17:20:05+00:00" }, { "message_id": "3341a2c33b4b0c2be63e23dc71fc63c4a40d7ae88de28fc6d81833d9f9843655", "sticker": null, "text": "You can type (sout) and press enter for this", "from_id": "bd3a763801e4ed7bc2acadb55121449c18d425ebd62c637c7b5b83b75bb7bda9", "reply_to": "ded93c130f748a59740578a9447a3c5f9f51a88fe823fb2ff8fa210b68128042", "datetime": "2023-01-30T17:20:35+00:00" }, { "message_id": "82b9022f9ec91f31950ae60081f90ccd4351ce834d35c9c3e5ddb3525bfb36b1", "sticker": null, "text": "I know", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": "3341a2c33b4b0c2be63e23dc71fc63c4a40d7ae88de28fc6d81833d9f9843655", "datetime": "2023-01-30T18:45:37+00:00" }, { "message_id": "c9f8f8dd25f14e3e66ae56bdc04f1468a2b66d3d6cf51ba5bb998c31a2c50eec", "sticker": null, "text": "there are more similar shortcuts", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": null, "datetime": "2023-01-30T18:46:12+00:00" }, { "message_id": "1b0d4605e08f5035cb8d97e5a955bad07cb63ce248309bde9d4a600f1c439127", "sticker": null, "text": "such as souf", "from_id": "befe8a56e37b6847280e0dd019f8a18897962b92063d36ae1131369f6cb37334", "reply_to": null, "datetime": "2023-01-30T18:46:20+00:00" }, { "message_id": "33bb8fcc3b1f62f4c5550dbbba67dfcd5f7c09e255fbfb166e1aa57c7d8bb50d", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32d962a65753513c28cb8e93f3938a5209bbc2ead449f9097f4eb293de2d41e0", "reply_to": "93f1ec614a0e58f4d2e87419a34433af7d466a2a52318e950e1e6b32baf2da0b", "datetime": "2023-01-31T06:34:49+00:00" }, { "message_id": "f4ee1f1c1e247e54b31b8116361ec11ad19046ed89434a7b5e1c158fc8334bed", "sticker": null, "text": "👍", "from_id": "eba1ee12e50baeeb6923b4ee3c5e398bf9352bebfed587adab5f03c3b8283c95", "reply_to": "69281b8003d04cfce87be523198353a27d24fddab7c9f18f8e19254ee6bfbc7a", "datetime": "2023-01-31T13:41:30+00:00" }, { "message_id": "b6c686d96deed33347fe8228125a904f319283b9eeb72daacb05bd9e529a5eb2", "sticker": null, "text": "Hello every one, who want to test \"Code With Me\" in Intellij IDEA?", "from_id": "a5ca03a1dd318c36346977d14a2eb84d61e3d0b2151da3c65eb5189492c74d14", "reply_to": null, "datetime": "2023-02-01T23:58:11+00:00" }, { "message_id": "47ba33878a95d42019bf528efdf298a34b92436bafb9988f0200d792b120909f", "sticker": null, "text": "Print the following figure in java\n1 654321\n12 54321\n123 4321\n1234 321\n12345 21\n123456 1\nI've tried, but I can't", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": null, "datetime": "2023-02-02T14:18:35+00:00" }, { "message_id": "7f96ad5feedc0f060391c3351ee510da68bf3b6a714ece3295d9283307bfca52", "sticker": null, "text": "public class Main {\n public static void main(String[] args) {\n for (int i = 1; i <= 6; i++) {\n for (int j = 1; j <= i; j++) {\n System.out.print(j);\n }\n for (int k = 6; k > i; k--) {\n System.out.print(k);\n }\n System.out.println();\n }\n }\n}I tried like this, but the numbers are not right", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": null, "datetime": "2023-02-02T14:23:17+00:00" }, { "message_id": "e6d0b072c3c2cb465a4e8a7d663a5c00d73186006f056a7c9a48e2f3304955f9", "sticker": null, "text": "Can anyone help me?", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": null, "datetime": "2023-02-02T14:37:09+00:00" }, { "message_id": "980ce9afc1ac0dbd59dfdd38d2ac6712cc34ac31b48ef9e6b72774eca466506b", "sticker": null, "text": "public class PrintFigure {\n public static void main(String[] args) {\n int n = 6;\n for (int i = 1; i <= n; i++) {\n for (int j = 1; j <= i; j++) {\n System.out.print(j);\n }\n for (int k = n - i; k >= 1; k--) {\n System.out.print(k);\n }\n System.out.println();\n }\n }\ncheck and test this", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-02T15:02:10+00:00" }, { "message_id": "18699c29e7e835aeaf04d1df3e77b248e493588e3920df017776027a2645743a", "sticker": null, "text": "Thanks", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "980ce9afc1ac0dbd59dfdd38d2ac6712cc34ac31b48ef9e6b72774eca466506b", "datetime": "2023-02-02T15:02:22+00:00" }, { "message_id": "bb3bf75ba4203b9cdff3fdb578b4e61b82a6a04ebbef58ffe2b3307813ecf580", "sticker": null, "text": "it's not good, because the numbers are attacked", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "980ce9afc1ac0dbd59dfdd38d2ac6712cc34ac31b48ef9e6b72774eca466506b", "datetime": "2023-02-02T15:03:28+00:00" }, { "message_id": "bb0783fe991e5abb5653f4413aa59ac745b01bbdabdeda9f4ce21af86ad99e22", "sticker": null, "text": "let me try again,we can slove it together", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-02T15:06:14+00:00" }, { "message_id": "4ecf872f6524a0d53b6dfb9553d30a9977192e6cc550ed86bd393ac57725a5e1", "sticker": null, "text": "yes, I also wrote you in private", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "bb0783fe991e5abb5653f4413aa59ac745b01bbdabdeda9f4ce21af86ad99e22", "datetime": "2023-02-02T15:06:41+00:00" }, { "message_id": "70c5efb3a3b885a72f8b7760b5dd7fcb5e6a11859e02b75cd6a6816aa93ad66f", "sticker": null, "text": "i think i think\ninstead of k > i\nit should be i < k ?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "7f96ad5feedc0f060391c3351ee510da68bf3b6a714ece3295d9283307bfca52", "datetime": "2023-02-02T15:07:22+00:00" }, { "message_id": "bed4c7652409dd0f0264a6451b4565ffb40a531a551be63e1aee06b244c7a1dd", "sticker": null, "text": "I tried everything believe me but no solution", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "70c5efb3a3b885a72f8b7760b5dd7fcb5e6a11859e02b75cd6a6816aa93ad66f", "datetime": "2023-02-02T15:07:58+00:00" }, { "message_id": "22056be00bf62f1668232a56a61195f1d61f37e3728d20bb1de8b6e80610e595", "sticker": null, "text": "bro i did it", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-02T15:28:10+00:00" }, { "message_id": "be9414b85d9cab3f0197f6af199b9d0b552f3c3c5a5d6866eaedd34abae39f51", "sticker": null, "text": "for (int i = 1; i <= 6; i++) {\n for (int j = 1; j <= i; j++) {\n System.out.print(j);\n }\nSystem.out.print(\" \");\n for (int k = 7 - i; k >= 1; k--) {\n System.out.print(k);\n }\n System.out.println();\n }", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-02T15:28:11+00:00" }, { "message_id": "8bbe3768c745fdc521d66901d444efb3bfe3b361db35477dae85e9f3298fe733", "sticker": null, "text": "check it", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-02T15:28:11+00:00" }, { "message_id": "5abcf79af488ee71f32f4aaabe26a7a35870375cb4ad7902976c84513e6a70e9", "sticker": null, "text": "No", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "22056be00bf62f1668232a56a61195f1d61f37e3728d20bb1de8b6e80610e595", "datetime": "2023-02-02T15:28:21+00:00" }, { "message_id": "e6ee6a8462e5ee651f652316db3bc54256adfb19debfa134605b526ed2c07f2c", "sticker": null, "text": "Wait", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-02T15:28:23+00:00" }, { "message_id": "7b00cc4599fdded71c1888c28e0ebf61a8d4442cfb23d8423390371a2f121da9", "sticker": null, "text": "Im solving it", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-02T15:28:25+00:00" }, { "message_id": "9757428381e6bb6bd7a177835951d7292504262f3d54a93f18af1863810bf23f", "sticker": null, "text": "we make a great job 👍", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-02T15:31:31+00:00" }, { "message_id": "d281f4f4de2376c9054254deb46c1b403833a8b81d68f62e997873ef50691ea2", "sticker": null, "text": "Hello guys. I have to make a translation project management system", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": null, "datetime": "2023-02-02T15:31:40+00:00" }, { "message_id": "98be770328c4d94fbae588dd9cac87fc460a3ab2b40fa8059fe708f67266a092", "sticker": null, "text": "In javs", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": null, "datetime": "2023-02-02T15:31:44+00:00" }, { "message_id": "33489915a28d7ceed06c1b9c19ec7e108db5989e8d73b030774c9d9274816082", "sticker": null, "text": "I have to use GUI too", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": null, "datetime": "2023-02-02T15:31:52+00:00" }, { "message_id": "676e5a7f67a441d0b7e68bc9ccfe6f8d11ac1e90c57b5513f16a6f1268cc724b", "sticker": null, "text": "So im doing a javafx project", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": null, "datetime": "2023-02-02T15:31:58+00:00" }, { "message_id": "ef1796fa83490e5fea640c4c90981d2cd2ff1ab004916802d402479721d6f677", "sticker": null, "text": "You have any reccomendation?", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": null, "datetime": "2023-02-02T15:32:10+00:00" }, { "message_id": "65f0fc5e6f5e982856f5f49963f61d8149f563405db5a6d98e31de4287720380", "sticker": null, "text": "GREATTTTTTTTTTTTTTTTTTTTTTTT", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "be9414b85d9cab3f0197f6af199b9d0b552f3c3c5a5d6866eaedd34abae39f51", "datetime": "2023-02-02T15:32:36+00:00" }, { "message_id": "ebb2e420da19db14a2beff9e191f23ecea4d868e38c2d11b973984c885235ec5", "sticker": null, "text": "Thanks Bròòòòòò", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "be9414b85d9cab3f0197f6af199b9d0b552f3c3c5a5d6866eaedd34abae39f51", "datetime": "2023-02-02T15:32:48+00:00" }, { "message_id": "96294906ec5c62b7f365cb41745109b33e442f39860d77ea20d259ac57c1f9c0", "sticker": null, "text": "thank you for your good question!", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-02T15:34:07+00:00" }, { "message_id": "c0fbc84aa7e09e045f8d21eae860fd8711b83f5295b6843b7b4690cb6f365d42", "sticker": null, "text": "Can somebody help me pls?", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": null, "datetime": "2023-02-02T15:36:22+00:00" }, { "message_id": "ae5960ac9fe24361cdf73275c77b273842b54068e8203a15fa8c3cfc9565ca72", "sticker": null, "text": "for free?", "from_id": "354605597e54c2dbaa519249fc20ffdcf14bf65eaef24b5c0f955b9867d49c1f", "reply_to": "c0fbc84aa7e09e045f8d21eae860fd8711b83f5295b6843b7b4690cb6f365d42", "datetime": "2023-02-02T15:55:20+00:00" }, { "message_id": "04622739a8708d29b17cd4f0636b989df45ee15769dfe47c56b42802c6f39282", "sticker": null, "text": "I just need an idea i dont need my project done", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": "ae5960ac9fe24361cdf73275c77b273842b54068e8203a15fa8c3cfc9565ca72", "datetime": "2023-02-02T19:06:47+00:00" }, { "message_id": "15b547bcb25cd50956a4245049f7b9dd628524808182d0263ffddd402fde196a", "sticker": null, "text": "???", "from_id": "0674d29fa70a39c67279c852a46846db37ffd5f073591767d70484d87a724680", "reply_to": "c0fbc84aa7e09e045f8d21eae860fd8711b83f5295b6843b7b4690cb6f365d42", "datetime": "2023-02-02T19:27:54+00:00" }, { "message_id": "19ee9d24a5d936419f8f9b062544b22a4fc9232f077c11d96a8c775871f2ba06", "sticker": null, "text": ".", "from_id": "4e8c247b58a6baa2a2514c8b50fb62282bfe9d697bdfb4952bfbcbdfe064788e", "reply_to": "ef1796fa83490e5fea640c4c90981d2cd2ff1ab004916802d402479721d6f677", "datetime": "2023-02-02T19:28:34+00:00" }, { "message_id": "8c149bce698b516db083abb3823ab7da24afda3fb72c06eacefa9b29fb0145d4", "sticker": null, "text": "how do i do the second part", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-02T19:30:51+00:00" }, { "message_id": "aa17cfd136258d2c33c93a3616bf8825cc43d087774a60a4da05b1f8b004d2e3", "sticker": null, "text": "hi guys, i am totally new to Java world but sometimes whats wrong with the curses that when you click on space instead of space it removes the letter. but why and how to solve it? i really cant understand what really causes", "from_id": "7e15c9f506fd6e4bab60aaf969486818049f90dc2ad15b88a676e49beb77fa3a", "reply_to": null, "datetime": "2023-02-02T19:45:21+00:00" }, { "message_id": "b9e04befa5a568082f15dfa6967e3edfae0e2a1d10be7a508b4a5363cfa6623e", "sticker": null, "text": "your cursor on the characters or between them?", "from_id": "a5ca03a1dd318c36346977d14a2eb84d61e3d0b2151da3c65eb5189492c74d14", "reply_to": null, "datetime": "2023-02-02T20:23:00+00:00" }, { "message_id": "c2c145b827221ef1721c570ccad74f8be9b1cfe6a7e31b65d47001606ae2ff89", "sticker": null, "text": "thank you sooo much for replying yes on the character", "from_id": "7e15c9f506fd6e4bab60aaf969486818049f90dc2ad15b88a676e49beb77fa3a", "reply_to": "b9e04befa5a568082f15dfa6967e3edfae0e2a1d10be7a508b4a5363cfa6623e", "datetime": "2023-02-02T20:26:24+00:00" }, { "message_id": "eb8c8d6f9d66f8fd2f0bce492b09b69a7347ce5789c14a18e983e0e7a7fcb32a", "sticker": null, "text": "the curser gets sort of Bold, normally its like | ,", "from_id": "7e15c9f506fd6e4bab60aaf969486818049f90dc2ad15b88a676e49beb77fa3a", "reply_to": null, "datetime": "2023-02-02T20:29:49+00:00" }, { "message_id": "72c168cd3c3bbb4a9a6a723c15a61defa15c677d75dbdf861b044db28111b83e", "sticker": null, "text": "i just got stuckk to this stupido problem", "from_id": "7e15c9f506fd6e4bab60aaf969486818049f90dc2ad15b88a676e49beb77fa3a", "reply_to": null, "datetime": "2023-02-02T20:53:29+00:00" }, { "message_id": "d3b2280f4adaacb9671bfda07734d8c9a83fc5f0a8b2a3f1a936de5cf86c67ee", "sticker": null, "text": "maybe u accidently press the insert key on the keyboard", "from_id": "0e99546c5ed00e135d402a26094c7dedb89a253acf39fe6731576e4bb2ac537e", "reply_to": "72c168cd3c3bbb4a9a6a723c15a61defa15c677d75dbdf861b044db28111b83e", "datetime": "2023-02-03T04:49:10+00:00" }, { "message_id": "f29b7361234e1d7630b355ab7ff29551ae497e36755bcbb7260e28303d14787f", "sticker": null, "text": "you saved me brooo. thanks in advance", "from_id": "7e15c9f506fd6e4bab60aaf969486818049f90dc2ad15b88a676e49beb77fa3a", "reply_to": "d3b2280f4adaacb9671bfda07734d8c9a83fc5f0a8b2a3f1a936de5cf86c67ee", "datetime": "2023-02-03T17:22:20+00:00" }, { "message_id": "0d6a24ccd7a614a0d8cb83115a8d80724e377ed55761d30498421217b0b435f5", "sticker": null, "text": "Hi all , does anyone know how to install the openai api library on intellij ?\nI tried to download the file from github but without success.\nIf anyone knows how to do it I'm grateful.\nMaybe explain me step by step.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": null, "datetime": "2023-02-03T22:35:37+00:00" }, { "message_id": "f4cbaddd2bd8fc643f1b6a13ed1970d18c1f809c9d84ff4c26b073296c8cc08c", "sticker": null, "text": "You can use IntelliJ plugins and search in the market.", "from_id": "6d2c0a0561f4b91ad978c3eaa0190f4215feb7d969db462fb76d913ed844302d", "reply_to": "0d6a24ccd7a614a0d8cb83115a8d80724e377ed55761d30498421217b0b435f5", "datetime": "2023-02-03T23:03:08+00:00" }, { "message_id": "b0304fab17b11177a6ef159ca56d00bc15be0a1ca969434ab068dc98da29ed82", "sticker": null, "text": "Oh I didn't know that.\nThey told me I had to download the github file.\nI'll do as you say, but if I'm in trouble, can I ask for help?", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "f4cbaddd2bd8fc643f1b6a13ed1970d18c1f809c9d84ff4c26b073296c8cc08c", "datetime": "2023-02-03T23:05:04+00:00" }, { "message_id": "4663ed66165c0cadc8c01afc2ec3e84517bb05dee040cd7c503d3508a5752811", "sticker": null, "text": "Do you want to use chatGPT? That has plugins in the idea plugin market.", "from_id": "6d2c0a0561f4b91ad978c3eaa0190f4215feb7d969db462fb76d913ed844302d", "reply_to": null, "datetime": "2023-02-03T23:12:15+00:00" }, { "message_id": "7aa3f975e0d84d9f7720c243621dc5c1fa843150fd7031a8ccc5a5de58883c4b", "sticker": null, "text": "Yes, I need the library to create a project.\nIn plugins how should I search for this library?", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "4663ed66165c0cadc8c01afc2ec3e84517bb05dee040cd7c503d3508a5752811", "datetime": "2023-02-03T23:15:31+00:00" }, { "message_id": "ecf79579d376467423af3d7de533abf1dd34ae4b48656e9177600545e9455237", "sticker": null, "text": "Sorry, I don't know how to install the library, But if you want to use chatGPT to ask something, you can go to the plugin market and search chatGPT.", "from_id": "6d2c0a0561f4b91ad978c3eaa0190f4215feb7d969db462fb76d913ed844302d", "reply_to": "7aa3f975e0d84d9f7720c243621dc5c1fa843150fd7031a8ccc5a5de58883c4b", "datetime": "2023-02-03T23:32:29+00:00" }, { "message_id": "f604f9ef1f619e0110cb04fa5ee3a4611ee965fb2ca12416ef3f5b6d522d99bc", "sticker": null, "text": "I did as you said, I downloaded every plugin but still the code tells me there is no openai library.\nMaybe there is some other method.", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "ecf79579d376467423af3d7de533abf1dd34ae4b48656e9177600545e9455237", "datetime": "2023-02-03T23:56:00+00:00" }, { "message_id": "b1d61b24191c03ccb1afeb78b19247b72abf2eeaad5c2be90e2e3337c03b62e2", "sticker": null, "text": "Sorry, I don't know any other methods. I can't continue to help you.", "from_id": "6d2c0a0561f4b91ad978c3eaa0190f4215feb7d969db462fb76d913ed844302d", "reply_to": "f604f9ef1f619e0110cb04fa5ee3a4611ee965fb2ca12416ef3f5b6d522d99bc", "datetime": "2023-02-04T00:01:28+00:00" }, { "message_id": "8f41dfc651a83144725a6708a26af74109d5f88cfbf14543c05f390cf58cbf07", "sticker": null, "text": "Thanks", "from_id": "f9b2568dccb80d5e0019b5c373c238cd7cd51fc6ade4e8ba5227ec9519c6e2fd", "reply_to": "b1d61b24191c03ccb1afeb78b19247b72abf2eeaad5c2be90e2e3337c03b62e2", "datetime": "2023-02-04T00:02:46+00:00" }, { "message_id": "d29319adfed0b0d00e8f043c2a2271c865e75714aae3a6734f0f8868c62e5c4c", "sticker": null, "text": "CHatGPT", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-02-04T02:58:45+00:00" }, { "message_id": "a6ca28b5d53b7e80be1af9cc5cf09fb7a90aade8fb030ae95f619c5afd130086", "sticker": null, "text": "PROBLEM:\n\nA weird array is the array in which there exists a weird number x and size of array is atleast 2. A number x is weird if the count of x is greater than the count of any other element in array. Eg [1,2,1,3,3,4,1,2] is a weird array with 1 as the\n\nweird number(x).\n\nFind the minimum size of weird subarray array or\n\nreturn 0 if no subarray exists.\n\n**CONSTRAINTS:**\n\n1 < n < 2*10^5\n\n**FUNCTION DESCRIPTION:** Complete the function 'weird_array' in code. Function must return the minimum size of weird subarray array or return 0 if no subarray exists.\n\n'weird_array' has the following parameter(s): input: list of numbers\n\nn:- length of list or array\n\n**EXAMPLE:**\n\nInput:- [3 3 13 3]\nOutput: 2\n\nExplanation: [3,3] is the minimum subarray possible.\n\nInput: [5]\n\nOutput: 0\n\nExplanation: No weird subarray is possible.", "from_id": "639643dc02adf329dfb030560251952ee26b0fc663d07629c80726fd6bc852ab", "reply_to": null, "datetime": "2023-02-04T06:45:55+00:00" }, { "message_id": "fa140ec44c20b5f050ac551e9815e4f8838c6434b423c48e951bf98fc27a9b11", "sticker": null, "text": "Java solution for this?", "from_id": "639643dc02adf329dfb030560251952ee26b0fc663d07629c80726fd6bc852ab", "reply_to": null, "datetime": "2023-02-04T06:46:00+00:00" }, { "message_id": "032e851d7524efc1d06badc2e2b7b55731972aff16f85d47546a8a46880e9b4d", "sticker": null, "text": "Try to write this algorithm", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "fa140ec44c20b5f050ac551e9815e4f8838c6434b423c48e951bf98fc27a9b11", "datetime": "2023-02-04T07:02:36+00:00" }, { "message_id": "0d544daf08bff9f31a971973de268a2ddf9f6597bf143927d5593aa83dbefe8c", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c658c0f4e6aa0edcce3ee857c91cd4f0dc22380cabc712b589950794961ec936", "reply_to": null, "datetime": "2023-02-05T15:42:47+00:00" }, { "message_id": "8c51124549952810304979ac23206f1b4be2dc848788cc8b8b51b6dd5b7ad7b0", "sticker": null, "text": "Advanced Java Programming Full Course Free Download in my Telegram", "from_id": "20c7e5455e4fb5add6d07161f97e29dade7161664c0a0aac719f0047c7cc8d06", "reply_to": null, "datetime": "2023-02-05T16:27:36+00:00" }, { "message_id": "f2ed808302fb440196bf4a55517065eb66f403dea49e1adbe5b788be5cb9909e", "sticker": null, "text": "Total messages: 115595", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-02-05T19:05:01+00:00" }, { "message_id": "97714804f33a439d84ee366a6b11b1aee70d07df1ec77f2e022063af2ed6e082", "sticker": null, "text": "Advanced Java Programming Full Course Free Download in my Telegram", "from_id": "20c7e5455e4fb5add6d07161f97e29dade7161664c0a0aac719f0047c7cc8d06", "reply_to": null, "datetime": "2023-02-05T19:05:16+00:00" }, { "message_id": "3f635a3abca54ce9d4e02739439675b2cf50da24bd5ceb351529b55b51301b83", "sticker": null, "text": "Can someone teach me to show mysql database in my github project", "from_id": "70797adba645631a37d8cf15640a994312085b1e7ec412ec8d7754607866b1c8", "reply_to": null, "datetime": "2023-02-05T21:06:25+00:00" }, { "message_id": "43c21324af55d9d6606970b763872b90b6f3ac50e4945ff64449f7a509406723", "sticker": null, "text": "how to use java btc transfer", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-02-06T06:39:36+00:00" }, { "message_id": "fa2fe25d2b5c771bdfe922922eb3c24b787d5c046ab36e455b88873acb9ad07f", "sticker": null, "text": "Halo, can I ask something", "from_id": "520ffc8661af31e38468b5a9226c683eeb0ed8f9260069a69d2fd55e418c1826", "reply_to": null, "datetime": "2023-02-06T08:37:10+00:00" }, { "message_id": "c376c9bfd3496a48025170411cc659091fef03cc0428b809822af0bfd68b6578", "sticker": null, "text": "My message was deleted", "from_id": "520ffc8661af31e38468b5a9226c683eeb0ed8f9260069a69d2fd55e418c1826", "reply_to": null, "datetime": "2023-02-06T08:37:25+00:00" }, { "message_id": "08be074859a6e0374e6a2be8bd030231f2ab6835d0279e1b7dcbcb69258ddd25", "sticker": null, "text": "Because it contains url?", "from_id": "520ffc8661af31e38468b5a9226c683eeb0ed8f9260069a69d2fd55e418c1826", "reply_to": null, "datetime": "2023-02-06T08:37:39+00:00" }, { "message_id": "44b2dc1f0f0b6d1d00e134e49d8748af366325b3a15a84b38f69abeebb457490", "sticker": null, "text": "I tried to use a library without apple m1 chip support. After the environmen setup, error comes up: Could not get unknown property 'binaries' for root project 'couchbase-lite-java-forestdb'", "from_id": "520ffc8661af31e38468b5a9226c683eeb0ed8f9260069a69d2fd55e418c1826", "reply_to": null, "datetime": "2023-02-06T08:38:23+00:00" }, { "message_id": "25f842418d98488574b4d0c434b1bc078f8efeb2b64dea975c5228891fefbd95", "sticker": null, "text": "The url was just the link to github of the project", "from_id": "520ffc8661af31e38468b5a9226c683eeb0ed8f9260069a69d2fd55e418c1826", "reply_to": null, "datetime": "2023-02-06T08:38:52+00:00" }, { "message_id": "7d9b192e3ce9d878dc218c4486b6a3d458b2ab229daef1ae60194f7a991d1db6", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c824f74042166096182f58447b6cee42f0086a611e52456321b16ca583875f12", "reply_to": null, "datetime": "2023-02-06T22:51:38+00:00" }, { "message_id": "a4497061a60e6a557318e57b1263759736d2dbccffcab68ba24c2fbc53d267dc", "sticker": null, "text": "Freezing in Pensacola huh", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "29c3f00d6f96633ee0e2a335d4833cb53593b06e46b8929034f2665a1a4a6ac1", "datetime": "2023-02-06T23:39:28+00:00" }, { "message_id": "dd36425dd2ea2c3e56da074ca7917f079e106693440e7cb25bfe14a545c674be", "sticker": null, "text": "coin.rpc=http://bizzan:8897364ddefs@#USER:8333/", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-02-07T06:25:28+00:00" }, { "message_id": "7ae8c743adefcdbcf8c7c730af378394ef82cf7c55be2b965aef735ec4ff4489", "sticker": null, "text": "how to use biticonj transfer", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-02-07T14:37:56+00:00" }, { "message_id": "fc156cbc89dedc5d7a000b58490ddafe9cb35aec49ad5b4facc19a02df71fc58", "sticker": null, "text": "Hi anyone know channel(youtube) for explain OOp", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-02-07T17:16:41+00:00" }, { "message_id": "050da159e1df4ef7fef452b3381429ca382848c6d6d29dab9eb9244a54c740ab", "sticker": null, "text": "In arabic", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": "fc156cbc89dedc5d7a000b58490ddafe9cb35aec49ad5b4facc19a02df71fc58", "datetime": "2023-02-07T17:17:20+00:00" }, { "message_id": "e43f0973f62b68b568e4f29012dd9cecc94f37a645e8b9f5aba82ab25ef8f495", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "fc156cbc89dedc5d7a000b58490ddafe9cb35aec49ad5b4facc19a02df71fc58", "datetime": "2023-02-07T19:45:50+00:00" }, { "message_id": "48bc2f8f66b18851c0df3d13ad40bc30dc8bf22aca95edba7d417aacefa655b4", "sticker": null, "text": "yes?? what is", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": "e43f0973f62b68b568e4f29012dd9cecc94f37a645e8b9f5aba82ab25ef8f495", "datetime": "2023-02-07T20:03:03+00:00" }, { "message_id": "c93c504c65db7b67e8f8d5dd7d1590eb406f8dc0032bf8560da3c043fe0504ef", "sticker": null, "text": "Hi guys please I need a beginner guide of java", "from_id": "e1bd96b86d7ea998afdfa924136204a375d231c93957ec6c5fc93db0fd78a4f2", "reply_to": null, "datetime": "2023-02-07T20:57:32+00:00" }, { "message_id": "95502ded940e91fe185399af9f1117b9678513bbbbda2adab53a7907d5523dcb", "sticker": null, "text": "Pdf", "from_id": "e1bd96b86d7ea998afdfa924136204a375d231c93957ec6c5fc93db0fd78a4f2", "reply_to": null, "datetime": "2023-02-07T20:57:34+00:00" }, { "message_id": "b413c0b329e00bba4f4a023784f03eb4bfcd810356602a1a86e019d1a5b4d6a9", "sticker": null, "text": "how to use biticonj transfer", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-02-08T05:47:22+00:00" }, { "message_id": "10c36c50bc642ea7154e442672d3f4fce287dd888c199e39065380854ad8adf9", "sticker": null, "text": "I'm interest", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "db64262381cbacaab3982daf6332335d2abcf5cb0ca4c2da2b04c11c2f9323ef", "datetime": "2023-02-08T14:54:10+00:00" }, { "message_id": "d42d44d69cccb74f583c80138bf6224adea68750cfc551a053d20d838bc0de2c", "sticker": null, "text": "Hi everyone", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-02-08T23:20:00+00:00" }, { "message_id": "a3150a69ee0bd4a03e4accafa566a44f4e797f98780c9a7b4a90048c7024a718", "sticker": null, "text": "Plsss help \n\nCreate a Java Program that would display the area and the perimeter of the circle", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-02-08T23:21:22+00:00" }, { "message_id": "dac7014a85ef2516572cf202e1253f6f4a66e6d53d60d4e2560f401f6bc694f6", "sticker": null, "text": "Would you like to get banned?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "b413c0b329e00bba4f4a023784f03eb4bfcd810356602a1a86e019d1a5b4d6a9", "datetime": "2023-02-09T02:48:47+00:00" }, { "message_id": "5c2873e6759e66c1058a2ec57d9c676d6aa54cfed9a94e01135df1e73a60fe35", "sticker": null, "text": "I know how to do that in linux, but not in java", "from_id": "b6c73ceefbfe2d5c0f9501d74289f3893874ac842c5cd383e8b1db8f6a2d24e5", "reply_to": "6649c5fd19276ec7bc607739671cf0c7ca060c6f3f6bc8e1be04b410aec92c21", "datetime": "2023-02-10T13:32:21+00:00" }, { "message_id": "f97fa43cf254437bb42bd682a9e8bbeb3f588b703ea5496f203d91657fd8415b", "sticker": null, "text": "I can ,i ll send in few minutes", "from_id": "55526d1a37e0e59079920545ea1667d413c5556b02a4c07a834b97af8945cc61", "reply_to": null, "datetime": "2023-02-10T15:20:40+00:00" }, { "message_id": "151381485c61136c83044da482b9e730ba3d0b14dc446e0f3e3e7dd990060933", "sticker": null, "text": "import java.lang.*;\nimport java.util.*;\nclass p1{\n public static void main(String args[]){\n //Code by beluga\n String str1;\n String str2;\n Scanner sobj = new Scanner(System.in);\n System.out.println(\"Enter String1 : \");\n str1 = sobj.nextLine();\n System.out.println(\"Enter String2 : \");\n str2 = sobj.nextLine();\n //Top , Coder ==> TCoopder\n StringBuilder sb = new StringBuilder();\n for(int iCnt = 0 ; iCnt < str1.length() || iCnt < str2.length() ; iCnt++)\n {\n if(iCnt < str1.length()){\n sb.append(str1.charAt(iCnt));\n }\n if(iCnt < str2.length()){\n sb.append(str2.charAt(iCnt));\n }\n\n }\n System.out.println(sb);\n }\n}", "from_id": "55526d1a37e0e59079920545ea1667d413c5556b02a4c07a834b97af8945cc61", "reply_to": "5c2873e6759e66c1058a2ec57d9c676d6aa54cfed9a94e01135df1e73a60fe35", "datetime": "2023-02-10T16:01:56+00:00" }, { "message_id": "311bf099a4212aea0e8dc346a730757c82b343a92a9aee526987d53744a9a47c", "sticker": null, "text": "Hi.. can you send me the Java coding for Food ordering System in GUI", "from_id": "8cf33fa62f4f0b90f353a2537ea5d443c8f933c9b2e6f19e12060907282336eb", "reply_to": null, "datetime": "2023-02-10T19:14:09+00:00" }, { "message_id": "5bd6446260e0ec2da7cce5bdcea84f734ee3f3eb50bdbf482ca97b1cb2f58c32", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b9de070b466c814657f799bc1c02e0012a7cc92c7702cd7e5fd292be3063f09e", "reply_to": null, "datetime": "2023-02-11T07:26:19+00:00" }, { "message_id": "3b573209f1393f04c6e51a494d6862066b4789cd5ad79c34a48bae653ea04ea9", "sticker": null, "text": "hello\nI have a question about maven appendix", "from_id": "0aaf79f429b42f4e7381e257899c307ac2af1aef832431c1e06a746a72114734", "reply_to": null, "datetime": "2023-02-11T15:23:59+00:00" }, { "message_id": "3db1b50653617d3af27d1c84d8f1f7c3079354a77d733b01664f0cdb1eec4841", "sticker": null, "text": "I've created a project with maven in intellij idea but when maven libraries have imported, maven plugins don't add to the idea", "from_id": "0aaf79f429b42f4e7381e257899c307ac2af1aef832431c1e06a746a72114734", "reply_to": null, "datetime": "2023-02-11T15:27:11+00:00" }, { "message_id": "c82f257a432ea249c388b356cebbf31dc94a77a3e1b8b81eb5c6212e07a0fa05", "sticker": null, "text": "I've search a lot but doesn't any happen", "from_id": "0aaf79f429b42f4e7381e257899c307ac2af1aef832431c1e06a746a72114734", "reply_to": null, "datetime": "2023-02-11T15:28:19+00:00" }, { "message_id": "bf898660bfb01bfe4a390b6633912278f3589b43ff5e92b423727db12a0e5314", "sticker": null, "text": "What should I do my buddies?", "from_id": "0aaf79f429b42f4e7381e257899c307ac2af1aef832431c1e06a746a72114734", "reply_to": null, "datetime": "2023-02-11T15:28:48+00:00" }, { "message_id": "7d58e58a44b227e53758139674d95f2be6473b793937b201df5d3754e6e896d2", "sticker": null, "text": "Please help me solve it if you know", "from_id": "0aaf79f429b42f4e7381e257899c307ac2af1aef832431c1e06a746a72114734", "reply_to": null, "datetime": "2023-02-11T15:29:28+00:00" }, { "message_id": "11bc0cf2bea52de786b02641d593bbb9332286fc59fe980809574db776b6b419", "sticker": null, "text": "Hi anyone registered for code gem competition or have any previous experience about it\n????", "from_id": "dddeb5dab5ffbae83c4b991eb8e2a7840c39748208f1e1ade2778177eb91c734", "reply_to": null, "datetime": "2023-02-12T07:27:12+00:00" }, { "message_id": "0a44968212950806fa95e838e7df63b3a18bfd62465a32e3c5a56030f6a2ac3c", "sticker": null, "text": "java , spring boot, microservice and react js support available", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": null, "datetime": "2023-02-13T15:00:22+00:00" }, { "message_id": "9154aa15d3ac82d6cbbad2d1bca5a3fd1212c2ee66c3b991fa843379748b850e", "sticker": null, "text": "Please I'm in need of", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "0a44968212950806fa95e838e7df63b3a18bfd62465a32e3c5a56030f6a2ac3c", "datetime": "2023-02-13T15:00:56+00:00" }, { "message_id": "654c481467222f11cf265c80d1d194933e182181b62091275ae421234be10593", "sticker": null, "text": "ok I will", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "9154aa15d3ac82d6cbbad2d1bca5a3fd1212c2ee66c3b991fa843379748b850e", "datetime": "2023-02-13T15:01:17+00:00" }, { "message_id": "729ca0a244ff5b953a37b17b2259587b936a81c76cca453455728987ece8d63c", "sticker": null, "text": "Int A=7;\nInt B=8\nInt A +B =C\nSystem.out.println(C)", "from_id": "0be6e3dd3dac215b5579bc318d8292f62b1f673072ea27ab4d7875386481553f", "reply_to": null, "datetime": "2023-02-14T05:13:30+00:00" }, { "message_id": "0aff50591c9217fe9cf24c7be8199e9c5b6b8ec158dfcf7bd9b673fde1fe0316", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2023-02-14T06:49:22+00:00" }, { "message_id": "f5c18e12f3497ee5689488ce944a48492c0a0c39437c95ca28047d4ee759e037", "sticker": null, "text": "first time to use telegram", "from_id": "c4285738491916b5981ef9e26e6e740e632db2ff00dd5642352aec2a39752d4d", "reply_to": null, "datetime": "2023-02-14T08:33:55+00:00" }, { "message_id": "1771518a223446389e3f4fddf978da6802c65eea2ec6f3c3b15c9b632ab0cfe2", "sticker": null, "text": "nice to meet u guys", "from_id": "c4285738491916b5981ef9e26e6e740e632db2ff00dd5642352aec2a39752d4d", "reply_to": null, "datetime": "2023-02-14T08:34:01+00:00" }, { "message_id": "5aa2a73ab4f1c94c502e675d118ad79b056f77b6a86a724857270ab6f2deb4db", "sticker": "2193800188773007517/5870788430375424048.webm", "text": "", "from_id": "30f576051e25af06b4baef4b5f946bbd784e33f4998e6077b98505e886ceeff7", "reply_to": "729ca0a244ff5b953a37b17b2259587b936a81c76cca453455728987ece8d63c", "datetime": "2023-02-14T08:35:12+00:00" }, { "message_id": "9d1abe018b57b67f9ae8db0afb37279c6cdf107e598fb35c3cf1efd54df6da6a", "sticker": null, "text": "how to learn spring cloud", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-14T12:52:20+00:00" }, { "message_id": "6aba69430058bdb7c65ec85a14a3f5da84e0875ac8e25cb6f7c9cab8f7a1ea1b", "sticker": null, "text": "Youtube university", "from_id": "a5754466d78a2b20dfba5340756d7b7fa9c5acdbb3aac4615dc6e23cce4b9eef", "reply_to": "9d1abe018b57b67f9ae8db0afb37279c6cdf107e598fb35c3cf1efd54df6da6a", "datetime": "2023-02-14T13:02:55+00:00" }, { "message_id": "4946f2742014eeda71be837c375ff3147983a30e4663d552110d26a649f93ab1", "sticker": null, "text": "i am chinese,and is hard to find a job for Java", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-14T13:03:36+00:00" }, { "message_id": "8cb2c65face5eaa45a7181166178d23b19ce8b9211f97d4702103c59ce963b2d", "sticker": null, "text": "so increase your skills, to job find you", "from_id": "a5754466d78a2b20dfba5340756d7b7fa9c5acdbb3aac4615dc6e23cce4b9eef", "reply_to": "4946f2742014eeda71be837c375ff3147983a30e4663d552110d26a649f93ab1", "datetime": "2023-02-14T13:06:53+00:00" }, { "message_id": "357b9e32437c3494fe142a669d72aa8dd1adfb84cab45489b4ed2bfbab382bef", "sticker": null, "text": "yor're not better than me, I'm Iranian", "from_id": "a5754466d78a2b20dfba5340756d7b7fa9c5acdbb3aac4615dc6e23cce4b9eef", "reply_to": "4946f2742014eeda71be837c375ff3147983a30e4663d552110d26a649f93ab1", "datetime": "2023-02-14T13:07:29+00:00" }, { "message_id": "18bd09f1f7cecdee0db25f7bcbb9b0d8b990cd9288e83cb4c0f28458a948b883", "sticker": null, "text": "china is hard to find job", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-14T13:08:18+00:00" }, { "message_id": "8da3f605cbe3ea28c3adb8b39186b1d45ddcd9cfd387312192d1afd1da225558", "sticker": null, "text": "Iran is hard too, nevermind it's hard but it's not impossible, I think working in a company or have a boss is not the best way, be a freelancer, exchange your knowledge, be your own boss\n\na few motivational sentences", "from_id": "a5754466d78a2b20dfba5340756d7b7fa9c5acdbb3aac4615dc6e23cce4b9eef", "reply_to": "18bd09f1f7cecdee0db25f7bcbb9b0d8b990cd9288e83cb4c0f28458a948b883", "datetime": "2023-02-14T13:11:05+00:00" }, { "message_id": "15fd271594936ac4e9d298041480ce2400019c80f3c5bf9c862370d89de9b556", "sticker": null, "text": "ok,thanks,i will study hard", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-14T13:12:08+00:00" }, { "message_id": "3ddda552b10127c43c36a5a8525b9ee39fadc15ea864a4c38fe82af14a4ca740", "sticker": null, "text": "can you recommend some Java videos", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-14T13:12:48+00:00" }, { "message_id": "a8795968ee44c23abd281141547fa23632b0d8d1393d5d220435388182be8858", "sticker": null, "text": "actually I'm an android developer I haven't used a specific source I recommend you if you have found your programming goal use some road map and learn them one by one and practice hard", "from_id": "a5754466d78a2b20dfba5340756d7b7fa9c5acdbb3aac4615dc6e23cce4b9eef", "reply_to": "3ddda552b10127c43c36a5a8525b9ee39fadc15ea864a4c38fe82af14a4ca740", "datetime": "2023-02-14T13:20:11+00:00" }, { "message_id": "17c98693abcf2a5c3156f9af80b4980de173daf762a8778502a965aaa56560ba", "sticker": null, "text": "fine", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-14T13:21:52+00:00" }, { "message_id": "174a1828fb1bfc1b6d0c5cf99765d1566647dc6d4fab7be53dd706855c3535bc", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "326a820df43e1696333b9137811338d0571167e16696d54fe24b455a08246829", "reply_to": null, "datetime": "2023-02-14T13:47:25+00:00" }, { "message_id": "73d980314b176d4ecf61b20d9583a13655831f9d40651ee2177367671bf58a4d", "sticker": null, "text": "Any help", "from_id": "326a820df43e1696333b9137811338d0571167e16696d54fe24b455a08246829", "reply_to": null, "datetime": "2023-02-14T13:47:25+00:00" }, { "message_id": "067bef9c723e430a7ce383cdd781d2d8fee242272c183a7839c29402774c2c07", "sticker": null, "text": "Different source code but same", "from_id": "326a820df43e1696333b9137811338d0571167e16696d54fe24b455a08246829", "reply_to": null, "datetime": "2023-02-14T13:47:25+00:00" }, { "message_id": "8d82e8274a1fc4fddbf0be2b773898bb180db9155aa030c11799cdb8e5f5d8fe", "sticker": null, "text": "Dm me", "from_id": "326a820df43e1696333b9137811338d0571167e16696d54fe24b455a08246829", "reply_to": "174a1828fb1bfc1b6d0c5cf99765d1566647dc6d4fab7be53dd706855c3535bc", "datetime": "2023-02-14T13:47:51+00:00" }, { "message_id": "2856eff55c4d3d5cb0e7136239a960c1b157950f33b37e4f125f2cd987262def", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "aa0f9c73289b6d28c5f95d77a15db29f3e0bc2a1d9b7a01d1cae53eb8c4714f1", "reply_to": null, "datetime": "2023-02-15T03:01:18+00:00" }, { "message_id": "1ec6b779c45ed72396afd83f5c503093f95d8a26f31a081fe416aef9d7cc0bea", "sticker": null, "text": "the main job of springcloud are set environment and make balance etc.it's base on springboot,so you can read document from spring website.", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-15T03:52:31+00:00" }, { "message_id": "208514b01f4c9d1f639b9281a26fb5365a3d92c0489c45ad612ee4422ff2c2aa", "sticker": null, "text": "study eureka,nacos,zipkin,openfeign,sentinel,seata,gateway. it's enough.", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-15T03:56:54+00:00" }, { "message_id": "5db16cc7b945aa54f575bc711e8d45ab357f838e94591093a4b81b1b6b684b99", "sticker": null, "text": "thanks", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-15T04:36:18+00:00" }, { "message_id": "8600c4aec06d9e5f0a9ada031fca5c7d021c6e805be99df3b737236f88c327d3", "sticker": null, "text": "hello", "from_id": "40f7e425f0ee531227aeda87322c268b16438ebda337a453d1e7e3fc4934140a", "reply_to": null, "datetime": "2023-02-15T07:30:05+00:00" }, { "message_id": "881193d1a881e8823bc63178addb81ed375e835db90cb7bb6e5dc7615196beaa", "sticker": null, "text": "salom", "from_id": "4b2a4ce63de2a214565c422ec9326c7f5398fc0ed4eef19511926fafa49d4807", "reply_to": null, "datetime": "2023-02-15T16:56:48+00:00" }, { "message_id": "c8f42d77e07b989e15aeb5d1199b64372302942e2cb83e40060be2e4c0ce791e", "sticker": null, "text": "help", "from_id": "4b2a4ce63de2a214565c422ec9326c7f5398fc0ed4eef19511926fafa49d4807", "reply_to": null, "datetime": "2023-02-15T16:57:09+00:00" }, { "message_id": "0e0be0d2fd71287002464a2417c4f1ee9f9aff61288e44ec0e05f49dc8a371b5", "sticker": null, "text": "is a function that checks a string for a numeric value?", "from_id": "4b2a4ce63de2a214565c422ec9326c7f5398fc0ed4eef19511926fafa49d4807", "reply_to": null, "datetime": "2023-02-15T16:58:30+00:00" }, { "message_id": "367af976daa374b4fd3315996700e961e8ecb79f5405589b3e67eca10a3dcdaf", "sticker": null, "text": "Alo", "from_id": "4b2a4ce63de2a214565c422ec9326c7f5398fc0ed4eef19511926fafa49d4807", "reply_to": null, "datetime": "2023-02-15T17:25:00+00:00" }, { "message_id": "026b4233065a09f48cb28d1f9d41474ff7815decd587df231c0a838dc2143959", "sticker": null, "text": "What", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "0e0be0d2fd71287002464a2417c4f1ee9f9aff61288e44ec0e05f49dc8a371b5", "datetime": "2023-02-15T17:55:02+00:00" }, { "message_id": "1a437fcbcd47cd47ef6cecb360a759c640f22db10e20e07f5eeaa65e8f19c1dd", "sticker": null, "text": "????", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": "1ca3c1ae321866d4bd2d89da3c8f7570ba0b5c4b32b0d550f41d603eb45815fb", "datetime": "2023-02-16T01:47:56+00:00" }, { "message_id": "3dde0fbc817c78f09fbe8fabdc90dba57d3675ab066ff9a6bb06e0c006d02d99", "sticker": null, "text": "Are you beginner ?ask the question properly bro ?I can't understand what is your doubt ?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "0e0be0d2fd71287002464a2417c4f1ee9f9aff61288e44ec0e05f49dc8a371b5", "datetime": "2023-02-16T09:38:52+00:00" }, { "message_id": "b22d910e3b53d2eeae2939e199e27d6237fbce33456f2e9b38f0e8d161b2e319", "sticker": null, "text": "You can just use numberic parse method implying to string, and catch numeric format exception. If it works return true, exception return false.", "from_id": "9ba1d0fd121381194cc768e7121b16b49b4238ecaa7bfcbcf30285ec9b8be855", "reply_to": "0e0be0d2fd71287002464a2417c4f1ee9f9aff61288e44ec0e05f49dc8a371b5", "datetime": "2023-02-16T10:23:17+00:00" }, { "message_id": "634e3d4f6d029e4a953ae835d7ddb8eaf192b946b4f7be69aeb49b1e986a802d", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2023-02-16T10:29:38+00:00" }, { "message_id": "60fdff2f0117d28f65ec752033406759f4fcecf61aee47ee8b9f64b2e405ee68", "sticker": "750766425144033282/750766425144033447.gif", "text": "", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-16T12:16:47+00:00" }, { "message_id": "0e0aa403ad444015286c12d498aceb0ea30313176ad886b87dae4dd7c89436d8", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-02-16T15:49:28+00:00" }, { "message_id": "928c6a36c25b2001de79d64c625f305802745db47632d45f9d2aa662b5286035", "sticker": null, "text": "Anyone want to mentor me", "from_id": "254cb6a7f0869303d56a5a682ad98702691fc8c709fd768d67e8e7d6e1c7be87", "reply_to": null, "datetime": "2023-02-16T22:46:21+00:00" }, { "message_id": "73b2a9aa05c9f2b9637769c0569a3d51f0249a23c1df650fbd99d73b19605c8f", "sticker": null, "text": "/report", "from_id": "55526d1a37e0e59079920545ea1667d413c5556b02a4c07a834b97af8945cc61", "reply_to": "c64477914aee7653c501975c2bd3e2c0431600cff7b3148ac50f72367e6c744e", "datetime": "2023-02-17T02:41:57+00:00" }, { "message_id": "faa154158d6a2d87e9cbc21f00699045683a957fa0a43e8d7f7978e039e32681", "sticker": null, "text": "I am a full stack developer with5 yrs of experience, if anybody need job support or any kind of project do let me know, I will help.", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": null, "datetime": "2023-02-17T02:54:06+00:00" }, { "message_id": "64c586e15c250e79834418a90e2a151858c306876b7588aece9cb81a8e498a99", "sticker": null, "text": "Hi All\n\nAny one have experience in Java unit testing\ni have one task to complete\n\nPlease let me know..", "from_id": "7fe4cca5d4d7c8973f92c3d420c90ccff9d1da31010bb74bb20f6a10baffd93e", "reply_to": null, "datetime": "2023-02-17T05:40:01+00:00" }, { "message_id": "9bd7f503da87f6b32db8423d371934a2e10df0008477a41ede7a5a8f066740a4", "sticker": null, "text": "Anyone suggest me yt channel for spring", "from_id": "9649185662e2f9d299b1f65b400f4516a117a00702ca445a6c9a33a2ddb8bbaa", "reply_to": null, "datetime": "2023-02-17T15:39:27+00:00" }, { "message_id": "670a249c57686567459aa3d2888ff3db142c393859fd56f40e7447a9931f7f81", "sticker": null, "text": "Telusko on YouTube.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "9bd7f503da87f6b32db8423d371934a2e10df0008477a41ede7a5a8f066740a4", "datetime": "2023-02-17T16:12:15+00:00" }, { "message_id": "172584e86ecc407b2e924177b0aa0c4646de31fc18991613cd8e19bb9cf9f54b", "sticker": null, "text": "dontasktoask.com\nwhat the problem ?", "from_id": "afd6e763247b64c91f3db3e445793a8db61633f0193c0f6538eb6eeaa5b04e28", "reply_to": "64c586e15c250e79834418a90e2a151858c306876b7588aece9cb81a8e498a99", "datetime": "2023-02-17T16:39:33+00:00" }, { "message_id": "414ec337b29d1ede8281ad80123242d0f37b712e6a85b9a79230762715bb4c9b", "sticker": null, "text": "Anyone !!", "from_id": "7fe4cca5d4d7c8973f92c3d420c90ccff9d1da31010bb74bb20f6a10baffd93e", "reply_to": "64c586e15c250e79834418a90e2a151858c306876b7588aece9cb81a8e498a99", "datetime": "2023-02-18T07:41:49+00:00" }, { "message_id": "6837d892f7e767434bbd425124a800d0d2656a732b78c3a7f45ab920e381a659", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-02-19T07:36:59+00:00" }, { "message_id": "9a876a4014010590a9e16823d822b97252351f320eaa358669032c4876c5feec", "sticker": null, "text": "I am a full stack developer with2 yrs of experience, if anybody need job support or any kind of project do let me know, I will help.", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-19T07:43:44+00:00" }, { "message_id": "533d3728ab1c3211c00a1f8799f7a66d0e23154933504b6115649a039337d262", "sticker": null, "text": "Please sir I want to be your disciple", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "9a876a4014010590a9e16823d822b97252351f320eaa358669032c4876c5feec", "datetime": "2023-02-19T09:22:52+00:00" }, { "message_id": "f14e1b62f8b4e5c05478c89b97a42dab6ede2c076ca01b7072ad081b2df7df4c", "sticker": null, "text": "Really?", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": "533d3728ab1c3211c00a1f8799f7a66d0e23154933504b6115649a039337d262", "datetime": "2023-02-19T09:24:24+00:00" }, { "message_id": "b18ab1c1ea76fae708b35c7395ff105290ff2dde039edeff53f40490011b535f", "sticker": null, "text": "Yes sir", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "f14e1b62f8b4e5c05478c89b97a42dab6ede2c076ca01b7072ad081b2df7df4c", "datetime": "2023-02-19T09:24:48+00:00" }, { "message_id": "50a560bd6f9e4196df1ecde800520716419bdfcf83528ce4fbb1bf99ce170f17", "sticker": null, "text": "Help me do odd jobs without salary", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-19T09:24:52+00:00" }, { "message_id": "ff32af403d3e0a15bb1dcf2b1f7dcfcfe0b3195b47b2403095d94874f4a6f7cc", "sticker": null, "text": "Ok sir", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "50a560bd6f9e4196df1ecde800520716419bdfcf83528ce4fbb1bf99ce170f17", "datetime": "2023-02-19T09:25:04+00:00" }, { "message_id": "419b5f67d8803d373c0602d7c0c7a295bb9d2373f0252cebdcd70301030b9162", "sticker": null, "text": "Ok sir", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:06:48+00:00" }, { "message_id": "ef9300f1e0e8cd0270b241722450b20399b267ec568927f4aefc212f3b04ee8e", "sticker": null, "text": "I'm a fullstack developer.", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:07:19+00:00" }, { "message_id": "bbffc0aa848fc7adfd8e24c2a0ddcad31b955e8ed538fcaae0e27c42145acbcf", "sticker": null, "text": "5 years frontend and 1year java", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:07:49+00:00" }, { "message_id": "35f8881e54b2a068a1b49a383acfc533465b2a147b7c48d8ad0e7ecc3a1cdaaa", "sticker": null, "text": "any project need me?", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:08:24+00:00" }, { "message_id": "b4fe038cb1683b2650daa7100a1a40d75839a4b87dba9d9df69b6fd81b2e5cbb", "sticker": null, "text": "Sir , me. Too", "from_id": "45d91f7a38fc039ff57b27dcce5c7fb81c9257921adb974c58939e94d63bfd84", "reply_to": "50a560bd6f9e4196df1ecde800520716419bdfcf83528ce4fbb1bf99ce170f17", "datetime": "2023-02-19T13:12:21+00:00" }, { "message_id": "0b3cd227cb0b3c21eecaa7709c1e7af3c889f934016cefd94fb84e0cf99db38b", "sticker": null, "text": "i need money", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-19T13:13:04+00:00" }, { "message_id": "ccea5166cd5bb2f3c183f7fc4bd332426aaee12c7df60c148a95879dffeec5c4", "sticker": null, "text": "I can work without money sir", "from_id": "45d91f7a38fc039ff57b27dcce5c7fb81c9257921adb974c58939e94d63bfd84", "reply_to": "0b3cd227cb0b3c21eecaa7709c1e7af3c889f934016cefd94fb84e0cf99db38b", "datetime": "2023-02-19T13:13:32+00:00" }, { "message_id": "eae9c9051b55f6366293b61bf68eb556ae739b547524fdeed534856287b96664", "sticker": null, "text": "i have", "from_id": "fe493110d68ee7eeb44371c88559d6cc76085bcfa76e024e15b4be56dae4fa6b", "reply_to": null, "datetime": "2023-02-19T13:13:46+00:00" }, { "message_id": "d632008f0c63094a55638059598902d6b4b7bf8cae73a67a927d7cdb4c419946", "sticker": null, "text": "?", "from_id": "45d91f7a38fc039ff57b27dcce5c7fb81c9257921adb974c58939e94d63bfd84", "reply_to": "eae9c9051b55f6366293b61bf68eb556ae739b547524fdeed534856287b96664", "datetime": "2023-02-19T13:14:20+00:00" }, { "message_id": "562326bfb7523c29ae7a2785294832426438b313aa1fd06002da265e409178bd", "sticker": null, "text": "contact me", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-19T13:14:33+00:00" }, { "message_id": "1c2abb72b69689649733525b45a79a5665b1039a01371a6ad3bb1a2d70c70766", "sticker": null, "text": "i need money", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-19T13:14:37+00:00" }, { "message_id": "2235827a17d285d15cb6511961d46b83e2e60e14252172ff88ec65139075f612", "sticker": null, "text": "not much for me , i will pay knowlage for u", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-19T13:15:16+00:00" }, { "message_id": "a0a8f0c85c7b095c76bc5ba05c2b40ae909881d6086882ccecfdcc72c340fc59", "sticker": null, "text": "ok", "from_id": "fe493110d68ee7eeb44371c88559d6cc76085bcfa76e024e15b4be56dae4fa6b", "reply_to": null, "datetime": "2023-02-19T13:15:25+00:00" }, { "message_id": "235b4a9e825abc2632c2b47fead24860d6a167a36d35795c06ed64cfa1e561fb", "sticker": null, "text": "I'm trying to freelance, or do international development", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:16:58+00:00" }, { "message_id": "17163f43b915c0714bed297f885a531cda7a2e8790b6eb9408c2c6f89bafbb8d", "sticker": null, "text": "I also have my own company to do some business", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:17:15+00:00" }, { "message_id": "1a238d6e3e3b769136caa835d0c8cf630377d013956e7918ee4ee901c2259734", "sticker": null, "text": "Is there any way, I can contribute just to learn.?", "from_id": "45d91f7a38fc039ff57b27dcce5c7fb81c9257921adb974c58939e94d63bfd84", "reply_to": "17163f43b915c0714bed297f885a531cda7a2e8790b6eb9408c2c6f89bafbb8d", "datetime": "2023-02-19T13:18:12+00:00" }, { "message_id": "f35d187c0f24f9632aead0adeaf506c9f73b961b08a1ff63b938197ca23d0de1", "sticker": null, "text": "So I look for projects in various ways.", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:18:14+00:00" }, { "message_id": "c4b16dfe20f19c0ee38f4e31e3a761fd8c066d02ed1b35c855adf5bcebcc7efe", "sticker": null, "text": "//", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "1a238d6e3e3b769136caa835d0c8cf630377d013956e7918ee4ee901c2259734", "datetime": "2023-02-19T13:18:28+00:00" }, { "message_id": "33f172eb4124cba65ffa4295bc871585782b34d1e9e764156b5d5e8ed7b327b1", "sticker": null, "text": "too many poroject", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-19T13:18:32+00:00" }, { "message_id": "0054e74e8be9427d07d62c823cebfaa2d97aa143f640ee2babe94b04f90c7f81", "sticker": null, "text": "?", "from_id": "45d91f7a38fc039ff57b27dcce5c7fb81c9257921adb974c58939e94d63bfd84", "reply_to": "c4b16dfe20f19c0ee38f4e31e3a761fd8c066d02ed1b35c855adf5bcebcc7efe", "datetime": "2023-02-19T13:18:47+00:00" }, { "message_id": "caf22b024b357e30b37954dee23466b99b9d7bea0886f7adde0f09a250bcf4b2", "sticker": null, "text": "I need projects, I have a team.", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-19T13:19:12+00:00" }, { "message_id": "f21b19e2c15b2439ff524f725acd7206802737fe7de95dcd19c2ce4a796b5a4e", "sticker": null, "text": "Please anyone here have a charge book about ATM?", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-02-19T13:19:55+00:00" }, { "message_id": "f82304227c5f268515691f80aeb51e20a2dbe7565b7271ecb57bdb9951698295", "sticker": null, "text": "sad", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-19T14:14:24+00:00" }, { "message_id": "67e15e9a033bd200943aa7409ff017f4e595844261eb77aede0f5f6768f8caa0", "sticker": null, "text": "lose faith", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-19T14:14:32+00:00" }, { "message_id": "d6761d7e7e1bfb8d7e214c31b520b9b6e919daa4c8e1b9e2cfc334cb314a66fb", "sticker": null, "text": "😂", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-02-19T16:08:46+00:00" }, { "message_id": "ee594ee6c972838b0447cc0d8f0057fd3d5e9cd233a34947d4b6401265222fa1", "sticker": null, "text": "Hi", "from_id": "0f4b39b4f3bc18b7a1a5c2f88b59ff5eebf0f59d327ffd44070aca35e9441ef6", "reply_to": null, "datetime": "2023-02-19T16:40:43+00:00" }, { "message_id": "cdca5d3a0baa0bb752a859d6c09f56cadef8b22b118949df978fd1da3307ebcc", "sticker": null, "text": "Anyone want to lean java programming full course is available", "from_id": "0f4b39b4f3bc18b7a1a5c2f88b59ff5eebf0f59d327ffd44070aca35e9441ef6", "reply_to": null, "datetime": "2023-02-19T16:41:04+00:00" }, { "message_id": "f4b384a4b8d5ae7e380c8e7565193d26d2ac3fc881ff9897b22539e5bb3541b1", "sticker": null, "text": "I'm broke so I'm using ChatGPT to learn 😂", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": null, "datetime": "2023-02-19T18:22:07+00:00" }, { "message_id": "b58628d29f12421392b437322ef5ef02c81400a75c1af016e5cb0b87f3acd1d0", "sticker": null, "text": "Chatgpt can deal with bits and pieces of knowledge, but we need to have the framework in our own head first. And then you know what to ask😂", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-20T01:15:12+00:00" }, { "message_id": "cd24501245c8603ef36fbc84917d9019310dc82a270c79a0074521e54b6730ae", "sticker": null, "text": "yep. that's why I searched up usually what all contents are there in a Full Stack Web Development Course and just asked the bot to give me a syllabus plan. then I copied all the course content and every day I finish a part of that.\nsure it is super simplified but the more i practice and learn and look at other sources, the more I'll learn", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": "b58628d29f12421392b437322ef5ef02c81400a75c1af016e5cb0b87f3acd1d0", "datetime": "2023-02-20T02:39:39+00:00" }, { "message_id": "2c89679acbfc4d2b16bf735a27591fa548fb7641163016f9888a138a4a4d49d3", "sticker": null, "text": "👍", "from_id": "6584b0110a4e8f2e867e4c8450c8da0a56af3e703629ff7cea4d0fb650bee790", "reply_to": null, "datetime": "2023-02-20T03:56:14+00:00" }, { "message_id": "8a1de0b2204903d8b5ea08814bdc1f2fc2288cb64535b5c3ac70dc547e5b3396", "sticker": null, "text": "Is spring and spring boot is same ?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-20T04:04:40+00:00" }, { "message_id": "d96532e29abe2c993b94d80e85b8d067a23cf1e7aa289d3a0dbd1149a611a927", "sticker": null, "text": "What frame can I choose for web application", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-20T04:05:23+00:00" }, { "message_id": "33d29f60357e37f508972662f8e4da61e320bb885fe0163ec2b9bb4ad13f8d75", "sticker": null, "text": "no", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "8a1de0b2204903d8b5ea08814bdc1f2fc2288cb64535b5c3ac70dc547e5b3396", "datetime": "2023-02-20T04:08:08+00:00" }, { "message_id": "07fbec3cb8ddda926eabdaf6e83424aa33735e9af99ab840dfcbc20ed8c261ce", "sticker": null, "text": "spring boot", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "d96532e29abe2c993b94d80e85b8d067a23cf1e7aa289d3a0dbd1149a611a927", "datetime": "2023-02-20T04:08:15+00:00" }, { "message_id": "0b1dab468fa45d05edd7fd3d0612697112368bbbc877fff355f0c268b7d8ddb0", "sticker": null, "text": "Tqq bro", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-20T04:08:30+00:00" }, { "message_id": "670cfbb287e91bbeb983907ec07187c05198dbb362010bf7dc8384341ca9c093", "sticker": null, "text": "For fast response", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-20T04:08:44+00:00" }, { "message_id": "77efd0a0ba719cb6b7d481e46dbfba7eadcfb45f46fa84e3b1f20c513a77a6b0", "sticker": null, "text": "I have one more doubt", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "867a9ff7a74104b5a30b63246d5f300d69c37ba8d6b51d8fdd0a135f2c903deb", "datetime": "2023-02-20T06:07:49+00:00" }, { "message_id": "a85c91ff65ed99f22ecfdc52ef2b16f6610cf40a4caf047a8108b3467e9206c4", "sticker": null, "text": "I have knowledge of java but I want to go web developer side for backend", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-20T06:08:41+00:00" }, { "message_id": "114851ded62b3d498daef2408e3c6f0b51afb6e0e23c0791e5b02776f8f1e979", "sticker": null, "text": "I mean i want to go for web application side", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-20T06:09:09+00:00" }, { "message_id": "6f62192f1d475f24d2e469d9216c8405bccd10b9ccb0c372758d34b95934c988", "sticker": null, "text": "What skills needed for web application developer", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-20T06:09:59+00:00" }, { "message_id": "9040b6d4c7cb18c0123fff5203e775f5a808745e09f8f9b7f48cc88c22776ac4", "sticker": null, "text": "@#USER which country are you", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-20T10:32:02+00:00" }, { "message_id": "22fdc3ea0e79cd80587216a6ea6eb0af40ffdd1857594194a89153e9e1bc1ada", "sticker": null, "text": "different area,have different tech", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-20T10:32:30+00:00" }, { "message_id": "2db08e17b233f1a728bf5455cb10f0fc6a85d442469165ac103b3604076c9589", "sticker": null, "text": ".", "from_id": "870e8c3105c9b62857b1a6bd12a30a44820810c1f3f6d85d40d116620773166a", "reply_to": null, "datetime": "2023-02-20T10:32:32+00:00" }, { "message_id": "18221bcefec76adcd8ffc4fe4a6e5baa00d91689ec4e3a25595c8f4f4c57b827", "sticker": null, "text": "it's possible for this group has above half number Chinese!\nBut no one like me use poor English skill.", "from_id": "842579becb3133c21a244a00b97674e5df1559fc9a9fedb18020672bb18aec59", "reply_to": null, "datetime": "2023-02-20T14:14:14+00:00" }, { "message_id": "100c83d1f95357dfa096707c7bbd600211671f97314a15396d306d3015ddf702", "sticker": null, "text": "Hey guys im gonna buy a course on learning java. Are these topics enough?\nData types\nConditionals\nIterations\nArrays strings\nClasses, method, static\nInheritance \nAbstract data classes and interfaces\nException handling\nLamda expression\nGenerics\ncollection framework\nSteam api\nFile manipulation, io & nio\nUnit testing using junit5", "from_id": "b371741be8bc514120dffedd9b28ffa656cc1d70751ddeb6caae7b4d8fcb95ba", "reply_to": null, "datetime": "2023-02-20T15:04:36+00:00" }, { "message_id": "c82b386968b4f552cf04480d6ef49ad928a2397d68f7222e318ff417a95f14ab", "sticker": null, "text": "🇮🇳", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "22fdc3ea0e79cd80587216a6ea6eb0af40ffdd1857594194a89153e9e1bc1ada", "datetime": "2023-02-21T10:09:01+00:00" }, { "message_id": "a5b36481172ffb5d68c9a0d3a9c5cdf9977500f303680b4c7417d65eda156531", "sticker": null, "text": "🤮", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": "c82b386968b4f552cf04480d6ef49ad928a2397d68f7222e318ff417a95f14ab", "datetime": "2023-02-21T10:11:52+00:00" }, { "message_id": "a71dedac36d99878f0d2fd2753dd971e955994e5aebaa5bda628f1049c88dae7", "sticker": null, "text": "What happen man ?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "a5b36481172ffb5d68c9a0d3a9c5cdf9977500f303680b4c7417d65eda156531", "datetime": "2023-02-21T12:15:16+00:00" }, { "message_id": "d4ae4d717a4f9ff175dfc810e75d8a332f7fb681e96c1ebdf484a61058701cdf", "sticker": null, "text": "He just from Pakistan 🤣🤣", "from_id": "b280b0fbb902827b192d72eae90615e483ed8e85f7bcfd90b38d798218fe0a8d", "reply_to": "a71dedac36d99878f0d2fd2753dd971e955994e5aebaa5bda628f1049c88dae7", "datetime": "2023-02-21T12:27:37+00:00" }, { "message_id": "f809090b146f885edf977661bc5886754ae4d235c880c2226b50305dc1a94ad3", "sticker": null, "text": "Ooh that's right what you said 🤭", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-21T12:29:57+00:00" }, { "message_id": "a0953be34949324292aa80ef876dc5b7500a1e56ce2f87591d78add383b23010", "sticker": null, "text": "I think for a beginner it's ok", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "100c83d1f95357dfa096707c7bbd600211671f97314a15396d306d3015ddf702", "datetime": "2023-02-21T13:29:15+00:00" }, { "message_id": "63d0d2e683055e4f8bcced912e9bf969e28b5a9f41193edfd971bb092bf47067", "sticker": null, "text": "🇵🇰😂😂😂🤮🤮🤮", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": "d4ae4d717a4f9ff175dfc810e75d8a332f7fb681e96c1ebdf484a61058701cdf", "datetime": "2023-02-21T15:33:14+00:00" }, { "message_id": "a13f393da5c5fc93a291c76a70822e85b6b6e021d4c69b23944978efc66ca2bb", "sticker": null, "text": "What else would i need to learn Android development?", "from_id": "b371741be8bc514120dffedd9b28ffa656cc1d70751ddeb6caae7b4d8fcb95ba", "reply_to": "a0953be34949324292aa80ef876dc5b7500a1e56ce2f87591d78add383b23010", "datetime": "2023-02-21T16:51:38+00:00" }, { "message_id": "876bcb793045654771c7bdc72c2d78b88af670fd8f9567d22bd407dd0f336fbb", "sticker": null, "text": "Yes", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "a13f393da5c5fc93a291c76a70822e85b6b6e021d4c69b23944978efc66ca2bb", "datetime": "2023-02-21T17:03:42+00:00" }, { "message_id": "703708427dfe8e23b534e9e9ca5c180b2fe54f90a6aa23efdf00ca42576ea57e", "sticker": null, "text": "Lanka Lanka sri Lanka 🤧🤢🤮👹", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "63d0d2e683055e4f8bcced912e9bf969e28b5a9f41193edfd971bb092bf47067", "datetime": "2023-02-22T09:29:11+00:00" }, { "message_id": "262d6b754ac1ffd807fcfb3454ee7ef0ba0e456351ed4f499699cc182c1c0fd4", "sticker": null, "text": "🤣🤣🤣", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": "703708427dfe8e23b534e9e9ca5c180b2fe54f90a6aa23efdf00ca42576ea57e", "datetime": "2023-02-22T13:59:14+00:00" }, { "message_id": "1cdbdd472657ccf3b57230d6f2647f333903a6234c172653a651d74e2f76ec09", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2023-02-22T14:15:34+00:00" }, { "message_id": "b33b0cdcdebbcc61d9876c82c1d346a381573afe33de7f73b291e1a38b66fa18", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "f5525e2ec3f79781ffbe9777d3367e83f590936f65ecc91bcb8b5b6a7ca5b00d", "reply_to": null, "datetime": "2023-02-24T15:44:24+00:00" }, { "message_id": "98f7596cb44d50c936a73cff2f5cf6401b043ae457b9458cf870221bed62ebc0", "sticker": null, "text": "Hi", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-24T17:31:55+00:00" }, { "message_id": "12cfd11f0d733eac94e256b6b6098c4b0ceec5b37ade90bbde1952330d1f5b3f", "sticker": null, "text": "What can I learn after java", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-24T17:35:12+00:00" }, { "message_id": "74c5f3339154641806ddd45f0f5df1285886af698f012dda0408b27beee4915d", "sticker": null, "text": "Springboot or mysql?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-24T17:35:24+00:00" }, { "message_id": "3daf84207096d6a18da07dac0e0d2bcea3ace73a651cc66248d17ec1424d890c", "sticker": null, "text": "Spring boot", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": null, "datetime": "2023-02-24T17:45:43+00:00" }, { "message_id": "385705d80b6c7cec9c032a65c1a7b9c7b7361f4612d44e223c41511b544c3e61", "sticker": null, "text": "Just wanted to share the coupon code fto get free java course on Udemy - 816E0C04D39646ECFC5F", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-02-24T18:43:11+00:00" }, { "message_id": "760eb7658d73b1f21276320ba0afcc3b20f1f4c463badf8de1b0da0d671daa3e", "sticker": null, "text": "Enroll before it stopped working", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-02-24T18:43:34+00:00" }, { "message_id": "be4bfd37f04aaf3760ee1b7c8b7b9854156d2bdff9944f80a129a3793e9cc1ef", "sticker": null, "text": "the name of the course for which this coupon is working is - Java 19 Mastery: The Complete and Fast-Paced Guide", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-02-24T18:44:32+00:00" }, { "message_id": "122701e3c820c47dba360f54b6e4110cd93f41c2ab25fe066bd4c8cdf8b078bd", "sticker": null, "text": "search the course in udemy", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-02-24T18:44:41+00:00" }, { "message_id": "c68d9ee1c79b6a5cb688b67745118bea97c42db050f834771342984494241a5d", "sticker": null, "text": "Thank you 🙂", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-02-24T18:44:48+00:00" }, { "message_id": "1082d9266711a22577a679773b997c1db48b2bda9e7cf9af5ca26c8246a38edf", "sticker": null, "text": "Thank you sir\nIt works 🙏🏿 I'm grateful", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "385705d80b6c7cec9c032a65c1a7b9c7b7361f4612d44e223c41511b544c3e61", "datetime": "2023-02-24T22:05:52+00:00" }, { "message_id": "f9fd48eb2131e28a7a9d5555514c6a719f78952a5fe776d3c1ffca32f71e7ae2", "sticker": null, "text": "Hey, everyone, I don't know why I'm losing my interest in coding for 3-4 days. I started my coding journey 3 months before and I love to code in starting but now it's happening, what should I do?", "from_id": "88b8ee5ea2a2340e32301bfb3a38e33a9de4a13056a761d00cd4e55d460e9655", "reply_to": null, "datetime": "2023-02-24T22:38:05+00:00" }, { "message_id": "9606eef23e7ae3363a2d775a211d4ec2c5c7aa7d7149497b286662e306da2397", "sticker": null, "text": "Please for any Udemy coupon code for these topic \n-Ai \n- full stack web dev\n- react Js \n- springboot java", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-02-24T23:20:59+00:00" }, { "message_id": "3988653847d17a1a1007f0bfd5838b8f0380811560a1cea43cac0544819ebec3", "sticker": null, "text": "-java full backend", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-02-24T23:21:29+00:00" }, { "message_id": "764e6175ae2d2b36108adb514bfd402e46a3fb2992e93564c11d174d96ffd961", "sticker": null, "text": "Full stack web dev or full backend on java", "from_id": "b280b0fbb902827b192d72eae90615e483ed8e85f7bcfd90b38d798218fe0a8d", "reply_to": "9606eef23e7ae3363a2d775a211d4ec2c5c7aa7d7149497b286662e306da2397", "datetime": "2023-02-25T00:21:56+00:00" }, { "message_id": "ed02a3c607eaacb58141d7663e50f6f504cbecb404cdd86bcfafb696a190f643", "sticker": null, "text": "Any Tips I am high school student learning Java basics", "from_id": "486e735766714199a6148813074d9569a1e721545686fd5151928df42661669a", "reply_to": null, "datetime": "2023-02-25T02:58:52+00:00" }, { "message_id": "dae399aee6834beffac35e1695e0a77fbdcf3cbe4acbe180c8d46e512ffea11b", "sticker": null, "text": "Any", "from_id": "ddf0c43458e3c5bdbdc9bd72f1edad4cce799ff17c5a91335bd4294b7cc1f79a", "reply_to": "764e6175ae2d2b36108adb514bfd402e46a3fb2992e93564c11d174d96ffd961", "datetime": "2023-02-25T03:21:43+00:00" }, { "message_id": "3f1e4bedab1bb16e230031eaeb8d8237875cc254140a76e0a4f4dd1f09788e3b", "sticker": null, "text": "Hi everyone i provide SQL ,java live training daily live classes if any one would like to join ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": null, "datetime": "2023-02-25T05:30:13+00:00" }, { "message_id": "ea340a46b972503dfb84d9bc28dbdf881647c6ba6fe6df3329a2b0194833d32d", "sticker": null, "text": "Any", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "ed02a3c607eaacb58141d7663e50f6f504cbecb404cdd86bcfafb696a190f643", "datetime": "2023-02-25T07:02:16+00:00" }, { "message_id": "d662af0ab8b3e05b411908e2e9ab743d11ca4fb9d97774e3e53f3c31b721732e", "sticker": null, "text": "just say ur problems", "from_id": "0e99546c5ed00e135d402a26094c7dedb89a253acf39fe6731576e4bb2ac537e", "reply_to": null, "datetime": "2023-02-25T13:29:36+00:00" }, { "message_id": "e8eb5c85b346500acb73767c5d1f742d34d7c93a84969f93bb381d4737626695", "sticker": null, "text": "What do you need ?", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": "b1d19325fd626775ee981afdfe1c21f1bf4abb0cb330c2d1172ca0fa80b9b196", "datetime": "2023-02-25T13:46:09+00:00" }, { "message_id": "877464a5b53b53d8d68841b19b4ec95f293b98da70809cae5eb77287edf4386d", "sticker": null, "text": "Hello", "from_id": "ec4c1e9241fabbe3eb21b53240ede07f89c41e5239ec2ca9e9c799d841778999", "reply_to": null, "datetime": "2023-02-25T19:29:17+00:00" }, { "message_id": "f27b5a65caf15dd4e11c63bad723f968ece308c90fcbd3fc8b9f970c7d9d9e50", "sticker": null, "text": "I was going to send (8+9)😂😂😂😂😂", "from_id": "ec4c1e9241fabbe3eb21b53240ede07f89c41e5239ec2ca9e9c799d841778999", "reply_to": null, "datetime": "2023-02-25T19:31:00+00:00" }, { "message_id": "49941ba6d4a2f2f02dcadeb39ab52153214654c3f15d49184561ca40cb808e25", "sticker": null, "text": "I didn't understand what you mean", "from_id": "1ca17d15d9e8d1855fb32ba6794d82de9876498fbfdbb10e29fd5487211f210c", "reply_to": null, "datetime": "2023-02-25T19:33:03+00:00" }, { "message_id": "1a22b7f46864abe65e8b7bc2e323306dd9dedb04ccddb5ef0b38dfbf8386851e", "sticker": null, "text": "?", "from_id": "ce2b2fd9625b623acd12c3855a11451a020be6594c528b39343e2dab88bfd1a5", "reply_to": "f27b5a65caf15dd4e11c63bad723f968ece308c90fcbd3fc8b9f970c7d9d9e50", "datetime": "2023-02-26T05:47:30+00:00" }, { "message_id": "f12425a7837a353028217f425c1bfb305480fd0af6d53fe0e672fb8e0231c67b", "sticker": null, "text": "Hi everyone! Could someone help me to solve the problem on LeetCode? Of course, not for free =)", "from_id": "b404351e2a91ab7416849a370ed7dd67e81566fa77c48d0b35406b2049950066", "reply_to": null, "datetime": "2023-02-26T07:28:34+00:00" }, { "message_id": "a94ef15e7e0662056dbf0308080a42df170b14f1440b61e0686a0c0c74f1854e", "sticker": null, "text": "Why doesn't the loop break then resumes to the next line whenever the user first inputs a number that's not between 0 to 50 then puts a number between 0 to 50 in the following code:\n\nScanner input = new Scanner (System.in);\n System.out.println(\"Enter a number\");\n int num = input.nextInt();\n while (!(0 <= num && 50 >= num)) {\n System.out.println(\"Enter a number\") ;\n num = input.nextInt();\n if (0 <= num && 50 >= num) {\n num = input.nextInt();\n break;\n }\n }\n \n if (num % 2 == 0 ) {\n System.out.println(\"Divisble by 2\");\n } else {\n System.out.println(\"Not divisible by 2 / Odd number\");\n }", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-26T07:47:01+00:00" }, { "message_id": "5de065a0d34492f6ad0eaf02f89678ab61ba90b28df76be077e5c079c611ae83", "sticker": null, "text": "The reason why the loop doesn't break and resumes to the next line whenever the user first inputs a number that's not between 0 to 50 is because the break statement is not placed in the correct position in the code.\nCurrently, the break statement is only executed when the user inputs a number that's between 0 to 50, which is after the while loop has already repeated. So, when the user first inputs a number that's not between 0 to 50, the loop repeats and prompts the user to enter another number until a number between 0 to 50 is entered. However, when a number between 0 to 50 is entered, the break statement is not executed because it is located inside the if statement block, which is not reachable since the condition in the while loop is already satisfied. This means that the code continues executing outside of the loop, without checking if the entered number is even or odd.\nTo fix this, you can move the break statement outside of the if statement block and place it right after the line where num is assigned a value that is between 0 to 50, like this:", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": "a94ef15e7e0662056dbf0308080a42df170b14f1440b61e0686a0c0c74f1854e", "datetime": "2023-02-26T07:58:59+00:00" }, { "message_id": "5f55eebe8deff6d35b47c6af5733f714454a00b21f2eb5cb1bfbc51d2abe78b6", "sticker": null, "text": "Scanner input = new Scanner(System.in);\nSystem.out.println(\"Enter a number\");\nint num = input.nextInt();\nwhile (!(0 <= num && 50 >= num)) {\n System.out.println(\"Enter a number\");\n num = input.nextInt();\n}\nif (0 <= num && 50 >= num) {\n System.out.println(\"Divisible by 2: \" + (num % 2 == 0));\n break;\n}", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": null, "datetime": "2023-02-26T07:59:09+00:00" }, { "message_id": "23ed930642634eb65fb82a9cfb45d53c69adbdbd6112a8fce3f074b5c40acf73", "sticker": null, "text": "download chat gpt)", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": null, "datetime": "2023-02-26T07:59:26+00:00" }, { "message_id": "94273d31b77e45cef5e061e61f783e532a78a209cc2aefee346a618a8aaadae9", "sticker": null, "text": "I want to but its blocked in my country", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "23ed930642634eb65fb82a9cfb45d53c69adbdbd6112a8fce3f074b5c40acf73", "datetime": "2023-02-26T08:08:40+00:00" }, { "message_id": "754f8cf53037e5dfee7188e29ddd4a9bcd3cabbd14a9eed56291606e82191026", "sticker": null, "text": "Is this chatgpt's response?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "5de065a0d34492f6ad0eaf02f89678ab61ba90b28df76be077e5c079c611ae83", "datetime": "2023-02-26T08:08:54+00:00" }, { "message_id": "23ee8a287f57490baea51194744ae0febf3847a19d6c5a49e07acc3a502bd702", "sticker": null, "text": "yes", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": "754f8cf53037e5dfee7188e29ddd4a9bcd3cabbd14a9eed56291606e82191026", "datetime": "2023-02-26T08:09:25+00:00" }, { "message_id": "d46644fcdc01d1f0c949f6e8faa82c4b6c2587c7a983e22ee7dc1099455025f7", "sticker": null, "text": "This guy's a legend", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "23ee8a287f57490baea51194744ae0febf3847a19d6c5a49e07acc3a502bd702", "datetime": "2023-02-26T08:09:32+00:00" }, { "message_id": "cf946c450544b981f041969fec55191c294681e6de538536efe005596d793004", "sticker": null, "text": "Is chatgpt free or needs money?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-26T08:09:49+00:00" }, { "message_id": "81319ef2934c93e01089248bff037e41454b86e8e5f066ca261d36ff83f84d66", "sticker": null, "text": "there are plenty of ways just google", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": "94273d31b77e45cef5e061e61f783e532a78a209cc2aefee346a618a8aaadae9", "datetime": "2023-02-26T08:10:06+00:00" }, { "message_id": "a27374cda63b623f89b1d0352c71f6bea17404a0bebf5ced92123772a743de99", "sticker": null, "text": "Yes i downloaded vpn i just need like an american number or something i dont have that", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "81319ef2934c93e01089248bff037e41454b86e8e5f066ca261d36ff83f84d66", "datetime": "2023-02-26T08:10:25+00:00" }, { "message_id": "2a521e3ace78fdf9251930a10b83ae2d426ef638882ffa328050a8a04b974459", "sticker": null, "text": "yes for that purpose it might ask money but its free", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": "a27374cda63b623f89b1d0352c71f6bea17404a0bebf5ced92123772a743de99", "datetime": "2023-02-26T08:11:12+00:00" }, { "message_id": "ba370cb3a9b1073634cb7d37ec6bcb329a1fca24edfc0087478804121e1b4834", "sticker": null, "text": "i can't advice anything because i just found free one...", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": null, "datetime": "2023-02-26T08:11:50+00:00" }, { "message_id": "ac7a323637391030f67fd9c83acabc910444646942bc5385c34b3df81965e56d", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "f12425a7837a353028217f425c1bfb305480fd0af6d53fe0e672fb8e0231c67b", "datetime": "2023-02-26T11:11:26+00:00" }, { "message_id": "d85c9605f7a5cf7312d0162c09d2736b547b8109a049307a0a2d02f4e26ea1ef", "sticker": null, "text": "hello everyone", "from_id": "ab38101bc7a22327a03f728ac5f590f652dc2ab42637c839df87c85edd7a0f77", "reply_to": null, "datetime": "2023-02-26T12:38:24+00:00" }, { "message_id": "b8b88aa0fb3aec33454f2598859413fdb3a513f846a5c7e60bc1d0877dcceadc", "sticker": null, "text": "How fast will chat gpt replace junior devs in your opinion?", "from_id": "b280b0fbb902827b192d72eae90615e483ed8e85f7bcfd90b38d798218fe0a8d", "reply_to": null, "datetime": "2023-02-26T12:45:30+00:00" }, { "message_id": "3bf329c4ecb48b036cd5dc384c428a489a54037fa273901f590ca68356de5073", "sticker": null, "text": "I have a little doubt guys", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-26T12:46:02+00:00" }, { "message_id": "05e0c3f190eb0647f5cc9e845ba0433d64348ae8aecdada643625ec97c5e284d", "sticker": null, "text": "When to use constructor Injection and setter injection in Has a relationship?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-02-26T12:46:35+00:00" }, { "message_id": "e624f6dcd7325f07eeb1edb6bed3fbbe310cc912b1019033a19b411eca9d0bde", "sticker": null, "text": "", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "b8b88aa0fb3aec33454f2598859413fdb3a513f846a5c7e60bc1d0877dcceadc", "datetime": "2023-02-26T12:48:56+00:00" }, { "message_id": "9c64ec81f8d02e5a73abbe7d1ec3bf771d13762247f86cd6deda27f70e5f0b85", "sticker": null, "text": "Plz dont say this :(", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "b8b88aa0fb3aec33454f2598859413fdb3a513f846a5c7e60bc1d0877dcceadc", "datetime": "2023-02-26T14:33:29+00:00" }, { "message_id": "11bd037346398e5743844732f607d00157e3661f6094e674d494b00799df3c39", "sticker": "571516982952722433/571516982952722555.png", "text": "", "from_id": "b280b0fbb902827b192d72eae90615e483ed8e85f7bcfd90b38d798218fe0a8d", "reply_to": "9c64ec81f8d02e5a73abbe7d1ec3bf771d13762247f86cd6deda27f70e5f0b85", "datetime": "2023-02-26T14:43:39+00:00" }, { "message_id": "8e0111281ce7a5c2b7240d28b2fef9ff39226ca4507a26ec237d54bf0ff88e5d", "sticker": null, "text": "What's the output of this code?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-26T15:29:40+00:00" }, { "message_id": "2ce1250873b4372b24d0b4eff6af11df91a275b2933151509f0f405f4e176fad", "sticker": null, "text": "Scanner sc = new Scanner (System.in);\n \n \n for (int a = 2, b = 3; a <= 4; a++, b--) {\n for ( ; b == a; b--) {\n if (a%b == 1) {\n continue;\n } else {\n System.out.println(a+a);\n System.out.println(b*b);\n }\n }\n }", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-26T15:29:42+00:00" }, { "message_id": "c9398e77130cfb2573fd8f56597478d5d6af7a0fd850ce5311efd0b1d4ab3585", "sticker": null, "text": "Because in our uni worksheet it says the output is\n\"9\n16\n25\"", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-02-26T15:30:04+00:00" }, { "message_id": "e44db69f720767454b8502d53d91fab3cead9b6ce89644e56924540494e190a5", "sticker": null, "text": "It will not print anything, but you run program to check result.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "2ce1250873b4372b24d0b4eff6af11df91a275b2933151509f0f405f4e176fad", "datetime": "2023-02-26T15:38:25+00:00" }, { "message_id": "f768532272d171927a740ce4555086436775b58bd7be9ff41621ef56a7a7477e", "sticker": null, "text": "Conditions is always false so I don't think any output will be there on screen.", "from_id": "45d91f7a38fc039ff57b27dcce5c7fb81c9257921adb974c58939e94d63bfd84", "reply_to": "2ce1250873b4372b24d0b4eff6af11df91a275b2933151509f0f405f4e176fad", "datetime": "2023-02-26T15:47:28+00:00" }, { "message_id": "c6ec66ddba265f9990c4bd7b6d3ed94615c51cba2fed0a48c7a22644c0921c54", "sticker": null, "text": "Anyone here who can be the partner in learning the full stack java development?", "from_id": "45d91f7a38fc039ff57b27dcce5c7fb81c9257921adb974c58939e94d63bfd84", "reply_to": null, "datetime": "2023-02-26T15:49:12+00:00" }, { "message_id": "362e77a8807b502d0305657571e216b8ced094e79d5d9cb8e416b233bf26f1c0", "sticker": null, "text": "hi", "from_id": "0f4b39b4f3bc18b7a1a5c2f88b59ff5eebf0f59d327ffd44070aca35e9441ef6", "reply_to": null, "datetime": "2023-02-27T00:42:23+00:00" }, { "message_id": "cc947e6874ca0ba7b6fc784c867902a39c387cd77c1da720531fd7c94ff1a05c", "sticker": null, "text": "i want make car app applicaiton", "from_id": "0f4b39b4f3bc18b7a1a5c2f88b59ff5eebf0f59d327ffd44070aca35e9441ef6", "reply_to": null, "datetime": "2023-02-27T00:44:24+00:00" }, { "message_id": "11b8567d8fc76438c24310e5da18ea8f20d8ba4f1ad33ca4e7376c0f43679be2", "sticker": null, "text": "anyone contact me private", "from_id": "0f4b39b4f3bc18b7a1a5c2f88b59ff5eebf0f59d327ffd44070aca35e9441ef6", "reply_to": null, "datetime": "2023-02-27T00:44:50+00:00" }, { "message_id": "985be87e44a28c7d981cec334f619302418b16539b36e06009046f06e276a30a", "sticker": null, "text": "i want make film H5 anyone contact me private pay dollar", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-02-27T02:57:24+00:00" }, { "message_id": "bd40df0ecaf67f9e9a606e4c285816a8aafc9fa9b400d531cf44bae4133122ab", "sticker": null, "text": "+", "from_id": "9b95da3cf26c83d77d1a59cd1847b0e92c02a09ece24b7fec36011ea658aaab1", "reply_to": null, "datetime": "2023-02-27T08:26:47+00:00" }, { "message_id": "efaed7c1de359007bee8001f9c476122ad4904d9267822e41282a4fdfba1dab4", "sticker": null, "text": "Hi Jerry, what is H5 ? please", "from_id": "0f4cd3a9f73d703f57d014cfe296854ea6620cfe998e9e443801c3c436470f1f", "reply_to": null, "datetime": "2023-02-27T09:37:37+00:00" }, { "message_id": "8620114a37226a96cc9344171abe455b0cce82b58cf93a49a13ceb59d88913b1", "sticker": null, "text": ".", "from_id": "b42998b868c207974743ec45c497a0e3e0d6df8d4bba69d8e2e916d96681e3fa", "reply_to": "c82f257a432ea249c388b356cebbf31dc94a77a3e1b8b81eb5c6212e07a0fa05", "datetime": "2023-02-27T20:15:38+00:00" }, { "message_id": "4d26791224ea0406380d8e5ac1b89cfee0671e6bd5c90ff5a4b434b7bd0d3f10", "sticker": null, "text": "Me, i'd like that", "from_id": "924624e2f3fd70dd167cf00592105cc41dc87a494d2f0d6584dc93f925933d2b", "reply_to": "c6ec66ddba265f9990c4bd7b6d3ed94615c51cba2fed0a48c7a22644c0921c54", "datetime": "2023-02-27T20:20:13+00:00" }, { "message_id": "a9b4edbfc4cb4c77814861e18513dfc6799d5343f4be315940a4bcd4665abc03", "sticker": null, "text": "Please what is a root widget", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-02-28T00:09:05+00:00" }, { "message_id": "5d6b2e5ed69710ae27050b42c6f847ee0125d95242549a36d57ff8da27227091", "sticker": null, "text": "Hi", "from_id": "92742ba697103eadacb1b8aa8625e190be703aa0c37e130eb10f49a643216e04", "reply_to": null, "datetime": "2023-02-28T07:00:36+00:00" }, { "message_id": "a372973056e6256a29ca3be314ef56ce7bf0d4a3f2a87cb7ce9708a61a373580", "sticker": null, "text": "Is there anyway to generate Oauth2 token on Java App compile automatically", "from_id": "92742ba697103eadacb1b8aa8625e190be703aa0c37e130eb10f49a643216e04", "reply_to": null, "datetime": "2023-02-28T07:01:04+00:00" }, { "message_id": "fd6e103a5093016bb5421aa96ecddb88be3483212d6731adf6fe1e85d3701f46", "sticker": null, "text": "Hi!a Javer from China", "from_id": "dcad66a7af1e4e2dfffb20bc24dc5e3b03bae907f8fe57c98eb974fc88dfac02", "reply_to": null, "datetime": "2023-02-28T10:45:04+00:00" }, { "message_id": "64daa0a91c562c781fa9ae4b2f6961187720d0992b84e8208b6ad1102e95ed57", "sticker": null, "text": "Hi anyone looking for job change I can refer", "from_id": "08dd1d6691c17a7cae64835c04cc965ec639100936a4feba374724d5669efb83", "reply_to": null, "datetime": "2023-02-28T11:09:23+00:00" }, { "message_id": "2f082b1cab1838f0e457537e87804e58a5435ec61d570a2b8a509452b901b74b", "sticker": null, "text": "I will get bonus on your joining", "from_id": "08dd1d6691c17a7cae64835c04cc965ec639100936a4feba374724d5669efb83", "reply_to": null, "datetime": "2023-02-28T11:09:41+00:00" }, { "message_id": "7203794403821adf29b4da9900145131e44c4e073c9feb426613815cacd1cc14", "sticker": null, "text": "CCMI level 5 company", "from_id": "08dd1d6691c17a7cae64835c04cc965ec639100936a4feba374724d5669efb83", "reply_to": null, "datetime": "2023-02-28T11:14:43+00:00" }, { "message_id": "f6973ef4b861fc16d428bd2a613d85c66464f3472d1f2ace1b7842ce4bc2fd03", "sticker": null, "text": "why do array indexes start with 0 (zero) in many programming languages?", "from_id": "3b376ab382d72e7779ee3d19b1b4b5e0054cdba8882db5c0f0eb2b358b81ce07", "reply_to": null, "datetime": "2023-02-28T21:17:46+00:00" }, { "message_id": "10c2d723cd1c1d780b7ba7ac13962f8e57ac475b153cdee7b1910648a0fc1871", "sticker": null, "text": "?4", "from_id": "3b376ab382d72e7779ee3d19b1b4b5e0054cdba8882db5c0f0eb2b358b81ce07", "reply_to": null, "datetime": "2023-02-28T21:40:39+00:00" }, { "message_id": "851316b1bafb5400996dbddabae4d7173e7f11600805f9b79096319ad4ae63df", "sticker": null, "text": "is anyone can helpme", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-03-01T10:39:29+00:00" }, { "message_id": "7e86eef9d12893de82c0353264a0d43aeae075e82abb7796d77a3d7beecf2680", "sticker": null, "text": "Friday i will have interview", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-03-01T10:39:47+00:00" }, { "message_id": "d66103368adecb20bbb8fe53050ef65d06c009d31ccb12688795361670419b0f", "sticker": null, "text": "need somebody talk with me", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-03-01T11:00:30+00:00" }, { "message_id": "555681eb36d0c2ff1dc2ae70aec5e5f7426e803fc54d5d163e230a3491965728", "sticker": null, "text": "it's the rule", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": "f6973ef4b861fc16d428bd2a613d85c66464f3472d1f2ace1b7842ce4bc2fd03", "datetime": "2023-03-01T11:01:49+00:00" }, { "message_id": "02e1dbee2e3e016388a268633dffb17ac52581653bfc2ca90dd528a18188ba1d", "sticker": null, "text": "its in all programming languages", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "f6973ef4b861fc16d428bd2a613d85c66464f3472d1f2ace1b7842ce4bc2fd03", "datetime": "2023-03-01T11:35:54+00:00" }, { "message_id": "6757bf294b1b95cd4476827990683972925c8a72cee81358d1d7ec8c2b5be2bf", "sticker": null, "text": "I know bro but why ?", "from_id": "3b376ab382d72e7779ee3d19b1b4b5e0054cdba8882db5c0f0eb2b358b81ce07", "reply_to": null, "datetime": "2023-03-01T11:40:07+00:00" }, { "message_id": "19214123beab372df91cfe91d6ba01d339f62caf4856d42df9edf53f60106a41", "sticker": null, "text": "Because of historical reasons, it all boils down to what array index means and why it was introduced in the first place. \n\nMost people when they start learning programming languages tend to give *order number* to elements when they count them. First, second, third, and so on. And they translate it to arrays, they assume that array index means the same.\n\nBut it does not. Array index is not an order number of element. It's a *shift size*, and offset from the beginning of array. So when you see code `array[index]` it semantically means \"element in 'array' with offset 'index'\"", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "6757bf294b1b95cd4476827990683972925c8a72cee81358d1d7ec8c2b5be2bf", "datetime": "2023-03-01T12:12:12+00:00" }, { "message_id": "924e4905c9542c03a7048b3ca9aa92b7fa7026c70ba858ff8e006de97dc8c3a2", "sticker": null, "text": "Such semantics is used simply because it matches the way of working with memory addresses on the lower level. \"second element in array\" does not translate to CPU terms well (and not cpu only, microcontrollers and other microshemes too). But \"shift 2 addresses from array start\" way of representing consecutive data matches CPU world terms very well.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2023-03-01T12:17:03+00:00" }, { "message_id": "49fff7d3bc50a23225e7e69df67e68db7208ceb79d597ea19d518128f3600165", "sticker": null, "text": "By the way, items are counted from one in SQL ))", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2023-03-01T12:20:59+00:00" }, { "message_id": "30daff0e098c847ed1cebe6944dd75ec09aa107228e901f9d6eaf4fd458b15dd", "sticker": null, "text": "in java can anyone help converting \nthis correctly\npublic static void test() {\n\n Charset charset = Charset.forName(\"UTF-8\");\n Map headerMap = new HashMap<>();\n headerMap.put(\"msgId\", Uuid.randomUuid().toString().getBytes(charset));\n MessageHeaders headers = new MessageHeaders(headerMap);\n \n// sString newstring= new String(headers.keySet().(\"msgId\").);\n //\"\"+headers.get(\"msgId\");\n //String.valueOf(headers.get(\"msgId\"));\n \n// System.out.println(newstring);\n headers.keySet().forEach(key -> {\n\n System.out.println(key); \n ** String string =headers.get(key,String.class);\n\n** System.out.println(string); \n }\n );\n\nthe bolded part is my issue", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-02T09:41:25+00:00" }, { "message_id": "0a501250d4de50dfc56832bde56fe3273a0516ecdd92c037fd017770494db27d", "sticker": null, "text": "Ask chatgpt", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "30daff0e098c847ed1cebe6944dd75ec09aa107228e901f9d6eaf4fd458b15dd", "datetime": "2023-03-02T10:03:53+00:00" }, { "message_id": "d5075f56985309f29e5d8ccc2a66e464034d76e775ac36e8019b4f6df85f7ebe", "sticker": null, "text": "I don't want AI to grow", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-02T10:18:12+00:00" }, { "message_id": "a5860a76f85ef7e9284cfbbd942eec255e9a0b9756fcf3dd55767c8bafb08af6", "sticker": null, "text": "😂", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-02T10:18:20+00:00" }, { "message_id": "cd97b7ba467744b84313bded99c109083315a3dd7a0d03e27eeca5086230857e", "sticker": null, "text": "well its growing whether u like it or not lol", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "d5075f56985309f29e5d8ccc2a66e464034d76e775ac36e8019b4f6df85f7ebe", "datetime": "2023-03-02T10:23:42+00:00" }, { "message_id": "02ea69337145b04308b70ad90224c3408e9cdb9405a49eb83e20ec8cbbe8a339", "sticker": null, "text": "so be afraid and help me 😂", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "cd97b7ba467744b84313bded99c109083315a3dd7a0d03e27eeca5086230857e", "datetime": "2023-03-02T10:24:41+00:00" }, { "message_id": "1ee212cb7c4d6334ddd43634c6d23862f0fa1b86fe3d2dc8514ead8aa22da4d1", "sticker": null, "text": "hello", "from_id": "5d7e38f6aa59b93a34ba04581f8c3963125179d3bfecbb07c399aac94b8ff6fd", "reply_to": null, "datetime": "2023-03-02T14:02:47+00:00" }, { "message_id": "a7011393ecdade9bc1fc7479e592d89c0fd7b20355026779cd1b3cfa0aa352ed", "sticker": null, "text": "hi guys,can you introduce some seaching bot or technology channel ?", "from_id": "b1bbc4fd33d69969d81bed9ff966e9a94003f2c26cd5ed1f277c0436b62a1bab", "reply_to": null, "datetime": "2023-03-02T14:05:15+00:00" }, { "message_id": "d9621d33fd63e8528b380975e20da6bf3d81860151f7927a1058639f574d3086", "sticker": null, "text": "guys who can give me a couple a more chat on telegram about Information technology and design", "from_id": "5d7e38f6aa59b93a34ba04581f8c3963125179d3bfecbb07c399aac94b8ff6fd", "reply_to": null, "datetime": "2023-03-02T14:12:02+00:00" }, { "message_id": "937a61218d6e260ed794c747ac42ce4f87ed2189ad5ac5753186c705212b46c1", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": null, "datetime": "2023-03-02T15:16:51+00:00" }, { "message_id": "551533deadc10f7ae62c9a676be5643d66c8e460957316134ff98fa37f0df1a3", "sticker": null, "text": "A java joke:\nif i create a java class Public class Women{}\nam i objectifying women?\n\n\n😂😂😂😂😂😂😂😂", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-03-03T14:40:43+00:00" }, { "message_id": "3aa14d3c71d1ac15a48bd46817752331ed4607c15cb6c5420a61b29e9db0d606", "sticker": null, "text": "Good one 😂😂", "from_id": "5a7a61793973e7643b99e14521eca6f7a8648b2b6360508d564d809aeb1b3328", "reply_to": "551533deadc10f7ae62c9a676be5643d66c8e460957316134ff98fa37f0df1a3", "datetime": "2023-03-03T14:44:24+00:00" }, { "message_id": "204831e13f4bc1f010227d80f38e62775b1e71c48d224abeb11a01cc1e292684", "sticker": null, "text": "Hello", "from_id": "a4f2b6afbf1d1366b62c8e3c430fd876bab53e44940c0c244eac3cb1a945dc3b", "reply_to": null, "datetime": "2023-03-03T15:22:49+00:00" }, { "message_id": "311a28e9318082988c50f04703a20297a74fd3c8276c69f4b320139049d995b1", "sticker": null, "text": "Is JVM machine dependent or independent? \nAnd OS having any JVM? (Not talking about the JVM inside JDK)", "from_id": "a4f2b6afbf1d1366b62c8e3c430fd876bab53e44940c0c244eac3cb1a945dc3b", "reply_to": null, "datetime": "2023-03-03T15:24:31+00:00" }, { "message_id": "384e41300d23a8a6965344b14d36be98d663d543f3f469a813ed1da55cc3bdff", "sticker": null, "text": "Maybe Jdk is machine dependent and jvm independent", "from_id": "9bcbae87683efa0fe0f9017143f916856d8dc10a6197b7b2c3f3e329acc30040", "reply_to": null, "datetime": "2023-03-03T16:56:10+00:00" }, { "message_id": "13ab393ed793f5194e0aeda19e285f5ecd77c6e2a5aec1312e4278729bacaeed", "sticker": null, "text": "only when you create the object of it😂", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "551533deadc10f7ae62c9a676be5643d66c8e460957316134ff98fa37f0df1a3", "datetime": "2023-03-03T17:26:45+00:00" }, { "message_id": "4da654079612f8c8d58e983da5f3ceae3a2025d9550903d189791aa7cf6eb140", "sticker": null, "text": "Anyone can give an explanation of this?", "from_id": "a4f2b6afbf1d1366b62c8e3c430fd876bab53e44940c0c244eac3cb1a945dc3b", "reply_to": "311a28e9318082988c50f04703a20297a74fd3c8276c69f4b320139049d995b1", "datetime": "2023-03-03T18:12:39+00:00" }, { "message_id": "c5a68561171d876bfc0231c86a420482d24ac2c1aeb4b8595b072e0b1e56bad4", "sticker": null, "text": "For every OS there must have an specific jvm, so it is OS dependent, it’s known as platform dependent while java code is platform independent", "from_id": "18dab2631e42d05bb3868d113520601810ef9a34db011bedec869c1dcd6d749a", "reply_to": "311a28e9318082988c50f04703a20297a74fd3c8276c69f4b320139049d995b1", "datetime": "2023-03-03T18:27:26+00:00" }, { "message_id": "214cb65528729b0d1f660f1eed8d9f3fbdeef16bb2a1fde3220233d54fdd075c", "sticker": null, "text": "coupon for free enrollment in Udemy course- 816E0C04D39646ECFC5F\nName of the course is - **Java 19 Mastery: The Complete and Fast-Paced Guide**", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-03-04T02:14:04+00:00" }, { "message_id": "23bf6b84749bedd8e47c1b8c223b70848766a5100a7fc449e25c24462ed03b0a", "sticker": null, "text": "best part of this course is quizes and coding exercises", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-03-04T02:15:01+00:00" }, { "message_id": "f083fdbc40cf9b07705dcbb46446e96b45a7f9bf610430cf89d9d5a8e3519a03", "sticker": null, "text": "You mean.. OS having a specific JVM.\nNow if I run any dot class (.class) file on my platform (windows or Linux or any other) will it run?\nAs OS has a specific JVM. And my platform does not have any JRE or Java runtime environment.", "from_id": "a4f2b6afbf1d1366b62c8e3c430fd876bab53e44940c0c244eac3cb1a945dc3b", "reply_to": "c5a68561171d876bfc0231c86a420482d24ac2c1aeb4b8595b072e0b1e56bad4", "datetime": "2023-03-04T04:29:56+00:00" }, { "message_id": "eee4ada4ba203cab38da7f92434ab3ebc11fd5eb6cc72adbfdbf2003fadb70a4", "sticker": null, "text": "Yes it will, the jvm installed will act much like an universal translator, so the java code can run anywhere since the jvm is charge to deal with underneath OS stuffs", "from_id": "18dab2631e42d05bb3868d113520601810ef9a34db011bedec869c1dcd6d749a", "reply_to": "f083fdbc40cf9b07705dcbb46446e96b45a7f9bf610430cf89d9d5a8e3519a03", "datetime": "2023-03-04T05:41:35+00:00" }, { "message_id": "c56484543786ea98b69e9b2d7abaa39dcc149a29a0ef800deb0a5980efa49af5", "sticker": null, "text": "Jvm is a layer, kind like a translator layer as each OS have their specific code to deal with hardware, the specific jvm you choose will know how to translate ur code into machine code", "from_id": "18dab2631e42d05bb3868d113520601810ef9a34db011bedec869c1dcd6d749a", "reply_to": null, "datetime": "2023-03-04T05:43:56+00:00" }, { "message_id": "37c2ec0c8d30a0687051617ac495c7bd28f1ee22dd9eab97fc9678a8237ff772", "sticker": null, "text": "hello ❤️❤️😍😍", "from_id": "083b69d66c2fb06b6552ec651bfdfc2ef213b17f9956a1c6505bd1733aa11d10", "reply_to": null, "datetime": "2023-03-04T10:45:01+00:00" }, { "message_id": "c0d09eb3975b53ee930a851fd42612401dbddf6d23609a63e2789873c42d36e6", "sticker": null, "text": "Thanks for your explanation.", "from_id": "a4f2b6afbf1d1366b62c8e3c430fd876bab53e44940c0c244eac3cb1a945dc3b", "reply_to": "eee4ada4ba203cab38da7f92434ab3ebc11fd5eb6cc72adbfdbf2003fadb70a4", "datetime": "2023-03-04T17:53:20+00:00" }, { "message_id": "33424f90e46d1091f1f5fa95b3884d78bf2ecd246f5d87a2fdec57c3abb8854b", "sticker": null, "text": "Hi everyone, how long did it take you guys to get a job? Is 1 year long enough to learn everything at junior level?", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": null, "datetime": "2023-03-04T18:32:45+00:00" }, { "message_id": "42b08994ca41a9db5f9667bc0fd2a4289a42412b84a008c1205650ad2d75bbd8", "sticker": null, "text": "If you study hard enough,half a year is enough.", "from_id": "b1bbc4fd33d69969d81bed9ff966e9a94003f2c26cd5ed1f277c0436b62a1bab", "reply_to": null, "datetime": "2023-03-05T00:01:43+00:00" }, { "message_id": "b4c6d4402129527238e063458b2eaf076ee2e6c35e910467be6032c7e2e6beea", "sticker": null, "text": "Anyone familiar with APIs", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": null, "datetime": "2023-03-05T07:02:28+00:00" }, { "message_id": "a877a11db270bc0609e49cfeb050f5d3aaaac231618bd2dc67c8adae5ba1136a", "sticker": null, "text": "I am", "from_id": "5d7e38f6aa59b93a34ba04581f8c3963125179d3bfecbb07c399aac94b8ff6fd", "reply_to": "b4c6d4402129527238e063458b2eaf076ee2e6c35e910467be6032c7e2e6beea", "datetime": "2023-03-05T07:07:53+00:00" }, { "message_id": "aeae080fc27ea50e69501885d40ddfef2a6e837c8c96fbb8b7bfbf2b26a01b91", "sticker": null, "text": "yes but with the swift language", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "b4c6d4402129527238e063458b2eaf076ee2e6c35e910467be6032c7e2e6beea", "datetime": "2023-03-05T07:09:11+00:00" }, { "message_id": "e112a9495374d597d6ad9abe7549f09a3302c15af093fd812b997edf905fafb9", "sticker": null, "text": "Any idea with Java", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": "aeae080fc27ea50e69501885d40ddfef2a6e837c8c96fbb8b7bfbf2b26a01b91", "datetime": "2023-03-05T07:21:41+00:00" }, { "message_id": "af6f5877ee63545cff6ee34710e5dfde96d787a4f3b862cecd2b0196e4bfd2ff", "sticker": null, "text": "Repeated word occurance:\n\npublic class WordOccurance { \n \n public static int counter = 0; \n public static String wordA = \"\"; \n public static List arr = new ArrayList(); \n \n public static void main(String[] args) { \n \n String sen = \" my name is abby and abby is my name \"; \n \n for(int i=0;i<=sen.length()-1;i++) { \n if(sen.charAt(i)==' ') { \n if(wordA==\" \") { \n continue; \n }else { \n arr.add(wordA); \n } \n wordA = \"\"; \n }else { \n wordA = wordA+sen.charAt(i); \n } \n } \n \n for(int i=0;i<=arr.size()-1;i++) { \n for(int j=0;j<=arr.size()-1;j++) { \n if(arr.get(i).equals(arr.get(j))) { \n counter = counter+1; \n if(counter>1) { \n System.out.println(arr.get(j)+\" \"+counter); \n } \n } \n } \n counter = 0; \n } \n \n }\n\nYou can message me for more of such coding problems", "from_id": "ebf654139ef28e46eb80dff25fe975860769f8e8f37edf1dc9a0a46e706c14e5", "reply_to": null, "datetime": "2023-03-05T11:22:18+00:00" }, { "message_id": "5ae8fade12fb6f6a4cf43fbcbbe48bd80e6fbc1b99db8bed2d04eb58558c441f", "sticker": null, "text": "12", "from_id": "ebf654139ef28e46eb80dff25fe975860769f8e8f37edf1dc9a0a46e706c14e5", "reply_to": null, "datetime": "2023-03-05T12:43:55+00:00" }, { "message_id": "4cbacaf52ca3d0235a4ca9b4631c92ede87c90081a87b76caf0db5f9f31966b1", "sticker": null, "text": "I am.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "e112a9495374d597d6ad9abe7549f09a3302c15af093fd812b997edf905fafb9", "datetime": "2023-03-05T12:51:03+00:00" }, { "message_id": "5d6de584b47c89ce893a324f1276b4aef6b9688eb8cfe22640f0c283424ab8e0", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "b4c6d4402129527238e063458b2eaf076ee2e6c35e910467be6032c7e2e6beea", "datetime": "2023-03-05T14:04:00+00:00" }, { "message_id": "24a003a2d45ca6b8b9a19ce961bd7fe604d00190536a3dcb6fb8389ab2f6ae54", "sticker": null, "text": "Which would you choose between love and money?", "from_id": "5f7f22896dce6f6dd6ae02e957f2e08d84f768cfadbcd0c36265d285815517fd", "reply_to": null, "datetime": "2023-03-05T14:31:35+00:00" }, { "message_id": "8a55ef7bd236c9b7a7d8c553f5af8fdafa5d0a308c607177b7ebd6afbd18c065", "sticker": null, "text": "Keep love and make money.", "from_id": "f044c95323a05cbae58ab7e488b71f870b26dc3c7f03c000b668223aaa431a62", "reply_to": "24a003a2d45ca6b8b9a19ce961bd7fe604d00190536a3dcb6fb8389ab2f6ae54", "datetime": "2023-03-05T17:27:05+00:00" }, { "message_id": "c58534aa2558604d92a1a09ba65c80ade8856a79f0b64668ba915af7e956b7f0", "sticker": null, "text": "13😶‍🌫️", "from_id": "180d7bdc2ce14f264bed0d42bee3419607fbdb06904ff572639bc92649bbfde8", "reply_to": null, "datetime": "2023-03-05T20:39:05+00:00" }, { "message_id": "92ca6665566bbc4ca8c375add9fd7a3434f41ce6376f14f2b5fecd9b20f5e841", "sticker": null, "text": "We have developer with 2 years of experience in Java Backend Stack, Hibernate, Spring, Postgresql, Mongodb.\n\nOne frontend developer with Javascript, React-JS and React-Native.\n\nPlease contact me for any opportunities.\nNOTE. They are immediately available to join project.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": null, "datetime": "2023-03-06T04:41:20+00:00" }, { "message_id": "ff99d11b3d11067ba8ebd905c23079b4b843a228030783a000ee758bc76c83c7", "sticker": null, "text": "Yea", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "e112a9495374d597d6ad9abe7549f09a3302c15af093fd812b997edf905fafb9", "datetime": "2023-03-06T05:38:54+00:00" }, { "message_id": "fa0ca20db5d5a7deef1c12132009579a86ae40ce3b4503b0f7007d3a605bfa5b", "sticker": null, "text": "Hi", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-06T10:48:49+00:00" }, { "message_id": "04b73d574cb850705276b73a319513dadc7ce23039f5b5c3602532d717d66fcd", "sticker": null, "text": "Where should use throw and throws keyword in java", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-06T10:49:50+00:00" }, { "message_id": "3cd330070671c9619a4674fdf8d1b8ca42e74ab34628c168e6747e9251557e5d", "sticker": null, "text": "Tell me better point", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-06T10:50:07+00:00" }, { "message_id": "7f9fdfd8cca7a3b3e018d5a42ae333ac8080708a7c71c70c094eeb0fddb1d4fe", "sticker": null, "text": "Yes a little", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": "b4c6d4402129527238e063458b2eaf076ee2e6c35e910467be6032c7e2e6beea", "datetime": "2023-03-06T10:58:50+00:00" }, { "message_id": "72a5da66098dc26a140ddac8aa8b1b389073ef861f16caf36db4b653033bf51b", "sticker": null, "text": "Hi guys\nCan Anyone guide me about a family tree in java using binary tree 😕", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": null, "datetime": "2023-03-06T10:59:57+00:00" }, { "message_id": "3f5091601b7be73a5ecb2e9dd930461b1922ecc6e2c1bcbf5e9df26a676c66b1", "sticker": null, "text": "Creating a family tree", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": "72a5da66098dc26a140ddac8aa8b1b389073ef861f16caf36db4b653033bf51b", "datetime": "2023-03-06T11:00:14+00:00" }, { "message_id": "a522aa4cb01dea460c474ae65e5c48fd6ac13efa50c367ab28d3c30e7cd376d5", "sticker": null, "text": "Can l dm u if thats ok", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": "7f9fdfd8cca7a3b3e018d5a42ae333ac8080708a7c71c70c094eeb0fddb1d4fe", "datetime": "2023-03-06T11:01:02+00:00" }, { "message_id": "c0068dc9f6f05dcac086e5214613165f5ad36a00db62d4805828eb263388aec4", "sticker": null, "text": "Yeah", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": null, "datetime": "2023-03-06T11:02:29+00:00" }, { "message_id": "e93810af30d725632951a643d3689da8d1df66b349705226b5a251a9da2f8742", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "04b73d574cb850705276b73a319513dadc7ce23039f5b5c3602532d717d66fcd", "datetime": "2023-03-06T11:12:16+00:00" }, { "message_id": "f5c3550ba8249ccc167e4aa26f5339c8b99aecea9a5b2af493f168c05e5cedca", "sticker": null, "text": "dont shame you tried,i understand what you said \nTqqq brother", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "e93810af30d725632951a643d3689da8d1df66b349705226b5a251a9da2f8742", "datetime": "2023-03-07T02:00:17+00:00" }, { "message_id": "ebeb613679bc945b4a69b33abd3607336f7f62b9c905ae963e8842ef34f2d33a", "sticker": null, "text": "yes and u know make it abstract so that she can go by her own rules\n😁", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "551533deadc10f7ae62c9a676be5643d66c8e460957316134ff98fa37f0df1a3", "datetime": "2023-03-07T02:44:23+00:00" }, { "message_id": "99ecbea31fc962890b71f928522e8e3a776121e588aa77d15352251f444d269a", "sticker": null, "text": "Guy's few questions 🥲", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-07T06:29:57+00:00" }, { "message_id": "401b4e689e20f709f651df9301d3a1365257b9461544d8458bf606ef36fedaf4", "sticker": null, "text": "Q.1 Collection is a interface?\nQ.2 Collections is a class?\nQ.3 Collection is a iterable?\nQ.4 map is a collection?\nQ.5 map can have duplicate key?\nQ.6 ArrayList is a class and List is interface?\nQ.7 which collection provide uniqueness in Elements?\nQ.8 what is collector?\nQ.9 what is filter ?\nQ.10 what is use of peek?", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-07T06:35:49+00:00" }, { "message_id": "2bee0f227c7b9db16e3c1eb5fe7a290458c792b21935a5cd3b5ae20575b37527", "sticker": null, "text": "1)Yes, Collection is an interface.\n2)Yes, Collections is a class.\n3)Yes, Collection is iterable.\n4)No, Map is not a collection.\n5)No, Map cannot have duplicate keys.\n6)Yes, ArrayList is a class and List is an interface.\n7)Set provides uniqueness in elements.\n8)A Collector is an interface that defines how to accumulate the elements of a stream into a result container.\n9)Filter is a method that selects elements from a stream that satisfy a given predicate.\n10)Peek is a method that returns a stream consisting of the elements of the stream, additionally performing the provided action on each element as they are consumed from the resulting stream.", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": "401b4e689e20f709f651df9301d3a1365257b9461544d8458bf606ef36fedaf4", "datetime": "2023-03-07T06:58:33+00:00" }, { "message_id": "5862f5d3d047d3d5c34c2780fb37e25d5868091c56f720ab8531762727f1cbb7", "sticker": null, "text": "What is predicate?", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-07T06:59:43+00:00" }, { "message_id": "8b582647f09c07fb4d8a3fc49b9276e5dca537e39e4454db03489456cabb8e8c", "sticker": null, "text": "A predicate is a function that takes an input and returns a boolean value", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": null, "datetime": "2023-03-07T07:00:19+00:00" }, { "message_id": "9d61da9621d9b62f5c0e0f4b4d4016b2118ad82bc5c7e3da62ad4928e60c55ea", "sticker": null, "text": "What are functional interfaces?", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-07T07:00:42+00:00" }, { "message_id": "dcdfb1df7f2fad92486a09e9568fac16489cc2fc8bba60078e12860abd867dd3", "sticker": null, "text": "A functional interface is an interface that has only one abstract method", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": null, "datetime": "2023-03-07T07:01:32+00:00" }, { "message_id": "829ab0f68233fbdc08d0a708a668f52692160e3e46c40f06271481017612bcdf", "sticker": null, "text": "Name some of them", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-07T07:02:20+00:00" }, { "message_id": "994b22758f79395f410bc82efddb67366b13f6976005189c9c813d76b5f64471", "sticker": null, "text": "predicate", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": null, "datetime": "2023-03-07T07:03:00+00:00" }, { "message_id": "49a99040a954ae328f666c4b890190625076b8425a47495c93b3e700b7174fbe", "sticker": null, "text": "What is cloneable", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "994b22758f79395f410bc82efddb67366b13f6976005189c9c813d76b5f64471", "datetime": "2023-03-07T07:03:19+00:00" }, { "message_id": "2ab3a692183de25e7c6c4a02cb0068edf6149751cc1be9e54eee3b3d7021aba8", "sticker": null, "text": "bro wtf u have not google? You can type the same thing into google and the answer will pop up right away", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": null, "datetime": "2023-03-07T07:04:57+00:00" }, { "message_id": "f8eb765f0ee6a432d32287aa8a5cd0d24186ff0bf5bccd3c244e39eba29705dd", "sticker": null, "text": "@#USER ??", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": null, "datetime": "2023-03-07T07:04:59+00:00" }, { "message_id": "e8bd0004916f4beba58fe063e9a23accf5c3a99fe54de293a4555cd913e16e78", "sticker": null, "text": "I know I'm checking my knowledge 😉 by validating your answers", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "2ab3a692183de25e7c6c4a02cb0068edf6149751cc1be9e54eee3b3d7021aba8", "datetime": "2023-03-07T07:05:31+00:00" }, { "message_id": "368a2779d638d8f439a0b3710784953ba23e6de146df9bf4325d838cd2ef007e", "sticker": null, "text": "how long do you study java?", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": "e8bd0004916f4beba58fe063e9a23accf5c3a99fe54de293a4555cd913e16e78", "datetime": "2023-03-07T07:11:14+00:00" }, { "message_id": "f6b1a1e19cd64a6d9fdc6a8719e101e4ea78c44fb94515078eaec5c7dcc21b2b", "sticker": null, "text": "12 yr", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "368a2779d638d8f439a0b3710784953ba23e6de146df9bf4325d838cd2ef007e", "datetime": "2023-03-07T07:11:32+00:00" }, { "message_id": "6001012ca0d55bb199baea2fd1fdc9eba4a5abf446fea173a39d4cf5b094f891", "sticker": null, "text": "0_0", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": null, "datetime": "2023-03-07T07:12:08+00:00" }, { "message_id": "e0084eeb2a12725525d31272f03791d42025d4386d754ae72856593b2b835fe7", "sticker": null, "text": "Just joking 🤣 \nI'm fresher man🤣", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "6001012ca0d55bb199baea2fd1fdc9eba4a5abf446fea173a39d4cf5b094f891", "datetime": "2023-03-07T07:23:44+00:00" }, { "message_id": "63e22b5676b61b9e73e1877e417595e74f48d86118342798e9f07fec3bc10943", "sticker": null, "text": "11", "from_id": "aef1ddebf310a13b916eea5b60678e05597cd1208b49c32527ba54dfc28797b1", "reply_to": null, "datetime": "2023-03-07T08:17:12+00:00" }, { "message_id": "10649b9e53d1f414d82965be412ad1d2b343da1367f52feea4c39ceede3a2962", "sticker": null, "text": "What u trying to ask", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "3807a9cf5733108eae362331c0a70b5a0680381d628c9b66699e4bac33c27cd1", "datetime": "2023-03-07T12:16:48+00:00" }, { "message_id": "33c72fff56ff2b232da5f1e304fb6d438d4dbfc70f17fbe748f3d0641b3bf1d7", "sticker": null, "text": "I need to find format of this structure, i thought it's YAML, but it's not", "from_id": "4c7080fc4e097582790f85e880704714c163a5009b29555e9a1aa736e73d98e6", "reply_to": "10649b9e53d1f414d82965be412ad1d2b343da1367f52feea4c39ceede3a2962", "datetime": "2023-03-07T12:18:45+00:00" }, { "message_id": "83c91cfb16d9b3538d87f3f7a9087fdf470e09e9b639184490a720ff964855bb", "sticker": null, "text": "It's probably json?", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "3807a9cf5733108eae362331c0a70b5a0680381d628c9b66699e4bac33c27cd1", "datetime": "2023-03-07T12:19:10+00:00" }, { "message_id": "05bec7b18f59e81c5929f2f252d78838f835d6aa940f7731fef0f8495873cafa", "sticker": null, "text": "nope 🙂 we need to make json from it", "from_id": "4c7080fc4e097582790f85e880704714c163a5009b29555e9a1aa736e73d98e6", "reply_to": "83c91cfb16d9b3538d87f3f7a9087fdf470e09e9b639184490a720ff964855bb", "datetime": "2023-03-07T12:19:51+00:00" }, { "message_id": "c99614cad2ccf556df4185b9d806b008a917bf15f90787ea463ef56236524c57", "sticker": null, "text": "it is not a json because there are no ',' at the end of lines, and many other differencies", "from_id": "4c7080fc4e097582790f85e880704714c163a5009b29555e9a1aa736e73d98e6", "reply_to": null, "datetime": "2023-03-07T12:21:17+00:00" }, { "message_id": "f56eb1d344215994830fbb2f2e3f888649261a474a3688c0c953998a57eb1830", "sticker": null, "text": "Max it looks like it does not have any correct format but yeah u can correct it manually to generate json", "from_id": "23d9453b4e03a59cd447941f4598476bd62d61dd1d742497ff892508b34ddff7", "reply_to": "05bec7b18f59e81c5929f2f252d78838f835d6aa940f7731fef0f8495873cafa", "datetime": "2023-03-07T12:21:19+00:00" }, { "message_id": "f2476f945452abf09c514af71952a3464c028cd5d53940bfd00315a3ddb08587", "sticker": null, "text": "Can anyone explain why we use constructor in java?", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": null, "datetime": "2023-03-07T13:15:42+00:00" }, { "message_id": "dab9af9a4fd43a5433fff005951f83f5bda68703d0ab2cb1a86838485e4e4a90", "sticker": null, "text": "Bhai google kar lo ya chatgpt 😂", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": "f2476f945452abf09c514af71952a3464c028cd5d53940bfd00315a3ddb08587", "datetime": "2023-03-07T13:44:36+00:00" }, { "message_id": "87cededf852d6a4a980d1fc554774370a10cd85ac468c3a30330ae21c947bb54", "sticker": null, "text": "Google kyu bas chatgpt 😂", "from_id": "15c2c6c673d00781876887347a9189270af30175375f969a5812dcc895b3fb65", "reply_to": "dab9af9a4fd43a5433fff005951f83f5bda68703d0ab2cb1a86838485e4e4a90", "datetime": "2023-03-07T13:49:14+00:00" }, { "message_id": "9b490e513950e1f44c8b1ca604bc8102954d612b7188057610a32575e92083b2", "sticker": null, "text": "By the way chatgpt code bhi karke dega", "from_id": "15c2c6c673d00781876887347a9189270af30175375f969a5812dcc895b3fb65", "reply_to": "f2476f945452abf09c514af71952a3464c028cd5d53940bfd00315a3ddb08587", "datetime": "2023-03-07T13:49:33+00:00" }, { "message_id": "a13e695528366151a1b392da431b16e3e6fba09007c6ea510e8a9afc4dc24cb8", "sticker": null, "text": "Wadiya🙂", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": "87cededf852d6a4a980d1fc554774370a10cd85ac468c3a30330ae21c947bb54", "datetime": "2023-03-07T13:51:40+00:00" }, { "message_id": "0b4ecdb748ad01c262db8104863cf9f8673f9041670b257ede73634d5dcd482a", "sticker": null, "text": "Han g", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": "9b490e513950e1f44c8b1ca604bc8102954d612b7188057610a32575e92083b2", "datetime": "2023-03-07T13:51:49+00:00" }, { "message_id": "f6be8e5d56ca1258cd5935300728aaab6f913967763eb3cb5ed841b7f11b8991", "sticker": null, "text": "Professional wala", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": null, "datetime": "2023-03-07T13:51:58+00:00" }, { "message_id": "570ab95e517675ae3f492b7fac622605b41f06ce0c4d5115d9edc66d201eff04", "sticker": null, "text": "Try to kar bhai", "from_id": "cddaf4f6a66a798003c040c9731ab238df52f1ca91dee3feadaf145c74ae76be", "reply_to": "9b490e513950e1f44c8b1ca604bc8102954d612b7188057610a32575e92083b2", "datetime": "2023-03-07T13:52:23+00:00" }, { "message_id": "08a407bcf0a260c6572e4b436c2ceac752fb362e0eded3c3c4189f84b670153b", "sticker": null, "text": "I did before asking...😅\nJust wanted to discuss more about java in detail...\nBut you are lazy to answer 😅", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "dab9af9a4fd43a5433fff005951f83f5bda68703d0ab2cb1a86838485e4e4a90", "datetime": "2023-03-07T15:04:56+00:00" }, { "message_id": "35a14ed061951777788b95b94a0f6a74d5f6456e4bc805331e0f05cfab685cac", "sticker": null, "text": "has any one used onlyoffice", "from_id": "43938986b978a38d0796a93f5fe52579646fa82f2d8141d811ac2d5d8e3aef3c", "reply_to": null, "datetime": "2023-03-08T17:54:57+00:00" }, { "message_id": "228eb2e57c16e0687a412ca22f1ab1a1e08e6c0bb9d2bd596dc02befe279d4ea", "sticker": null, "text": "17", "from_id": "ee4f81476ff67eb439326ea3f410095e5c4076128887b017cae6012ffc144881", "reply_to": null, "datetime": "2023-03-08T19:02:51+00:00" }, { "message_id": "ac7ab6b3a37398d7aa95af190b5065e649ba7ebae4fafe197913712cb76eb4d6", "sticker": null, "text": "Also functional interface can have many default, static method but one abstract method", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": "9d61da9621d9b62f5c0e0f4b4d4016b2118ad82bc5c7e3da62ad4928e60c55ea", "datetime": "2023-03-08T22:38:13+00:00" }, { "message_id": "6fe4715b9879cc5245476e4a6a0f628ea94137302592c09c5880bba26f3f3d14", "sticker": null, "text": "Any method that don't require implementation for its declaration is an abstract method", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": null, "datetime": "2023-03-08T22:40:28+00:00" }, { "message_id": "2ee21f2fdb69b8cd3e9ecd2eee885cbcbccfcadf3a4a8e4e830730c47c3be72b", "sticker": null, "text": "What's the question", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": "7fd41a493558dd83e24c02657b164384372fb014025577b82f3d94b28f2e2cef", "datetime": "2023-03-09T13:42:42+00:00" }, { "message_id": "ec2f2e8fe31169a3889afc9d7befde819b14714f5b843baccd413ff21b5a2bbd", "sticker": null, "text": "Hi \nI’m working on a DFS algorithm on a graph. \nBut I don’t know how to mark the wrong nodes which the program start to traverse from them an ends in a wrong answer.\nAny idea how to solve it ?", "from_id": "c108e10ff911de9867b1f41b3e7236f814e6218d7c616a55a7fbd4d6a718677b", "reply_to": null, "datetime": "2023-03-09T13:43:02+00:00" }, { "message_id": "69237763ad7aeba01b5e23ef15953ec95c28ad65a8d60f005266401ea78bd425", "sticker": null, "text": "Any asp.net developer?", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": null, "datetime": "2023-03-09T16:57:41+00:00" }, { "message_id": "50475cf58a0af09003e177870d433ac6ace0d75c09e2834e185e8f9623413fda", "sticker": null, "text": "Ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": null, "datetime": "2023-03-09T16:57:44+00:00" }, { "message_id": "b44494ce83885eee2aa1eee829fa68d943aa1ddccdb121024df71eccdab68796", "sticker": null, "text": "Hi guys 👋 \ncan you recommend me some sources for learn java, please\nps(!) I'm beginner to java, but not beginner in programming", "from_id": "e432154f2e5a614ffc9cbb18e1e90536d87585e8304637d93cb189e6c29d78dc", "reply_to": null, "datetime": "2023-03-10T14:46:23+00:00" }, { "message_id": "630a6ff75fee2cd31de82d5a2045baf04cbd7af93244261ed919f36aa8969fc7", "sticker": null, "text": "Do courses for better understanding", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": "b44494ce83885eee2aa1eee829fa68d943aa1ddccdb121024df71eccdab68796", "datetime": "2023-03-10T15:15:12+00:00" }, { "message_id": "7870653aba7e2c4c3e2d7963b0e9fb95bd237d0f1566239e8df008970ef1a286", "sticker": null, "text": "What about books?", "from_id": "e432154f2e5a614ffc9cbb18e1e90536d87585e8304637d93cb189e6c29d78dc", "reply_to": "630a6ff75fee2cd31de82d5a2045baf04cbd7af93244261ed919f36aa8969fc7", "datetime": "2023-03-10T15:22:06+00:00" }, { "message_id": "386d39cc93d7219b1729b0501cef656d6f628c2c6aa01d49cc562005307cdc91", "sticker": null, "text": "Javatpoint is also good for Java learning", "from_id": "ebf654139ef28e46eb80dff25fe975860769f8e8f37edf1dc9a0a46e706c14e5", "reply_to": null, "datetime": "2023-03-10T15:47:13+00:00" }, { "message_id": "14d7f071365d91a8a9693b3a28121e3525c3e7bd01491cb7a7b3e53ef9acf41f", "sticker": null, "text": "Hi guys, can you help me with this exercise?\nI tried to do it myself, but if, for example, I enter the number 0 or 3 in the console, the program prints normally.\nWRITE A JAVA PROGRAM WHICH WHEN ENTERING A WHOLE NUMBER FROM THE KEYBOARD PRINTS THE RESULT OF THE DIVISION OF THAT NUMBER BY ANOTHER RANDOMLY GENERATED NUMBER BETWEEN 0 AND 3, INTERCEPTING ANY EXCEPT FOR DIVISION BY 0.", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": null, "datetime": "2023-03-10T22:10:39+00:00" }, { "message_id": "eeb3bc9508c1468fbf4522a4894b7eef2973da67801618e29d1b3f1534933ec0", "sticker": null, "text": "Hi guys. Do you have any suggestions for sites that offer practice in java projects?", "from_id": "99d1ae1ad930b64d4082b9d7bcb9663cb95755092416e9ab5a28a5fe2f6c65c3", "reply_to": null, "datetime": "2023-03-11T20:04:01+00:00" }, { "message_id": "10ed7d3097d36f108d960b7a2e62a9b6fde45c5aa535f776dbdda6d22be0723e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "52ab830994007eb987080029d09ee674ac83d40f309317226c5db3605f8bfb6c", "reply_to": null, "datetime": "2023-03-11T22:56:57+00:00" }, { "message_id": "e1f91938af1b613e2e4187411064b47ad55ae340ecbba321fd1f257ce8732167", "sticker": null, "text": "Is there any legit way to learn carding", "from_id": "486e735766714199a6148813074d9569a1e721545686fd5151928df42661669a", "reply_to": null, "datetime": "2023-03-12T08:33:55+00:00" }, { "message_id": "6f782c5394db29255eeb7a9b78c4276d73ff7633bedc018878ef6479c766f119", "sticker": null, "text": "Cardiiing itself iss illegall so no legit way exist", "from_id": "ce2b2fd9625b623acd12c3855a11451a020be6594c528b39343e2dab88bfd1a5", "reply_to": "e1f91938af1b613e2e4187411064b47ad55ae340ecbba321fd1f257ce8732167", "datetime": "2023-03-12T09:41:24+00:00" }, { "message_id": "644ba0a49709222d9762b6332b9d5e758f96e25d04c5884d35f1787d38fd3505", "sticker": null, "text": "I meant to say that how can I learn it online", "from_id": "486e735766714199a6148813074d9569a1e721545686fd5151928df42661669a", "reply_to": "6f782c5394db29255eeb7a9b78c4276d73ff7633bedc018878ef6479c766f119", "datetime": "2023-03-12T09:43:46+00:00" }, { "message_id": "f6840442eb17ef52e4c92abe37f781a6f1819931eb96be91c60717250badb381", "sticker": null, "text": "Hello Group...\nI need a help on java abstract class n interface implementation with assigning values to the inherited properties of parents class", "from_id": "fc8efcb6c61b2a1bf11c7f21afdb58a34b6b2f79779c7d0f5d83dd69b36ac8ae", "reply_to": null, "datetime": "2023-03-12T11:48:04+00:00" }, { "message_id": "27ebb990805bb658a2e4c1933b90471df62c91f2528cc822159b0ba728db1a50", "sticker": null, "text": "How can I open the encrypted pdf or convert it to another extension?", "from_id": "d5b7dacab9c1b4a0e2281f4d02e4223303ae10d5722dc67558eef20a01129ec4", "reply_to": null, "datetime": "2023-03-12T15:42:40+00:00" }, { "message_id": "02c98a96215a59bf46a794fc95e1a026e2b924ce61ba8c03aa836bdf66f37bf7", "sticker": null, "text": "pls am new here hope am welcome", "from_id": "041c25fb00766bfd894542c909c7ecd70eb595ac37639314f8023e829c4177a2", "reply_to": null, "datetime": "2023-03-12T16:05:22+00:00" }, { "message_id": "38ff2134e1213a4f256a8edf7a22619d1b5197d39363abadc27bb9164dfbab42", "sticker": null, "text": "pls i need someone to put me through java course please guys", "from_id": "041c25fb00766bfd894542c909c7ecd70eb595ac37639314f8023e829c4177a2", "reply_to": null, "datetime": "2023-03-12T16:06:20+00:00" }, { "message_id": "a61bc7bc7c1af58becc71a5385e3fe753bfae5731672e71e1e5efa598e49ac02", "sticker": null, "text": "😭", "from_id": "041c25fb00766bfd894542c909c7ecd70eb595ac37639314f8023e829c4177a2", "reply_to": null, "datetime": "2023-03-12T16:06:44+00:00" }, { "message_id": "103a13b81e382aeac856bfcc0d3f92684a088a73c14178eefb0bbf104164e8a5", "sticker": null, "text": "pls my exam is close by", "from_id": "041c25fb00766bfd894542c909c7ecd70eb595ac37639314f8023e829c4177a2", "reply_to": null, "datetime": "2023-03-12T16:07:38+00:00" }, { "message_id": "15b29c0c9616ee8f2e32146ea212c85f20daa511af46d8d9ab0030b29075d834", "sticker": null, "text": "good day guys", "from_id": "041c25fb00766bfd894542c909c7ecd70eb595ac37639314f8023e829c4177a2", "reply_to": null, "datetime": "2023-03-12T16:17:12+00:00" }, { "message_id": "5398ada33db72d86c2f42cecdb3652d7f69154ad5d3e7c4fdc598ae71342cfef", "sticker": null, "text": "i am look some good programmer in my team , team is for make cyber tool (whit hat only)", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": null, "datetime": "2023-03-12T17:47:34+00:00" }, { "message_id": "2e9265bed36e817856ae90e7d81aa7a70a0065c540b0c52d4b23d1a5399ab13c", "sticker": null, "text": "Hey I have doubt", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:20:06+00:00" }, { "message_id": "491e58288d6ef906f06ff9e10d3ccd49d177fa6a9b6fc989f34e7ae38e718914", "sticker": null, "text": "Is it possible to practice java files concepts in android", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:20:26+00:00" }, { "message_id": "930edaedc744c44d1b05bdcccdab5e8bf46d843094bf88021e94195258f3383c", "sticker": null, "text": "🤔", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:20:42+00:00" }, { "message_id": "bd85f0b8dc8d39734a3d350600b1a0a88b58807f8d1fe1124b35b9f7f6c5a65b", "sticker": null, "text": "hi\nwhy not?", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "491e58288d6ef906f06ff9e10d3ccd49d177fa6a9b6fc989f34e7ae38e718914", "datetime": "2023-03-13T09:21:54+00:00" }, { "message_id": "64921bfc164aee3ab6dda526f05cbaa5ee8b7122ee34ac5cb4f70e74013750c7", "sticker": null, "text": "Where should I practice?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:22:20+00:00" }, { "message_id": "aa007f2cc5c6a2d7c68def6f9372f28e8c245e0b2e904e32c55b2eb809cb456c", "sticker": null, "text": "if you want only to practice java part, then you can write cli apps for windows\\mac\\linux\nthere is no difference for java which system you use", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "64921bfc164aee3ab6dda526f05cbaa5ee8b7122ee34ac5cb4f70e74013750c7", "datetime": "2023-03-13T09:26:02+00:00" }, { "message_id": "46e8ec8e5b746abb7472bd32557317fb20a8f7c2c00b7ea616bdffb653942803", "sticker": null, "text": "I'm using android, so I need to practice java files concept it is possible?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:27:17+00:00" }, { "message_id": "4395d6e0761c8e4bf3d974622f98b8150a75f3133aa9ea706b8e326f4f501f64", "sticker": null, "text": "Tell me best app", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:27:30+00:00" }, { "message_id": "dfd8fa8ba7cba4f43706a2d9e56b4e222d06d64c234e86b1100452ed9c7767e2", "sticker": null, "text": "hmm\nso you looking for educational materials?\napparently i didn't understand your question", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "4395d6e0761c8e4bf3d974622f98b8150a75f3133aa9ea706b8e326f4f501f64", "datetime": "2023-03-13T09:31:51+00:00" }, { "message_id": "818979a1a31b5e9aabf3242834f20304c022008966405d72a3f6cda825def092", "sticker": null, "text": "My pc damaged, so can I practice java files concept for android", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:36:48+00:00" }, { "message_id": "fad0cd500ce65da4c77b931cdc2d698126e0a3fc355daab0c67841295ebdfede", "sticker": null, "text": "you can, but you still need PC\\Laptop to make APK\nprobably there are some solutions for android\nbut idk, sorry", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "818979a1a31b5e9aabf3242834f20304c022008966405d72a3f6cda825def092", "datetime": "2023-03-13T09:39:11+00:00" }, { "message_id": "b4208051664f009cc1ec8c7c000003c22bee238b9a95705a0e5346ce01fbb62c", "sticker": null, "text": "Ok bro 😔", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T09:40:22+00:00" }, { "message_id": "209df7d89e8741979bb9a7d358bf85e4ae506921761d3558da6827d301fd70a5", "sticker": null, "text": "Hi", "from_id": "08667c95c71a3b0e1247fa3f045c562e9f9bfdad2078089663772f8c0b38c9dd", "reply_to": null, "datetime": "2023-03-13T14:21:25+00:00" }, { "message_id": "11170b3abedcd54f6f4427498be0d68394e10f20d19e91153c03b117d55fef84", "sticker": null, "text": "AIDE", "from_id": "2b25b371a5444d0ff52ddab925c971bb46a9728fe23719f0ce26419fbda6b468", "reply_to": "b4208051664f009cc1ec8c7c000003c22bee238b9a95705a0e5346ce01fbb62c", "datetime": "2023-03-13T14:23:47+00:00" }, { "message_id": "8270c04f17d2ca4c52b40116832e6e11f3c307191d75b116c7410e47e08fe524", "sticker": null, "text": "I found a lot of AIDE in playstore", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-13T14:53:16+00:00" }, { "message_id": "0fb07e14458555eb41272ed673371cbf6d43d733e63c48f8f0d25ba81cfd569b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "52ab830994007eb987080029d09ee674ac83d40f309317226c5db3605f8bfb6c", "reply_to": null, "datetime": "2023-03-13T23:37:02+00:00" }, { "message_id": "6d2e2707e60e1b03ffc340cd221e019df74c1654568d033f39b514726f6a346d", "sticker": null, "text": "Hi guys I have sound knowledge of core Java, now want to learn spring, spring boot, hibernate, struts . Is knowledge servlet and JSP really required before starting above topics or should I start with topics ?\n\nAlso please provide sequence in which should I learn?", "from_id": "55526d1a37e0e59079920545ea1667d413c5556b02a4c07a834b97af8945cc61", "reply_to": null, "datetime": "2023-03-14T02:54:04+00:00" }, { "message_id": "61788d0bcb073d5000d440c1b0be98e3cc3e6b93b73c27a1c871f13b99073db5", "sticker": null, "text": "Servlets and JSP are base of spring framework. So my suggestion is that just look at once and understand concept. Do not worried about remember syntax.\nThen move to Java spring, Hibernate and springboot. Also do some handson projects.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "6d2e2707e60e1b03ffc340cd221e019df74c1654568d033f39b514726f6a346d", "datetime": "2023-03-14T03:06:34+00:00" }, { "message_id": "6c05f61c6cbff77b8e892c595963a2a7aa4497116167cb327e9e64e21e34d347", "sticker": null, "text": "Sure thank you so much 😁, i was too confused", "from_id": "55526d1a37e0e59079920545ea1667d413c5556b02a4c07a834b97af8945cc61", "reply_to": "61788d0bcb073d5000d440c1b0be98e3cc3e6b93b73c27a1c871f13b99073db5", "datetime": "2023-03-14T05:19:54+00:00" }, { "message_id": "058e7ec2c29dcfa3b6b9fff0bc2ac8f784a837aa7caa580dd65397b0edbf1fd8", "sticker": null, "text": "Hello everyone, can you advise me where I can learn and understand the topic of lambda expressions in detail? Do you have any video or source?", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": null, "datetime": "2023-03-14T09:25:47+00:00" }, { "message_id": "458c128d1e3d7c94add3546ede707b45e93f0cc45879ac8ca02c2d1c66c339fa", "sticker": null, "text": "hi\nnope\nmoreover, you can't do this in native android too\nyou can ask the user for permission to run the application in background, but this is not 100% working solution too\nbecause android system manage resources and it can be unpredictable sometimes", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "d7fb799edc3cf6e35f9ce5130b3f7ca5c8cb4eb062567440612a8b3bd8029761", "datetime": "2023-03-14T09:56:50+00:00" }, { "message_id": "4ad678b97c53277826e7ea230371c3f7844fee1a30d289bbd2ee744d88536072", "sticker": null, "text": "I just remembered one more option\nforeground service can be useful\n\nbut this option will work only if user don't kill the app too", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "458c128d1e3d7c94add3546ede707b45e93f0cc45879ac8ca02c2d1c66c339fa", "datetime": "2023-03-14T09:58:14+00:00" }, { "message_id": "91e2dae6fa0810ba60ab2c9ef2cba6d74ec64c5f07f4ce04b166a510c443beb7", "sticker": null, "text": "Videos of telusko are great", "from_id": "55526d1a37e0e59079920545ea1667d413c5556b02a4c07a834b97af8945cc61", "reply_to": "058e7ec2c29dcfa3b6b9fff0bc2ac8f784a837aa7caa580dd65397b0edbf1fd8", "datetime": "2023-03-14T12:59:40+00:00" }, { "message_id": "a52680899c8f5b14569516215f2af683b2f954cf3959e86db8bd576cd0dca36c", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "0c5a5f31597a825d3d46d7179ed1923ff0bd4057bea26dee98fcfec48936020e", "reply_to": null, "datetime": "2023-03-14T14:07:50+00:00" }, { "message_id": "6994d12eb059f807b1889466b1d6109a9003bb953d52656ef25dcf5e1d5d0641", "sticker": null, "text": "At what level you covered in course ?", "from_id": "9d22cac74b806786c9a7101e05fd784e2190230bda29a4cba5b3c942463e170c", "reply_to": "be4bfd37f04aaf3760ee1b7c8b7b9854156d2bdff9944f80a129a3793e9cc1ef", "datetime": "2023-03-15T06:28:25+00:00" }, { "message_id": "c9197cd9dd3784bedd6bd8c44a74fb18f2d6894fa0f57d68387b5f0052410ab8", "sticker": null, "text": "hello guyz", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-15T06:58:54+00:00" }, { "message_id": "ec5a2b3ad7e09294e3c372d1dba75440e9702709953190e01ca6f4b7f75fece2", "sticker": null, "text": "when I open file in powerpoint we write \nthis is not a valid bitmap file pr its format is not currently supported", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-15T07:00:01+00:00" }, { "message_id": "18229aab782e4827b19791e3458af42ec7b60026586bbe59ba63224c29282552", "sticker": null, "text": "how I solve this probleme", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-15T07:00:18+00:00" }, { "message_id": "d0c54e10473ad4b67b15636ac98415338f707519911a48f1b144111cc53d1e92", "sticker": null, "text": "Anyone knows how to sell land in OLX?", "from_id": "163d9f65bafee8d0d438a9c95803df90db4127a712a76cfe8425475092fd80fd", "reply_to": null, "datetime": "2023-03-15T09:59:55+00:00" }, { "message_id": "fd4785baeb7760a6cfe7ec58de9fcc8a0a3ca4e3962986ae62277310636e9406", "sticker": null, "text": "i know", "from_id": "5d7e38f6aa59b93a34ba04581f8c3963125179d3bfecbb07c399aac94b8ff6fd", "reply_to": "d0c54e10473ad4b67b15636ac98415338f707519911a48f1b144111cc53d1e92", "datetime": "2023-03-15T10:43:18+00:00" }, { "message_id": "fb3d09e1ac8bcb4eff3f1460428d82a763635e0c11221f20546c850fd5a98655", "sticker": null, "text": "Basic and intermediate level.. I am adding lots of quizzes and coding exercises. The course is in the making.. I will add more chapters this weekend. Thanks for your interest.", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": "6994d12eb059f807b1889466b1d6109a9003bb953d52656ef25dcf5e1d5d0641", "datetime": "2023-03-15T11:21:33+00:00" }, { "message_id": "9b1806f2795b8382bedec6996a53a728d9be47531a3c63b1991133e1a21d285b", "sticker": null, "text": "DM me please", "from_id": "163d9f65bafee8d0d438a9c95803df90db4127a712a76cfe8425475092fd80fd", "reply_to": "fd4785baeb7760a6cfe7ec58de9fcc8a0a3ca4e3962986ae62277310636e9406", "datetime": "2023-03-15T12:40:57+00:00" }, { "message_id": "1bfbe531db837ad60968f2e0bd59b6e11b7fd791d1ed0e0c01d49513c3cce542", "sticker": null, "text": "Please DM I'm blocked\nI have few doubts \nPlease help", "from_id": "163d9f65bafee8d0d438a9c95803df90db4127a712a76cfe8425475092fd80fd", "reply_to": "fd4785baeb7760a6cfe7ec58de9fcc8a0a3ca4e3962986ae62277310636e9406", "datetime": "2023-03-15T12:50:47+00:00" }, { "message_id": "a6010716ec30c9eb65ed4d62904355b3202f9e2f6beb876e96baa7831b5a66b8", "sticker": null, "text": "Please can someone help me ?\nI'm in need of a document on how to develop security Api using JavaScript", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-03-15T13:45:30+00:00" }, { "message_id": "d0f528e8141a360b3d046691a5fd0f81b99256c61b69593847f314b91c1408bf", "sticker": null, "text": "Using 0auth or jwt?", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": "a6010716ec30c9eb65ed4d62904355b3202f9e2f6beb876e96baa7831b5a66b8", "datetime": "2023-03-15T14:23:51+00:00" }, { "message_id": "158ad7165b01aabef5b9a430a2539d51001661f3ff80b36234ae263db006ff34", "sticker": null, "text": "0auth", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "d0f528e8141a360b3d046691a5fd0f81b99256c61b69593847f314b91c1408bf", "datetime": "2023-03-15T15:07:36+00:00" }, { "message_id": "26f814d8d8f7018e80855f27a1794e544c12f3e849fbbf623ba356f55d1e43eb", "sticker": null, "text": "Please who knows how to use Google dictionary api in JavaScript?", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-03-15T16:06:36+00:00" }, { "message_id": "e5590c75b26a2b148c08bc453dd020e9f49c0b8a4a83b4b14b6c27b6d01f6ead", "sticker": null, "text": "please for any tutorial about security api creation using java or javascript", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-03-15T17:59:08+00:00" }, { "message_id": "3bbdbe04b8dde4ecd87839c0b6c083f8d8354b83c5349476d7e2082fc681121f", "sticker": null, "text": "anyone her is arabic and can done me a course oop with question In exchange for money", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-16T11:09:16+00:00" }, { "message_id": "b036308908b3325281f8c60f3a840ab273d3a1486794a7f0e957e3e819241f0e", "sticker": null, "text": "Hi guys", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": null, "datetime": "2023-03-16T12:23:52+00:00" }, { "message_id": "999d4e52e5c2e20378b147b617f5f88c473e0999be6f6c22e4795b9cea47e1fd", "sticker": null, "text": "I am stuck installing intelij idea", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": null, "datetime": "2023-03-16T12:24:40+00:00" }, { "message_id": "29bbae7d38d4198c7f06081b876a26496f941d6b50860e8f8e9423e2451a2045", "sticker": null, "text": "Can anybody help me out", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": null, "datetime": "2023-03-16T12:24:49+00:00" }, { "message_id": "470a144728dab9dafe49af01987b3b79a80e5dedfa4ab8b576c19de9f00aef11", "sticker": null, "text": "Anyone who knows how to invoke wsdl in spring boot", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": null, "datetime": "2023-03-16T12:57:06+00:00" }, { "message_id": "6c1ada13b927ceb6b5fa2aed9de9cd227be7d46961337f5ed308088ed661aa38", "sticker": null, "text": "Hi", "from_id": "f2e22a6a204f34ce5529d13fbc5966ca60133f33097e8d2e5329a8c2b200135d", "reply_to": null, "datetime": "2023-03-16T13:29:24+00:00" }, { "message_id": "32a7d264d9beed3385944b39aac9cc92d509faa0d5dc5b8f624ef8d9d6ac595b", "sticker": null, "text": "If anyone needs aman dhattarwal alpha batch course then message me", "from_id": "f2e22a6a204f34ce5529d13fbc5966ca60133f33097e8d2e5329a8c2b200135d", "reply_to": null, "datetime": "2023-03-16T13:29:29+00:00" }, { "message_id": "5c185c5adb2f6a7851ae56a3d9eebc91be692c1d2ab09998ecc1b47f79e52447", "sticker": null, "text": "in English I can do", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "3bbdbe04b8dde4ecd87839c0b6c083f8d8354b83c5349476d7e2082fc681121f", "datetime": "2023-03-16T15:22:36+00:00" }, { "message_id": "64bc1a9dd5f3ccdefd1649c51ebab290d3665c8a5f7d47095720fe9482068373", "sticker": null, "text": "Anyone here learning from freecodecamp.org?", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": null, "datetime": "2023-03-17T04:00:35+00:00" }, { "message_id": "140c04d78a691c642140248d898ca7f03173448feabb3e21f9b106249509e509", "sticker": null, "text": "Hi.I wanna get input from the user until reaching the substring \"exit\". How am i suppose to do that?", "from_id": "c108e10ff911de9867b1f41b3e7236f814e6218d7c616a55a7fbd4d6a718677b", "reply_to": null, "datetime": "2023-03-17T18:00:30+00:00" }, { "message_id": "bcaced49f9b19ec116a0a5803e730f9c21d845617d9fd723c39b0d13fbf3d622", "sticker": null, "text": "What's the issue?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "999d4e52e5c2e20378b147b617f5f88c473e0999be6f6c22e4795b9cea47e1fd", "datetime": "2023-03-17T20:55:52+00:00" }, { "message_id": "84f691457513aaee9eecb3ea5677f28f194e469b5ad7d5374008b6477c361466", "sticker": null, "text": "U mean u want a input if end exit button ?", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "140c04d78a691c642140248d898ca7f03173448feabb3e21f9b106249509e509", "datetime": "2023-03-17T20:59:38+00:00" }, { "message_id": "ad4552f8c05a9876fd2a4c46407c49c9eb23d58e447171d3b91373b48d3902e8", "sticker": null, "text": "When I make app background run auto kill anyone have idea for that", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": null, "datetime": "2023-03-17T21:00:10+00:00" }, { "message_id": "7b868b19063077588c8676da9a04d2d6c44165a76d2295d0399683b78b5934f3", "sticker": null, "text": "Thnx for responding, I will send you tomorrow screen shot of the issue", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": "bcaced49f9b19ec116a0a5803e730f9c21d845617d9fd723c39b0d13fbf3d622", "datetime": "2023-03-17T21:26:01+00:00" }, { "message_id": "636c94a0c12e31abda186c1342d307de1f7f2783a4fd9c0a6b08f0a4b38d3803", "sticker": null, "text": "the user gives the code a string and If it contains \"exit\" the program should stop", "from_id": "c108e10ff911de9867b1f41b3e7236f814e6218d7c616a55a7fbd4d6a718677b", "reply_to": "84f691457513aaee9eecb3ea5677f28f194e469b5ad7d5374008b6477c361466", "datetime": "2023-03-17T21:26:10+00:00" }, { "message_id": "ff8b94897a07d4edb859b00b8177e3e9c8d48a0fa98dd38c744f3668f79e1530", "sticker": null, "text": "Does anyone understand c++? there was an example", "from_id": "02b92e735dd66cbfc03ebbfef34edb11542e5d698265efffa21bdd2bc72bb43f", "reply_to": null, "datetime": "2023-03-18T03:58:21+00:00" }, { "message_id": "7aaee7b5f7299867d53c4e4f04eedbf0bcbbdd189dffe3231d7dd04327a1d47a", "sticker": null, "text": "Yes", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": "ff8b94897a07d4edb859b00b8177e3e9c8d48a0fa98dd38c744f3668f79e1530", "datetime": "2023-03-18T09:00:39+00:00" }, { "message_id": "c4a7b3ecd98e80c4748531d77f1fd59f2ea89dc895912416e2778baf92f41255", "sticker": null, "text": "Yep", "from_id": "ddf0c43458e3c5bdbdc9bd72f1edad4cce799ff17c5a91335bd4294b7cc1f79a", "reply_to": "ff8b94897a07d4edb859b00b8177e3e9c8d48a0fa98dd38c744f3668f79e1530", "datetime": "2023-03-18T10:40:56+00:00" }, { "message_id": "c61b5e9ba93fcd46c59c67dd7be2afe7b99c085273606ce586effc1a694b6d27", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-03-18T11:44:51+00:00" }, { "message_id": "d2a1c879f05ccf094ebfac7bdb2c62d2a4493aee05dcbc431ff3f44ae3fb67b5", "sticker": null, "text": "Hello everyone,\n\nI am currently working on some analysis exercises related to domain modeling and I was wondering if there are any online communities where I can get some help with solving them. Specifically, I have some questions related to identifying missing classes, removing unnecessary classes, and turning classes into attributes in a domain model. I would also like some feedback on the associations in a domain model related to a login use case and editing an article in a wiki. Additionally, I need to add associations to a domain model related to a vehicle inspection.\n\nI would appreciate any suggestions or resources that can help me with these exercises. Thank you in advance!", "from_id": "4d9ced63653ffd051437149f5f08075773f1f80e8d05f7f819f653a855ff65b2", "reply_to": null, "datetime": "2023-03-18T21:31:38+00:00" }, { "message_id": "754aa94f6c99e70d62adf91eca9e430ccff8cfe7f0b10408200120651870f543", "sticker": null, "text": "I have a complex program in java and need someone’s help to figure the time and space complexity of it? Anyone please?", "from_id": "ec4d971954001321f954cd89ac28a44d06c59f49b79bf8a2332d23e9071a9c5a", "reply_to": null, "datetime": "2023-03-19T02:03:33+00:00" }, { "message_id": "d7e14eba6630f5dd9eaf947a7ed72a5f50b80455f7b4b64d4e8034b352e83735", "sticker": null, "text": "yes", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "754aa94f6c99e70d62adf91eca9e430ccff8cfe7f0b10408200120651870f543", "datetime": "2023-03-19T03:16:40+00:00" }, { "message_id": "79530e196a4f8acc462135fa92eeafe2295b7c8281dbe143da5fcf8c419555ef", "sticker": null, "text": "Please ping me", "from_id": "ec4d971954001321f954cd89ac28a44d06c59f49b79bf8a2332d23e9071a9c5a", "reply_to": "d7e14eba6630f5dd9eaf947a7ed72a5f50b80455f7b4b64d4e8034b352e83735", "datetime": "2023-03-19T03:17:42+00:00" }, { "message_id": "f1230414cf484696b7ec48f446bc2862ef3f6bc29f4f791cdd9352bb1c073614", "sticker": null, "text": "Hi, any one know about using AWS CI_CD pipeline moven project deployment, while I'm doing I'm getting this issue can anyone please help on thi\n\n\nDeployment completed, but with errors: During an aborted deployment, some instances may have deployed the new application version. To ensure all instances are running the same version, re-deploy the appropriate application version. Failed to deploy application. Unsuccessful command execution on instance id(s) 'i-0bce555e7583cd12a'. Aborting the operation. [Instance: i-0bce555e7583cd12a] Command failed on instance. Return code: 1 Output: Engine execution has encountered an error.. Instance deployment failed. For details, see 'eb-engine.log'.", "from_id": "13129b263aff0f6393b1ee6e7b3fb93f31d811f6bd8b7f39f5cbeb16723f6a5b", "reply_to": null, "datetime": "2023-03-19T03:59:16+00:00" }, { "message_id": "40788bb66509edaae785899ce2e4756f433065a95ffb2eb3b27544dcc17edc82", "sticker": null, "text": "dm", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "79530e196a4f8acc462135fa92eeafe2295b7c8281dbe143da5fcf8c419555ef", "datetime": "2023-03-19T06:50:50+00:00" }, { "message_id": "0a4b1fc9c0a34a4588fcbabbdaa59378c33c3cb3e4b10eabd6f1473f95503388", "sticker": null, "text": "Add me in ur contacts unable to ping u", "from_id": "ec4d971954001321f954cd89ac28a44d06c59f49b79bf8a2332d23e9071a9c5a", "reply_to": "40788bb66509edaae785899ce2e4756f433065a95ffb2eb3b27544dcc17edc82", "datetime": "2023-03-19T06:51:19+00:00" }, { "message_id": "642fd32f24d79e546bc6b13b84fafed59d8908538c0bf1ea0b86b965da79d81c", "sticker": null, "text": "English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-03-19T22:39:07+00:00" }, { "message_id": "e9642bbb7a4b2ba81776617bebabed2745bb7a22c0c16c09721222c71b20a9a1", "sticker": null, "text": "I found quite a few things online just by doing a Google search. Stack Overflow has quite a few things. Have you tried any of those?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "f1230414cf484696b7ec48f446bc2862ef3f6bc29f4f791cdd9352bb1c073614", "datetime": "2023-03-19T22:50:24+00:00" }, { "message_id": "5359b86bc1e1b25733be436a74e733ae11bf08ff7b7a941dcb77e8b50f25cbe2", "sticker": null, "text": "Use chat gpt it explain too", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "e9642bbb7a4b2ba81776617bebabed2745bb7a22c0c16c09721222c71b20a9a1", "datetime": "2023-03-21T00:23:01+00:00" }, { "message_id": "3bc059bf8a80994964941d8305b625b81fe751e39e5fa72fe437450ff1082f24", "sticker": null, "text": "Did anybody get a gpt4?", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-21T00:32:23+00:00" }, { "message_id": "fc8416308b0370cb0c366943f5fa36be45ae3ce7b11e4c6be4a08621b21f35d6", "sticker": null, "text": "if anybody need help in coding or final year project you can reach out to me.", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": null, "datetime": "2023-03-21T02:37:15+00:00" }, { "message_id": "de6a243e37ffcf82f868ffaa446db24e49eebb0689e4d9dfbcfb4ab50f37472d", "sticker": null, "text": "isnt that GPT Plus exclusive?", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": "3bc059bf8a80994964941d8305b625b81fe751e39e5fa72fe437450ff1082f24", "datetime": "2023-03-21T08:10:16+00:00" }, { "message_id": "c1c5ee926e8743c85a13bc0b155d7316a1f8f437807abbb2ad2cdbf3703773a5", "sticker": null, "text": "yea that's what I'm using to learn", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": "5359b86bc1e1b25733be436a74e733ae11bf08ff7b7a941dcb77e8b50f25cbe2", "datetime": "2023-03-21T08:10:27+00:00" }, { "message_id": "98d667c5fcf794329b7c759ba98ee5f99bf8566a08339b90db10b03c500c8e0e", "sticker": null, "text": "Yes free one", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "de6a243e37ffcf82f868ffaa446db24e49eebb0689e4d9dfbcfb4ab50f37472d", "datetime": "2023-03-21T08:21:20+00:00" }, { "message_id": "8eec1ecb48c671ce6dd0106bd978d9cb229fe5d63a7c0c4c034d11ea52ab480d", "sticker": null, "text": "nah I mean GPT4 was only for ChatGPT Plus for now", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": "98d667c5fcf794329b7c759ba98ee5f99bf8566a08339b90db10b03c500c8e0e", "datetime": "2023-03-21T08:27:15+00:00" }, { "message_id": "1806f656fde7c6807b8de510a168f99d18c1f64ba53428f90cd07a8c79e50dbb", "sticker": null, "text": "Yes ,it's price so much", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "8eec1ecb48c671ce6dd0106bd978d9cb229fe5d63a7c0c4c034d11ea52ab480d", "datetime": "2023-03-21T08:32:57+00:00" }, { "message_id": "68de00904470cda4fa273d7164a001fcf50ec741b572b413a75323ad1d11df18", "sticker": null, "text": "Like 1k token = 0.16$", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": null, "datetime": "2023-03-21T08:33:11+00:00" }, { "message_id": "7ab5d55f2d833ef613de8c3cff2f1abb378c32a19bfdf20c1ac542678715643d", "sticker": null, "text": "I say about api", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": null, "datetime": "2023-03-21T08:33:23+00:00" }, { "message_id": "dfffb96c8e3c82424b835c5bb82b91cdbe795c2fd2c8ec345db7cd44313180cc", "sticker": null, "text": "I thought it was free🤔", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-21T08:35:08+00:00" }, { "message_id": "2b00c7c0fc0e188881a3e12bce6410f0cb363d5257efbc7d79982410446c8b28", "sticker": null, "text": "Chat gpt 4 api is paid", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "dfffb96c8e3c82424b835c5bb82b91cdbe795c2fd2c8ec345db7cd44313180cc", "datetime": "2023-03-21T08:39:27+00:00" }, { "message_id": "e52767bc0d9df92cb449527b97b1c9c455ca2e42e7e7b60ed998321ae3b9605c", "sticker": null, "text": "its like 20 dollars per month", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": "1806f656fde7c6807b8de510a168f99d18c1f64ba53428f90cd07a8c79e50dbb", "datetime": "2023-03-21T08:40:27+00:00" }, { "message_id": "76c985b091731ce451532a75a41398ef12092987a63fe7da4b2c227a6dab9fde", "sticker": null, "text": "Without api", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "e52767bc0d9df92cb449527b97b1c9c455ca2e42e7e7b60ed998321ae3b9605c", "datetime": "2023-03-21T08:40:53+00:00" }, { "message_id": "39cb1f6736c5b441de78e8c1ce1d3140abd2a63a3c6e7712ef17aaf4f3602be2", "sticker": null, "text": "ahhh", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": null, "datetime": "2023-03-21T08:40:58+00:00" }, { "message_id": "46c1894394973067e9d82bde52700baa02b22d7f1669be94d98670e17e888cc5", "sticker": null, "text": "Api cost is", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "68de00904470cda4fa273d7164a001fcf50ec741b572b413a75323ad1d11df18", "datetime": "2023-03-21T08:41:02+00:00" }, { "message_id": "d2a79c1b95113f8a5a6b855e0d75baedc780d0c5c5afb878946f197918b21930", "sticker": null, "text": "i see", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": null, "datetime": "2023-03-21T08:41:03+00:00" }, { "message_id": "d2d41e4504a181751330b22d424370639187895f5e83d819bf10cbb00c210fb6", "sticker": null, "text": "Expensive", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-21T08:41:03+00:00" }, { "message_id": "6e6481b503827e45dbcaa52f5147e6e121303821574cba03ebbe3024d86b0209", "sticker": null, "text": "Yes only 1k token , u know how small is 1k token , in programming we use like 100k-1000k tokens 😂😂", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "d2d41e4504a181751330b22d424370639187895f5e83d819bf10cbb00c210fb6", "datetime": "2023-03-21T08:41:56+00:00" }, { "message_id": "512b808426dafeb406e2d4832f007567f36fa1f59ba46cfd5ee9efdb137a3815", "sticker": null, "text": "I know", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-21T08:42:20+00:00" }, { "message_id": "4537b48f0ddd1082540d29366667de5b503b2ee687ac86fde7099769e675ed4c", "sticker": null, "text": "Is the gpt4 limit more than 3.5?", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-21T08:45:40+00:00" }, { "message_id": "30a0de279d8ddfc5326a50109016674f2b11eabeadb3e9257244e9d665a7aeb7", "sticker": null, "text": "I know 3.5 more than 3", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-21T08:46:01+00:00" }, { "message_id": "0b86a7edaf720f647723a43c06665e90f64327fc62ffb9c58e46e3269d574aa1", "sticker": null, "text": "13", "from_id": "ebf654139ef28e46eb80dff25fe975860769f8e8f37edf1dc9a0a46e706c14e5", "reply_to": null, "datetime": "2023-03-21T17:39:02+00:00" }, { "message_id": "09f0ebebe8a496ed78476f967cbf06b1f0ae347f261c12e98ae59f1673c11399", "sticker": null, "text": "i want new project idea for my finel year project.\nPlease", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": null, "datetime": "2023-03-21T18:57:20+00:00" }, { "message_id": "af07bea6fc86d533db3426f7633fd19adf845465b94282474f200aacfb71ef09", "sticker": null, "text": "Yes, NLP", "from_id": "9373ed671211ee4fd9eb809937b80cf02af2a6db181845d7ecf0b88a5335c51b", "reply_to": "09f0ebebe8a496ed78476f967cbf06b1f0ae347f261c12e98ae59f1673c11399", "datetime": "2023-03-21T20:33:25+00:00" }, { "message_id": "b0eff6203a66e115077d7d5bf4261a15b1e7fbacb12b069a2b95ecf37795b28e", "sticker": null, "text": "Why there's no concept of static local variable in java???", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-03-22T08:47:39+00:00" }, { "message_id": "edc6eae52089716d6ad4ff2d475620baca55832cb251bc668efd55b5ce3bebad", "sticker": null, "text": "static variables are available from anywhere in your code\nlocal variables exist only in a specific scope\nso why do you want them to be static?", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "b0eff6203a66e115077d7d5bf4261a15b1e7fbacb12b069a2b95ecf37795b28e", "datetime": "2023-03-22T08:52:19+00:00" }, { "message_id": "a03944b05efaefd5761c6eb3712d078c4e7abee1a8f87e9605fe7667f1d96071", "sticker": null, "text": "Hi guys! can you tell me a resource with java tasks for practice (like codewars etc). I want to learn OOP better", "from_id": "e432154f2e5a614ffc9cbb18e1e90536d87585e8304637d93cb189e6c29d78dc", "reply_to": null, "datetime": "2023-03-22T10:02:58+00:00" }, { "message_id": "cf8bfb1e7b3ad917087d8c392fa2f095ed5a6f7ad8e937719cb168d6adceb0e2", "sticker": null, "text": "Yeah makes sense. Thanks", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "edc6eae52089716d6ad4ff2d475620baca55832cb251bc668efd55b5ce3bebad", "datetime": "2023-03-22T10:03:47+00:00" }, { "message_id": "31dfa2e337a33dca329e5a218dfef72e624464e9de5ded16e349b4c3487d1d3e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b9de070b466c814657f799bc1c02e0012a7cc92c7702cd7e5fd292be3063f09e", "reply_to": null, "datetime": "2023-03-22T10:26:57+00:00" }, { "message_id": "2c5d1f85f9da1ebde34f78058b7107d88b8da458a913e0a63d4b01b9aa3921d3", "sticker": null, "text": "Anyone who knows abt Web services wsdl", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": null, "datetime": "2023-03-22T15:09:23+00:00" }, { "message_id": "ef4737bc3942b6ce8930dad782eba9e9133c0fdd54d398dca512b0352ab6231f", "sticker": null, "text": "Hey everyone good morning", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-03-22T22:09:44+00:00" }, { "message_id": "768fbe7be3d26583d32f27e7bc416e30bdfb9d3193a79cda1a4185cbb9d7c2d6", "sticker": null, "text": "Plss help me", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-03-22T22:09:46+00:00" }, { "message_id": "c8ff65ddb00a389ba7cb7de497520c9a3d2535add76f27a6943a4fbe2d59a34d", "sticker": null, "text": "I cannot send pic... I need help for my project", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-03-22T22:10:52+00:00" }, { "message_id": "13f734bf85d9ac50996741023fe9c8b5c58c8aa1d774adde76baaa5841066d4a", "sticker": null, "text": "Create a method named init(int[] arr) that takes an array as input and initializes it with \nrandom numbers between 0 and 9.", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-23T08:38:56+00:00" }, { "message_id": "8a47219d336c7d6ada8e417870f858f2ca51898e2d96a2c074bd590e4b1c6cc9", "sticker": null, "text": "how?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-23T08:38:59+00:00" }, { "message_id": "3a49dc5ec6849698f024b9b14ef82e4bcf0226a5827edb8a90dcb4fbfe54fc64", "sticker": null, "text": "can you please describe your problem?", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "c8ff65ddb00a389ba7cb7de497520c9a3d2535add76f27a6943a4fbe2d59a34d", "datetime": "2023-03-23T08:40:40+00:00" }, { "message_id": "16f9277c11a208e238a880bbb3dffbe06925916391ab8263f63a13236dd6d3f6", "sticker": null, "text": "package assignment.pkg1;\npublic class Assignment1 {\n public static void main(String[] args) { arr1 = create_array(6);\n arr2 = create_array(8); init(arr1);\n init(arr2); print_array(arr1);\n print_array(arr2);\n }\n public static void create_array(int n) { int[] array = new int[n];\n }\n public static void init(int[] arr) {\n for (int i = 0; i < arr.length; i++) { arr[i] = (int) (Math.random() * 10);\n //System.out.println(arr[i]);// }\n }\n public static void print_array(int[] arr) {\n for (int i = 0; i < arr.length; i++) { arr[i] = (int) (Math.random() * 10);\n System.out.println(arr[i]); }\n }\n public static boolean equal_length(int[] arr1, int[] arr2) {\n if (arr1.length == arr2.length) { return true;\n } else { return false;\n } }", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-23T09:21:48+00:00" }, { "message_id": "902fd32324fb6cf43a93775c71164356a6a1e8bd4419eb937332f7aab5f5efe6", "sticker": null, "text": "what is the wrong in th ecode", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-03-23T09:22:06+00:00" }, { "message_id": "f5e03e0ec0eb560ec13d9eb75e10c606faa591d089a6fe97b82b1a5a99e496d6", "sticker": null, "text": "Pm", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": "3a49dc5ec6849698f024b9b14ef82e4bcf0226a5827edb8a90dcb4fbfe54fc64", "datetime": "2023-03-23T09:45:49+00:00" }, { "message_id": "3a90c2be156fd0b227d196fe0619dfbf3158feb2685ebde568ad6df6fe8f367f", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "16f9277c11a208e238a880bbb3dffbe06925916391ab8263f63a13236dd6d3f6", "datetime": "2023-03-23T09:51:24+00:00" }, { "message_id": "71afd7c0efc2aca607415318d782479d90ecf275e4821a596241dd9bcf659fc8", "sticker": null, "text": "what do you mean?I don't quite understand", "from_id": "380ddcc81e2cbd8d15f739b17800cfbef1145dc28dbca06de8d49fa3f3db1be0", "reply_to": null, "datetime": "2023-03-25T08:21:10+00:00" }, { "message_id": "e5078f82ad0312b791386206afc51c6353ee8f4b00802bb0e0323bb0eead4ee9", "sticker": null, "text": "hi", "from_id": "8dbfd08c6a591e81d198323892fa5e2532e70dccbe0226d976b7bf9126a8c3b9", "reply_to": null, "datetime": "2023-03-25T12:18:44+00:00" }, { "message_id": "62a81156e501a794c0e935b236900a4615d8d754a511d3ad0146264d6ae724c5", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "e5078f82ad0312b791386206afc51c6353ee8f4b00802bb0e0323bb0eead4ee9", "datetime": "2023-03-25T14:12:19+00:00" }, { "message_id": "1457c26adc0af67353fc291bad871ed88b1e2bc39eb0bada92ac5bc5c7658e78", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b9de070b466c814657f799bc1c02e0012a7cc92c7702cd7e5fd292be3063f09e", "reply_to": null, "datetime": "2023-03-26T09:05:47+00:00" }, { "message_id": "488b07acaccb777595a27d92575682cf0c530d753584f4f530dd62332b4e740c", "sticker": null, "text": "Hi, what is the difference between unique key constraints and unique index?", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2023-03-26T11:22:14+00:00" }, { "message_id": "e47608410a0f71dd113a42668dec5571cf8981563874630f486f8b2e2fc60310", "sticker": null, "text": "Hi i have a question", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-03-26T13:41:46+00:00" }, { "message_id": "bc944f31cdf3858d1e60ae524e8244101f88cc2870abeac61fcc19fe14a13e6e", "sticker": null, "text": "I am using data from firebase with Recycleview.", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-03-26T13:42:58+00:00" }, { "message_id": "1cf6146fbad2818d01e1f39474aa8e8dd0b1844dd15930e58579350c8a220254", "sticker": null, "text": "I can get the data under child but I need to use some data under a different child as ArrayList", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-03-26T13:44:21+00:00" }, { "message_id": "2dc64ab7b5ad3a3f217cc394f2ba2f7991f08a9efa542eaf9af2ca9c204b2e4f", "sticker": null, "text": "Does anyone have information", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-03-26T13:44:36+00:00" }, { "message_id": "ff707050dfcacf216e9ecb4d77b17f8c46a65ba9693ce061797f21e44bfae874", "sticker": null, "text": "Both unique key constraints and unique indexes are used to enforce uniqueness of data in a database table, but there are some differences between them.\n\nA unique key constraint is a database constraint that ensures that the values in a column or a group of columns are unique. This means that no two rows in the table can have the same values for the column or group of columns specified in the constraint. Unique key constraints can be applied to one or more columns in a table and are implemented using a unique index.\n\nA unique index, on the other hand, is an index that ensures that the values in a column or a group of columns are unique. Unlike a unique key constraint, a unique index is not a database constraint, but rather an index that is created on a column or group of columns to improve performance of database queries that involve those columns.", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "488b07acaccb777595a27d92575682cf0c530d753584f4f530dd62332b4e740c", "datetime": "2023-03-26T14:59:15+00:00" }, { "message_id": "ab7fd6beafa1e2f493a83203e2a42c06311e212f6dfc23d7848821b690449c78", "sticker": null, "text": "URGENT:::: I need java support, who has good experience with EJB framework & DB2. Only genuine people ping me.", "from_id": "ec4d971954001321f954cd89ac28a44d06c59f49b79bf8a2332d23e9071a9c5a", "reply_to": null, "datetime": "2023-03-27T02:34:55+00:00" }, { "message_id": "c93273266ea450dda4d9fe72f6096f083f7bb05cdb5526a906a05b760ffb0eae", "sticker": null, "text": "6", "from_id": "88998af77fb0bef776e8c493328804a10c592ed3bf8799ec0a3e46125cb2aefc", "reply_to": null, "datetime": "2023-03-27T10:00:50+00:00" }, { "message_id": "111d6380635079e4ecba3083286620941797fb0e33a283205df9eb592e7f1311", "sticker": null, "text": "You've not written data Type of Array....\n\n\nAnd what is init? (Is it int?)", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "16f9277c11a208e238a880bbb3dffbe06925916391ab8263f63a13236dd6d3f6", "datetime": "2023-03-27T13:35:27+00:00" }, { "message_id": "9fada0daba85ffa37b4f8efe5d58e4ec7c81ae9aaee16d0b8c25d9434f7adb43", "sticker": null, "text": "I search same simple program to remember what i have learned in java", "from_id": "44385d21e3850473e977cbab6d6efd61868834d1df23e0245b90e30658421ccf", "reply_to": null, "datetime": "2023-03-27T17:22:12+00:00" }, { "message_id": "5e36e0b276343ad3c1f3da738f632091c3fde33a03bfa60ba753f2550f63d6b7", "sticker": null, "text": "Any one want to learn Ms sql server ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": null, "datetime": "2023-03-27T17:25:15+00:00" }, { "message_id": "24c2bcd18e70f20e259ff11c335f048245c274656ebec8f8f6e8fcf795bfb565", "sticker": null, "text": "Anyone know what's wrong in this code snippet if(jar==null||jar==void)? This is an official code, but when I add \"void.class\", it doesn't work. Any thoughts?", "from_id": "72faf51b9df28d3cc66f8d644a834aa54827e4190d8c96bbb0934a249a024705", "reply_to": null, "datetime": "2023-03-27T21:36:07+00:00" }, { "message_id": "d39b96ab1257f34930dd17c4e7533fae53498c00f0b89f826d12596a53e976d5", "sticker": null, "text": "for starters it's if(jar==null || jar==void)? and the void what is it returning", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": "24c2bcd18e70f20e259ff11c335f048245c274656ebec8f8f6e8fcf795bfb565", "datetime": "2023-03-27T22:13:32+00:00" }, { "message_id": "9099d6c0bc3278519042519f349fd671da8ed6244bf13de343220f4478f3ffa5", "sticker": null, "text": "just remove the || jar == void", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": null, "datetime": "2023-03-27T22:14:56+00:00" }, { "message_id": "46e750782632cca2da26b7ef0e0568132c07b04f3f8e45e4f8d75c3767fe2880", "sticker": null, "text": "Because void is not returning", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": "d39b96ab1257f34930dd17c4e7533fae53498c00f0b89f826d12596a53e976d5", "datetime": "2023-03-28T02:06:03+00:00" }, { "message_id": "c2ff9c411ecdc0fc42395501f8662d4130d325d856cc061700851a38b1a1ea1b", "sticker": null, "text": "Thanks. I believe the jar is a dynamic variable generated during run time.", "from_id": "72faf51b9df28d3cc66f8d644a834aa54827e4190d8c96bbb0934a249a024705", "reply_to": "9099d6c0bc3278519042519f349fd671da8ed6244bf13de343220f4478f3ffa5", "datetime": "2023-03-28T14:59:47+00:00" }, { "message_id": "1e94bd1b628e6f4c02921a9984ac8398fd02902cb5bff8b8329f130ded2549f2", "sticker": null, "text": "I have a doubt", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-28T16:19:28+00:00" }, { "message_id": "c97e5681f8ea5e2eec2d42178038b32ff0da29ce9b453e3a0568c483484a4c34", "sticker": null, "text": "My juniour asked me, it is possible to get internship in java for 1st btech year", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-28T16:20:32+00:00" }, { "message_id": "301300319fa391e81a1ae41fe7e04e3d8e796e37789bb3a6e2439ffb862df9a7", "sticker": null, "text": "Is it possible?😕 for first year students", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-28T16:21:06+00:00" }, { "message_id": "aba5bdae7d42b1d8eb8712c2887ca9f006a0060cf53c5cc8e0edb6b2b9ae2cc7", "sticker": null, "text": "To get internship", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-03-28T16:21:12+00:00" }, { "message_id": "50e486dddd7dcf445544a6bb0666071b5e8b252160291317c1aebd5b18241d92", "sticker": null, "text": "yes", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-28T16:23:13+00:00" }, { "message_id": "f7b18354c6fa6830943ea3e40e005aed6a4bc296af1029a3e69c1ab52bc7177b", "sticker": null, "text": "But you have to meet the requirements", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-28T16:23:56+00:00" }, { "message_id": "a452ae1ddcdbcfb0964d20fd27654a55db50c69348351bcc2281a6d4ca595eb4", "sticker": null, "text": "I know a guy who write a framework at age 16", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-28T16:25:39+00:00" }, { "message_id": "4b8b29f828beee82c916697778d8ae3dc8e6e20a27dd78c5c31785cf47e21477", "sticker": null, "text": "how can i store user info and pass in a database in Java?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-03-28T21:31:51+00:00" }, { "message_id": "4fe3e6bfee1c5c25d2874d70043db921ac71d1cdaf52eaff4853592cf8f51f07", "sticker": null, "text": "Which database you want to use", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": "4b8b29f828beee82c916697778d8ae3dc8e6e20a27dd78c5c31785cf47e21477", "datetime": "2023-03-29T00:11:04+00:00" }, { "message_id": "0b621cc31c5fb8f9b555f20f289e076d5d59dccf1d27bfe3dd1027899889f18f", "sticker": null, "text": "thats the point", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": "46e750782632cca2da26b7ef0e0568132c07b04f3f8e45e4f8d75c3767fe2880", "datetime": "2023-03-29T00:48:42+00:00" }, { "message_id": "b9d8cbeb482e0be20dc96e2549e0dd8198b86ad8ad4a3658f78ca716983f6046", "sticker": null, "text": "are you using a framework or just jdbc", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": "4b8b29f828beee82c916697778d8ae3dc8e6e20a27dd78c5c31785cf47e21477", "datetime": "2023-03-29T00:50:06+00:00" }, { "message_id": "3c2ae66329d0784cec5a184d18861732dbf8d4c7ca96dc962bee5abce6bbe920", "sticker": null, "text": "poj", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": null, "datetime": "2023-03-29T00:50:23+00:00" }, { "message_id": "abac253e571bb79845a7ce191b348a6e90f749c821e67da64c3f73c1bf7edb3b", "sticker": null, "text": "Anything", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "4fe3e6bfee1c5c25d2874d70043db921ac71d1cdaf52eaff4853592cf8f51f07", "datetime": "2023-03-29T00:55:28+00:00" }, { "message_id": "ed7841674a6a92708eed1416db6206916811b10d3375a571ce2eb7139457e98f", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-29T00:58:14+00:00" }, { "message_id": "4245fb8a1805f21fc8d63bf0a51fb4a58ea3c4d50e01457c8617b7d8359cc8b4", "sticker": null, "text": "Search the jdbc dependencies and make your project dependent on them", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-29T01:00:09+00:00" }, { "message_id": "46def73bd583b6ca8651e629fdfe5a91a6494c595797894469aa37901315bd8d", "sticker": null, "text": "Class.forName(“org.jdbc.sqlite”)", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-29T01:03:42+00:00" }, { "message_id": "ab98294f09d21bd019c5a39be7e6a13d75af5b5d559bc37e2f497104a1c95334", "sticker": null, "text": "Use this to load jdbc driver", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-29T01:04:27+00:00" }, { "message_id": "3f835e4d375c0cd6da7fde582b457bb6300d120cb18d4ed115541c1a116efcdc", "sticker": null, "text": "This is a SQLite example", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-29T01:04:40+00:00" }, { "message_id": "7207f3ca98c8a008f3b7e8156969e0e4ba1e19df9b2dca4383a52b08f499b673", "sticker": null, "text": "DriverManager.getConnection(“jdbc:sqlite:test.db”) to get connection from your db", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-29T01:06:51+00:00" }, { "message_id": "4d3389e34a4d8c5ec76ac8a9eaea0b5075339ab54993bd2d07461640cad3813c", "sticker": null, "text": "java only provides the interface, and the implementation is up to each database", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-03-29T01:10:10+00:00" }, { "message_id": "28851eb57cf317b1d9eb120dc130057e2f50cece0ee1e98fd17f043cc00fcc08", "sticker": null, "text": "first connect to the database then create user table and execute query to store user data", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "4b8b29f828beee82c916697778d8ae3dc8e6e20a27dd78c5c31785cf47e21477", "datetime": "2023-03-29T03:21:32+00:00" }, { "message_id": "f3d28f326abf778b389139f94f1199c58c0da59a941804cf9126ad220f389459", "sticker": null, "text": "do you know any link that explains how to do this?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "28851eb57cf317b1d9eb120dc130057e2f50cece0ee1e98fd17f043cc00fcc08", "datetime": "2023-03-29T03:22:04+00:00" }, { "message_id": "1b7c2ea191c5bd549e6385aa85e9f707dd93cc43061b3cfc50b0ad98faf58353", "sticker": null, "text": "dm i can provide you with the whole code", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "f3d28f326abf778b389139f94f1199c58c0da59a941804cf9126ad220f389459", "datetime": "2023-03-29T03:23:17+00:00" }, { "message_id": "fde42c0bfa2f7230fc4435ced06a3404fff0e4cf1b73735ce3980afeac9ade81", "sticker": null, "text": "someone can help me for a simple school project code, i dont understand 6 error, i think i need to add intereger parse int", "from_id": "bbc3fa0774b76816e1e337e49d87eeb9412876982f495a00c983744697c63e98", "reply_to": null, "datetime": "2023-03-30T14:21:19+00:00" }, { "message_id": "f2aa62ed9cd67cca16f08a120b0b844e8efbde9d3ae6fbbbb40e2f6eb28aa936", "sticker": null, "text": "import javax.swing.*;\nimport java.awt.*;\nimport java.awt.event.*;\n\nclass Finestra extends JFrame implements ActionListener\n{\n private JPanel p;\n private JTextArea area_di_testo;\n private JButton b[];\n private JButton c;\n \nFinestra()\n {\n\n int i=0;\n \n super(\"TASTIERINO NUMERICO\");\n setSize(500,100);\n setDefaultCloseOperation(EXIT_ON_CLOSE);\n\n p = new JPanel();\n p.setLayout(new FlowLayout());\n \n area_di_testo = new JTextArea(10,20);\n area_di_testo.setEditable(false);\n p.add(area_di_testo);\n \n\n b = new JButton[10];\n \n for (i=0; i<10; i++)\n {\n b[i] = new JButton(\"\" +i);\n b[i].addActionListener(this);\n p.add(b[i]);\n \n }\n\n c = new JButton(\"c\");\n c.addActionListener(this);\n p.add(c);\n\n\n setVisible(true);\n add(p);\n }\n \n public void actionPerformed(ActionEvent e)\n {\n int stato = 0;\n int i=0;\n for(i=0;i<10;i++) \n {\n if (e.getSource() == b[i])\n {\n area_di_testo.append(\"\" +b[i]);\n \n if(b[i].getText() == 3)\n {\n stato = 1;\n }\n if(b[i].getText() == 6 )\n {\n if(stato.getText() == 1)\n {\n stato = 2;\n }\n \n }\n else stato = 0;\n if(b[i].getText() == 9 )\n {\n if(stato.getText() == 2)\n {\n area_di_testo.setText(\"JACKPOT\");\n for(i=0;i<10;i++)\n {\n b[i].setVisible(false);\n }\n }\n }\n else stato=0;\n \n }\n }\n if (e.getSource() == c)\n {\n area_di_testo.setText(\"\");\n }\n \n \n }\n}", "from_id": "bbc3fa0774b76816e1e337e49d87eeb9412876982f495a00c983744697c63e98", "reply_to": null, "datetime": "2023-03-30T14:23:17+00:00" }, { "message_id": "e1e84c3e150eaab32c023ea7a85ebd69d5d92f0b30baaaedfc15807a742e8473", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "52ab830994007eb987080029d09ee674ac83d40f309317226c5db3605f8bfb6c", "reply_to": null, "datetime": "2023-03-30T15:17:58+00:00" }, { "message_id": "7113217243c3a3ae254665e198ee41a53424d132f58d1d0a3a5144069688346a", "sticker": null, "text": "dont use .getText() == 3)\n\nuse .equals(3) instead , do it for all comparisons", "from_id": "fcd211b6dc15e065ef92953237d8bf98beadb6ca7bd9869ea6b701d5bc6cbd65", "reply_to": "f2aa62ed9cd67cca16f08a120b0b844e8efbde9d3ae6fbbbb40e2f6eb28aa936", "datetime": "2023-03-30T17:35:51+00:00" }, { "message_id": "05178f24c3c747f218bcea5dd258a13702fd44ce17ecb405759361703c427ec0", "sticker": null, "text": "Anyone who knows how to invoke work with wsdl in Web services", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": null, "datetime": "2023-03-30T17:38:24+00:00" }, { "message_id": "9f3c3cdb473a8b71b07f2fa03b7359f1012fb879a9db585ab678bf0bad20dc2c", "sticker": null, "text": "true. only use == when comparing int value with another int value. when comparing strings use .equals()", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "7113217243c3a3ae254665e198ee41a53424d132f58d1d0a3a5144069688346a", "datetime": "2023-03-30T23:16:47+00:00" }, { "message_id": "6389fd34545a01c4e4afc39a7d502565679a542b7e355305905c4c429045c78d", "sticker": null, "text": "thanks", "from_id": "bbc3fa0774b76816e1e337e49d87eeb9412876982f495a00c983744697c63e98", "reply_to": null, "datetime": "2023-03-31T06:11:02+00:00" }, { "message_id": "842030112558d04947017166799853c357aaa2cf6f99d1aab7005990f42e8367", "sticker": null, "text": "Is anyone free to do project?\nI'll pay for this", "from_id": "073bedbd44dd90d0388241f999acfc8dc0c26ba97383f314b9b4afd987398a11", "reply_to": null, "datetime": "2023-03-31T09:48:23+00:00" }, { "message_id": "05a5f0fec9dfe7ac132593967a60b6b79588af9afb4908f0c84a3ff340a218de", "sticker": null, "text": "dm", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "842030112558d04947017166799853c357aaa2cf6f99d1aab7005990f42e8367", "datetime": "2023-03-31T10:13:35+00:00" }, { "message_id": "e2ae8c8b9a6db35399a59b1552b9740eec91708587970bd66a4fcd296714e9ac", "sticker": null, "text": "Dm", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "842030112558d04947017166799853c357aaa2cf6f99d1aab7005990f42e8367", "datetime": "2023-03-31T11:36:09+00:00" }, { "message_id": "1cac84a87aabe96512c41564673f9c382ae895cab647e33a8cbeb558dce289f5", "sticker": null, "text": "it's not for free", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": "3bc059bf8a80994964941d8305b625b81fe751e39e5fa72fe437450ff1082f24", "datetime": "2023-03-31T13:07:00+00:00" }, { "message_id": "1864b749cd5863fa513e1f2571ef7da140725df02f6d5480477a6e60be7b07fd", "sticker": null, "text": "14", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": null, "datetime": "2023-03-31T14:15:45+00:00" }, { "message_id": "cafd97831d91f487960e78b030fccc0e55f88ac8cc47425fcd5243b0b565c110", "sticker": null, "text": "detail?", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": "842030112558d04947017166799853c357aaa2cf6f99d1aab7005990f42e8367", "datetime": "2023-03-31T15:22:06+00:00" }, { "message_id": "74fcdf4ecd0d417607be664d15c37a50ed8e4ece75b723cffaf4aad0ea8bbe8b", "sticker": null, "text": "hello everyone,what company would use vertx?", "from_id": "35d5388f779a27a0211ee20ac8228018ee6f4d8937ba0654f3a415eb3db1317b", "reply_to": null, "datetime": "2023-04-01T00:49:58+00:00" }, { "message_id": "afe7b8640955fe839f59088ff04be56d1b01659efb2f4f4c0f6b49f72e8154db", "sticker": null, "text": "i look like a nodejs of version of java", "from_id": "35d5388f779a27a0211ee20ac8228018ee6f4d8937ba0654f3a415eb3db1317b", "reply_to": null, "datetime": "2023-04-01T00:51:03+00:00" }, { "message_id": "f15e4e14cd48bd6ba7ef8dbd09594d4a501b2a81d683a3d194677762101bb08d", "sticker": null, "text": "Hey I'm bored of doing java", "from_id": "39cbcfb4a4cb7b8e00d0aaa2445534b8c3a166d3db9b5605cea2cc81786c6719", "reply_to": null, "datetime": "2023-04-01T10:32:28+00:00" }, { "message_id": "6301427f3352bd2f241f84cbb9e646522a1de6f3089d2d41626b0907a5e3ad2f", "sticker": null, "text": "Anyone want to share any scary storym", "from_id": "39cbcfb4a4cb7b8e00d0aaa2445534b8c3a166d3db9b5605cea2cc81786c6719", "reply_to": null, "datetime": "2023-04-01T10:32:48+00:00" }, { "message_id": "46f7d30a471d2e79322ae4f7c608b35503923fd4f7e0ca167e0f0adf358fb8e6", "sticker": null, "text": "I'm not getting java😕😕", "from_id": "b371741be8bc514120dffedd9b28ffa656cc1d70751ddeb6caae7b4d8fcb95ba", "reply_to": "f15e4e14cd48bd6ba7ef8dbd09594d4a501b2a81d683a3d194677762101bb08d", "datetime": "2023-04-01T12:45:29+00:00" }, { "message_id": "1bf311fc44bc97a0444fc8b5d88adf244f94b7efe5f77baa7efa5a1329bc84ca", "sticker": null, "text": "If you don't want case sensitive, then go with equal ignore case", "from_id": "f044c95323a05cbae58ab7e488b71f870b26dc3c7f03c000b668223aaa431a62", "reply_to": "7113217243c3a3ae254665e198ee41a53424d132f58d1d0a3a5144069688346a", "datetime": "2023-04-01T17:22:01+00:00" }, { "message_id": "c49ce552a7692de5e883e7158de0049e70be8aff4f32f8ea1df992b48269cd71", "sticker": null, "text": "...", "from_id": "f044c95323a05cbae58ab7e488b71f870b26dc3c7f03c000b668223aaa431a62", "reply_to": "9f3c3cdb473a8b71b07f2fa03b7359f1012fb879a9db585ab678bf0bad20dc2c", "datetime": "2023-04-01T17:22:23+00:00" }, { "message_id": "53fe0f3de0070ab0488244fa20ada81e993efd56d8c99043e55a748a21d31223", "sticker": null, "text": "__If you don't want case sensitive, then go with equal ignore case__", "from_id": "0d5f10ad5b087f5f52be39389d73ece9844fbfeb7e238201d3564ce61c5964de", "reply_to": null, "datetime": "2023-04-02T00:16:52+00:00" }, { "message_id": "f8a8b8fa364354304ada5a2d5e126d7862a3a135d019efd280765f4c65cc2a51", "sticker": null, "text": "If you're interested in *company*, just go to official site and scroll to the bottom, there's a \"who uses vertx\" section. Basically, any company.\n\nIf you are interested in type of applications where to use vertx is a good idea, then:\n - generic backend, both APIs and old-fashioned server-side-rendered html too\n - backend for IOT or something similar, where there are very-very many requests come to backend from devices\n - microservices systems, or at least distributed ones, where there are multiple applications; there won't be any benefit compared to spring-boot, if you're building monolith\n - embedded applications for microcomputers, where memory usage is very important\n\nAdvantages:\n - it's very fast, probably the fastest framework in java world\n - it's memory efficient, mostly because it's a little bit more low-level compared to other frameworks, and it doesn't have DI mechanisms\n - very fast startup\n - degrades predictably under load\n - leverages \"actors model\" paradigm, which encourages nice loosely coupled design\n - uses \"event bus\" for sending messages between actors, which effectively means that you don't need to design and implement any APIs for inter-service communications in distributed systems; you still need to design addresses format/hierarchy for event bus, but it's minuscule compared to what you need to do to connect two microservices via rest; this is a huge win, which grows quickly with number of microservices\n\nDisadvantages\n - no DI, hence it requires tons of plumbing code\n - somewhat low-level in some aspects, thus in some places you'd need to write more plumbing code compared to more high-level frameworks\n - has non-traditional parallelism model for java world, hence it is incompatible with many libraries\n - due to non-traditional parallelism model, has steeper learning curve for developers, and requires more or less solid understanding of parallelism/multithreading; so developers should have some experience to properly work with it, I'd say 1y of solid experience is a minimum\n - vertx is practically unusable with its stock futures and callbacks; it looks fine in tiny samples, but in real world all that will become crazy spaghetti; thus you can't get away with vertx without using rx-java, which requires experience to master, which again similarly to previous point - requires experienced developers\n - no ORM\n\nAnd yes, it's like nodejs in java world. But much more unrestricted and fragile because java allows you at any point to spawn threads and it's way easier in java to call blocking code.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "74fcdf4ecd0d417607be664d15c37a50ed8e4ece75b723cffaf4aad0ea8bbe8b", "datetime": "2023-04-02T10:51:58+00:00" }, { "message_id": "be811f83ae2cba8794735ab0304d1f091cd37bb8e6726aafef99ef61d70a8721", "sticker": null, "text": "Pls someone should help with this code… \nWhile I try to loop the menu input at the main method it shows some error… \n\npackage student;\nimport java.io.IOException;\nimport java.util.InputMismatchException;\nimport java.util.Scanner;\n\ninterface Student{\n void registerStudent();\n void displayStudentinfo(); \n \n}\nabstract class underGraduate implements Student{\n //here we declare our variables(properties)\n private String fname;\n private String lname;\n private String faculty;\n private String dept;\n private String gender;\n private String id;\n private int age;\n private int level;\n private boolean status=false;\n underGraduate(){\n \n }\n underGraduate(String fname, String lname, String faculty, String dept, String gender, String id, int age, int level){\n this.fname=fname;\n this.lname=lname;\n this.faculty=faculty;\n this.dept=dept;\n this.gender=gender;\n this.id=id;\n this.age=age;\n this.level=level;\n \n }\n \n \n @#USER\n public void registerStudent() {\n System.out.println(\"________REGISTRATION___________ \\n\");\n System.out.println(\" *FILL IN THIS FORM* \");\n System.out.println(\"NOTE: FILL IN EVERY INFORMATION IN UPPERCASE LETTERs\\n\");\n //we do some ERROR HANDLING TO AVOID PROGRAM INTERRUPTION while user enter a wrong input\n try(Scanner sc = new Scanner(System.in)) {\n System.out.println(\"ENTER YOUR FIRST NAME\");\n fname=sc.next();\n System.out.println(\"ENTER YOUR LAST NAME\");\n lname=sc.next();\n System.out.println(\"ENTER YOUR GENDER ~~ [MALE/FEMALE] :\");\n gender=sc.next();\n System.out.println(\"ENTER YOUR ID NUMBER\");\n id=sc.next();\n System.out.println(\"ENTER YOUR AGE\");\n age=sc.nextInt();\n System.out.println(\"ENTER YOUR FACULTY NAME\");\n faculty=sc.next();\n System.out.println(\"ENTER YOUR DEPARTMENT NAME\");\n dept=sc.next();\n System.out.println(\"ENTER YOUR LEVEL\");\n level=sc.nextInt();\n System.out.println(\"SUCCESSFULLY REGISTERED\");\n \n }catch(InputMismatchException e){\n System.out.println(e+\": Enter an interger value for age and level\");\n }\n catch(Exception e){\n System.out.println(\"Unknown Error\");\n \n }\n \n \n \n \n }\n\n \n @#USER\n public void displayStudentinfo() {\n System.out.println(\"NAME : \"+fname+\" \"+lname);\n System.out.println(\"AGE : \"+age);\n System.out.println(\"GENDER : \"+gender);\n System.out.println(\"ID NUMBER : \"+id);\n System.out.println(\"FACULTY : \"+faculty);\n System.out.println(\"DEPARTMENT : \"+dept);\n System.out.println(\"LEVEL : \"+level+\"Leve\");\n System.out.println(\"STATUS : \"+status);\n \n }\n \n\n \n \n}\n \n\npublic class mainStudent{\n \n public static void main(String[] agrs){\n \n Student student= new Courses();\n \n int ch;\n while(true){ \n System.out.println(\"_________MAIN MENU____________\");\n System.out.println(\"1. REGISTER A NEW ACCOUNT\\n2.DISPLAY YOUR INFORMATION\");\n \n try(Scanner sc= new Scanner(System.in))\n {\n ch=sc.nextInt();\n if(ch==1){\n student.registerStudent();\n }\n \n \n \n m=sc.next();\n \nSystem.out.println(\"select y to go back. \");\nString input=sc.next();\n\n }\n catch(Exception e){\n System.out.println(\"Exception Error: \"+e+\" select 1,2,3 or 4 from the options\");\n }\nif(input! != \"y\")\n break; \n \n )\n \n}", "from_id": "fc8efcb6c61b2a1bf11c7f21afdb58a34b6b2f79779c7d0f5d83dd69b36ac8ae", "reply_to": null, "datetime": "2023-04-02T15:09:25+00:00" }, { "message_id": "7bab7e96d2b621f774a1e75297f17bf64e0cd63737ab397726729f8e2043055c", "sticker": null, "text": "How to get concept of Recursion?\n\nCan you please suggest any YouTube channel...😒", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "f15e4e14cd48bd6ba7ef8dbd09594d4a501b2a81d683a3d194677762101bb08d", "datetime": "2023-04-02T15:45:06+00:00" }, { "message_id": "924cd88e6e1dc62a9bdbf5fe3ace1de021b879d101419a8bef05a1a7c5412092", "sticker": null, "text": "When method is called again and again then where the previous value is stored?", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "7bab7e96d2b621f774a1e75297f17bf64e0cd63737ab397726729f8e2043055c", "datetime": "2023-04-02T15:46:22+00:00" }, { "message_id": "a9d48a8cfa178a87439db29947e5bce10ad42096ef80a72af963db467f247c5d", "sticker": null, "text": "Int fun(int x){\n return x>=0fun(x-1):fun(x-2);\n}\n\nIf you understand this you know how to do recursion", "from_id": "39cbcfb4a4cb7b8e00d0aaa2445534b8c3a166d3db9b5605cea2cc81786c6719", "reply_to": "7bab7e96d2b621f774a1e75297f17bf64e0cd63737ab397726729f8e2043055c", "datetime": "2023-04-02T15:47:09+00:00" }, { "message_id": "494d962332369ca3be04dd3b221d068b39ef9c6112d94aa68930dff64ebe6a7e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "fc6c985a7c5dcf5154ccf40259df6f73c07f8c61a4da4c10eb7fed84eea26291", "reply_to": "7bab7e96d2b621f774a1e75297f17bf64e0cd63737ab397726729f8e2043055c", "datetime": "2023-04-02T15:49:54+00:00" }, { "message_id": "c64844fef800837630fb0126e65dda83b4666585ebdab27128219423744129c4", "sticker": null, "text": "Hi", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-04-02T16:20:32+00:00" }, { "message_id": "2d334ebe407f64f235dc32cf0bd7e246cd389432757a8309de13641b78758245", "sticker": null, "text": "What certificates is helpful and free to write exam for core java?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-04-02T16:21:05+00:00" }, { "message_id": "8e0c1e87137f6a33b11211e80adbea05e53c5e04ebcebce414cdea5b3b331c03", "sticker": null, "text": "This will result a infinite loop.", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "a9d48a8cfa178a87439db29947e5bce10ad42096ef80a72af963db467f247c5d", "datetime": "2023-04-02T16:55:52+00:00" }, { "message_id": "4989cb479939e477d63099ffb28052f828943926effc8cbe4806230e15bb8176", "sticker": null, "text": "Here u go nice catch I think rest people are just letting people write bad code here", "from_id": "39cbcfb4a4cb7b8e00d0aaa2445534b8c3a166d3db9b5605cea2cc81786c6719", "reply_to": "8e0c1e87137f6a33b11211e80adbea05e53c5e04ebcebce414cdea5b3b331c03", "datetime": "2023-04-02T16:57:41+00:00" }, { "message_id": "41bae5d8d8a52b139c1e68f80e8dcbd9b34dc6e16d8c0807048123523dcc53bf", "sticker": null, "text": "Somehow they doing that.", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "4989cb479939e477d63099ffb28052f828943926effc8cbe4806230e15bb8176", "datetime": "2023-04-02T17:02:38+00:00" }, { "message_id": "51253160ee652b73072a6041b552bb320e8d0aa026327689c765ec4ed8311b2f", "sticker": null, "text": "Nah, there is condition x>=0", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": "8e0c1e87137f6a33b11211e80adbea05e53c5e04ebcebce414cdea5b3b331c03", "datetime": "2023-04-02T17:03:07+00:00" }, { "message_id": "d2827f2b43a5860cb8c462401dd9431b6c11258e1b9d3f0ad766dcc8a3ec83ec", "sticker": null, "text": "If condition false then what ???", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "51253160ee652b73072a6041b552bb320e8d0aa026327689c765ec4ed8311b2f", "datetime": "2023-04-02T17:03:48+00:00" }, { "message_id": "0495affff5f56bba4ee3a766851c9a5a49c04e3acf18fd15a85a0d84dacb02e7", "sticker": null, "text": "Nah i am sorry, you need to write while(x=>0)", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": null, "datetime": "2023-04-02T17:07:46+00:00" }, { "message_id": "85870c30c07de87be300920e0ccf6bf92d38ca7aec304190724a2cba6c7917a9", "sticker": null, "text": "Yes that is a valid loop", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "0495affff5f56bba4ee3a766851c9a5a49c04e3acf18fd15a85a0d84dacb02e7", "datetime": "2023-04-02T17:12:08+00:00" }, { "message_id": "438fc2af95ddeccb81995d1fcbaa573c92ac47b7ffb087223b89db0062ac1fef", "sticker": null, "text": "int fun(int x){ \n return x>=0 ? fun(x-1) : fun(x-2); \n}\nor he missed if else", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": null, "datetime": "2023-04-02T17:14:08+00:00" }, { "message_id": "71ffccb5e1c3c8b0ecc056b7531c60da7239edc5d08aae85cc5cbabc9c35c4be", "sticker": null, "text": "Yes he missed the if part taht is ?", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "438fc2af95ddeccb81995d1fcbaa573c92ac47b7ffb087223b89db0062ac1fef", "datetime": "2023-04-02T17:15:54+00:00" }, { "message_id": "d2190c99ee020258d8a548354366828ffc7a4823627ab6d2a6b02073ff50e118", "sticker": null, "text": "It may be typing mistake", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": null, "datetime": "2023-04-02T17:16:10+00:00" }, { "message_id": "7f585aad7cbe2d814f86ce56ea86f0843c8e9cf5f8a9f7b339f2cccadc40ebe7", "sticker": null, "text": "here is corrected version , i tried with chatgtp \npublic class MainStudent { public static void main(String[] args) {\n Student student = new Courses(); int ch;\n String input = \"\";\n while (true) { System.out.println(\"_________MAIN MENU____________\");\n System.out.println(\"1. REGISTER A NEW ACCOUNT\\n2. DISPLAY YOUR INFORMATION\");\n try (Scanner sc = new Scanner(System.in)) { ch = sc.nextInt();\n if (ch == 1) { student.registerStudent();\n } else if (ch == 2) { student.displayStudentinfo();\n } else { System.out.println(\"Invalid option. Please choose 1 or 2.\");\n }\n System.out.println(\"Enter 'y' to go back.\"); input = sc.next();\n } catch (InputMismatchException e) { System.out.println(\"InputMismatchException: Enter an integer value for age and level\");\n } catch (Exception e) {\n System.out.println(\"Unknown Error: \" + e.getMessage()); }\n if (!input.equals(\"y\")) {\n break; }\n } }\n}", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": null, "datetime": "2023-04-02T17:16:38+00:00" }, { "message_id": "9b70ef4e4982a62b93f821e53bd9e11365280995284c2c7f90e3e24dd4df89c7", "sticker": null, "text": "Pls someone should help with this code… \nWhile I try to loop the menu input at the main method it shows some error… \n\npackage student;\nimport java.io.IOException;\nimport java.util.InputMismatchException;\nimport java.util.Scanner;\n\ninterface Student{\n void registerStudent();\n void displayStudentinfo(); \n \n}\nabstract class underGraduate implements Student{\n //here we declare our variables(properties)\n private String fname;\n private String lname;\n private String faculty;\n private String dept;\n private String gender;\n private String id;\n private int age;\n private int level;\n private boolean status=false;\n underGraduate(){\n \n }\n underGraduate(String fname, String lname, String faculty, String dept, String gender, String id, int age, int level){\n this.fname=fname;\n this.lname=lname;\n this.faculty=faculty;\n this.dept=dept;\n this.gender=gender;\n this.id=id;\n this.age=age;\n this.level=level;\n \n }\n \n \n @#USER\n public void registerStudent() {\n System.out.println(\"________REGISTRATION___________ \\n\");\n System.out.println(\" *FILL IN THIS FORM* \");\n System.out.println(\"NOTE: FILL IN EVERY INFORMATION IN UPPERCASE LETTERs\\n\");\n //we do some ERROR HANDLING TO AVOID PROGRAM INTERRUPTION while user enter a wrong input\n try(Scanner sc = new Scanner(System.in)) {\n System.out.println(\"ENTER YOUR FIRST NAME\");\n fname=sc.next();\n System.out.println(\"ENTER YOUR LAST NAME\");\n lname=sc.next();\n System.out.println(\"ENTER YOUR GENDER ~~ [MALE/FEMALE] :\");\n gender=sc.next();\n System.out.println(\"ENTER YOUR ID NUMBER\");\n id=sc.next();\n System.out.println(\"ENTER YOUR AGE\");\n age=sc.nextInt();\n System.out.println(\"ENTER YOUR FACULTY NAME\");\n faculty=sc.next();\n System.out.println(\"ENTER YOUR DEPARTMENT NAME\");\n dept=sc.next();\n System.out.println(\"ENTER YOUR LEVEL\");\n level=sc.nextInt();\n System.out.println(\"SUCCESSFULLY REGISTERED\");\n \n }catch(InputMismatchException e){\n System.out.println(e+\": Enter an interger value for age and level\");\n }\n catch(Exception e){\n System.out.println(\"Unknown Error\");\n \n }\n \n \n \n \n }\n\n \n @#USER\n public void displayStudentinfo() {\n System.out.println(\"NAME : \"+fname+\" \"+lname);\n System.out.println(\"AGE : \"+age);\n System.out.println(\"GENDER : \"+gender);\n System.out.println(\"ID NUMBER : \"+id);\n System.out.println(\"FACULTY : \"+faculty);\n System.out.println(\"DEPARTMENT : \"+dept);\n System.out.println(\"LEVEL : \"+level+\"Leve\");\n System.out.println(\"STATUS : \"+status);\n \n }\n \n\n \n \n}\n \n\npublic class mainStudent{\n \n public static void main(String[] agrs){\n \n Student student= new Courses();\n \n int ch;\n while(true){ \n System.out.println(\"_________MAIN MENU____________\");\n System.out.println(\"1. REGISTER A NEW ACCOUNT\\n2.DISPLAY YOUR INFORMATION\");\n \n try(Scanner sc= new Scanner(System.in))\n {\n ch=sc.nextInt();\n if(ch==1){\n student.registerStudent();\n }\n \n \n \n m=sc.next();\n \nSystem.out.println(\"select y to go back. \");\nString input=sc.next();\n\n }\n catch(Exception e){\n System.out.println(\"Exception Error: \"+e+\" select 1,2,3 or 4 from the options\");\n }\nif(input! != \"y\")\n break; \n \n )\n \n}", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": null, "datetime": "2023-04-02T17:16:38+00:00" }, { "message_id": "ef0416e03fa330dda929da682c2cfb21ccf01f46e54e1ba49a48701f7ea57ee0", "sticker": null, "text": "i really can not understand difference between interface and abstract class", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": null, "datetime": "2023-04-02T17:17:36+00:00" }, { "message_id": "2d8c5f325cdd983ec45e71250c1a6d555d474ecb6e681e18dfdf7cadb3912af8", "sticker": null, "text": "Ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "ef0416e03fa330dda929da682c2cfb21ccf01f46e54e1ba49a48701f7ea57ee0", "datetime": "2023-04-02T17:22:48+00:00" }, { "message_id": "3c5233aff4e59ac8d52f41a6c018703549d32cdc9afdb17a174d23a5c889be59", "sticker": null, "text": "Hi guys, can somebody tell me how can I insert into the regex an arrayList value\nsomeString.replaceAll(\"[^arrayList.get(0)]\", \"\"); <- how can I do this ?", "from_id": "a0bfe76b2aa75b9b96146f197463e258d4ecf09d0dd8b588792693b74e11c275", "reply_to": null, "datetime": "2023-04-02T19:14:12+00:00" }, { "message_id": "4ad11556d91207ab88b28cdeebef965d6918874e35b24b06b99b118b10f4bd8e", "sticker": null, "text": "Use + operator\nArrayList arrayList = new ArrayList();\narrayList.add(\"abc\");\n\nString someString = \"xyzabc123\";\n\nString regexPattern = \"[^\" + arrayList.get(0) + \"]\";\nString resultString = someString.replaceAll(regexPattern, \"\");\n\nSystem.out.println(resultString); // output: \"abc\"", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": null, "datetime": "2023-04-02T20:51:23+00:00" }, { "message_id": "c73f63d5549e3b65587b38d087bf69822b52571cc1a5271589e196ac8706ec25", "sticker": null, "text": "Thanks…Am greatful that you help", "from_id": "fc8efcb6c61b2a1bf11c7f21afdb58a34b6b2f79779c7d0f5d83dd69b36ac8ae", "reply_to": null, "datetime": "2023-04-03T00:04:01+00:00" }, { "message_id": "5cf859e90ca50ad016553e140597c333f27d2d6c9e95677f15f5be771a05d2cd", "sticker": null, "text": "Thank soo much bro", "from_id": "fc8efcb6c61b2a1bf11c7f21afdb58a34b6b2f79779c7d0f5d83dd69b36ac8ae", "reply_to": "7f585aad7cbe2d814f86ce56ea86f0843c8e9cf5f8a9f7b339f2cccadc40ebe7", "datetime": "2023-04-03T00:06:10+00:00" }, { "message_id": "8dc838b5de8d66ee3c71308fffa5c32768f2e1748d53c6cc0b2a24dc5c24da57", "sticker": null, "text": "Quite confusing…", "from_id": "fc8efcb6c61b2a1bf11c7f21afdb58a34b6b2f79779c7d0f5d83dd69b36ac8ae", "reply_to": "ef0416e03fa330dda929da682c2cfb21ccf01f46e54e1ba49a48701f7ea57ee0", "datetime": "2023-04-03T00:09:40+00:00" }, { "message_id": "5feb8477379e2edfce31b09bc8bcdfb45026e021d834e3cfe33f310d899d3abd", "sticker": null, "text": "Thank you !", "from_id": "a0bfe76b2aa75b9b96146f197463e258d4ecf09d0dd8b588792693b74e11c275", "reply_to": "4ad11556d91207ab88b28cdeebef965d6918874e35b24b06b99b118b10f4bd8e", "datetime": "2023-04-03T08:43:22+00:00" }, { "message_id": "35fde1728f189c07c1877ade681889d47a695cf05f0cd2fc0282aa6ae29c0ccc", "sticker": null, "text": "interface Inter{}\nclass One{}\nclass Two extends One{}\nclass Three extends One{}\nclass Four extends Two implements Inter{}\nclass Five extends Four{}\nclass Six extends Three{}\n\npublic class Test{\n public static void main(String[] args){\n //your code here\n}\n}", "from_id": "05d87a9e918ebe26b37f3ef6d7a8f845ce5199face5876d9bb45830036d4b751", "reply_to": null, "datetime": "2023-04-03T14:47:27+00:00" }, { "message_id": "4b45fd607e2673b36390c8078d7680e55eef8e2a8e0937be6f665ac8757fd8c1", "sticker": null, "text": "In the section *//your code here*, this following statement will not cause error...\nA. Inter inter = new Six();\nB. One one = new Five();\nC. Inter inter = new Four();\nD. Three three = new Four();", "from_id": "05d87a9e918ebe26b37f3ef6d7a8f845ce5199face5876d9bb45830036d4b751", "reply_to": null, "datetime": "2023-04-03T14:47:41+00:00" }, { "message_id": "c8d7e425ac8fed1e19df150eb6ca046969967d858a24aabe053307adf6395f2e", "sticker": null, "text": "can anyone help me?", "from_id": "05d87a9e918ebe26b37f3ef6d7a8f845ce5199face5876d9bb45830036d4b751", "reply_to": "4b45fd607e2673b36390c8078d7680e55eef8e2a8e0937be6f665ac8757fd8c1", "datetime": "2023-04-03T14:47:50+00:00" }, { "message_id": "90618636a7cf8d5017b1f646500280866424125099c96bdabec9da155321672a", "sticker": null, "text": "Right answer is C, because four implements inter", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": null, "datetime": "2023-04-03T15:11:37+00:00" }, { "message_id": "c72d94f3c314b5930eb0f9e89c4bda17556fc3ff56e433907aa8692c919b2708", "sticker": null, "text": "got it, thankyou!", "from_id": "05d87a9e918ebe26b37f3ef6d7a8f845ce5199face5876d9bb45830036d4b751", "reply_to": null, "datetime": "2023-04-03T15:18:09+00:00" }, { "message_id": "bc3ff23a0b9bbaef7d7ee6c9f9fb159cb32f8ce5f443089e9f9cf6bbddcc1269", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c658c0f4e6aa0edcce3ee857c91cd4f0dc22380cabc712b589950794961ec936", "reply_to": null, "datetime": "2023-04-03T15:55:15+00:00" }, { "message_id": "e3b15d1d6405c18f6a1680e1da678a342e92c311d982215a7246890a51be1461", "sticker": null, "text": "Input a string of alphabets. Find out the number of occurrence of all alphabets in that string. Find out the alphabet with maximum occurrence.\n\nIn java language?", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": null, "datetime": "2023-04-03T18:18:03+00:00" }, { "message_id": "269f16980a27cb14c15579078e8c5d4b94e762721fd08ba67995a1214f364cea", "sticker": null, "text": "import java.util.Scanner;\n\nclass Car {\n public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n System.out.print(\"Enter a string: \");\n String str = input.nextLine();\n\n int[] charCounts = new int[256];\n\n for (int i = 0; i < str.length(); i++) {\n char c = str.charAt(i);\n charCounts[c]++;\n }\n System.out.println(\"Character counts:\");\n for (int i = 0; i < charCounts.length; i++) {\n if (charCounts[i] > 0) {\n System.out.println((char)i + \" : \" + charCounts[i]);\n }\n }\n }\n}", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "e3b15d1d6405c18f6a1680e1da678a342e92c311d982215a7246890a51be1461", "datetime": "2023-04-04T15:09:39+00:00" }, { "message_id": "12da6a8abbc56c1a25ebf75c918f302942908bf2aefd12885b312310f068af26", "sticker": null, "text": "public static void charCount(String str) {\n str = str.toLowerCase();\n int[] ans = new int[26];\n for (int i = 0; i < str.length(); i++) {\n char c = str.charAt(i);\n ++ans[c - 'a'];\n }\n for (int i = 0; i < str.length(); i++) {\n int index = str.charAt(i) - 'a';\n int count = ans[index];\n if (count != 0){\n System.out.println(str.charAt(i) + \"occur \" + count + \" times\");\n ans[index] = 0;\n }\n }\n }", "from_id": "0e99546c5ed00e135d402a26094c7dedb89a253acf39fe6731576e4bb2ac537e", "reply_to": "269f16980a27cb14c15579078e8c5d4b94e762721fd08ba67995a1214f364cea", "datetime": "2023-04-04T15:32:34+00:00" }, { "message_id": "8b2c126f5bad4a37d645a2ca6e0703345b76808a1b0415cd5b1be94b6f1ac26c", "sticker": null, "text": "Thanks Tim!", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "12da6a8abbc56c1a25ebf75c918f302942908bf2aefd12885b312310f068af26", "datetime": "2023-04-04T15:33:32+00:00" }, { "message_id": "8c87dec340817c3816cf8fbee3f65048c1627684809aabaecbc1d0553372d350", "sticker": null, "text": "what is the better for girl and For work and money\ncyber security or programming or data science", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-04-05T11:50:35+00:00" }, { "message_id": "56a2f0e8df3a9b936548d44e30e98d6be628aabd7d9fdb027d6771ebe23cf37e", "sticker": null, "text": "?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-04-05T11:50:36+00:00" }, { "message_id": "e14fa571ddfdc18bdd89ca462ffeb0535c4ac201bb79b86ca663f7c160208263", "sticker": null, "text": "I wld have preferred if u send a pic", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": "12da6a8abbc56c1a25ebf75c918f302942908bf2aefd12885b312310f068af26", "datetime": "2023-04-05T14:17:34+00:00" }, { "message_id": "4367653657e2b64de843655825353432b60fc200876b89c899f3c223bc2d8e2e", "sticker": null, "text": "Data science", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": "8c87dec340817c3816cf8fbee3f65048c1627684809aabaecbc1d0553372d350", "datetime": "2023-04-05T14:58:02+00:00" }, { "message_id": "3c30d95fd4bd361d5b1c6daccc9b1c825c4d0d9904844cfdf86ba26df8725f88", "sticker": null, "text": "programming", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "8c87dec340817c3816cf8fbee3f65048c1627684809aabaecbc1d0553372d350", "datetime": "2023-04-05T15:12:17+00:00" }, { "message_id": "315cd46fed64a96e3473e03f6c53c40570f21a03759c12aa0c3410ae8765011a", "sticker": null, "text": "Data science involves programming ig?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "8c87dec340817c3816cf8fbee3f65048c1627684809aabaecbc1d0553372d350", "datetime": "2023-04-05T16:21:54+00:00" }, { "message_id": "9c9884827a07c3178bd53bb9ddb025db441ef39f4d735e2d551f668fdbaa374b", "sticker": null, "text": "2 major", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": "315cd46fed64a96e3473e03f6c53c40570f21a03759c12aa0c3410ae8765011a", "datetime": "2023-04-05T17:49:40+00:00" }, { "message_id": "a597af61edae5c6daf35406f3a282a6629057bb6b786efe1beed42b79d97ee82", "sticker": null, "text": "damn. can u write me the advantages and disadvantages of Java", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "f8a8b8fa364354304ada5a2d5e126d7862a3a135d019efd280765f4c65cc2a51", "datetime": "2023-04-05T23:25:10+00:00" }, { "message_id": "0bde14901f6e13aa2fb149240bf66d0e61d520a897bbe80af81f7922322b62e0", "sticker": null, "text": "Java is a popular programming language that has been used for a wide range of applications from mobile apps to enterprise-level applications. Here are some of the advantages and disadvantages of Java:\n\n**Advantages:**\n- Platform independence: Java code can be run on any platform that has a Java Virtual Machine (JVM) installed, which makes it a platform-independent language.\n- Object-oriented: Java is a fully object-oriented programming language which allows for clean, modular, and reusable code creation.\n- Robust and secure: Java is designed to be robust and secure. Its built-in security features protect the code from unauthorized access and prevent the execution of malicious code.\n- Large community: Java has a large and vibrant community of developers who contribute to open-source libraries and frameworks, making it easier to learn and use.\n- Performance: With modern JVM, Just-In-Time (JIT) compilation and garbage collection, Java code can perform well out-of-the-box.\n\n**Disadvantages:**\n- Memory management: Although automated memory management frees the developer from manual memory management, it can lead to issues such as garbage collection pauses and higher memory overhead.\n- Verbose syntax: Java syntax can be verbose, making the code longer and more difficult to read.\n- Slower startup: The JVM tends to take longer to start up than some other languages due to its need to interpret the bytecode.\n- Limited low-level access: Java does not provide access to low-level hardware programming, which can be a limitation for applications that require direct hardware interaction.\n\nOverall, Java is a reliable, secure, and widely adopted programming language that can be used for a variety of applications, but like any language, it has its own advantages and disadvantages depending on the context of its use.", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "a597af61edae5c6daf35406f3a282a6629057bb6b786efe1beed42b79d97ee82", "datetime": "2023-04-06T00:08:41+00:00" }, { "message_id": "d73032ec6e8e8c8809e388dd0337092a2f1935aebab8925c8cbb6fb19665a84e", "sticker": null, "text": "By chatGpt*", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": null, "datetime": "2023-04-06T00:08:58+00:00" }, { "message_id": "029a42d791f857a67bffce78e94a61f790c02cdb9e39ce185d94fcfe4118ca76", "sticker": null, "text": "am i the only one that likes a verbose language?", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "0bde14901f6e13aa2fb149240bf66d0e61d520a897bbe80af81f7922322b62e0", "datetime": "2023-04-06T01:50:33+00:00" }, { "message_id": "2112f5e7d6a14064a4a25ee19a30a7f9735e8d1d4caecb171d70f72674497626", "sticker": null, "text": "like yeah i like writing more", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-04-06T01:50:39+00:00" }, { "message_id": "fd99654ce3950652185ab860ef09fb122465964fffde4e3253d9d25bcbdd3f3a", "sticker": null, "text": "make me feel like a solid programmer", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": null, "datetime": "2023-04-06T01:50:43+00:00" }, { "message_id": "5291dc30d3e424cd0c8d997daff859fbafee23c8f460e1c03d28733140d7cf70", "sticker": null, "text": "It makes concepts easy to grab", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "029a42d791f857a67bffce78e94a61f790c02cdb9e39ce185d94fcfe4118ca76", "datetime": "2023-04-06T03:30:21+00:00" }, { "message_id": "479913bce3068f7c2dcc6f6dad4ae8f638b0a74e3fd264426836c3c9de2dadc6", "sticker": null, "text": "I hope you don't write a verbose code😅", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "2112f5e7d6a14064a4a25ee19a30a7f9735e8d1d4caecb171d70f72674497626", "datetime": "2023-04-06T03:31:10+00:00" }, { "message_id": "bca4b4b5e7b02c04ee1afbd777c0fcfd133e86feca1adc3983a4bb3777349d05", "sticker": null, "text": "No", "from_id": "bb2f3f9cd7a1a563f1cef51d3844120ad2998df258f9965d6d0b46bafe83b042", "reply_to": "479913bce3068f7c2dcc6f6dad4ae8f638b0a74e3fd264426836c3c9de2dadc6", "datetime": "2023-04-06T03:48:03+00:00" }, { "message_id": "ef227f03c454462273c401e84cb391ede74333d56757ab25d152d60832d3612f", "sticker": null, "text": "can i use the group to exercise my english?", "from_id": "35d5388f779a27a0211ee20ac8228018ee6f4d8937ba0654f3a415eb3db1317b", "reply_to": null, "datetime": "2023-04-06T08:32:59+00:00" }, { "message_id": "bcc018655aee82f2169eb695f5e63bd4c81c91f8bf71388293cca6b034f9380c", "sticker": null, "text": "😂", "from_id": "35d5388f779a27a0211ee20ac8228018ee6f4d8937ba0654f3a415eb3db1317b", "reply_to": null, "datetime": "2023-04-06T08:38:05+00:00" }, { "message_id": "e127009b9df46277936568a34576253a92dcc4473282e58a2ad9025c8e5a027b", "sticker": null, "text": "i tried to find people to work on project together and practice my english too\nbut unfortunately didn't find anyone", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "ef227f03c454462273c401e84cb391ede74333d56757ab25d152d60832d3612f", "datetime": "2023-04-06T08:42:35+00:00" }, { "message_id": "eed7df4b722c3fd5bd8a495f539a711125699bca3ad7aac29465ac21c5a921f8", "sticker": null, "text": "what is the different between static variable and public variable and private variable?", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-04-06T08:47:31+00:00" }, { "message_id": "9823b7a15a4a08de2e743df9aa1ab33090bfd163606ad1aaab61a738e23c8545", "sticker": null, "text": "and same for method", "from_id": "d7a7bc8e476293c4ac90c4dabdce53feff882d7cef84a333c8c27e6f7f844af7", "reply_to": null, "datetime": "2023-04-06T08:47:41+00:00" }, { "message_id": "76029efba1c33a8d50f6ea4bdde329bd8af59153cb85a7515a75098e5d87c5e9", "sticker": null, "text": "Public variable yo can not use without creating an object of class , same for method", "from_id": "109fb829499080351d8f328cd02f99f6f42ee501cc2b7b7c869a817c135768fd", "reply_to": "eed7df4b722c3fd5bd8a495f539a711125699bca3ad7aac29465ac21c5a921f8", "datetime": "2023-04-06T08:59:49+00:00" }, { "message_id": "29c0e61dff03692e6e30e647a6762fb7be0f75e206c2455fcc6eeed56643451b", "sticker": null, "text": "ChatGPT did a great job. But few additions:\nAdvantages:\n - backwards compatibility. And this is huge. You can take any popular library that was written like 10y ago, and it will still work just fine in your todays modern java-17 project. With some exceptions, but those are still manageable.\n - huge stable ecosystem with long history. It's similar to \"large community\", but it's a little bit different angle. It means that you can practically do anything in java, there are lots of tools available, you can find virtually anything you need existing for java, you won't end up missing some tool.\n - debugging and monitoring capabilities. It's the most debuggable technology out there, most advanced debugging features. Also I can monitor memory usage, threads, and all that stuff in production literally in realtime with java's JMX. It's not possible, or at least not that easy in other stacks.\n\nDisadvantages - totally agree with every item, nothing to add. \nThough, low-level access is not impossible, it requires using special instruments for that (jni or jna). So technically, it's not \"limited low-level access\" as it states, it's more \"low-level access only with specialized tools\" would more precise.\nVerbose syntax is the most hurting disadvantage", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "a597af61edae5c6daf35406f3a282a6629057bb6b786efe1beed42b79d97ee82", "datetime": "2023-04-06T09:52:02+00:00" }, { "message_id": "bb73efc47bb265f4378ffa096a141d90aee7840e703d98c739ebbf829b8fc0a9", "sticker": null, "text": "But, verbose syntax is the price we pay for that backwards compatibility advantage. And in the end, it's worth it", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2023-04-06T09:54:03+00:00" }, { "message_id": "18cc13dab09d75bc4f8a7562dcd3e053eb5f41bc0d0e4f2b4c6ff9bb290844c9", "sticker": null, "text": "Ok", "from_id": "b9a325dfccf45c3b433076b9db8582141b917953fd0922ce3fc145388b391bc2", "reply_to": null, "datetime": "2023-04-07T10:21:30+00:00" }, { "message_id": "b824e8b8fccb446be60f99d35fd0b5adae4776f946bb7f40bddc6fe36a7ca7b3", "sticker": null, "text": "16", "from_id": "b9a325dfccf45c3b433076b9db8582141b917953fd0922ce3fc145388b391bc2", "reply_to": null, "datetime": "2023-04-07T10:40:05+00:00" }, { "message_id": "31075829cad8492f1747ee0034ae9a23db51f64e6158441ec981cc35111022ef", "sticker": null, "text": "DM me if you want video", "from_id": "ca6edd5d940ec5bce1ed8d9146ef34922e6419db663b284bc8f9650bbdc32fbb", "reply_to": null, "datetime": "2023-04-07T12:39:35+00:00" }, { "message_id": "153a72720750624a51259fabdbc038cce43a1ed037f9f1faf51bada1de965ccd", "sticker": null, "text": "DM me if you want video 🌝👉👈", "from_id": "ca6edd5d940ec5bce1ed8d9146ef34922e6419db663b284bc8f9650bbdc32fbb", "reply_to": null, "datetime": "2023-04-07T12:40:11+00:00" }, { "message_id": "4d5e7284807ef8ae9c18f329d23ca56d9e9d78e2c1c89fea79a2cb74928a2c11", "sticker": null, "text": "Total messages: 118684", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-04-07T17:55:05+00:00" }, { "message_id": "a645a3e3e6bba4fbe6fd430dc08b149f14a9061d282bd23f95712d7eaf5a0bda", "sticker": null, "text": "Hi if anybody need final year project or help in coding , you can reach out to me. Thanks.", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": null, "datetime": "2023-04-07T18:01:04+00:00" }, { "message_id": "8a11f4caae6b1a51d18775cb7b76fd89621ec312647ab83f52106bb9da88a4ea", "sticker": null, "text": "Hello Members,\nWe are offering free Java and DSA courses of Coding Ninja and inviting people to join our Telegram channel to participate in the course. We are also planning to include comparative programming courses , SQL and operating systems(Also the on demand courses of any other website too). If you're interested, please send me a direct message for the channel link.", "from_id": "6da62052e75b6c58af68db882f7e655825b02984125709158ed66db74da497d5", "reply_to": null, "datetime": "2023-04-09T08:53:07+00:00" }, { "message_id": "8dc7afe707c943a1ac59268bc6395762e1dc441ad24a78a34aeeb31b6179b488", "sticker": null, "text": "Hello", "from_id": "8dbfd08c6a591e81d198323892fa5e2532e70dccbe0226d976b7bf9126a8c3b9", "reply_to": null, "datetime": "2023-04-09T09:18:11+00:00" }, { "message_id": "97dbf6cdd1fc6a02c1c88a8c0e93304f0352aea79bc0b141620eb5c9ab45b089", "sticker": null, "text": "Anyone can have a project on an \n\n**ONLINE DOCTOR APPOINTMENT** **SYSTEM** \nbuilt in **Python Django**. \n\n`PLEASE HELP TO FIND`", "from_id": "bfb022bfe4938a4cf5dd024e8d3fcc89ed8cb3f21e0b4ecb3d016163ce4a9204", "reply_to": null, "datetime": "2023-04-09T12:34:52+00:00" }, { "message_id": "b8e25ffa7d82d7130d7918fa678f55ed37fee939a6618c25a0d54e8a2464b34c", "sticker": null, "text": "Guys, \nLooking for support on Elastic Search\nNeed daily 2 hours\nInterested candidates DM me\nThanks\n\nGuys, \nLooking for support on Elastic Search\nNeed daily 2 hours\nInterested candidates DM me\nThanks\n\nGuys, \nLooking for support on Elastic Search\nNeed daily 2 hours\nInterested candidates DM me\nThanks\n\nGuys, \nLooking for support on Elastic Search\nNeed daily 2 hours\nInterested candidates DM me\nThanks", "from_id": "bf18c21de9c7151847009ea62f5044780f6bc382fd160693c1273bd8a8597e5a", "reply_to": null, "datetime": "2023-04-09T15:59:51+00:00" }, { "message_id": "4df4064207f653a792a31d47f82bded2b000b79a8e8d6d27cc1f2fcea2d1c02b", "sticker": null, "text": "Can you please share more detail?", "from_id": "134dad14d428a2eb4fb3bee09ef76946574831f98ac33a1cc1a0ea2fe42a8246", "reply_to": "66375a1dec0c522a9d31d70615a053840a1f4a424cff56026e4764ab363492d5", "datetime": "2023-04-10T08:42:02+00:00" }, { "message_id": "9d170dabbef6d9a985862926919fb7fe2a5d2e02a4475ab71549180a850d21d3", "sticker": null, "text": "Hello. The question is related to Upwork. \nMost of Upwork clients post jobs, change their minds and hire nobody. Some jobs are fake. Why do they post if they don't hire anyone?", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2023-04-10T15:43:55+00:00" }, { "message_id": "5f332e641b8304fe48b2194b87bec9881c5932b2cd811d9cb02ad27d7d14eadf", "sticker": null, "text": "Can I get it", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "c60509f1fd98934160f93aee2aa0137eb7ff03c6af9ba9a0e68a890d2eac32b1", "datetime": "2023-04-10T17:00:39+00:00" }, { "message_id": "0d66fde7732db24a4cfbfb171cd2a35f4fec45c48e4f87ba1ae44a705c424b51", "sticker": null, "text": "Can you chat me up", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "8db2061f6d7684c09a8193a400de9dd6ed20a027b69ec99970a16e4047eb05c0", "datetime": "2023-04-10T17:06:20+00:00" }, { "message_id": "443351bccca78b5e40be2549be45350dff179685a8486789d8adecbec610fcb5", "sticker": null, "text": "I can't message you", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2023-04-10T17:06:29+00:00" }, { "message_id": "70382a476046d2a916b2ecd62b875e441db9adc7d4817d85dc971635e00c56a5", "sticker": null, "text": "Okay", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2023-04-10T17:06:57+00:00" }, { "message_id": "4017c2280920916ccbc604fdefeeeae8461f0f32d81425dda9228b9a93c2fe1f", "sticker": null, "text": "My email was immediately delete", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2023-04-10T17:14:24+00:00" }, { "message_id": "e573d7b76ac0d5fc447bd1fa81d0c563fb0c906ca14ee0e69b900309919fd995", "sticker": null, "text": "Write it separately", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": "4017c2280920916ccbc604fdefeeeae8461f0f32d81425dda9228b9a93c2fe1f", "datetime": "2023-04-10T18:31:49+00:00" }, { "message_id": "d6723917871cf6ff2b9602ea466bd01b4c308dd09f95efaa4ab43a7bdb7a0819", "sticker": null, "text": "Like ghhvguj", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": null, "datetime": "2023-04-10T18:32:02+00:00" }, { "message_id": "353c07b56e600aa2106a6dcbe5f4bde02fcd9054f58dddd2d187d5e2e16e0b6f", "sticker": null, "text": "@", "from_id": "9cd7983537ea3208ebb0db8dbdb2468c4d8b69660be6203364c6dd54ace01976", "reply_to": null, "datetime": "2023-04-10T18:32:05+00:00" }, { "message_id": "4fb637d4d7246d83b68e184f87e082448fe4a18f50779462fd9b15107aac63bc", "sticker": null, "text": "Nigeria", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "0722f2ab0819972d6d4fa1b12fdcd2b49a45711b82221557ef3220f10a573461", "datetime": "2023-04-10T21:16:10+00:00" }, { "message_id": "9ed23230417ea6d1064b13155a70f88e9b7067c7df394a662e1d07c42b9e2214", "sticker": null, "text": "aderibigbeolamide56", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2023-04-10T21:16:33+00:00" }, { "message_id": "9d99535eaf9da676c7b0d2631f7d078717adae3a21a84c1a8c19c068a4883417", "sticker": null, "text": "@", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2023-04-10T21:16:40+00:00" }, { "message_id": "da1a35716e0dac9820f0769983c74586dcad53029ba68807e71e46508b94c748", "sticker": null, "text": "Hi", "from_id": "bf0e87e86af6c490add8269b00680541b401246d4896c09d0823c90565714ed9", "reply_to": null, "datetime": "2023-04-11T16:08:25+00:00" }, { "message_id": "1df13566f921a541f8d0956aacb83e9fcceee165acc1cf46db3ed4e437a438ef", "sticker": null, "text": "Hello, can someone tell me a wa to learn Java online , I am a cs student I know the basics of programming , just want a way to learn Java", "from_id": "2573baae73f262baa1e42e93c28e3c0f4c29b34a6f5135e43a7a3a7d5a8bd272", "reply_to": null, "datetime": "2023-04-11T18:37:54+00:00" }, { "message_id": "ecda7f0e13f991b238371a6fa77fa5b840fd3b423f848a285b1059119540e422", "sticker": null, "text": "🙏🏻would help me a lot if someone can suggest me a way, thank you 🙏🏻", "from_id": "2573baae73f262baa1e42e93c28e3c0f4c29b34a6f5135e43a7a3a7d5a8bd272", "reply_to": "1df13566f921a541f8d0956aacb83e9fcceee165acc1cf46db3ed4e437a438ef", "datetime": "2023-04-11T18:39:42+00:00" }, { "message_id": "2f591b5a05552faf783dc7aa9cdc6d0d09a2eb2e944c587ddffb504b28343bf5", "sticker": null, "text": "You can download some tutorials online and practice with that, trust you will gain something", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2023-04-11T20:12:53+00:00" }, { "message_id": "92e9da43a3a53c69b9989dba077315a7eb99514064a58722b6af05c43a175ccb", "sticker": null, "text": "Okk , i will try that thx", "from_id": "2573baae73f262baa1e42e93c28e3c0f4c29b34a6f5135e43a7a3a7d5a8bd272", "reply_to": null, "datetime": "2023-04-11T20:16:01+00:00" }, { "message_id": "76d9c20f94aded602cd925b937fa097b4c32b28f3d9e28b5d34b48eb4dba264f", "sticker": null, "text": "Can someone explain me what is Escaping reference cocnept", "from_id": "3b376ab382d72e7779ee3d19b1b4b5e0054cdba8882db5c0f0eb2b358b81ce07", "reply_to": null, "datetime": "2023-04-11T22:24:00+00:00" }, { "message_id": "9d74b6ac29f29a2ce8085da12f0f335cdac1059fa341f6b404d8745719f82e77", "sticker": null, "text": "And where can i learn about it", "from_id": "3b376ab382d72e7779ee3d19b1b4b5e0054cdba8882db5c0f0eb2b358b81ce07", "reply_to": null, "datetime": "2023-04-11T22:24:19+00:00" }, { "message_id": "c10cd86ad311d823872baa59b48fe139afa190c49f07ac6c364c27999946b20a", "sticker": null, "text": "Java belongs to development and is a relatively civilized technology. Are there any other masters?", "from_id": "ab6c25fd5bf1a8547872a2bcab8d01ad16ae668945e04e64f93b2fe40c092bf9", "reply_to": null, "datetime": "2023-04-13T01:29:15+00:00" }, { "message_id": "5dce4073d09318c69efaa98310483328fe8d5844d929a9945284a2ea4e2a6aa4", "sticker": null, "text": "Java belongs to development\n\nmore civilized action\n\nDo you have any technical experts?", "from_id": "ab6c25fd5bf1a8547872a2bcab8d01ad16ae668945e04e64f93b2fe40c092bf9", "reply_to": null, "datetime": "2023-04-13T01:30:40+00:00" }, { "message_id": "a5f3c63b68dfb27fa36ceb22d0f008977a8aea39484e3a56066e92cf3897a90d", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "5dce4073d09318c69efaa98310483328fe8d5844d929a9945284a2ea4e2a6aa4", "datetime": "2023-04-13T02:04:15+00:00" }, { "message_id": "d4fab611a90b0afc4a4e240a00ebb7fea311f7e577c87d31d01d8681a4b39608", "sticker": null, "text": "Free Offline Soft Skills Course on April 18th Tuesday. Interested candidates Join with us", "from_id": "8307a9bb08145f53ab7b8dd69761d01f87700f367a82e4588586357dd547ee95", "reply_to": null, "datetime": "2023-04-13T05:18:49+00:00" }, { "message_id": "a6051405966bf892eceeaaa4960b09338a6abe0975c3ec2eef4820eb6a436e20", "sticker": null, "text": "Hey, does someone here understand in apk overlays?", "from_id": "7deb93157740031507ce52f1b487f2d8c5abd49274792b48af7a39082ed12e7a", "reply_to": null, "datetime": "2023-04-13T08:04:05+00:00" }, { "message_id": "57acbdb538e752671ce4b0ca192b91f7b3dff1b452d2b9731ff13611b34157fd", "sticker": null, "text": "do anyone know how to sqlmap data from websites?", "from_id": "a40abd1e174e00021b137de0fb3909bf36906e1cd0d87948a069a8fd3aa953ea", "reply_to": null, "datetime": "2023-04-13T21:21:20+00:00" }, { "message_id": "f6e470a414a6969b945226509946639ae1f66c6e5625f654a16ceb34e718d495", "sticker": null, "text": "hello everyone, i have project about dentist appointment system, but I'm having problems with the relationship in the UML😩 PLEASE if you have any ideas about that let me know🥲", "from_id": "f83487896ec677653b8c382af104aed88ab89020ae47369909ef5f95acca112a", "reply_to": null, "datetime": "2023-04-14T07:47:28+00:00" }, { "message_id": "76f08a348942c69b0c77e1b1fe21e5a373cc29e8dfeedcd0dce20abacf781d18", "sticker": null, "text": "I want same project in python django! Anyone can help me to find this...", "from_id": "bfb022bfe4938a4cf5dd024e8d3fcc89ed8cb3f21e0b4ecb3d016163ce4a9204", "reply_to": "f6e470a414a6969b945226509946639ae1f66c6e5625f654a16ceb34e718d495", "datetime": "2023-04-14T08:02:37+00:00" }, { "message_id": "50045ee14657b140e0d996703ee480fddf515363d75a0fd2b96cbafb4d90b2f5", "sticker": null, "text": "S", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "76f08a348942c69b0c77e1b1fe21e5a373cc29e8dfeedcd0dce20abacf781d18", "datetime": "2023-04-14T08:15:24+00:00" }, { "message_id": "3a732dc6811bf482618018a2afebf6beeb8279e3b225abfb8b45c8abbc536fe2", "sticker": null, "text": "What sir", "from_id": "bfb022bfe4938a4cf5dd024e8d3fcc89ed8cb3f21e0b4ecb3d016163ce4a9204", "reply_to": "50045ee14657b140e0d996703ee480fddf515363d75a0fd2b96cbafb4d90b2f5", "datetime": "2023-04-14T08:19:09+00:00" }, { "message_id": "b0dc3ecae494615929ba263e3d022a5d00d2c3ffab37a0846f28666b8cf30dbe", "sticker": null, "text": "Akk😭😭", "from_id": "f83487896ec677653b8c382af104aed88ab89020ae47369909ef5f95acca112a", "reply_to": "76f08a348942c69b0c77e1b1fe21e5a373cc29e8dfeedcd0dce20abacf781d18", "datetime": "2023-04-14T08:29:19+00:00" }, { "message_id": "acbe718f690a9de8b4255d2ceee158658c97931b9b0c12af644d7d0cf502465e", "sticker": null, "text": "i'll be more specific, if I have this classes:\n\nPerson (super class) (inheritance is a)\nStaff (subclass from Person) \nPatient (subclass from Person)\nAppointment (????) Is it correct to be a composition?\nData about hospital or clinic (????)\n\nWhat's (????)  ?\n\nAlso, are the other relationships correct?", "from_id": "f83487896ec677653b8c382af104aed88ab89020ae47369909ef5f95acca112a", "reply_to": null, "datetime": "2023-04-14T08:44:23+00:00" }, { "message_id": "cf016581d79b061dcc42c3dcb323d35c40304a1343ef55903fc67e3a7669bddf", "sticker": null, "text": "Hello.....\nPlease I have written code...\nAnd what's it to move in a path as if drawing a bigger size of it...\n\nIt works well with the Character 8 but not working well with character g.", "from_id": "9eafea79e312ead107e31f70b06eaa2c4871d1de47c8fa05f3d8a0ed97abc15d", "reply_to": null, "datetime": "2023-04-14T12:12:07+00:00" }, { "message_id": "37e000250cbbbcab3b9af9e54615ad1e07eb880b2d98e04d74a5c6fe5848a5bf", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8307a9bb08145f53ab7b8dd69761d01f87700f367a82e4588586357dd547ee95", "reply_to": null, "datetime": "2023-04-14T12:31:11+00:00" }, { "message_id": "45678d79d3bef8f41cf1c0410a26a9f11f0b53f0a04da022a39ccdc4797ac3c7", "sticker": null, "text": "Any body that know about Termux", "from_id": "b9a325dfccf45c3b433076b9db8582141b917953fd0922ce3fc145388b391bc2", "reply_to": null, "datetime": "2023-04-14T16:46:46+00:00" }, { "message_id": "3ca229621f39dd8d98412953b0f2ebef33239d1e8fe95ed7ab0e50045dd32ef4", "sticker": null, "text": "13", "from_id": "63b19fcb53a524a82c5078e57751c6b3d53061020609fbd09bea04fed8835c76", "reply_to": null, "datetime": "2023-04-14T18:15:26+00:00" }, { "message_id": "1aa4c8107e414b7ebcde8a4c6a9e927c849c268ad3f4bbef253eb2d153ba8f78", "sticker": null, "text": "dm", "from_id": "f7e57f68a2f49c35aa0127529868227ef06f15b6e07b068be561b346e66bb0eb", "reply_to": "76f08a348942c69b0c77e1b1fe21e5a373cc29e8dfeedcd0dce20abacf781d18", "datetime": "2023-04-14T18:35:52+00:00" }, { "message_id": "c2462827de295ecabcbcca19372f3c6163ab8720c34599d501fcdf55147bb459", "sticker": null, "text": "dm", "from_id": "f7e57f68a2f49c35aa0127529868227ef06f15b6e07b068be561b346e66bb0eb", "reply_to": "f6e470a414a6969b945226509946639ae1f66c6e5625f654a16ceb34e718d495", "datetime": "2023-04-14T18:36:05+00:00" }, { "message_id": "1e4bc0054d4f18fe8aebdc380d908fb9e70c318cbb3984a4fba66671ec5fcc50", "sticker": null, "text": "in java,\n\nString products[] = {\"Rice\", \"Soup\", \"Bread\"}\n \nHow do I get the index of element Soup", "from_id": "f7e57f68a2f49c35aa0127529868227ef06f15b6e07b068be561b346e66bb0eb", "reply_to": null, "datetime": "2023-04-15T04:41:39+00:00" }, { "message_id": "bedf8324a150688ecec8c9d7a7c7c4c4015c874a24e74a34565076804db03829", "sticker": null, "text": "I can't send you", "from_id": "bfb022bfe4938a4cf5dd024e8d3fcc89ed8cb3f21e0b4ecb3d016163ce4a9204", "reply_to": "1aa4c8107e414b7ebcde8a4c6a9e927c849c268ad3f4bbef253eb2d153ba8f78", "datetime": "2023-04-15T05:23:42+00:00" }, { "message_id": "8d0533e911fbe17df0fded714f56e53eb274af3770c71dfc72c6e0b0352c4d96", "sticker": null, "text": "System.out.print(products[1]);", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "1e4bc0054d4f18fe8aebdc380d908fb9e70c318cbb3984a4fba66671ec5fcc50", "datetime": "2023-04-15T07:04:50+00:00" }, { "message_id": "c6b317ad04f15c2020f8828d59a7c5d9f22668bea7cf574659baaf7010cbea09", "sticker": null, "text": "yes, dm", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "eb79d3ae146b0c53dd59ad673b7cc76f95a043fd226a3cc8f80dfb0f619cbffa", "datetime": "2023-04-15T11:56:19+00:00" }, { "message_id": "6e70d2e48ba1ab0e020d15c12badb4df15e1c4a119ee398367dfe56ef60c0705", "sticker": null, "text": "Where can I find Java examples like lab. Examples? My exam will be soon. We saw inheritance as last topic", "from_id": "227db9ec2a3a56183b9c2c03a0578638206402ded8dee73b6601de3a8e85d7c3", "reply_to": null, "datetime": "2023-04-15T21:01:56+00:00" }, { "message_id": "b8abdebef6a986033a1ce04490af35f060ce1832aaa03b55864ef34d3c71b84c", "sticker": null, "text": "chatGPT", "from_id": "08633dca9b55b01daa14b69ca413ad391822fde0ae99f890994f590ce64ab526", "reply_to": "6e70d2e48ba1ab0e020d15c12badb4df15e1c4a119ee398367dfe56ef60c0705", "datetime": "2023-04-15T21:16:53+00:00" }, { "message_id": "18a64f8abbfa98ece54126d194876e2eeebc3c226843ce48324dfcba74cf0e4f", "sticker": null, "text": "write in Google: exercises of java", "from_id": "f83487896ec677653b8c382af104aed88ab89020ae47369909ef5f95acca112a", "reply_to": "6e70d2e48ba1ab0e020d15c12badb4df15e1c4a119ee398367dfe56ef60c0705", "datetime": "2023-04-15T23:40:39+00:00" }, { "message_id": "82da9a944c966e1fdcede21e2cf0c7305724e074bd8c51013105303ce33015d1", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "f83487896ec677653b8c382af104aed88ab89020ae47369909ef5f95acca112a", "reply_to": null, "datetime": "2023-04-15T23:41:54+00:00" }, { "message_id": "89fc2467c584db51abe0c206bdd8ea895afda3596aa8a37fdf760dc22fb0ab07", "sticker": null, "text": "Thanks ı see but I want more complex and long questions", "from_id": "227db9ec2a3a56183b9c2c03a0578638206402ded8dee73b6601de3a8e85d7c3", "reply_to": "18a64f8abbfa98ece54126d194876e2eeebc3c226843ce48324dfcba74cf0e4f", "datetime": "2023-04-16T02:53:09+00:00" }, { "message_id": "b799f57784874259863bd2abf95501e5f96c82d4250658554a04677c24f40812", "sticker": null, "text": "Our laboratory questions are very long, and we have to think about them. These questions depend on the rules or syntax. Determined type. Can I find laboratory questions from different universities? With solutions", "from_id": "227db9ec2a3a56183b9c2c03a0578638206402ded8dee73b6601de3a8e85d7c3", "reply_to": null, "datetime": "2023-04-16T02:56:15+00:00" }, { "message_id": "c913fcb6c20f0a95754c75307dd0d29e70f80a7c80bc5d45bdde44dddbc6f02f", "sticker": null, "text": "ooh I'm sorry I don't know", "from_id": "f83487896ec677653b8c382af104aed88ab89020ae47369909ef5f95acca112a", "reply_to": "89fc2467c584db51abe0c206bdd8ea895afda3596aa8a37fdf760dc22fb0ab07", "datetime": "2023-04-16T08:20:27+00:00" }, { "message_id": "67906454daec0bd2a506cdc2d214137833e3b7ef7fe5d6f615f121024e7fcc16", "sticker": null, "text": "Please I need a mentor, someone to guide me through my java studies", "from_id": "e320d943fca8f50b518d6e020e78c84f080d38d9e6e44e2582893d7be3bbd722", "reply_to": null, "datetime": "2023-04-17T03:31:46+00:00" }, { "message_id": "0048e34d8415c39f55101a85fd05257e090fd88799b9e157450bc54af28aed3e", "sticker": null, "text": "It will be a privilege to have someone guide me🙏", "from_id": "e320d943fca8f50b518d6e020e78c84f080d38d9e6e44e2582893d7be3bbd722", "reply_to": null, "datetime": "2023-04-17T03:32:44+00:00" }, { "message_id": "771573fc73dc39d5be161339b248001c5d1c8970392013f0821c0b21494bb8b0", "sticker": null, "text": "Please send me a text if you will like to help me.\n\nThank you", "from_id": "e320d943fca8f50b518d6e020e78c84f080d38d9e6e44e2582893d7be3bbd722", "reply_to": null, "datetime": "2023-04-17T03:33:30+00:00" }, { "message_id": "b0f96468a677e14779a8fc88bf8026d0114f408b67df15715e8fb2484517b429", "sticker": null, "text": "I can send you my recent lab...only 3 questions of inheritance were there...", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "6e70d2e48ba1ab0e020d15c12badb4df15e1c4a119ee398367dfe56ef60c0705", "datetime": "2023-04-17T18:23:26+00:00" }, { "message_id": "5ad2584a55688c5ca1ff2f6274247eac7de987382c97d7c71ea09e7d19bd3001", "sticker": null, "text": "Yup\nThis is awesome\nThere are many practice questions related to all topics....", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "82da9a944c966e1fdcede21e2cf0c7305724e074bd8c51013105303ce33015d1", "datetime": "2023-04-17T21:40:26+00:00" }, { "message_id": "438a8167db69a13a5e10e5a72be6836723dbaebcb78df40ee46ebb2e00054384", "sticker": null, "text": "Total messages: 119307", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-04-18T14:49:46+00:00" }, { "message_id": "769e0ca5e4f3e3dc7ebe2aa2669fc892e4698088ff0fb0e8667616e7c746c8b5", "sticker": null, "text": "hi guys i need help in javascript coding test if anyone available for paid help pls dm", "from_id": "b54e71faa64ddee27416e712e46991046eaa65d3aabe63d9cad8d9291f365a29", "reply_to": null, "datetime": "2023-04-20T06:07:41+00:00" }, { "message_id": "55012608186b269c6416d048ba9604bbc8436689a3dce019349ca81aa8dd4395", "sticker": null, "text": "Sure", "from_id": "5b3a01163b6371bc801ad4bef560d89582b5d455aa9af904c38928a1cc014e43", "reply_to": "769e0ca5e4f3e3dc7ebe2aa2669fc892e4698088ff0fb0e8667616e7c746c8b5", "datetime": "2023-04-20T06:14:17+00:00" }, { "message_id": "de71c1333f55696e23524cdc46dc76da244b115174e3904246730169b2e1142c", "sticker": null, "text": "Do you have any problems with your code", "from_id": "5b3a01163b6371bc801ad4bef560d89582b5d455aa9af904c38928a1cc014e43", "reply_to": null, "datetime": "2023-04-20T06:14:41+00:00" }, { "message_id": "58e35057acfd8af538d473fd428561d3e9ad72d2a51601b5c84fa29d77660cbf", "sticker": null, "text": "Anyone knows C programming?", "from_id": "8c994fc604aae52ab704365bfb06946d0ec2a9b4c5364483a1d941e00896990c", "reply_to": null, "datetime": "2023-04-20T08:22:30+00:00" }, { "message_id": "a6aa3dd9fc02da01a214b4e504a58948872846ef4c7a217ba69b7fb19c16cb9e", "sticker": null, "text": "hi", "from_id": "843cd06f08fc601404650cf709725a405d161435641d134dd9ae4f81b3982160", "reply_to": null, "datetime": "2023-04-20T09:26:01+00:00" }, { "message_id": "718ae1430c06b3ed816371c410e413f4ecd6265053a25791f3364deb8e006c48", "sticker": null, "text": "Hi", "from_id": "6d30dd73fc47d0c1e3a8189c77bdf273fcac77f9c6bc118858f756b3f3f19eb3", "reply_to": null, "datetime": "2023-04-20T09:26:11+00:00" }, { "message_id": "5285a998f800d7442c91c9f620c29b80dac2387def002c4e9a0cc7aa39db73c3", "sticker": null, "text": "hi", "from_id": "843cd06f08fc601404650cf709725a405d161435641d134dd9ae4f81b3982160", "reply_to": null, "datetime": "2023-04-20T09:27:19+00:00" }, { "message_id": "812bfd0269aa4921fc37103355b3f6a010f9785c0fb66e189a2a8209f562e3e7", "sticker": null, "text": "dear all i need your help at the moment.someone who know solve this question with the explanation please send me answer with java coding and c language code", "from_id": "843cd06f08fc601404650cf709725a405d161435641d134dd9ae4f81b3982160", "reply_to": null, "datetime": "2023-04-20T09:28:31+00:00" }, { "message_id": "2fd83941affef915360945ef73bd342cee0809b420fb401e1d39aa43ab377f9d", "sticker": null, "text": "Question 1 You are given a string S containing only lowercase letters and an integer K. In one operation you can change any character of the string to '#' character. Note: '#' is not considered when checking for duplicates. Print the minimum number of operations required such that no substring of size K contains duplicates.\n Input Format: The first line contains the string S. The second line contains the value of K. Output Format: The minimum number of operations required such that no substring of size K contains duplicates Ex:\nSample Input Sample Output\nababc 2\n3", "from_id": "843cd06f08fc601404650cf709725a405d161435641d134dd9ae4f81b3982160", "reply_to": null, "datetime": "2023-04-20T09:30:35+00:00" }, { "message_id": "f4d34a6f8c2a79161a93131b579c73fe41f06f01feeaf1cb3024e7f78d38ec1c", "sticker": null, "text": "import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n String s = sc.next();\n int k = sc.nextInt();\n\n int[] freq = new int[26]; // frequency counts of characters in the window\n int ops = 0; // number of operations needed to remove duplicates\n int start = 0; // start index of the current window\n\n // process the first window\n for (int i = 0; i < k; i++) {\n int index = s.charAt(i) - 'a';\n freq[index]++;\n if (freq[index] > 1) {\n ops++;\n }\n }\n\n int minOps = ops; // initialize the minimum operations needed\n\n // slide the window and update the frequency counts\n for (int i = k; i < s.length(); i++) {\n int index = s.charAt(i) - 'a';\n freq[index]++;\n if (freq[index] > 1) {\n ops++;\n }\n\n int startCharIndex = s.charAt(start) - 'a';\n freq[startCharIndex]--;\n if (freq[startCharIndex] > 0) {\n ops--;\n }\n\n start++;\n\n // update the minimum operations needed\n if (ops < minOps) {\n minOps = ops;\n }\n }\n\n System.out.println(minOps);\n }\n}", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "2fd83941affef915360945ef73bd342cee0809b420fb401e1d39aa43ab377f9d", "datetime": "2023-04-20T15:24:48+00:00" }, { "message_id": "367e74c107d519fb3fa73acfa727d74170602f130e443a65409952e1412b237a", "sticker": null, "text": "Total messages: 119407", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-04-20T18:40:53+00:00" }, { "message_id": "16d310a2ccf4bf223ae9da45e79aa1f41a6b20bed774c8d3d13ac13b4c7f3a4a", "sticker": null, "text": "Hi guys i need exam help", "from_id": "b54e71faa64ddee27416e712e46991046eaa65d3aabe63d9cad8d9291f365a29", "reply_to": null, "datetime": "2023-04-21T03:52:51+00:00" }, { "message_id": "5abab383176fb2233d287b71c0180d1b26b431f4b5b056e7aed32545cd592ffc", "sticker": null, "text": "Your very first task is to create a registration and login feature.\n1. Create an account by entering username, password, first name and last name.", "from_id": "8fb78e5a4cb334b2e5db384a3e159bd644dcc44c7d3cd2bca1d818b1f0fc5cc5", "reply_to": null, "datetime": "2023-04-21T09:47:31+00:00" }, { "message_id": "8337692feafa7260d232c8e8c6e0bf63fd2041cb9e6baa093d26b83a72d8cb57", "sticker": null, "text": "Yah i know little bit", "from_id": "3cc8e46c5f2c86ece645b3ccecdcdf69b70dd206cb220d1b4545a2d659b4217f", "reply_to": "58e35057acfd8af538d473fd428561d3e9ad72d2a51601b5c84fa29d77660cbf", "datetime": "2023-04-21T14:15:48+00:00" }, { "message_id": "6a2965e3fd5acef9fbe360f3b38b034e0249142343967e8b064bb65f67de95af", "sticker": null, "text": "XhW8ayQo+CmL7fydXxVYk7r8LeLA10AOfEW/Hd0ki1UFf2RQescoCFYDzt+l9469YwLrtItJtwK9t10CSu7wWk5r+TOl/opVlXL7RiMsAR8+3QpoltQWZv4PorlpTC13kjPCwHtBgaEQBwU2ThkP+eg29js/YIIa/FqDvw2PDi4WMtxqNXDMOAqfy6/Z5yFNobNy35KHZ0k18BhGD/K3NxFUU6HDQHLpaULEvxovPTM=\n\nIsn't this base64? Why is it not decoded?", "from_id": "2f449ef659d91b68a752749b503994a1e89c6e9d894fab91fc451a82dedd94fa", "reply_to": null, "datetime": "2023-04-21T18:56:09+00:00" }, { "message_id": "4d8344d5dbf632537cb1df346fe904a580cdab9079b65ded54dc59e760916f2e", "sticker": null, "text": "Thank you. Can you give me a exapalin for that", "from_id": "843cd06f08fc601404650cf709725a405d161435641d134dd9ae4f81b3982160", "reply_to": "f4d34a6f8c2a79161a93131b579c73fe41f06f01feeaf1cb3024e7f78d38ec1c", "datetime": "2023-04-22T00:53:25+00:00" }, { "message_id": "b548cd0f8cf56fb6ddfb2a53995cc6ec4d083bdece1da58efdaed3d7d902b144", "sticker": null, "text": "14", "from_id": "3cc8e46c5f2c86ece645b3ccecdcdf69b70dd206cb220d1b4545a2d659b4217f", "reply_to": null, "datetime": "2023-04-22T03:21:11+00:00" }, { "message_id": "4ce4ed0c070f53ac0e0a094ccbb6d631a129d17d42df7fd4a87eb786714113a1", "sticker": null, "text": "sure dm", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "4d8344d5dbf632537cb1df346fe904a580cdab9079b65ded54dc59e760916f2e", "datetime": "2023-04-22T03:58:04+00:00" }, { "message_id": "64be479ce56d365585c734e352ec01e7b6bcf40601b0739ff1c1fd97fbf33bce", "sticker": null, "text": "I have read about Parser lexical analysis tokens like terms now a day.\n If anyone wants to discuss about these topics.\n\nWe can do discuss personal chat or whatever.", "from_id": "3cc8e46c5f2c86ece645b3ccecdcdf69b70dd206cb220d1b4545a2d659b4217f", "reply_to": null, "datetime": "2023-04-22T19:15:51+00:00" }, { "message_id": "5d84f89e2aea34fba6b777c8f00b711f98fd8ef2b62f63290b61be4f53d6ec7f", "sticker": null, "text": "Hi can anyone please share durgasoft spring and spring boot materials", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2023-04-23T11:07:38+00:00" }, { "message_id": "bdd989e0f0116bc89166f2de910f181826d00b882afe189240d4857dc1271967", "sticker": null, "text": "Hey guys", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-04-23T15:04:23+00:00" }, { "message_id": "eedcdcaa03bbde9ef1d2360e1d5e9787e0ba21d85405988e51c14b51bd5321be", "sticker": null, "text": "Can you tell me the important topics of core java?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-04-23T15:04:52+00:00" }, { "message_id": "e7eb1ca2828e4fef6b5dac26fd71d71a81f6e40718f4966ea0bcd3d0fb5de94d", "sticker": null, "text": "Any help on how to connect my java app to a database using xampp", "from_id": "e320d943fca8f50b518d6e020e78c84f080d38d9e6e44e2582893d7be3bbd722", "reply_to": null, "datetime": "2023-04-23T21:39:25+00:00" }, { "message_id": "5669fa60247c928330c350ee420f50b2d330d6ee75ac5bd090e420a14904de6f", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-04-24T03:29:30+00:00" }, { "message_id": "011d1feee6a477c6601ba98213461720fe3469d53737d6e3af7e07792b093484", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-04-24T04:25:34+00:00" }, { "message_id": "c05622213a41f41c70050ae944336465cd5c460e9c2e11f4c324188b7adc5ed2", "sticker": null, "text": "Is anyone knows about Temenos T24?", "from_id": "b92f83f1603d8930c38e09722e7b78087b76bf3010633246ce2995278e3ca505", "reply_to": null, "datetime": "2023-04-24T10:50:15+00:00" }, { "message_id": "ed808e9121ea3731bf8db2936012b7377e3f46c5d7e9cffcefe482b61f894b0b", "sticker": null, "text": "13", "from_id": "fb64450d5ebf616ff9a9e844dae981d76acd16610859429fea60cd9aa6735d4a", "reply_to": null, "datetime": "2023-04-25T04:09:06+00:00" }, { "message_id": "ac8bd7290c142fc20b90cbb71cb5a9c50f91098da090f7a987f1985f785aa6c5", "sticker": null, "text": "Using java programming language, write a simple sender program and a receiver program that would apply messaging system. The message that would be sent and received would contain data such as first name and last name.", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": null, "datetime": "2023-04-25T04:52:42+00:00" }, { "message_id": "befd9699df93e18c3acab4335c35a6dc22f172bbc1ea59f5c6173b953877c36e", "sticker": null, "text": "Sayonara De Zoysa", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": null, "datetime": "2023-04-25T04:54:36+00:00" }, { "message_id": "ed72d7fa06f76818c56530433ad5338951bf6c5cb0e5e57a0ba52752d9ac925c", "sticker": null, "text": "I am a website designer and I have a experience of 4 years and I make a website according to your budget!!", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2023-04-25T06:14:50+00:00" }, { "message_id": "1da7acf5ffed934ffbbd6ea1fa195a1e8fa85532fb35896b5bd2fd7d0a1fd9e4", "sticker": null, "text": "Please answer my question", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": null, "datetime": "2023-04-25T06:29:37+00:00" }, { "message_id": "f2e2e664cef0e7bdf8fa80b0f1dcdc51b14b2276f6e325fd78a8a9802b418afe", "sticker": null, "text": "Thank you", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": null, "datetime": "2023-04-25T06:29:41+00:00" }, { "message_id": "5adc5c51c907c0a2f3c53e7cf6e64bf7c90a0dfc81dcceb396588fcaca8c7bf3", "sticker": null, "text": "I've one...\nLet me send you...\nIt's a little bit lengthy...", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "ac8bd7290c142fc20b90cbb71cb5a9c50f91098da090f7a987f1985f785aa6c5", "datetime": "2023-04-25T09:48:04+00:00" }, { "message_id": "1551e46b3c2ebf4dce8183cfcac02701ed2806dad0cde245bb2c9fde5743686a", "sticker": null, "text": "Task #02\n\nDefine a class named Message that contains an instance variable of type String named text that stores any textual content for the Message. Create a method named toString that returns the text field and also include a method to set this value. \nNext, define a class for SMS that is derived from Message and includes instance variables for the recipientContactNo. Implement appropriate accessor and mutator methods. The body of the SMS message should be stored in the inherited variable text. Redefine the toString method to concatenate all text fields. \nSimilarly, define a class for Email that is derived from Message and includes an instance variable for the sender, receiver, and subject. The textual contents of the file should be stored in the inherited variable text. Redefine the toString method to concatenate all text fields. \nCreate sample objects of type Email and SMS in your main method.", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "ac8bd7290c142fc20b90cbb71cb5a9c50f91098da090f7a987f1985f785aa6c5", "datetime": "2023-04-25T09:49:03+00:00" }, { "message_id": "61ada807b1313f764ad7094920911b0b8a240301dda82626946b92f0aeccaf13", "sticker": null, "text": "public class Message {\n private String text;\n\n public String getText() {\n return text;\n }\n\n public void setText(String text) {\n this.text = text;\n }\n\n public String toString() {\n return text;\n }\n}\n\nclass SMS extends Message {\n private String recipientContactNo;\n\n public String getRecipientContactNo() {\n return recipientContactNo;\n }\n\n public void setRecipientContactNo(String recipientContactNo) {\n this.recipientContactNo = recipientContactNo;\n }\n\n public String toString() {\n return \"Recipient: \" + recipientContactNo + \"\\n\" + super.toString();\n }\n}\n\nclass Email extends Message {\n private String sender;\n private String receiver;\n private String subject;\n\n public String getSender() {\n return sender;\n }\n\n public void setSender(String sender) {\n this.sender = sender;\n }\n\n public String getReceiver() {\n return receiver;\n }\n\n public void setReceiver(String receiver) {\n this.receiver = receiver;\n }\n\n public String getSubject() {\n return subject;\n }\n\n public void setSubject(String subject) {\n this.subject = subject;\n }\n\n public String toString() {\n return \"From: \" + sender + \"\\n\" +\n \"To: \" + receiver + \"\\n\" +\n \"Subject: \" + subject + \"\\n\" +\n super.toString();\n }\n public static void main(String[] args) {\n SMS sms = new SMS();\n sms.setText(\"How is it going?\");\n sms.setRecipientContactNo(\"033333333333\");\n System.out.println(sms.toString());\n\n Email email = new Email();\n email.setText(\"Email is checked\");\n email.setSender(\"Ahtesham1@#USER\");\n email.setReceiver(\"Shams@#USER\");\n email.setSubject(\"Checking how to send email msg\");\n System.out.println(email.toString());\n }\n}", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "1551e46b3c2ebf4dce8183cfcac02701ed2806dad0cde245bb2c9fde5743686a", "datetime": "2023-04-25T09:50:22+00:00" }, { "message_id": "e3926ce62c3f7eda47585f0ef6ba8c5c3422a3000dbccda690f23f35f30b25a2", "sticker": null, "text": "Thank you 😊", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": "61ada807b1313f764ad7094920911b0b8a240301dda82626946b92f0aeccaf13", "datetime": "2023-04-26T00:15:54+00:00" }, { "message_id": "2b5b6f7a02d48e24f46ce1ddb803066e37b78fc8bf68a53b7de58fdcaa5e6bb7", "sticker": null, "text": "1 program for sender and 1 program for receiver please 🥺", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": "61ada807b1313f764ad7094920911b0b8a240301dda82626946b92f0aeccaf13", "datetime": "2023-04-26T00:23:36+00:00" }, { "message_id": "d85726a5030adac16ed6171b463a9c7a631ae1fb57c83a2d246eb5829ef30b0d", "sticker": null, "text": "Let me use chatgpt...", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "2b5b6f7a02d48e24f46ce1ddb803066e37b78fc8bf68a53b7de58fdcaa5e6bb7", "datetime": "2023-04-26T00:42:43+00:00" }, { "message_id": "3a86ca716614609243aecec819035f53f0c227114ebd54f256e5bf1bb37e6157", "sticker": null, "text": "There's so many error if u use an CHATGPT", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": "d85726a5030adac16ed6171b463a9c7a631ae1fb57c83a2d246eb5829ef30b0d", "datetime": "2023-04-26T00:48:52+00:00" }, { "message_id": "d1b2e42428f91cb960c0d38e763cae5c83cc953468b958837a0fb1072b9ba7f5", "sticker": null, "text": "Guys Im so sorry, but there are people who know verilog very well?", "from_id": "f7de4bdae2d6623a3e173e0ee20bc77d7aa10ddbb271a7bf73eead8c5f768270", "reply_to": null, "datetime": "2023-04-26T23:17:50+00:00" }, { "message_id": "442258b0b06326d85f47ee37c917b9c88b0ce2a68c898e927cff4fe9664b61cd", "sticker": null, "text": "i am a Graphic Designer and website designer dm me", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2023-04-27T06:19:40+00:00" }, { "message_id": "9b50bee18000ffa643829137838ce670e0eb6b154f50d34e38555d7ec78e7b9c", "sticker": null, "text": "hashCode() has five modes in native method right?", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-04-28T03:17:34+00:00" }, { "message_id": "15647321ffee1c72ea9cce6e6201cc8a5c22508e7fed6cdc1b29c67c4ae8217f", "sticker": null, "text": "Does hotspot use thread-local state to implement Marsaglia's xor-shift random number generation by default?", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-04-28T03:19:29+00:00" }, { "message_id": "a0bb895ccf1dcae71a13a6f0f7479a768709c8867393156e6f27a13a97649416", "sticker": null, "text": "is this what you looking for?\n```static inline intptr_t get_next_hash(Thread* current, oop obj) {\n intptr_t value = 0;\n if (hashCode == 0) {\n // This form uses global Park-Miller RNG.\n // On MP system we'll have lots of RW access to a global, so the\n // mechanism induces lots of coherency traffic.\n value = os::random();\n } else if (hashCode == 1) {\n // This variation has the property of being stable (idempotent)\n // between STW operations. This can be useful in some of the 1-0\n // synchronization schemes.\n intptr_t addr_bits = cast_from_oop(obj) >> 3;\n value = addr_bits ^ (addr_bits >> 5) ^ GVars.stw_random;\n } else if (hashCode == 2) {\n value = 1; // for sensitivity testing\n } else if (hashCode == 3) {\n value = ++GVars.hc_sequence;\n } else if (hashCode == 4) {\n value = cast_from_oop(obj);\n } else {\n // Marsaglia's xor-shift scheme with thread-specific state\n // This is probably the best overall implementation -- we'll\n // likely make this the default in future releases.\n unsigned t = current->_hashStateX;\n t ^= (t << 11);\n current->_hashStateX = current->_hashStateY;\n current->_hashStateY = current->_hashStateZ;\n current->_hashStateZ = current->_hashStateW;\n unsigned v = current->_hashStateW;\n v = (v ^ (v >> 19)) ^ (t ^ (t >> 8));\n current->_hashStateW = v;\n value = v;\n }```\ncode from openjdk repository", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "15647321ffee1c72ea9cce6e6201cc8a5c22508e7fed6cdc1b29c67c4ae8217f", "datetime": "2023-04-28T11:48:20+00:00" }, { "message_id": "9d45fb14eff08712a9a700e069f687e9391cede06226fb177808a40f4df0b5e6", "sticker": null, "text": "can you please be more specific about your task? write a little example please", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "a721d2172f8ba4671e85364ffeca233c3cd2ce3b8d26cb08c37d0c6eaeeee1b9", "datetime": "2023-04-28T11:49:16+00:00" }, { "message_id": "b8cda4bbc999af47876d77482443361e21dbaebd2e43e966b57b545f467a4d9e", "sticker": null, "text": "honestly, i thought there is only identity hash code on native side, lol", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "a0bb895ccf1dcae71a13a6f0f7479a768709c8867393156e6f27a13a97649416", "datetime": "2023-04-28T11:50:52+00:00" }, { "message_id": "c595b9ff7dc0d787771f0ecc7086b366da4a1c6d08e16ce138eeaa3a7cf30b1a", "sticker": null, "text": "U-Sticker detects this as offensive text.", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "d1ea5b2da1bde6b31ae1bc748e098f5a53c79efeed181f870690676593769f6a", "datetime": "2023-04-28T11:56:55+00:00" }, { "message_id": "d8ab5d191b9bfe6df0de83e901f0e5267d8b6ede7ffc437344edb1ee822b8e1c", "sticker": null, "text": "thanks, I got it", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": "a0bb895ccf1dcae71a13a6f0f7479a768709c8867393156e6f27a13a97649416", "datetime": "2023-04-28T13:30:37+00:00" }, { "message_id": "053c4a71e19e5de99ab235931a6dbd6a4ec6dc5bd2dd39c81258863abb844758", "sticker": null, "text": "@#USER As far as I know, many people would say that hashCode() returns the calculated value of an object's memory address. Why is that?", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-04-28T13:33:10+00:00" }, { "message_id": "5bbd35ba19d30fc4e8d4f786440898a5964f9c761616a34dc91dee4486c5f17c", "sticker": null, "text": "most of them still use JDK7?", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-04-28T13:34:32+00:00" }, { "message_id": "9520e2f032a8297c8655670d4c7d36fec098b992e648422a0ddffefa3661c13d", "sticker": null, "text": "idk man\nit was surprise for me as well\nprobably because i'm an android developer\nandroid supports only old java versions ( 6, 7, 8 )", "from_id": "1bf759eb6fa7388f95c6d355ceda39543b4d9b662a663164c1a9bfbfde146200", "reply_to": "053c4a71e19e5de99ab235931a6dbd6a4ec6dc5bd2dd39c81258863abb844758", "datetime": "2023-04-28T13:43:58+00:00" }, { "message_id": "c79673d56e966a02b763fd097a58354aa6730400e79c63016b341b2f179709f2", "sticker": null, "text": "K🍔🤣u I ga ka ia", "from_id": "72c7c5b581ab883681eb8680204ed86df9408be5c28550791a147dd494a0d36d", "reply_to": null, "datetime": "2023-04-28T18:26:02+00:00" }, { "message_id": "4de7e4b31d23b31ab4ab24b0a2b692fcb1ea51dbb1421fadf9904f90e8b51a23", "sticker": null, "text": "I am a front end developer those who want to design website contact me", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2023-04-30T09:42:39+00:00" }, { "message_id": "92f0888a88fc7858bd01a858d4a4a64db9ed1f8fdf6bfff5aedd9f7699201377", "sticker": null, "text": "Yes Java 7\nIs best for Android application development.", "from_id": "3cc8e46c5f2c86ece645b3ccecdcdf69b70dd206cb220d1b4545a2d659b4217f", "reply_to": "9520e2f032a8297c8655670d4c7d36fec098b992e648422a0ddffefa3661c13d", "datetime": "2023-04-30T10:10:14+00:00" }, { "message_id": "3dfafab839f4c1d08ac24a759f589cb70131724c69fefc1821541b69b2bd516b", "sticker": null, "text": "I build a hello world applications that command line interface. \n\nJava 8 supports lambda like syntax. But android doesn't support that Java 8 class version specification.\n\nBut android build tools have a tool that helps you write code in Java 8. It desugar that code to Java 7 compatibility.", "from_id": "3cc8e46c5f2c86ece645b3ccecdcdf69b70dd206cb220d1b4545a2d659b4217f", "reply_to": null, "datetime": "2023-04-30T10:17:19+00:00" }, { "message_id": "ec5bd66b18b56e8bac5ffcfc67080f069b61b692df3a6d6fe3dd05eaaccc3a78", "sticker": null, "text": "Hello guys", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-04-30T12:30:13+00:00" }, { "message_id": "f814c4f1361bacb12fd02caf69b67e175ac983620b235466ff34fff976169070", "sticker": null, "text": "Anyone here who does competitive coding?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-04-30T12:30:23+00:00" }, { "message_id": "0ab744559c57c3db1122882e74d2ab08cf12150d62fe1e9f0850bde8c24e970b", "sticker": null, "text": "Free ?", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": "4de7e4b31d23b31ab4ab24b0a2b692fcb1ea51dbb1421fadf9904f90e8b51a23", "datetime": "2023-04-30T17:37:12+00:00" }, { "message_id": "b274c00109ba6a850ec091ab4f9ec90e2d7016fa28aad5836bcf8d90a30b5f18", "sticker": null, "text": "I have questions in java how can help me, please 🥺", "from_id": "b9b692c67db79b981348f9c67c0b33ef0ca0510a4aa692f28f9f46099d8bbc64", "reply_to": null, "datetime": "2023-04-30T17:53:28+00:00" }, { "message_id": "12ad0b5d1360ace62bc6b6ad93fee0f413c790c54a0d2d1daf976fd7e88ce468", "sticker": null, "text": "How can I connect or join MySQL database to java program?", "from_id": "0239b823040e8a6b927d22df6d3cedc671dae9c27c3484f76fce0e7b3dfc8fe1", "reply_to": null, "datetime": "2023-04-30T19:37:39+00:00" }, { "message_id": "552f3940be08a84ab62a014e21f00915e7ef6400be91809b8945b598d10231d4", "sticker": null, "text": "JDBC", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "12ad0b5d1360ace62bc6b6ad93fee0f413c790c54a0d2d1daf976fd7e88ce468", "datetime": "2023-04-30T19:49:54+00:00" }, { "message_id": "5c2c57f5eebe34b46ffc3f85aa5587ac385b9420a9051f82c909dee93046105a", "sticker": null, "text": "No bro it's paid", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": "0ab744559c57c3db1122882e74d2ab08cf12150d62fe1e9f0850bde8c24e970b", "datetime": "2023-05-01T02:34:28+00:00" }, { "message_id": "d2a1050d0eae6c732914361ec8722a55391eaf004afa3ff68010a998e4010c32", "sticker": null, "text": "4", "from_id": "0d5f10ad5b087f5f52be39389d73ece9844fbfeb7e238201d3564ce61c5964de", "reply_to": null, "datetime": "2023-05-01T04:29:05+00:00" }, { "message_id": "9dcdbaf75b84e075bdcf57db95b81f790530cd5569cc7765c150b902f1cfe523", "sticker": null, "text": "why is Eclipse's GUI so old, the IDE is good but what's annoying is this, they should upgrade to a modern and beautiful GUI like Intellij's", "from_id": "193b71e10193a915007bef55edaa2629faa549ac25a8c60da04fc98ba6590047", "reply_to": null, "datetime": "2023-05-01T14:39:12+00:00" }, { "message_id": "f7a1f45f9e64ba7db1b2d0e52579ea739cab808c612def239cf196c0e173f265", "sticker": null, "text": "Use Sublime text", "from_id": "3cc8e46c5f2c86ece645b3ccecdcdf69b70dd206cb220d1b4545a2d659b4217f", "reply_to": "9dcdbaf75b84e075bdcf57db95b81f790530cd5569cc7765c150b902f1cfe523", "datetime": "2023-05-01T14:51:30+00:00" }, { "message_id": "5b99b836512f21c27711364903db8be49d482bc2b2ea9323a41690a27fe8c74d", "sticker": null, "text": "lol, Vscode is much better and works very well for Java with the extensions it has", "from_id": "193b71e10193a915007bef55edaa2629faa549ac25a8c60da04fc98ba6590047", "reply_to": "f7a1f45f9e64ba7db1b2d0e52579ea739cab808c612def239cf196c0e173f265", "datetime": "2023-05-01T14:54:05+00:00" }, { "message_id": "5824203230ffe502fcaedbcea303e46336f56135415f3c447150b50fe8252948", "sticker": null, "text": "Yup, but Sublime is also a good one option for low end PC", "from_id": "3cc8e46c5f2c86ece645b3ccecdcdf69b70dd206cb220d1b4545a2d659b4217f", "reply_to": null, "datetime": "2023-05-01T14:57:57+00:00" }, { "message_id": "8e060bf6aa2f2ce8da465bccc37fe88fc9213681e7ea517c86ec5c4531218b59", "sticker": null, "text": "I have Eclipse, Intellij and Vscode, I use them interchangeably", "from_id": "193b71e10193a915007bef55edaa2629faa549ac25a8c60da04fc98ba6590047", "reply_to": null, "datetime": "2023-05-01T14:59:54+00:00" }, { "message_id": "3251919d71a6df335107b8a0387b6d37419cd05ceeef1ba351989346075df102", "sticker": null, "text": "And so am I but I use notepad++😁😁", "from_id": "0239b823040e8a6b927d22df6d3cedc671dae9c27c3484f76fce0e7b3dfc8fe1", "reply_to": "8e060bf6aa2f2ce8da465bccc37fe88fc9213681e7ea517c86ec5c4531218b59", "datetime": "2023-05-01T19:43:03+00:00" }, { "message_id": "31b88ac37d3e83ae7f36a842be3a97e8fdb7b823cf64ab0df167d4ebcb835d3f", "sticker": null, "text": "Hey. Just joined. How is everyone. And can someone walk me through the rules of this platform.??", "from_id": "622edffe81761452f305055fdba26ffc4dbdeb86a0f57bfbf54c626d0318259a", "reply_to": null, "datetime": "2023-05-02T13:49:11+00:00" }, { "message_id": "c98cb5b5b72781873653e5e93b9afc79e797caba13f423a7d9caeabec95e9623", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "31b88ac37d3e83ae7f36a842be3a97e8fdb7b823cf64ab0df167d4ebcb835d3f", "datetime": "2023-05-02T15:08:37+00:00" }, { "message_id": "3376188e6622528b5ff2707e69380a89d1f7cdbb0676bc1f5fa904cc75de2700", "sticker": null, "text": "Thank you.", "from_id": "622edffe81761452f305055fdba26ffc4dbdeb86a0f57bfbf54c626d0318259a", "reply_to": "c98cb5b5b72781873653e5e93b9afc79e797caba13f423a7d9caeabec95e9623", "datetime": "2023-05-02T15:09:50+00:00" }, { "message_id": "ee82ad1c6265295bc089a3a5fdb243b813ed97db724574861bd4d665e25903d5", "sticker": null, "text": "Thank you for asking", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "3376188e6622528b5ff2707e69380a89d1f7cdbb0676bc1f5fa904cc75de2700", "datetime": "2023-05-02T15:18:51+00:00" }, { "message_id": "36d8990538a06feb6c0806d576a40d36920d3be99fc783faea7aef2663c5b0ef", "sticker": null, "text": "one is free,another needs money", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": "9dcdbaf75b84e075bdcf57db95b81f790530cd5569cc7765c150b902f1cfe523", "datetime": "2023-05-02T18:06:31+00:00" }, { "message_id": "9b00b958d5b882f8f8794f90f225a422785f9e7fd170e92c584f0b29ff4c9724", "sticker": null, "text": "It also has a lot to do with the strength of the development team", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-05-02T18:08:03+00:00" }, { "message_id": "265be8f74c9077f1873e440e9845fc346d78f46464ffc8ab4ecfe4c650fc2cd6", "sticker": null, "text": "jetbrains made kotlin🤔", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": null, "datetime": "2023-05-02T18:09:18+00:00" }, { "message_id": "706f625e07b2c9d7dda6b6250c2e27d3d6952075099317cee74b428268109fc9", "sticker": null, "text": "but I am referring to Intellij in general, after all the graphical interface does not change from CE to Ultimate", "from_id": "193b71e10193a915007bef55edaa2629faa549ac25a8c60da04fc98ba6590047", "reply_to": "36d8990538a06feb6c0806d576a40d36920d3be99fc783faea7aef2663c5b0ef", "datetime": "2023-05-02T18:26:46+00:00" }, { "message_id": "b5e4acfd14ff3f786ad494f1653b9e455e6904bcb7e24a85316c9ac2905817e3", "sticker": null, "text": "Any backend developer present here?", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": null, "datetime": "2023-05-03T17:47:17+00:00" }, { "message_id": "c0c379a59871d47508b1f4217ce339b0a55346e191b1f6345138890bc456854a", "sticker": null, "text": "✋", "from_id": "960c3362adae093572edab191287b22f89cde7bbaa90229c8649b2740394acae", "reply_to": "b5e4acfd14ff3f786ad494f1653b9e455e6904bcb7e24a85316c9ac2905817e3", "datetime": "2023-05-03T21:50:30+00:00" }, { "message_id": "8debf32b89e22b475bb61b5176fefe5d9b72723f5262176747e91db7ae1989b7", "sticker": null, "text": "Anyone worked with android studio and back4app?", "from_id": "107fbacba7a2fb78827ba586793e821ae0378c0e184fa7cac7342be234f0b297", "reply_to": null, "datetime": "2023-05-04T00:52:00+00:00" }, { "message_id": "ffb91ff4b88a1fd7588e47761cecd2fb1dfa081c28b10dcd8ce72b3a6bdba010", "sticker": null, "text": "Is there any guys who know julia?", "from_id": "227db9ec2a3a56183b9c2c03a0578638206402ded8dee73b6601de3a8e85d7c3", "reply_to": null, "datetime": "2023-05-04T08:37:18+00:00" }, { "message_id": "a9ab45969b477a3dc71d6ae9187e9757e1459440fc682be9adc20d91c4aecfb5", "sticker": null, "text": "yes", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "ffb91ff4b88a1fd7588e47761cecd2fb1dfa081c28b10dcd8ce72b3a6bdba010", "datetime": "2023-05-04T14:05:44+00:00" }, { "message_id": "dca80b7e6585803ce286b17a0e16f3a932f9083a971ffbc5b55cb39b06ff0a2f", "sticker": null, "text": "yes", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "b5e4acfd14ff3f786ad494f1653b9e455e6904bcb7e24a85316c9ac2905817e3", "datetime": "2023-05-04T14:06:04+00:00" }, { "message_id": "78ba579ca953aced79f6a5220edae3150af2a2a0f4351d64fec7e07901ab1794", "sticker": null, "text": "Dm me", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "dca80b7e6585803ce286b17a0e16f3a932f9083a971ffbc5b55cb39b06ff0a2f", "datetime": "2023-05-05T13:19:45+00:00" }, { "message_id": "3f98cfb3b65560968e48a3926861b226ade835254e8a0cefaa0e03adf9bcc9f1", "sticker": null, "text": "@#USER no", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-05-05T18:39:10+00:00" }, { "message_id": "9920c54ce98ea01cb27859a664a9519f5e3e2f51fe7ac78c0fc78dad54f80b3f", "sticker": null, "text": "Hey, does anyone have Andrew Ng Machine Learning Course on Coursera?", "from_id": "88b8ee5ea2a2340e32301bfb3a38e33a9de4a13056a761d00cd4e55d460e9655", "reply_to": null, "datetime": "2023-05-06T08:49:27+00:00" }, { "message_id": "071be83c453a17e24fcad4a3b03db3e594fbafdb8719836819efa3653b4e3725", "sticker": null, "text": "8", "from_id": "e116455b3463cb66f1e705f18c5bb437f8f2725a77c757666f8a35ab0eb2e319", "reply_to": null, "datetime": "2023-05-06T12:31:04+00:00" }, { "message_id": "62d082133e1fd3584410770dfe4c84ec746deea283756da3d087c4c8f9a17c6a", "sticker": null, "text": "If you can't afford it then apply for financial aid", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "9920c54ce98ea01cb27859a664a9519f5e3e2f51fe7ac78c0fc78dad54f80b3f", "datetime": "2023-05-06T13:01:24+00:00" }, { "message_id": "8c90b601222e3a0ac0cf7053714c08a58e1a9e0aa3ffdaa23b507e6e33ada04c", "sticker": null, "text": "I applied but it will take 15 days", "from_id": "88b8ee5ea2a2340e32301bfb3a38e33a9de4a13056a761d00cd4e55d460e9655", "reply_to": null, "datetime": "2023-05-06T13:40:29+00:00" }, { "message_id": "420f347d8e286a56e32068fc15c36f334441807da430a00c4f62312cef7d9428", "sticker": null, "text": "any books that you'd suggest for competitive programming", "from_id": "2d76e7f831767e111f6019d62a79c572d9003e52ef2e6188327bed43aae7ebb7", "reply_to": null, "datetime": "2023-05-06T22:25:41+00:00" }, { "message_id": "af52833ce30ba25c4f32fc4b3376a685f57fc5da4de189ed726725044b78cd16", "sticker": null, "text": "??", "from_id": "2d76e7f831767e111f6019d62a79c572d9003e52ef2e6188327bed43aae7ebb7", "reply_to": null, "datetime": "2023-05-06T22:25:44+00:00" }, { "message_id": "c90a35804f0dee6511df36b43af1fbedeb577bc19f088d4dc02cd6902c4b6a37", "sticker": null, "text": "#USER_ID Hi there! would it be OK if I post some videos from my YouTube channel? Of course all relevant, not random spam. For example I've got a new video on what I think future programming may look like with chat gpt - but there're many other usefuls stuff", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-05-07T14:25:07+00:00" }, { "message_id": "2fefc2fe1383789310c4873d1b32f6ee371f4bf721cf3a95dde36c76647ca62a", "sticker": null, "text": "I need java practise problem exercise as a beginners", "from_id": "f2d110b89d5ae54314e3d3cc1ad98d89676e9d2bc622e95c8aa7636b1bc54f25", "reply_to": null, "datetime": "2023-05-07T17:01:20+00:00" }, { "message_id": "c869cec20b9c4e50884cbc692368bd6d6954fc683785f3b42e1a921dbe91a177", "sticker": null, "text": "Oop practise problem", "from_id": "f2d110b89d5ae54314e3d3cc1ad98d89676e9d2bc622e95c8aa7636b1bc54f25", "reply_to": null, "datetime": "2023-05-07T17:01:27+00:00" }, { "message_id": "c669b117997276e323e2170b4034ef341b2b8c9dc5fe33af508d0566068a4439", "sticker": null, "text": "?", "from_id": "f2d110b89d5ae54314e3d3cc1ad98d89676e9d2bc622e95c8aa7636b1bc54f25", "reply_to": null, "datetime": "2023-05-07T17:04:05+00:00" }, { "message_id": "ce72c836b208da444fb90c5e859e4adfc50c27b5b10ab1547f8d64f1342b29ad", "sticker": null, "text": "How do you study plan for julia, and could you advice resources", "from_id": "227db9ec2a3a56183b9c2c03a0578638206402ded8dee73b6601de3a8e85d7c3", "reply_to": "a9ab45969b477a3dc71d6ae9187e9757e1459440fc682be9adc20d91c4aecfb5", "datetime": "2023-05-08T05:35:38+00:00" }, { "message_id": "9e2dbede78b831af04fc9643835a93714b1e82fe68c15e205c2f7b22b332a9ea", "sticker": null, "text": "Hey guys", "from_id": "14bef7ea4426fce805a8b482afe445f812886b88e16b15103dc49aaad484f050", "reply_to": null, "datetime": "2023-05-08T12:38:05+00:00" }, { "message_id": "f840a1d1ca54d937c0bb2fc7ca0a4ca93f3a076dcb8d285a759af38ef524f3ef", "sticker": null, "text": "Does java have libraries to calculate indefinite integrals?\nI wanna insert function expression to cmd and then calculate the integral", "from_id": "14bef7ea4426fce805a8b482afe445f812886b88e16b15103dc49aaad484f050", "reply_to": null, "datetime": "2023-05-08T12:40:00+00:00" }, { "message_id": "00a759c535420238aeb7c82110cd78b676d85a22f4f7fcc17dc56240698b5dfa", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "5b3a01163b6371bc801ad4bef560d89582b5d455aa9af904c38928a1cc014e43", "reply_to": null, "datetime": "2023-05-08T14:30:47+00:00" }, { "message_id": "b0cc01929f35661ed605dd6d1ee51f918f621e40c6923fc1ff541de1ec7b01f3", "sticker": null, "text": "However it is much easier to use python or matlab also wolfram language is pretty fine too", "from_id": "5b3a01163b6371bc801ad4bef560d89582b5d455aa9af904c38928a1cc014e43", "reply_to": null, "datetime": "2023-05-08T14:31:56+00:00" }, { "message_id": "5a3a36bebc6faedb42261da4aaaf677797f9a5f20779e6e6a7916a6c788ad5c5", "sticker": null, "text": "Can anyone help me with one project?", "from_id": "4454e9c9afea6af40aaeef299198ad309de57ca211e6f768762fb1dab1ff2310", "reply_to": null, "datetime": "2023-05-08T15:17:07+00:00" }, { "message_id": "7959d27a285ca215bbfec667ad886328d9ebcf0910c6808441ea0803d773ecc7", "sticker": null, "text": "Sure! Thanks for asking", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "c90a35804f0dee6511df36b43af1fbedeb577bc19f088d4dc02cd6902c4b6a37", "datetime": "2023-05-08T17:25:52+00:00" }, { "message_id": "11ccc857113558932d9947acf8c916fd836cd634ab3ee7461e5791faa8e0ab07", "sticker": null, "text": "☺ thank you", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": "7959d27a285ca215bbfec667ad886328d9ebcf0910c6808441ea0803d773ecc7", "datetime": "2023-05-08T17:49:14+00:00" }, { "message_id": "3d62aa7230f8159bd26da6525f01fe95c971cfe0a090a6d223cf62b4df3c51b7", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-05-08T20:40:38+00:00" }, { "message_id": "d7bff273652b8cc9ac7f2e38c7b3a58b48eebbe7c081ec84ae718cdcdce03ced", "sticker": null, "text": "Hi, is everyone want to take my computer to remote for help me to running a file java ? please", "from_id": "0f4cd3a9f73d703f57d014cfe296854ea6620cfe998e9e443801c3c436470f1f", "reply_to": null, "datetime": "2023-05-10T08:06:28+00:00" }, { "message_id": "43e1b389868304ca3df440986a2ab2c7d30269b098f90a60d2c13f14c2d23619", "sticker": null, "text": "Hi all.\nI am fresher i am looking for SAP fico jobs. Anybody knows requirements please refer me. If sap fresher job is not there please refer me any of non technical jobs to me. Now doing job is very urgent for me.\n\nDegree : Bcom (regula), SAP(Fico)\n\nThank you", "from_id": "d9c614cb558fcf42eb1e8cc40f28eaf9583586a92e983dcb2153ea5ff41ac7ae", "reply_to": null, "datetime": "2023-05-10T09:20:29+00:00" }, { "message_id": "12bd4717ee3b80efd62f4efabbb7ed132f97dd3c84bc3321e0e122e794814976", "sticker": null, "text": "Hi all,\nI also looking for the job, I have a knowledge in Android development using Java ( 8 months experience). Anybody knows the requirements please refer me.\n\nDegree: B.E CSE (2021)\n\nThankyou ❤️", "from_id": "f80fa851731373839013841f8669fe40cd3fe3f4606fae7f8b870d1c825c558a", "reply_to": null, "datetime": "2023-05-10T16:51:20+00:00" }, { "message_id": "a4270c907a38fe06b3b971271bfbe17b592e086bd225c2f7dac00a83c83a7050", "sticker": null, "text": "I will be teaching some java concepts on linkenid is Sunday starting with javaFX...I will drop the link", "from_id": "2691e815f5d7a402d513467b1fad9e3048dd69528fc402f6848bb2ef1fb1b610", "reply_to": null, "datetime": "2023-05-11T11:12:12+00:00" }, { "message_id": "9cb34be8fb1f29bcad3e92490dd8dd4b8e507cda0d0120ade7ff4f6264c91001", "sticker": null, "text": "Hello", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": null, "datetime": "2023-05-12T17:37:08+00:00" }, { "message_id": "0b07a25c36acdfe31e9afe1aa411c8466b2efc1720e41121404cf64116d6bf89", "sticker": null, "text": "Can I get any material to learn java", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": null, "datetime": "2023-05-12T17:37:43+00:00" }, { "message_id": "3342402f24c8b8e03b98d1d766a25f8d3a7a513c3936144b4d6a04b41f7d546b", "sticker": null, "text": "?", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": null, "datetime": "2023-05-12T21:52:29+00:00" }, { "message_id": "6f11b2ab4780e25b0f810301ae70ed60fcfabfc4515f009fb58a8829ef6d24de", "sticker": null, "text": "Any Indian's here?", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": null, "datetime": "2023-05-13T02:36:01+00:00" }, { "message_id": "07625a61c4cb06e08efbda9f63a7c5d162a20b76fe16c276222d10b00f83480d", "sticker": null, "text": "Tamil 🔥", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": "5f0a550b4473c50e15c9ac4be6dc45f1b81bfd870e95be8a23b48c9b8eaf156b", "datetime": "2023-05-13T03:11:08+00:00" }, { "message_id": "3301d28a0ecb673561a3c64c93e28340aeadf9150effa239503da986d88e575a", "sticker": null, "text": "Bro Java yappti learn panrathu yathala padikanum", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": null, "datetime": "2023-05-13T03:11:49+00:00" }, { "message_id": "84f6538c18a97dcb77c54dac3be85fe762d951a39ae257b3ae8e50041ba5bb12", "sticker": null, "text": "Ur from", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": null, "datetime": "2023-05-13T03:13:56+00:00" }, { "message_id": "20989e416fd00c1d2e1b92c86c96ce38f416a7c3b2451e6e530f4382cc8e99da", "sticker": null, "text": "Andhra Pradesh?", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": "694541fd467132d732087557b462c687575fda1998f12373cae05039f7cf7601", "datetime": "2023-05-13T03:14:34+00:00" }, { "message_id": "eb155380c15c0157aca3d7b3bfae275a05af9bc3fbdeb96140657b760e90000c", "sticker": null, "text": "Na tamilnadu brother", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": null, "datetime": "2023-05-13T03:15:00+00:00" }, { "message_id": "52d66d87f914bac6f1e3a44a264609a2602bdedd58d107ffc8d72a53bad3f0a1", "sticker": null, "text": "No to ask question bro. Padikanum nu thonichi na padikalam. YouTube is there", "from_id": "f044c95323a05cbae58ab7e488b71f870b26dc3c7f03c000b668223aaa431a62", "reply_to": "3301d28a0ecb673561a3c64c93e28340aeadf9150effa239503da986d88e575a", "datetime": "2023-05-13T12:03:18+00:00" }, { "message_id": "dc6d29a12e797bd8c10faaed1a87860d65f98c831b2b919cb55e64276ec3ee2b", "sticker": null, "text": "Okay bro but enku yantha language choose pani learn panrathu nu oru idea illa", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": "52d66d87f914bac6f1e3a44a264609a2602bdedd58d107ffc8d72a53bad3f0a1", "datetime": "2023-05-13T12:32:21+00:00" }, { "message_id": "ad5c5e81099e3359d8038af6b24cf4024472914443dedc04abdd20dcfb2aba93", "sticker": null, "text": "Oru language ha choose pannunga. Athaye unga job ha mathikonga. Ungaluku yethu pudikum? Java or python? Most people prefer to go with this", "from_id": "f044c95323a05cbae58ab7e488b71f870b26dc3c7f03c000b668223aaa431a62", "reply_to": "dc6d29a12e797bd8c10faaed1a87860d65f98c831b2b919cb55e64276ec3ee2b", "datetime": "2023-05-13T12:38:28+00:00" }, { "message_id": "117191e9f4563bc42452516eedb019b7f2f4f275d04ba8226ba5a15e485422ca", "sticker": null, "text": "Java", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": "ad5c5e81099e3359d8038af6b24cf4024472914443dedc04abdd20dcfb2aba93", "datetime": "2023-05-13T12:39:20+00:00" }, { "message_id": "93eb254dcbd5aa9b320a6f1c60e3e8db732afae61781e0be42a1e17389745232", "sticker": null, "text": "Could u tell me any best YouTube channel for learn Java", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": null, "datetime": "2023-05-13T12:41:15+00:00" }, { "message_id": "a641c83183534252821409da6b93df41eaaf8fe138e0b2d062d6e09c49166f99", "sticker": null, "text": "All are best. Telusko i think. He teach good. And also one more.. i will check and let you know", "from_id": "f044c95323a05cbae58ab7e488b71f870b26dc3c7f03c000b668223aaa431a62", "reply_to": "93eb254dcbd5aa9b320a6f1c60e3e8db732afae61781e0be42a1e17389745232", "datetime": "2023-05-13T12:52:17+00:00" }, { "message_id": "42d7c45a8d34b5c9970b46a0c210100d636fd4b7099be71747f484bb067a38b3", "sticker": null, "text": "Okay 👍", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": "a641c83183534252821409da6b93df41eaaf8fe138e0b2d062d6e09c49166f99", "datetime": "2023-05-13T13:34:17+00:00" }, { "message_id": "f02941444748a3ad63965dca98128f9df69f1c0ebccd956ebef8769fe7b02fcb", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-05-13T16:03:18+00:00" }, { "message_id": "35bca086d75e01937c531e9fac1a4506c91cf653f3c450596a859bc3644bf830", "sticker": null, "text": "@#USER English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "dc6d29a12e797bd8c10faaed1a87860d65f98c831b2b919cb55e64276ec3ee2b", "datetime": "2023-05-13T20:34:19+00:00" }, { "message_id": "4b1a4bd1fe774a510396e1c6c6f72857a2ec3b2b9e0cd38434f2745d690ec622", "sticker": null, "text": "For what", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "fbaf4d9b61edb26e93b3389d514fd72db74936386a674ab648cb2d4494e8353f", "datetime": "2023-05-13T21:03:56+00:00" }, { "message_id": "bfe502154f55657f36ef48af219d022494edcde7b20adf972de87411a4e61a60", "sticker": null, "text": "👍", "from_id": "f044c95323a05cbae58ab7e488b71f870b26dc3c7f03c000b668223aaa431a62", "reply_to": "35bca086d75e01937c531e9fac1a4506c91cf653f3c450596a859bc3644bf830", "datetime": "2023-05-14T01:05:31+00:00" }, { "message_id": "ab7df251486c2ae9d4a939c8a3a765e4d05d1aa9689311d782af201da1d346e2", "sticker": null, "text": "Hi, I have a mini project in media applications. I finished it, but I need someone to understand if it needs to be modified or not", "from_id": "93eedd80ff7a69f7636276edbd8eb508ad995482f8eeb60b044931a38ba7ac85", "reply_to": null, "datetime": "2023-05-15T07:55:34+00:00" }, { "message_id": "c614336276a7feaa1d823ac8802188a04ad2b658325b7797d5b4fbf2c05f100f", "sticker": null, "text": "What's your mini Project about?", "from_id": "c4e1c86e3db37fded64d6acd5781070ee9ee07a997a5948587cc81a941fc678a", "reply_to": "ab7df251486c2ae9d4a939c8a3a765e4d05d1aa9689311d782af201da1d346e2", "datetime": "2023-05-15T09:51:45+00:00" }, { "message_id": "b6297a4d50013fcf0b84e29aa21b6d28c86e2f865551df8f26ba74a753149b04", "sticker": null, "text": "Hello", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": null, "datetime": "2023-05-15T11:39:02+00:00" }, { "message_id": "de2d114b1869f71354574123587c987209e57fc499e8b4ffef72079980cd16b6", "sticker": null, "text": "Please i need this project source code built with Java \n👇👇👇👇👇\nComputerized Population Census Information System", "from_id": "dfbc939ee1247c365de558674c2252b031716c93f29a7a4aa33f270116f049c9", "reply_to": null, "datetime": "2023-05-15T14:43:26+00:00" }, { "message_id": "60e4ce44c98903e997dcc7bee40e08d479fec617cf1d72bb2eab6668e5b04fa5", "sticker": null, "text": "Hi, anyone can give me some hint about the best practices about java exception?", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-05-15T15:23:32+00:00" }, { "message_id": "19b20e09027bf11bc75f9e78e32b1f0dbb5effcb4627a07bd902a59e22e566ca", "sticker": null, "text": "I read many tutorial, but i can not master the keep point", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-05-15T15:24:40+00:00" }, { "message_id": "4085a90df84ffa087a688108ce6c693c85290d86bd9ad02fca9aa2212e3f70e5", "sticker": null, "text": "I am also a noob bro", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "19b20e09027bf11bc75f9e78e32b1f0dbb5effcb4627a07bd902a59e22e566ca", "datetime": "2023-05-16T00:09:17+00:00" }, { "message_id": "8111c0c15d5673d355b84d59c73a5a535e11a6d13d2074ac2de20581b3d23bbb", "sticker": null, "text": "/stat@#USER", "from_id": "4bd7229a3b878679c2f4a4982312ad30c937010fa401456a38a44a86a912f061", "reply_to": null, "datetime": "2023-05-16T01:36:41+00:00" }, { "message_id": "7998b2716fab0a2fe881fe27b4b0828c71ba96115a09d4ebb5d46d7245ecb4bf", "sticker": null, "text": "┐⁠(⁠ ⁠∵⁠ ⁠)⁠┌ thanks", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-05-16T02:42:36+00:00" }, { "message_id": "2ecbb99542d6604aeef4973a907cfcc341c85d182e0416729a015b2617ac9c20", "sticker": null, "text": "/stat@#USER", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": null, "datetime": "2023-05-16T04:47:43+00:00" }, { "message_id": "5c0656f547c9c94f648b3420cecc2a6074819e9fe0f9b828dc62348870161d23", "sticker": null, "text": "Total messages: 120902", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-05-16T04:47:45+00:00" }, { "message_id": "61f40cae069b5dd76e75f78c68941defc0645af7039228c434f2fb10add6bb32", "sticker": null, "text": "Hi everyone\n\nI have a simple ONETOMANY relation between two entity in a spring boot sample.\n\nI wanna save a list of childs entity for a specific parent. So my input parameters are as the below:\n\n(long parentId, List childs)\n\nIn my Parent class I have:\n1. cascade.All in my parent class on List field.\n2. Helper Add method to add child to list of childs.\n\nFinally:\nWhere is best place to save a list of childs?ChildService or ParentService class?\n\nBecause I want to write a unit test for them too.", "from_id": "669bba6af5a2677c068f25753f94d2b1d621f576e36a06e2eb8034b04b05c673", "reply_to": null, "datetime": "2023-05-16T07:30:23+00:00" }, { "message_id": "e2c1fa8557302e50b9913e71bcdc926e2a7b4bbe090da7f9c47bdbaa33184718", "sticker": null, "text": "Can anyone share source code of Hostel Management System\nIn GUI", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": null, "datetime": "2023-05-16T10:12:58+00:00" }, { "message_id": "4724a5939109d52347ddef7c1687f58e523861bc8a1b74422c8d9d850b7e9842", "sticker": null, "text": "This is a dead group bro", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "e2c1fa8557302e50b9913e71bcdc926e2a7b4bbe090da7f9c47bdbaa33184718", "datetime": "2023-05-17T03:44:27+00:00" }, { "message_id": "018e7088f44cbbcb74086e45f9a303d136a2d4b701964f32c60d879c1296df8c", "sticker": null, "text": "Nobody responds", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "e2c1fa8557302e50b9913e71bcdc926e2a7b4bbe090da7f9c47bdbaa33184718", "datetime": "2023-05-17T03:44:34+00:00" }, { "message_id": "67e21451b7d0ff9774acf37c080f7892454d28e04592ee99ee97a4f1f69d2cf5", "sticker": null, "text": "In object-oriented programming, it's important to name **classes** as **nouns** and methods as **verbs**.\n\nThis convention makes the code more readable and understandable.\n\nClass names represent objects or concepts in the system, while method names represent actions or behaviors that the object can perform. \nUsing descriptive and meaningful names further improves the readability and understandability of the code.\n#clean_code", "from_id": "bac8254208919264009b0e2b733b588c26520d88c5e1f08e60bea050cf9b454b", "reply_to": null, "datetime": "2023-05-17T11:10:38+00:00" }, { "message_id": "10a75d0584aec15281805f3d987f03681e82c3cf3135c49add6b1f104c822477", "sticker": null, "text": "They do reply me...when they are free...\nEither here or in inbox", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "018e7088f44cbbcb74086e45f9a303d136a2d4b701964f32c60d879c1296df8c", "datetime": "2023-05-17T17:07:31+00:00" }, { "message_id": "53b89545aac68637875829e5b7d26b68304ca10353e9752780a46fb3d5b85c0d", "sticker": null, "text": "I didn't get a single reply", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "10a75d0584aec15281805f3d987f03681e82c3cf3135c49add6b1f104c822477", "datetime": "2023-05-17T22:24:29+00:00" }, { "message_id": "03a358bef76d3d356a957338b3fcd13ba010539042a6f63ea012150139226cde", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-05-18T00:53:22+00:00" }, { "message_id": "5d5571573b22dabfd0bc3bd05e4dd9213b26f846dab7082129ca43ad5ec7afe0", "sticker": null, "text": "free coupon", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2023-05-18T00:53:34+00:00" }, { "message_id": "c0ae3778e7b03d8ff910e88ef93641777f59afde450963771222c0f88fe40b64", "sticker": null, "text": "what", "from_id": "62219c3d2a56bdf59598dc8c33cc22fc58f828b74a7d50c76357e0370f66892e", "reply_to": null, "datetime": "2023-05-18T01:40:22+00:00" }, { "message_id": "3fda86a2dcd98532859d51f06642c7bb82c63ffb077bc2c3acc21122d1f08dff", "sticker": null, "text": "for what", "from_id": "62219c3d2a56bdf59598dc8c33cc22fc58f828b74a7d50c76357e0370f66892e", "reply_to": null, "datetime": "2023-05-18T01:40:29+00:00" }, { "message_id": "15b7c2821a995ce7acea03801f82107ec8812e563d1c9081839e0fbf9760713a", "sticker": null, "text": "/", "from_id": "f3aafc6601f3ead6ce3f96b5729b0dd17743c444e1b14fe142fbc41a1cf7af2e", "reply_to": null, "datetime": "2023-05-18T05:13:12+00:00" }, { "message_id": "f9d5e1216fddec60a58050d6f5ca0615dc6ac2d075834acdfb120f1df77eb0ae", "sticker": null, "text": "10", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": null, "datetime": "2023-05-18T09:48:06+00:00" }, { "message_id": "30c77dfe8b0dea30997a09470a3b35b1ff8f2475699a8976998cde6d269f45ba", "sticker": null, "text": "Because you didn't ask anything. Go to search in this group and specify \"Show messages from\" option. Not a single question, only complains.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "53b89545aac68637875829e5b7d26b68304ca10353e9752780a46fb3d5b85c0d", "datetime": "2023-05-18T10:04:36+00:00" }, { "message_id": "287cccbecc47bf3751d45a9f7c8daf5cea4b9544acccfe7298e90229f7230d74", "sticker": null, "text": "I think you are right 👍", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "30c77dfe8b0dea30997a09470a3b35b1ff8f2475699a8976998cde6d269f45ba", "datetime": "2023-05-18T10:10:07+00:00" }, { "message_id": "9287903a24347c4d7a8a4fd763112b47c1d35cef44dc9971f9bd99ec5c8af99b", "sticker": null, "text": "If nobody responds, maybe the problem is not with the audience. Maybe the problem is with the question itself. Have you tried to think this way? Why other people/questions get responses, and this one don't?\n\nI'll explain, it's pretty simple. Your question is similar to something like: has anyone built a house recently, can you please give it to me? \nWhat you're asking is quite a piece of work. And not a very easy work. It requires knowledge, and time. People who usually have enough knowledge to do that, are already employed and do it for money. People who don't have a job yet, usually don't have that knowledge. First category - they just won't write it for you for free, or if it happens that they already written something similar, it's most probably under NDA. Second category - obviuosly they can't help you with this. \nAnd even if you're lucky enough to find someone who has enough knowledge to do it, but does not yet realize that it costs a lot of money, will not write it for you simply because of the second requirement - it requires time.\n\nThe only option - is to find some opensource project. In this case, nobody is going to google it for you, it's obvious.\n\nOften, people from the first category help here and there answering some questions. But trust me, being a member of such chats for several years, I've never ever seen people from the first category wasting time on answering questions like \"please build a house for me\".", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "e2c1fa8557302e50b9913e71bcdc926e2a7b4bbe090da7f9c47bdbaa33184718", "datetime": "2023-05-18T10:17:00+00:00" }, { "message_id": "89a5c4fea43a42e77293d56077325d3b302e72268571a286c6e41e95af341b8c", "sticker": null, "text": "@#USER ,\nHere's an example of a question that could potentially be answered by experienced people. It's only missing clarifications on what exactly the requester can't understand. Small, narrow, exact questions have much higher chance to be helped with.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "60e4ce44c98903e997dcc7bee40e08d479fec617cf1d72bb2eab6668e5b04fa5", "datetime": "2023-05-18T10:23:00+00:00" }, { "message_id": "fb25d125dadd55d61599f840a3c881ac7ae786df4dd33cff9c2c4fc0dd7b613b", "sticker": null, "text": "I got it...\nThanks for it", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "9287903a24347c4d7a8a4fd763112b47c1d35cef44dc9971f9bd99ec5c8af99b", "datetime": "2023-05-18T12:32:12+00:00" }, { "message_id": "53bcb39eb63a911494f0c764fa577d9fb9eaa6d629da13ba28cbc6b25647aa32", "sticker": null, "text": "Thanks", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": "03a358bef76d3d356a957338b3fcd13ba010539042a6f63ea012150139226cde", "datetime": "2023-05-18T13:55:38+00:00" }, { "message_id": "f88092a1c6cc0bc8826c28493d30c00a2a7bcf9ce55e3d9591a7ecc307cf2650", "sticker": null, "text": "Wanna do some free lancing?", "from_id": "6f21f07ca11400cb03fd6dce55bbc1c0024554170167da4160cb81f8c5e9d48c", "reply_to": "12bd4717ee3b80efd62f4efabbb7ed132f97dd3c84bc3321e0e122e794814976", "datetime": "2023-05-18T14:20:03+00:00" }, { "message_id": "d9db5780752d058087b63fd297f6c0bf4a6b7a7f4ed4cb9346c894cee0b6fcc6", "sticker": null, "text": "Once u open the library u will know why it is free", "from_id": "6f21f07ca11400cb03fd6dce55bbc1c0024554170167da4160cb81f8c5e9d48c", "reply_to": "53bcb39eb63a911494f0c764fa577d9fb9eaa6d629da13ba28cbc6b25647aa32", "datetime": "2023-05-18T14:29:37+00:00" }, { "message_id": "6b2f034f9c4d4714ad5e6de8c799cce9d3ad218c92b3abdeef19f99cefa02c94", "sticker": null, "text": "Question 01\n\nYou are given two non-decreasing sequences A=(a1,2,..,a,) and B=(bi,b2,...,Om).\nYou can choose any two indices i and i, and then swap a; and b;.\nNote that you can do the operations as many times as you want, and your goal is to transform A into an arithmetic sequence. After operations, you can rearrange the sequence A\nDetermine how many distinct arithmetic sequences you can obtain.\nInput Format:\nFirst line contains 2 numbers (the length of A and B)\nSecond line contains array A.\nThird line contains array B.", "from_id": "6d30dd73fc47d0c1e3a8189c77bdf273fcac77f9c6bc118858f756b3f3f19eb3", "reply_to": null, "datetime": "2023-05-18T15:24:46+00:00" }, { "message_id": "30c6ad6cdbf9e94f6ee944c2e86a471b0b21a85b5e880fb9172b0a8c27dc145a", "sticker": null, "text": "Can you slove this", "from_id": "6d30dd73fc47d0c1e3a8189c77bdf273fcac77f9c6bc118858f756b3f3f19eb3", "reply_to": null, "datetime": "2023-05-18T15:25:03+00:00" }, { "message_id": "1c23f7f7fa5a3fce6a23397095583eeaf9b048a358253e6c1e94c489cb63f16a", "sticker": null, "text": "Hi can you send your all code ?", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "6b2f034f9c4d4714ad5e6de8c799cce9d3ad218c92b3abdeef19f99cefa02c94", "datetime": "2023-05-18T15:38:10+00:00" }, { "message_id": "46d679cf6ca88279396ef1dda424fb5c3adfa5a53b142f2f56743762ce7e8e0f", "sticker": null, "text": "I have question only bro", "from_id": "6d30dd73fc47d0c1e3a8189c77bdf273fcac77f9c6bc118858f756b3f3f19eb3", "reply_to": null, "datetime": "2023-05-18T15:40:17+00:00" }, { "message_id": "b8b6b7c6d9d2dc628786308b2660f2328078316708404c2971493ad22d912363", "sticker": null, "text": "I have question only bro", "from_id": "6d30dd73fc47d0c1e3a8189c77bdf273fcac77f9c6bc118858f756b3f3f19eb3", "reply_to": "1c23f7f7fa5a3fce6a23397095583eeaf9b048a358253e6c1e94c489cb63f16a", "datetime": "2023-05-18T15:40:27+00:00" }, { "message_id": "f0fbfaaaa4c6948e9264e9e2c9cd954541d716abaf1be2635ca2758fdd0ab114", "sticker": null, "text": "import java.util.Scanner;\npublic class ArithmeticSequences { public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n // Read input int n = scanner.nextInt();\n int m = scanner.nextInt(); int[] A = new int[n];\n int[] B = new int[m];\n for (int i = 0; i < n; i++) { A[i] = scanner.nextInt();\n }\n for (int i = 0; i < m; i++) { B[i] = scanner.nextInt();\n }\n // Call the function and print the result int result = countArithmeticSequences(A, B);\n System.out.println(result); }\n public static int countArithmeticSequences(int[] A, int[] B) {\n int n = A.length; int m = B.length;\n int count = 0;\n // Calculate the differences between adjacent elements in A int[] diffA = new int[n - 1];\n for (int i = 1; i < n; i++) { diffA[i - 1] = A[i] - A[i - 1];\n }\n // Iterate over all possible pairs (i, j) and check if swapping ai and bj // results in an arithmetic sequence\n for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) {\n // Calculate the new difference after swapping ai and bj int diff = B[j] - A[i];\n // Check if the new difference matches any difference in diffA\n for (int k = 0; k < diffA.length; k++) { if (diff == diffA[k]) {\n count++; break;\n } }\n } }\n return count;\n }}", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "6b2f034f9c4d4714ad5e6de8c799cce9d3ad218c92b3abdeef19f99cefa02c94", "datetime": "2023-05-18T20:12:06+00:00" }, { "message_id": "ba17755a79be9d0e26d646b9529b646bbe09896e6e4bb2de6b88131ef098c45d", "sticker": null, "text": "```import java.util.Arrays;\nimport java.util.HashSet;\nimport java.util.Scanner;\nimport java.util.Set;\n\npublic class SequenzeAritmetiche {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n\n // Lettura dell'input\n int lengthA = scanner.nextInt();\n int lengthB = scanner.nextInt();\n int[] A = new int[lengthA];\n int[] B = new int[lengthB];\n\n for (int i = 0; i < lengthA; i++) {\n A[i] = scanner.nextInt();\n }\n\n for (int i = 0; i < lengthB; i++) {\n B[i] = scanner.nextInt();\n }\n\n scanner.close();\n\n // Creazione di un set per memorizzare le sequenze aritmetiche distinte\n Set arithmeticSequences = new HashSet<>();\n\n // Calcolo delle differenze tra i numeri di A e B e memorizzazione delle sequenze aritmetiche\n for (int i = 0; i < lengthA; i++) {\n for (int j = 0; j < lengthB; j++) {\n int diff = A[i] - B[j];\n\n // Riorganizza A in ordine crescente\n Arrays.sort(A);\n\n // Verifica se la sequenza A è aritmetica dopo lo scambio\n boolean isArithmetic = true;\n int prev = A[0];\n for (int k = 1; k < lengthA; k++) {\n if (A[k] - prev != diff) {\n isArithmetic = false;\n break;\n }\n prev = A[k];\n }\n\n if (isArithmetic) {\n arithmeticSequences.add(diff);\n }\n }\n }\n\n // Stampa il numero di sequenze aritmetiche distinte ottenute\n System.out.println(arithmeticSequences.size());\n }\n}```", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": "6b2f034f9c4d4714ad5e6de8c799cce9d3ad218c92b3abdeef19f99cefa02c94", "datetime": "2023-05-18T22:23:46+00:00" }, { "message_id": "4bb60b921fbafc29da69392961e9f8417f4354a4661ddbe565ee479638d36da3", "sticker": null, "text": "Plz am interested in the HTML CSS AND JAVASCRIPT NOTE", "from_id": "378707b4b2e3ef2dd8f58fe524f16ab11652d8f5bdffef79d765215e8d6f8c8c", "reply_to": "a33c7133695b3d62fa5d68923e0743b4c61ca714bc8814d610e28d0987811512", "datetime": "2023-05-19T22:21:56+00:00" }, { "message_id": "c3f4997fdbe3b29ced390f4828c2745768937986a6fbb9a417137400b974cc5f", "sticker": null, "text": "did you get the notes?", "from_id": "3d3c0c439b366079608cedd58b2ece047521bbba3bdebc788b678322fdcfe0a2", "reply_to": "4bb60b921fbafc29da69392961e9f8417f4354a4661ddbe565ee479638d36da3", "datetime": "2023-05-20T14:53:02+00:00" }, { "message_id": "e208974dfc932f8bf8a4826ba9ccd4743d672e29f939d8add5d74a3f79ebebba", "sticker": null, "text": "14", "from_id": "e4c92151e98a557b78362b098129b3919abd5b8c24dd5840ceef4d017060208b", "reply_to": null, "datetime": "2023-05-20T16:01:15+00:00" }, { "message_id": "17b2bc14038c7a4e4d815a5fe836436803b4a6903fd9f2fadc55e170dd2b490a", "sticker": null, "text": "Am interested", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "3e65bcfa564a9f4aaf7e6f5cd7454dee73d840accd396d03d0418b05808238ff", "datetime": "2023-05-20T17:41:50+00:00" }, { "message_id": "475bcd5275941c0bb7f4d9f4ea677b49b311de3e87a43d9a3cca793cec8a85f5", "sticker": null, "text": "Interested", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "3e65bcfa564a9f4aaf7e6f5cd7454dee73d840accd396d03d0418b05808238ff", "datetime": "2023-05-21T00:26:09+00:00" }, { "message_id": "9c9fb735efc81af7c7984c7f2886fbf1f256121af994e3ed38815f1da934deba", "sticker": null, "text": "You noticed your profile late😂😂", "from_id": "82344478b01c065a12a8daeedad09769156e9985114842e541d3ef44fb859054", "reply_to": "8c9a55aa12f19646409cbecc60df9523c39604fc2f72e8d9f5bf553d795be007", "datetime": "2023-05-21T13:39:48+00:00" }, { "message_id": "145620ee54a587ee54ee2b2a1d38a1fba4e32fd1b0f0851b0a674e3be2835364", "sticker": null, "text": "Hello\nI'm a freelancer from india . Recently i got an order for resturant website development from a client and he is from US . He is telling to give the payment in cheque mode . But how can i take cheque from US. I tell him to pay by PayPal or any other method like internet banking etc. But he refused to do .so unfortunately i have to skip that work. \n\nIs anyone can suggest me on this.. because i have no experience of dealing with US clients.", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": null, "datetime": "2023-05-21T17:47:15+00:00" }, { "message_id": "9a454e3859ab08d8150c99f089b7e94298864879c891da9482b00e43f1ed2aa3", "sticker": null, "text": "PayPal is the only way i think. Cheque is not possible", "from_id": "b371741be8bc514120dffedd9b28ffa656cc1d70751ddeb6caae7b4d8fcb95ba", "reply_to": "145620ee54a587ee54ee2b2a1d38a1fba4e32fd1b0f0851b0a674e3be2835364", "datetime": "2023-05-21T17:48:26+00:00" }, { "message_id": "6369a43360488bbf7481f067544711dec627868e3e33653585c51f51bf220d03", "sticker": null, "text": "I will suggest to do freelancing on Fiverr as a beginner", "from_id": "b371741be8bc514120dffedd9b28ffa656cc1d70751ddeb6caae7b4d8fcb95ba", "reply_to": "145620ee54a587ee54ee2b2a1d38a1fba4e32fd1b0f0851b0a674e3be2835364", "datetime": "2023-05-21T17:49:39+00:00" }, { "message_id": "85f14a461a070404aa9e9ed5e6c72e2b9f8fd169720d8874e24e76ab3b2245da", "sticker": null, "text": "15", "from_id": "5ebf7776e8ebd5e3d9b34b6a744bc98c4b58280469657e3f95d30824ef91e6d5", "reply_to": null, "datetime": "2023-05-22T01:59:31+00:00" }, { "message_id": "07337e5fdd6f0bd9e0f7de8d1376c7bde7b2d6aad6910deaf74c1cd9bba327cb", "sticker": null, "text": "Any one tell me why resume isn't shortlisting", "from_id": "8502c22332793490fcd64e1d51144ee0403bf047e4bdb69f18d2241b1ee7b854", "reply_to": null, "datetime": "2023-05-22T06:34:01+00:00" }, { "message_id": "49ea2dd1d6247bd0e1642da60991eb5c5b7a5708956de1edd900bde3863d6207", "sticker": null, "text": "hi I wanna add a ball to a rotating collection of circles and then it should rotate with others . I used timeline and rotate classes to handle it but after locating the ball it doesn't rotate . any idea how to solve it?", "from_id": "c108e10ff911de9867b1f41b3e7236f814e6218d7c616a55a7fbd4d6a718677b", "reply_to": null, "datetime": "2023-05-22T12:28:48+00:00" }, { "message_id": "5ff3ccc330a470027f47772c3146502d39db7e36618b0e14568651e66c5a992a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "52ab830994007eb987080029d09ee674ac83d40f309317226c5db3605f8bfb6c", "reply_to": null, "datetime": "2023-05-22T13:49:13+00:00" }, { "message_id": "e542df97faf9b6ea18d5ae12808b1089dbdddf34ca3740b9666892b968f7ca15", "sticker": null, "text": "Thanks Brother ❤️", "from_id": "6d30dd73fc47d0c1e3a8189c77bdf273fcac77f9c6bc118858f756b3f3f19eb3", "reply_to": "ba17755a79be9d0e26d646b9529b646bbe09896e6e4bb2de6b88131ef098c45d", "datetime": "2023-05-23T03:24:03+00:00" }, { "message_id": "00dfef20b6eca67c27c4a4e82aef74697b24ed13470ad4f72ce1bc09eee4e5a8", "sticker": null, "text": "What was this question from", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "b8b6b7c6d9d2dc628786308b2660f2328078316708404c2971493ad22d912363", "datetime": "2023-05-23T16:52:50+00:00" }, { "message_id": "09450ee2b9ba1676eb299fd0379f353cfddc3a491a68fca15bb003f457741292", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "52ab830994007eb987080029d09ee674ac83d40f309317226c5db3605f8bfb6c", "reply_to": null, "datetime": "2023-05-23T23:15:21+00:00" }, { "message_id": "8d26b98a3369e9d5c1ea9e778c46cbcca8a4ec0dae1c109815f432cba8ce7fe8", "sticker": null, "text": "Hi", "from_id": "dcaf84822824e61e3494a1f65acba1e7933e9f311f58330e83128d98d319ef36", "reply_to": "231c8c7f6a6fab1e09698664da6e109901bc3975fe40ac6c7f491cbde4071850", "datetime": "2023-05-25T04:58:03+00:00" }, { "message_id": "d1bfecd423dc706e8108e40ea9d413022b755cc6335f56705252e9ebfb93ef09", "sticker": null, "text": "package f.n.c;\n\nimport android.content.Context;\nimport android.text.TextUtils;\nimport f.n.a.f.d.j.m;\nimport f.n.a.f.d.j.o;\nimport f.n.a.f.d.n.q;\n\n/* compiled from: com.google.firebase:firebase-common@@#USER */\n/* loaded from: classes3.dex */\npublic final class d {\n    public final String a;\n\n    /* renamed from: b  reason: collision with root package name */\n    public final String f24315b;\n\n    /* renamed from: c  reason: collision with root package name */\n    public final String f24316c;\n\n    /* renamed from: d  reason: collision with root package name */\n    public final String f24317d;\n\n    /* renamed from: e  reason: collision with root package name */\n    public final String f24318e;\n\n    /* renamed from: f  reason: collision with root package name */\n    public final String f24319f;\n\n    /* renamed from: g  reason: collision with root package name */\n    public final String f24320g;\n\n    public d(String str, String str2, String str3, String str4, String str5, String str6, String str7) {\n        o.o(!q.a(str), \"ApplicationId must be set.\");\n        this.f24315b = str;\n        this.a = str2;\n        this.f24316c = str3;\n        this.f24317d = str4;\n        this.f24318e = str5;\n        this.f24319f = str6;\n        this.f24320g = str7;\n    }\n\n    public static d a(Context context) {\n        f.n.a.f.d.j.q qVar = new f.n.a.f.d.j.q(context);\n        String a = qVar.a(\"google_app_id\");\n        if (TextUtils.isEmpty(a)) {\n            return null;\n        }\n        return new d(a, qVar.a(\"google_api_key\"), qVar.a(\"firebase_database_url\"), qVar.a(\"ga_trackingId\"), qVar.a(\"gcm_defaultSenderId\"), qVar.a(\"google_storage_bucket\"), qVar.a(\"project_id\"));\n    }\n\n    public String b() {\n        return this.a;\n    }\n\n    public String c() {\n        return this.f24315b;\n    }\n\n    public String d() {\n        return this.f24318e;\n    }\n\n    public String e() {\n        return this.f24320g;\n    }\n\n    public boolean equals(Object obj) {\n        if (obj instanceof d) {\n            d dVar = (d) obj;\n            return m.b(this.f24315b, dVar.f24315b) && m.b(this.a, dVar.a) && m.b(this.f24316c, dVar.f24316c) && m.b(this.f24317d, dVar.f24317d) && m.b(this.f24318e, dVar.f24318e) && m.b(this.f24319f, dVar.f24319f) && m.b(this.f24320g, dVar.f24320g);\n        }\n        return false;\n    }\n\n    public int hashCode() {\n        return m.c(this.f24315b, this.a, this.f24316c, this.f24317d, this.f24318e, this.f24319f, this.f24320g);\n    }\n\n    public String toString() {\n        return m.d(this).a(\"applicationId\", this.f24315b).a(\"apiKey\", this.a).a(\"databaseUrl\", this.f24316c).a(\"gcmSenderId\", this.f24318e).a(\"storageBucket\", this.f24319f).a(\"projectId\", this.f24320g).toString();\n    }\n}", "from_id": "836a5df5a07e4cf8ce9be2e8b4bcd7877936af32ed18d6326a859042143d252c", "reply_to": null, "datetime": "2023-05-25T05:23:16+00:00" }, { "message_id": "5330ba3760df3817d0faf9b1765fe60b36c48902e31e0d0ea94bcf2bf7a277d5", "sticker": null, "text": "Can we get databaseUrl link from this values??????", "from_id": "836a5df5a07e4cf8ce9be2e8b4bcd7877936af32ed18d6326a859042143d252c", "reply_to": "d1bfecd423dc706e8108e40ea9d413022b755cc6335f56705252e9ebfb93ef09", "datetime": "2023-05-25T05:23:35+00:00" }, { "message_id": "5e5faf72f089c72f90e5ec4b3896b95545495ec7cfd9e3ae02c91a191c367bbf", "sticker": null, "text": "Java channel !!!\nWhat is its relation to Trading ???", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "ce84f0e31a5bf205edeb80b713557179682bcdc76034ac18b0a0115179f05394", "datetime": "2023-05-25T07:14:18+00:00" }, { "message_id": "0c200c97e44d3ac3b28bdedab34baeca463409d8d86e02aecf0dcc7e3a5e36ea", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "71f9c445935010d4a0f3df3df858d67eed8587c9923f9356e5770233010e6eda", "reply_to": null, "datetime": "2023-05-25T08:26:34+00:00" }, { "message_id": "29d6901903d2b0d98912e1b416270efa9fea836327b06f0eaf1d13baa7cb9cff", "sticker": null, "text": "Google launches an AI coding bot for Android development\nAdvantage:\n+Helps users write codes, build apps, fixing errors, answering questions, finding source codes, learning best practices, and saving time.\nDisadvantage:\n-Studio Bot can not understand your question if it is not clear\n-Many Android developers will lose their jobs", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2023-05-25T11:38:40+00:00" }, { "message_id": "33ee7adb8bf2fe308d5c5e52eec6b21f7e503fcf89657369490b3c78fc95bcb9", "sticker": null, "text": "Okay, Thank you @#USER ☺️", "from_id": "f80fa851731373839013841f8669fe40cd3fe3f4606fae7f8b870d1c825c558a", "reply_to": "f88092a1c6cc0bc8826c28493d30c00a2a7bcf9ce55e3d9591a7ecc307cf2650", "datetime": "2023-05-27T00:01:57+00:00" }, { "message_id": "88124eeec95a855e3c0e87bedc85bb7e3cbdaa681b47c9ea700fd6dc36357234", "sticker": null, "text": "Hiii guys", "from_id": "032bda6c3d8346d9c2322249fc932dcd56e7f5dd09ad305c5e47588fa3b96057", "reply_to": null, "datetime": "2023-05-27T09:50:22+00:00" }, { "message_id": "17bd5e1793b63ef5bd8cfef800e00a5e8a7b22da4e136288c52d63530cb8bf61", "sticker": null, "text": "🤔??", "from_id": "6f21f07ca11400cb03fd6dce55bbc1c0024554170167da4160cb81f8c5e9d48c", "reply_to": "33ee7adb8bf2fe308d5c5e52eec6b21f7e503fcf89657369490b3c78fc95bcb9", "datetime": "2023-05-27T16:51:03+00:00" }, { "message_id": "37bedbdd6574271f0f2462a1c36576980c03fa233aa6b43ed1cb3b3b3304866d", "sticker": null, "text": "13", "from_id": "5ebf7776e8ebd5e3d9b34b6a744bc98c4b58280469657e3f95d30824ef91e6d5", "reply_to": null, "datetime": "2023-05-28T00:18:34+00:00" }, { "message_id": "2b9aff7ef925b95cfbe3790b38147fae387dfefe471050014a011695c4bd8c09", "sticker": null, "text": "4", "from_id": "5ebf7776e8ebd5e3d9b34b6a744bc98c4b58280469657e3f95d30824ef91e6d5", "reply_to": null, "datetime": "2023-05-28T00:18:54+00:00" }, { "message_id": "2aaa17e5ee7c8c1e72345c0d356203483a7c7d629fbe40ecab8b64079c9ec7e5", "sticker": null, "text": "Hello Everybody!", "from_id": "5ebf7776e8ebd5e3d9b34b6a744bc98c4b58280469657e3f95d30824ef91e6d5", "reply_to": null, "datetime": "2023-05-28T00:19:19+00:00" }, { "message_id": "9d469accb2faa89edff1310fb1599e8f3d6a4fb0cfbc0e6ecdf31788b4e2f2ba", "sticker": null, "text": "Are you all Java developers?", "from_id": "5ebf7776e8ebd5e3d9b34b6a744bc98c4b58280469657e3f95d30824ef91e6d5", "reply_to": null, "datetime": "2023-05-28T00:19:35+00:00" }, { "message_id": "2abc8a1a4cd52020bbc344a791477870ca583da62ff082f348c81aa5f34276e9", "sticker": null, "text": "im", "from_id": "0d5f10ad5b087f5f52be39389d73ece9844fbfeb7e238201d3564ce61c5964de", "reply_to": null, "datetime": "2023-05-28T02:05:55+00:00" }, { "message_id": "49af5997d4acc06604f42debd0de05ed251efa294180ef06683555f79fd8b6bc", "sticker": null, "text": "jvav developers", "from_id": "0d5f10ad5b087f5f52be39389d73ece9844fbfeb7e238201d3564ce61c5964de", "reply_to": null, "datetime": "2023-05-28T02:06:16+00:00" }, { "message_id": "bc608fff0f73915919824d117fdf57f55e2a9b8e930296a4233e2c9af0f0f4a6", "sticker": "U-Sticker detects this as offensive image.", "text": "", "from_id": "0d5f10ad5b087f5f52be39389d73ece9844fbfeb7e238201d3564ce61c5964de", "reply_to": null, "datetime": "2023-05-28T02:06:19+00:00" }, { "message_id": "577b2110f57ac405c3fc3c7bf122db3c588e64525eb8f29d8cce017bbe620fcb", "sticker": null, "text": "U-Sticker detects this as offensive text.", "from_id": "5ebf7776e8ebd5e3d9b34b6a744bc98c4b58280469657e3f95d30824ef91e6d5", "reply_to": null, "datetime": "2023-05-28T03:24:53+00:00" }, { "message_id": "ed31d3599d1714c6aecea7ef818cc4060d45f61719bfaad96b0e0921011ba1c5", "sticker": null, "text": "Who's scamming", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "577b2110f57ac405c3fc3c7bf122db3c588e64525eb8f29d8cce017bbe620fcb", "datetime": "2023-05-28T03:46:50+00:00" }, { "message_id": "3a81e03ff2d56a65c47ece0a027a6371a5936d0f05371a5059605fe4d54d454a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "c695a0800f5ba8b5c857c5a306d9a066d7af9bcc41fbb272d4a883a21547b3c0", "datetime": "2023-05-29T16:27:58+00:00" }, { "message_id": "cf73680c7c37d88a1fb808c33972a647a2ac2c60c93bc8fbd3dcd8bb6feee8fc", "sticker": null, "text": "No, I feel your pain. Try the group above.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "c695a0800f5ba8b5c857c5a306d9a066d7af9bcc41fbb272d4a883a21547b3c0", "datetime": "2023-05-29T16:28:33+00:00" }, { "message_id": "0d026b6277be3e61176576d8771c9f5463feea2900a9e2c53500e8fde7868e3e", "sticker": null, "text": "Thanks C J", "from_id": "8352a814b8eca498d00a6d1c162bd6d9dc7180bbbcf00ca20c26866bc524e3e6", "reply_to": "cf73680c7c37d88a1fb808c33972a647a2ac2c60c93bc8fbd3dcd8bb6feee8fc", "datetime": "2023-05-29T19:05:10+00:00" }, { "message_id": "00fa52c6979b2b7ec48edc33941d44d52eea762d4f0e8ab433f5b4cf56a45c6c", "sticker": null, "text": "Is it possible to talk to admin ?", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": null, "datetime": "2023-05-29T19:15:45+00:00" }, { "message_id": "e65a2a0ba16e47d2aae0c464bbf099f9b048d5b42d365fa02cd23930df944d07", "sticker": null, "text": "i think no", "from_id": "0fcfe0ce2e79203394c3aa07e10ffd5babb7d16aa19ad5dfb2be51e24501b841", "reply_to": "00fa52c6979b2b7ec48edc33941d44d52eea762d4f0e8ab433f5b4cf56a45c6c", "datetime": "2023-05-29T19:25:36+00:00" }, { "message_id": "de16ff7e7ee8db0e71ae2ed7a74fb0cc823605300e9942a6e4eac2eaa5b99233", "sticker": null, "text": "Dear admin", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": null, "datetime": "2023-05-29T19:33:59+00:00" }, { "message_id": "ffb63c0073a1c4c3bad42bbc195312efe012dd4121cf54e0321d8eb66fba6cad", "sticker": null, "text": "I responded", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "de16ff7e7ee8db0e71ae2ed7a74fb0cc823605300e9942a6e4eac2eaa5b99233", "datetime": "2023-05-29T21:42:17+00:00" }, { "message_id": "6bbda4beb3d000d684f4ea41416cfb4d48bb4bf8b3cabcdd1f73680dc8046c36", "sticker": null, "text": "Yes you are really kind \nThank you", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "ffb63c0073a1c4c3bad42bbc195312efe012dd4121cf54e0321d8eb66fba6cad", "datetime": "2023-05-29T22:21:14+00:00" }, { "message_id": "cf84c497af8994738e2c27d40902784a978681fcb3865c93378e159782c88cd3", "sticker": null, "text": "Hi all", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": null, "datetime": "2023-05-29T23:03:35+00:00" }, { "message_id": "20abd0769bae5fa60574a0938217e92e0e806cc4ab9a2f02410650afa06e66e0", "sticker": null, "text": "Hi", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-05-30T10:05:59+00:00" }, { "message_id": "f3c9c57ead7dbef382ac5f48e1976be3d9f422b2e5eb5e0482a5af2ca5d3c1a1", "sticker": null, "text": "I have doubt", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-05-30T10:06:16+00:00" }, { "message_id": "7827b6ee2e1570fd330d135a2b8b58268474abf8430162d45f880f195927079e", "sticker": null, "text": "Iam using java for web backend so i need to learn datastructures and algorithms?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-05-30T10:07:02+00:00" }, { "message_id": "2663d0de39988bcd31b26da3dc98bc295f58ae5b2a7734b28e31e8f723b82926", "sticker": null, "text": "If you are fresher then yes", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": null, "datetime": "2023-05-30T11:27:44+00:00" }, { "message_id": "dc1afa35803790336b71b02a758511f93394b781353e35fa59c262df46c2febb", "sticker": null, "text": "Because without datastructure you wouldn't able to write the requirements.\nBasic algorithm also needed for bussiness requirements.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": null, "datetime": "2023-05-30T11:28:40+00:00" }, { "message_id": "828879ead4d6bf429f26e3396732d97604ccb50b2375fbb84d2d5c38c0972934", "sticker": null, "text": "what questions do they ask in a java interview", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": null, "datetime": "2023-05-30T23:47:19+00:00" }, { "message_id": "2dd6f4627a8409bab58c871a7d2553125b7fc18796b5a6deff3c6fd8bd77add9", "sticker": null, "text": "?", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": null, "datetime": "2023-05-30T23:47:20+00:00" }, { "message_id": "1635185544ac47616cfd19ed427bfcbe17598d1589b91eeea6abc274f8bdd1b6", "sticker": null, "text": "It start with java basics,\nFor questions info you can read 100 interview java questions and go through practically through all the questions.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": null, "datetime": "2023-05-31T04:14:48+00:00" }, { "message_id": "28ea66f23ca7c1ea7fd5db1dac566a44c6077f19cdbc69b68cd46a2d1e59063c", "sticker": null, "text": "Just Google it you will get the frequently asked questions, no need to pay anyone", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "828879ead4d6bf429f26e3396732d97604ccb50b2375fbb84d2d5c38c0972934", "datetime": "2023-05-31T05:35:24+00:00" }, { "message_id": "9b6f428ee0d64589ef397cfe689fbeddf9767bd2009392e49ac164e813b84f27", "sticker": null, "text": "how work?", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": "ab7c9eacdf060b19ffca6cede7bb23eafc288ffadd2d613f9170137d0afa711e", "datetime": "2023-05-31T15:50:30+00:00" }, { "message_id": "43a03481542109960fcec0d758a6ff388dc9b6d9b9e3a47bc830aba6323594d8", "sticker": null, "text": "Can anyone help me to create an ATM interface by using Java please?", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": null, "datetime": "2023-06-01T04:13:30+00:00" }, { "message_id": "7e5ff7eb49cb66f21845996311fc9aec640040685877c46a8049fe38f34d260e", "sticker": null, "text": "???", "from_id": "0d5f10ad5b087f5f52be39389d73ece9844fbfeb7e238201d3564ce61c5964de", "reply_to": null, "datetime": "2023-06-01T05:10:21+00:00" }, { "message_id": "ac26ba5a49d22af4d5274b0580d44cc2505aaf91a42d24e7e5e30449392fc314", "sticker": null, "text": "what are you want to do?", "from_id": "0d5f10ad5b087f5f52be39389d73ece9844fbfeb7e238201d3564ce61c5964de", "reply_to": null, "datetime": "2023-06-01T05:10:45+00:00" }, { "message_id": "8870bb5ed37290eec8a0a5a6c0b89e09cc61728af5588470788a10235cf74eb8", "sticker": null, "text": "Please what java libraries are needed for android ui design", "from_id": "3d2dea561fc15cbc212f6d24ce8d7aa8a042822f97bf092447568c7da1fa9921", "reply_to": null, "datetime": "2023-06-03T00:33:24+00:00" }, { "message_id": "7ff55f6330dbbd6462853a1c8bc7cd3fb211358c725fb41a8f188d62d740d51c", "sticker": null, "text": "Hi\nWanna make a ATM model ?", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "43a03481542109960fcec0d758a6ff388dc9b6d9b9e3a47bc830aba6323594d8", "datetime": "2023-06-03T19:06:51+00:00" }, { "message_id": "019fd5fc4baa2d0a7a65d5a41a6610b5ca4f2e0a4c141c030713562db7237429", "sticker": null, "text": "Hi everyone. \n\nI want to convert my POS Sales Application from a jar to exe. I keep on receiving this error(This application was configured to use a bundled Java Runtime Environment but the Runtime is missing or corrupted).How can I overcome this?\n\n😭😭\n\nI made the POS System using Eclipse and it's connected to a database. It's not a complex project but just a simple one.\n\nThe project consists with a login page then it redirects to the main page (point of sales GUI).\n\nI tried creating the jar file specifically for the login page and create a folder on my desktop and copied the JRE files from Java to the create Exe named folder on my desktop.\n\nI used Launch4j to create the exe.\n\nSo, I need to be able run the exe file, It won't run. It keep on giving me that error...", "from_id": "78f1ec761560ee7317ac57c9aa81d31cce6f92b2d4a2347e52aaa3be242cc415", "reply_to": null, "datetime": "2023-06-04T07:47:50+00:00" }, { "message_id": "2a96db21733c6a8927a40c3edee03e296560e3bc939a2918f924f6388ff6afd0", "sticker": null, "text": "Hi guy \nIs it a spring boot project ?", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "019fd5fc4baa2d0a7a65d5a41a6610b5ca4f2e0a4c141c030713562db7237429", "datetime": "2023-06-04T08:58:25+00:00" }, { "message_id": "9db527585dbcbd9d09910ae478010b37448063b760c7e4d22d3b1407e9dbd778", "sticker": null, "text": "its a Java Swing project", "from_id": "78f1ec761560ee7317ac57c9aa81d31cce6f92b2d4a2347e52aaa3be242cc415", "reply_to": null, "datetime": "2023-06-04T08:59:58+00:00" }, { "message_id": "209f5d4300dee43319524f71d5bbafeb70dbac470e939327faadb316ec679537", "sticker": null, "text": "Ok \nI didnt work but there one thing you can do\nCopy the exact ERROR and google it \nAnd check StackOverflow answers", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "9db527585dbcbd9d09910ae478010b37448063b760c7e4d22d3b1407e9dbd778", "datetime": "2023-06-04T09:14:11+00:00" }, { "message_id": "af8efa9ae00cc4d8c421c76b09cc7026bfb5f9dfac0f0f515e6516deac341355", "sticker": null, "text": "Before check JAVA_HOME and JDK please", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": null, "datetime": "2023-06-04T09:15:21+00:00" }, { "message_id": "2c86e40c89a7a2bb2499529af0304991e6fa824cc876b62a85bd41d877ccbfc3", "sticker": null, "text": "I've already posted it on stack overflow. Haven't yet got any common my upload.\n\nYes, I've made the JRE path JAVA_HOME...", "from_id": "78f1ec761560ee7317ac57c9aa81d31cce6f92b2d4a2347e52aaa3be242cc415", "reply_to": null, "datetime": "2023-06-04T09:27:24+00:00" }, { "message_id": "6dffd489dc3c148422d8833ed28c16da9d62e151c559ece3363df560ac82de32", "sticker": null, "text": "Please for any school management frontend app \nMade in HTML css js and bootstrap", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-06-04T09:28:33+00:00" }, { "message_id": "35d6cf901d3b75441820fb7c65ee328f1a28fe65bbb15d8ab19ac5d13e51e351", "sticker": null, "text": "is necesary learn java ee before spring boot?", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": null, "datetime": "2023-06-04T18:32:19+00:00" }, { "message_id": "91e42f7c63ac277a6f27f3e9174fbe119f7269a487b31750c322836d45fe21a1", "sticker": null, "text": "why?", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": "a94fc89445085abf4486aaf7d323524d1b31e05c2d05639e88f2e1a572215367", "datetime": "2023-06-04T18:42:59+00:00" }, { "message_id": "b01662c0f7c76743eaf0beeb0ee57007cb2a0a31bd4ccab9fdaa7b43ab65b781", "sticker": null, "text": "Java ee is not must to learn before spring boot .\nBut JAVA SE is Java core and needed to control everything in spring project.\n\nBecuase Java SE is written by OOP principles ( inheritance - abstraction - polymorphism - encapsulation )", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "35d6cf901d3b75441820fb7c65ee328f1a28fe65bbb15d8ab19ac5d13e51e351", "datetime": "2023-06-04T18:45:19+00:00" }, { "message_id": "c70f54aadb56ac8ad9b2c3817a2d7148d8b2ecd95b802063dfb7ca2fe5814e3e", "sticker": null, "text": "I said java EE", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": "206eaec5704cdcc545e6e959919c86bb0a7876e0726d4bc9d76a90c98c1e7bdf", "datetime": "2023-06-04T18:47:48+00:00" }, { "message_id": "82b24c638e87737893d44ebb5779eaf06a824d05f0eb0e120b5a08926b39c308", "sticker": null, "text": "mmm thx a lot :D", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": "973fbb07e2e7f7a9bd2b573418ea2d9aedd44b8a6cec46da9ae016f501582b16", "datetime": "2023-06-04T18:56:47+00:00" }, { "message_id": "52527a9f85ee3be19730048321ac1d1a47e7d7df1b127c273c0983c6eddc6a68", "sticker": null, "text": "Hello everyone", "from_id": "4ac958bf4cd1d088bf242670dbabca754ceda70358ab4c97f1376e3c13790337", "reply_to": null, "datetime": "2023-06-04T19:07:23+00:00" }, { "message_id": "2e62970c2b94d405e4858f70ac601a53370273fcdf5d0aa04bd70c48c7e40ba9", "sticker": null, "text": "helo", "from_id": "c2ad99f72bf9949fd71c28c5727a6225bd6991c426d45636ed567503c05f2900", "reply_to": null, "datetime": "2023-06-04T19:10:01+00:00" }, { "message_id": "a740782a13d9af79743b068e558038ed2a00ea8cc8668aed8aea35feeeb3ae63", "sticker": null, "text": "Yeah", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "7ff55f6330dbbd6462853a1c8bc7cd3fb211358c725fb41a8f188d62d740d51c", "datetime": "2023-06-04T19:38:25+00:00" }, { "message_id": "27686e47395575919911f80e07890b1bad7d60ed2ea803fec472d7cd0c4b106c", "sticker": null, "text": "I want to create an ATM model", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "ac26ba5a49d22af4d5274b0580d44cc2505aaf91a42d24e7e5e30449392fc314", "datetime": "2023-06-04T19:38:52+00:00" }, { "message_id": "13f1435bb9979765f51e9bdd3893b20f2f43c111d144099b2aa85528200da41b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-06-04T20:01:11+00:00" }, { "message_id": "78c04aed5b15fb0b1a3bcf5f63fc27f821e867472c5fe52ac4ab3ac2b8e9e3b2", "sticker": null, "text": "Hello everyone", "from_id": "a39dea04836f43291982e720e45e9d8906435eab8b6c78a6b804162e34cc59e4", "reply_to": null, "datetime": "2023-06-06T18:45:37+00:00" }, { "message_id": "23c8bae9ee9665a5e860f09432c8b8ecb20f7089b5ea3c9173318d403673da4a", "sticker": null, "text": "Hello", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "78c04aed5b15fb0b1a3bcf5f63fc27f821e867472c5fe52ac4ab3ac2b8e9e3b2", "datetime": "2023-06-06T21:49:33+00:00" }, { "message_id": "8fdb12aab9098a86ea7fa31fa6b5ac8eb7b9d13c9c18f7e86402b6fa6c58da8f", "sticker": null, "text": "Lovely technology", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": "6fd51cfa5dd0022ae45d3a751786179b0345aa92bbff0aa7e1a3c24a28e2bac0", "datetime": "2023-06-07T09:10:24+00:00" }, { "message_id": "38e5ccd65e8abc06c9f8dc8acd1b83ba54b01ffec9deda50de0c0201a6b3d04b", "sticker": null, "text": "Hi i have a question", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-06-07T18:28:27+00:00" }, { "message_id": "ae8902b59688f802457b6ec0e535ae304e2aef07189dcd589b4134a195bc7b16", "sticker": null, "text": "i open the dialog on the adapter and do the Firebase operation, and then when I dismiss the dialog, the dialog does not close and returns to the previous activity", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-06-07T18:29:18+00:00" }, { "message_id": "0b9f7b84368bbe970070a255b7941131af36a831a1eaf3eeccd5a720e3eba279", "sticker": null, "text": "how can I fix this I want it to stay the same activity", "from_id": "ce4d1b9a5ae5e74aa91c0c26d0c559bf7b3f9bd6bffde8e967ba1db7443ade86", "reply_to": null, "datetime": "2023-06-07T18:29:43+00:00" }, { "message_id": "3f6820353c0c2f8af3c773571d9bbf775e092c2a7c8441fbe3b69f3139157cd4", "sticker": null, "text": "If admin does not answer me \nI will leave the group \n( In 2 houres )", "from_id": "4fe16836c77ce69013df918bcecd2f32118a248b55be09333e2b05b207a24769", "reply_to": null, "datetime": "2023-06-07T22:29:14+00:00" }, { "message_id": "dd3055c1137537c3ed3e12e258d50a150604758df7a1dd7f726832f824348a3e", "sticker": null, "text": "/stat@#USER", "from_id": "67e37fe838a0caa9b30693cc8f70ed8f79a970d3458c4b19536811433aa72d87", "reply_to": "3f6820353c0c2f8af3c773571d9bbf775e092c2a7c8441fbe3b69f3139157cd4", "datetime": "2023-06-07T22:32:33+00:00" }, { "message_id": "7dc74beccf61154bc6a14ab01294a42a790c4daea2bd66a37223ab833645a151", "sticker": null, "text": "Total messages: 122363", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-06-07T23:01:04+00:00" }, { "message_id": "133bbd185cc2a8701b62d225555984973bedece64d05fc9b871cf410aca4d498", "sticker": null, "text": "/stat@#USER", "from_id": "b79a72308ca2a98688291a3af265736939d8cf00499b5b5a59062a838be47f68", "reply_to": null, "datetime": "2023-06-10T13:51:01+00:00" }, { "message_id": "9d836f4f5fec93f13096931b9800fd550916eb29319fa24b81738480d244783e", "sticker": null, "text": "Total messages: 122486", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-06-10T13:51:01+00:00" }, { "message_id": "26b38775046648fd7c3b3394c38f227ec925b72b28d3c507ba50323b6bb41a4c", "sticker": null, "text": "hello?", "from_id": "c14b707b39cc6349288d556a47cf21f01b6966b9b5231687caffd9f0798ab204", "reply_to": null, "datetime": "2023-06-10T19:09:07+00:00" }, { "message_id": "15ded18f759cb8303779384aaca05b7f0f8abb5103475cc0783034a1a900a622", "sticker": null, "text": "!Hello", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "26b38775046648fd7c3b3394c38f227ec925b72b28d3c507ba50323b6bb41a4c", "datetime": "2023-06-10T19:10:17+00:00" }, { "message_id": "392d5f5406d3225ee1585d7d93d4c7e3ba076348eca30e2ca106b0b415c39493", "sticker": null, "text": "Hi", "from_id": "4cf10732b5a73b8b65fadd885a26192b0b0b6570eb6edec0e83d3f3cddfc86a5", "reply_to": null, "datetime": "2023-06-11T03:40:59+00:00" }, { "message_id": "b7cd766cadc081d65384b89588417e1aab2686c01ed37b3f3d483d9f830a3f3b", "sticker": null, "text": "Hi", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "392d5f5406d3225ee1585d7d93d4c7e3ba076348eca30e2ca106b0b415c39493", "datetime": "2023-06-11T08:02:33+00:00" }, { "message_id": "6f73f54c20a6bc59e51b5797263ecd13b7f46699b547c1604eeefae794e9c31c", "sticker": null, "text": "Yeah.. Dm me.. Lemme sort you out", "from_id": "f1af798598f90156953587b139f1136b3b1afa894d0840842643d087f7805ac4", "reply_to": "b799f57784874259863bd2abf95501e5f96c82d4250658554a04677c24f40812", "datetime": "2023-06-11T10:20:53+00:00" }, { "message_id": "6b2b49f93e94620da8d63ab8cb44d556a7f602d99c83bca681ca4af47cf33a22", "sticker": null, "text": "Are there any books that include output questions in Java?", "from_id": "227db9ec2a3a56183b9c2c03a0578638206402ded8dee73b6601de3a8e85d7c3", "reply_to": null, "datetime": "2023-06-11T15:17:49+00:00" }, { "message_id": "99e718765e0e9c5a3217d7fe32267bb91e4f946a6cabcb7170716ac72fc30d9b", "sticker": null, "text": "Sorry bro I don't have", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "cec3501ba28cbc16269a7e549c2c60c7b71d18198eecdab12df7470d49be9136", "datetime": "2023-06-13T15:17:35+00:00" }, { "message_id": "f1c081315c406477306eb5c34824df132d855867552e17136104a24b573294c4", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "032bda6c3d8346d9c2322249fc932dcd56e7f5dd09ad305c5e47588fa3b96057", "reply_to": null, "datetime": "2023-06-13T18:31:03+00:00" }, { "message_id": "826dd5881958ca05830ad7cb191b61b8a8fdb393e64af2087a69e6056bffa1b6", "sticker": null, "text": "Anyone with javaEE documentation please 🥺🥺?", "from_id": "c0367f03873ffc8e16bf5a2c2795975bbf0ff3f2e72ea1f582eb33cd3ddc375b", "reply_to": null, "datetime": "2023-06-14T05:15:49+00:00" }, { "message_id": "c081eb6abd6642716ef30df3435935fceac37a01164c93758a9e356d59672b85", "sticker": null, "text": "Hi", "from_id": "f0a5367ede8c067af21e84592dbc50047e9fceda59b15bafd06104bb17400ee1", "reply_to": null, "datetime": "2023-06-14T06:45:42+00:00" }, { "message_id": "423804060edd8eb6e2f6ed9d93e69a446387a2ea37da41034b229434646d2e78", "sticker": null, "text": "I want to create a program can anyone help me", "from_id": "f0a5367ede8c067af21e84592dbc50047e9fceda59b15bafd06104bb17400ee1", "reply_to": null, "datetime": "2023-06-14T06:46:17+00:00" }, { "message_id": "a7cc13e7179aee42d55d23d6633600af567fda6fc95841ce910278b22676fd66", "sticker": null, "text": "Dm me", "from_id": "f0a5367ede8c067af21e84592dbc50047e9fceda59b15bafd06104bb17400ee1", "reply_to": null, "datetime": "2023-06-14T06:46:20+00:00" }, { "message_id": "9feb1ffd01f09d608c6a17f89bd8b54503f62c82e6f79bb5bde6ade71c6c0f6d", "sticker": null, "text": "Few Minutes to go for the Live Session TODAY.\n\nSpring Boot & MicroServices @ 08:00 PM\nby Mr.Vijay Kumar\n\nDemo Link: zoom.us/j/81258252317\n\n-\nNaresh i Technologies", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2023-06-14T14:32:51+00:00" }, { "message_id": "79e98298620921300db517efb8afb02bda19ef45f92c7645c796cf2c0d69d674", "sticker": null, "text": "Anybody wants : \n1. Pushkar Raj Thakur - Fast Track Millionaire Course \n2. Pushkar Raj Thakur - Bang on one Course \n3.Kundan Kishore - Full Stock market Course \n4. Full Graphic Design Udemy Course\n5. HBA Service - Fiverr Mastery Course \n6. Dropshipping course\n7. SEO Course\n8. Mahatmaji Technical - Digital marketing course \n\n•And many more such courses\n\nIf anyone wants any of the above course DM me\nEach course price is only ₹199 and it can change your life", "from_id": "032bda6c3d8346d9c2322249fc932dcd56e7f5dd09ad305c5e47588fa3b96057", "reply_to": null, "datetime": "2023-06-15T07:20:23+00:00" }, { "message_id": "4ca4ea1ad56b1d40ec974ed1cfbe6a9febb0915e9c57c3d04c499cb8ebeecc4c", "sticker": null, "text": "te.me/JSPJAVA", "from_id": "1f9cc1f2a66aa92b9fbb9abc2be7136b0c5578ff214413dfa63ce94849378934", "reply_to": null, "datetime": "2023-06-16T06:01:51+00:00" }, { "message_id": "9b31ecf022e8f92d336b5425bef30ac7e5c2e76d6b4ad8a92ce281ac0cf786ba", "sticker": null, "text": "**JOB OPENING - Java Software Engineer\n\n**Experience 4+ years in -Skillset Java and JavaScript, React ( Python added advantage )r #JOBLISTING #JOBPOSTING\n\n**Location : Bangalore, Chennai, Gurugram** \n\nKindly message me if interested.", "from_id": "e53dead525a7672bfa13ca8d1c68f972b0ecb7bc981ea04783f267f87c4214e8", "reply_to": null, "datetime": "2023-06-16T12:17:47+00:00" }, { "message_id": "9313c4067f3296768592be38636f4108d9d4c5981d801b1cc56b685c0c3bf25f", "sticker": null, "text": "Hi", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "0d2fa16a989bfab2e32cb52a6773ded58b9d28b9e0fd1e07c00210a10c39a9cc", "datetime": "2023-06-16T13:42:44+00:00" }, { "message_id": "476601c04d633cad5d47d8d11cff175fd84d1550d262e1fd5f73fc9804d112aa", "sticker": null, "text": "No am not", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "82c4de013af381c42f3ea6cdc3a4603e772d1d74b720d38486159fcb32e26bca", "datetime": "2023-06-16T13:48:35+00:00" }, { "message_id": "2a9ed6284e7a45fbd52db734f9408ea2f37a834585187ad6c85b04de6bd02ec3", "sticker": null, "text": "🤦‍♀🤦‍♀", "from_id": "1068412135789ff38b4f863fce75d2affbb76c46fa37a1d1bf81885dc52c7d78", "reply_to": "476601c04d633cad5d47d8d11cff175fd84d1550d262e1fd5f73fc9804d112aa", "datetime": "2023-06-16T13:48:50+00:00" }, { "message_id": "536d6072cbb7bfd621a47190aad5e91d5ee4547261a948e6a787becf3e4ccb69", "sticker": null, "text": "What?", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "2a9ed6284e7a45fbd52db734f9408ea2f37a834585187ad6c85b04de6bd02ec3", "datetime": "2023-06-16T13:49:04+00:00" }, { "message_id": "d033ff8cb9737066a1c4ddf10b080f2a1de09fcc364144b3d7d36b2dbbc4990b", "sticker": null, "text": "Nothing", "from_id": "1068412135789ff38b4f863fce75d2affbb76c46fa37a1d1bf81885dc52c7d78", "reply_to": null, "datetime": "2023-06-16T13:49:10+00:00" }, { "message_id": "587ff5005de1f5aafbab1512e7914a9bf2afba2e83ebce9c7845ce9a865e7ce8", "sticker": null, "text": "Do you know html css", "from_id": "1068412135789ff38b4f863fce75d2affbb76c46fa37a1d1bf81885dc52c7d78", "reply_to": "536d6072cbb7bfd621a47190aad5e91d5ee4547261a948e6a787becf3e4ccb69", "datetime": "2023-06-16T14:03:05+00:00" }, { "message_id": "e1b386a36e97920e9f3d2dba1bd2a3b16a981b04f88ba6e76c94ef37244f650b", "sticker": null, "text": "Yeah", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "587ff5005de1f5aafbab1512e7914a9bf2afba2e83ebce9c7845ce9a865e7ce8", "datetime": "2023-06-16T14:03:54+00:00" }, { "message_id": "8ff54998f240cf954dc3aac63d2da6eb8f1d09a94f6820e6841f9db6e4d63661", "sticker": null, "text": "Hey, is anyone here learning Machine Learning?", "from_id": "88b8ee5ea2a2340e32301bfb3a38e33a9de4a13056a761d00cd4e55d460e9655", "reply_to": null, "datetime": "2023-06-17T07:01:38+00:00" }, { "message_id": "2d00c701be43b729df8def50a20be2b559fa994c04cb3edc254aea8f7bfebd62", "sticker": null, "text": "Also, if anyone knows of any channels where I can connect with people and ask doubts regarding Machine Learning, please suggest me.", "from_id": "88b8ee5ea2a2340e32301bfb3a38e33a9de4a13056a761d00cd4e55d460e9655", "reply_to": null, "datetime": "2023-06-17T07:06:07+00:00" }, { "message_id": "a01743dbfa2e32f7380b6e219582920fb2ff357e5fbace0f047828b6a801c737", "sticker": null, "text": "Hello\nI want to work on websites frontend online", "from_id": "2dfb9d340361a37c39fd71e99b708aba1488f96efac41fa799afb5f988b9da1b", "reply_to": null, "datetime": "2023-06-17T07:24:07+00:00" }, { "message_id": "4a33768a825654f194fb99cff0a3ef10a139664f35296abb78171215c0a1b95b", "sticker": null, "text": "I am starting from 0 in java fullstack, my goal is home office. I am going to study more than 6hrs/day. How many time will i need to get a job as java developer?", "from_id": "67fa68bc082b17143e73e58de38aec655b75247a9b0ac421daada9163e06f09c", "reply_to": null, "datetime": "2023-06-18T03:47:35+00:00" }, { "message_id": "2b7f2d9dcadc7fb1ed26b710ee798cb2ac483bd83fad4b690e91500e29be4e10", "sticker": null, "text": "Yes", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "4a33768a825654f194fb99cff0a3ef10a139664f35296abb78171215c0a1b95b", "datetime": "2023-06-18T03:53:11+00:00" }, { "message_id": "16374d1834bc9c56356316ea967598cf47a8ad7d4fb75cb1535b79779ef4be3b", "sticker": null, "text": "Yes what???", "from_id": "67fa68bc082b17143e73e58de38aec655b75247a9b0ac421daada9163e06f09c", "reply_to": null, "datetime": "2023-06-18T03:54:09+00:00" }, { "message_id": "512f3adc3c62a65886f6187dca187c08bf6dc9e25fdd1c63c304ed754c9e251c", "sticker": null, "text": "**JOB OPENING - Java Software Engineer\n\n**Experience 4+ years in -Skillset Java and JavaScript, React ( Python added advantage )r #JOBLISTING #JOBPOSTING\n\n**Location : Bangalore, Chennai, Gurugram** \n\nKindly message me if interested.", "from_id": "e53dead525a7672bfa13ca8d1c68f972b0ecb7bc981ea04783f267f87c4214e8", "reply_to": null, "datetime": "2023-06-18T03:54:53+00:00" }, { "message_id": "bcecc53fb9a31d9057efcaa29d4e35cfb7e613a0e35c4a81b5c3aded5a4abdb5", "sticker": null, "text": "At least 200 hours, there are some crash courses.", "from_id": "a1a717475e9c26afe275055e773fd1ff06b977d724c1f703803dd08e7cfd065c", "reply_to": "4a33768a825654f194fb99cff0a3ef10a139664f35296abb78171215c0a1b95b", "datetime": "2023-06-18T03:56:14+00:00" }, { "message_id": "3f7ca8da5cb542f5af4e524639eee687653a3589e5735c8750bbe9fd5af23789", "sticker": null, "text": "200 hours seems too litle. Are you really a dev?", "from_id": "67fa68bc082b17143e73e58de38aec655b75247a9b0ac421daada9163e06f09c", "reply_to": "bcecc53fb9a31d9057efcaa29d4e35cfb7e613a0e35c4a81b5c3aded5a4abdb5", "datetime": "2023-06-18T03:58:02+00:00" }, { "message_id": "ce8ab1213f97367de087820218196b4f7ba172ccd540b589e0daf967b5b0473e", "sticker": null, "text": "I'm not. I just saw some crash courses in java on the Internet.", "from_id": "a1a717475e9c26afe275055e773fd1ff06b977d724c1f703803dd08e7cfd065c", "reply_to": null, "datetime": "2023-06-18T03:58:44+00:00" }, { "message_id": "6617fdea110346be9a5b9d5475143b5af074b46eb760437add0ea9df28fd2a57", "sticker": null, "text": "😂😂😂", "from_id": "67fa68bc082b17143e73e58de38aec655b75247a9b0ac421daada9163e06f09c", "reply_to": null, "datetime": "2023-06-18T03:59:00+00:00" }, { "message_id": "27c6965e1ce86d5ce95b0a7d7da886161273aa95df86b56301553e1e5f4f35cd", "sticker": null, "text": "....", "from_id": "a1a717475e9c26afe275055e773fd1ff06b977d724c1f703803dd08e7cfd065c", "reply_to": null, "datetime": "2023-06-18T03:59:08+00:00" }, { "message_id": "aacfc059df655a9e52daafd04b58495cf1e24b94ef3e072f31321356bc4a79a9", "sticker": null, "text": "I live in China. A few years ago, the programmer industry was a high-paying job in China, but recently this industry began to lay off employees on a large scale, and I gave up my plan to learn computer programming languages such as java.", "from_id": "a1a717475e9c26afe275055e773fd1ff06b977d724c1f703803dd08e7cfd065c", "reply_to": null, "datetime": "2023-06-18T04:00:00+00:00" }, { "message_id": "4e37716abe31f58a0036d7c4aad017e5c9aeeb2627062261faa45944785ed589", "sticker": null, "text": "A never had opportunity to talk with a chinese person, can i send a private message to you with randon questions about China?", "from_id": "67fa68bc082b17143e73e58de38aec655b75247a9b0ac421daada9163e06f09c", "reply_to": "aacfc059df655a9e52daafd04b58495cf1e24b94ef3e072f31321356bc4a79a9", "datetime": "2023-06-18T04:03:06+00:00" }, { "message_id": "bff0f0a16156a3fc985dfce15ad5f44419dd374e6ca607b29c2b5bb8de1d58bb", "sticker": null, "text": "I*", "from_id": "67fa68bc082b17143e73e58de38aec655b75247a9b0ac421daada9163e06f09c", "reply_to": null, "datetime": "2023-06-18T04:19:28+00:00" }, { "message_id": "e336ae9429ba3ea2ef5af7a41c92002881c8d1378335f09cf9229bc4f0e0bbc2", "sticker": null, "text": "yes", "from_id": "a1a717475e9c26afe275055e773fd1ff06b977d724c1f703803dd08e7cfd065c", "reply_to": "4e37716abe31f58a0036d7c4aad017e5c9aeeb2627062261faa45944785ed589", "datetime": "2023-06-18T04:28:12+00:00" }, { "message_id": "242b5365832cd1b7c75903e9e66f2f68abea722352c717f643a7d418aab85c1b", "sticker": null, "text": "Can anyone help me with an assignment tasked to create a registration and login application, when successful logged in user can add tasks, show report or quit", "from_id": "8fb78e5a4cb334b2e5db384a3e159bd644dcc44c7d3cd2bca1d818b1f0fc5cc5", "reply_to": null, "datetime": "2023-06-19T05:50:47+00:00" }, { "message_id": "fcc284a89f9b63365328ee981613b4a217c94f15e60e149e0facfadc510ad113", "sticker": null, "text": "You will be using io right?", "from_id": "8aadf0bb14273129125647a4bb5af41494a3b6b21c18d76fa23d13605cfd4756", "reply_to": "242b5365832cd1b7c75903e9e66f2f68abea722352c717f643a7d418aab85c1b", "datetime": "2023-06-19T10:47:19+00:00" }, { "message_id": "6ca9733cd6c0a6b9b26e5a60d839195ed9d233729716be507415f8b8206b5c1e", "sticker": null, "text": "Yes", "from_id": "8fb78e5a4cb334b2e5db384a3e159bd644dcc44c7d3cd2bca1d818b1f0fc5cc5", "reply_to": null, "datetime": "2023-06-19T10:47:32+00:00" }, { "message_id": "dfe703eb602cf3964b78e472b44ffe4ddb8e3c971f59483575e6cf9eedc0a91d", "sticker": null, "text": "Create a class named person with a username and password\nCreate an object file who's composed by a HashMap where the key is the username and the value the password", "from_id": "8aadf0bb14273129125647a4bb5af41494a3b6b21c18d76fa23d13605cfd4756", "reply_to": null, "datetime": "2023-06-19T10:48:34+00:00" }, { "message_id": "b3ad6e47b4f7aa1a208559de52886d7a3da063bba43799fcd388c14d885e9f58", "sticker": null, "text": "And save the HashMap on the file on disk", "from_id": "8aadf0bb14273129125647a4bb5af41494a3b6b21c18d76fa23d13605cfd4756", "reply_to": null, "datetime": "2023-06-19T10:48:49+00:00" }, { "message_id": "c87672465754bd1ccf509da1f23991caed1a515e160735527799d9863a0442b3", "sticker": null, "text": "import java.util.Scanner;\n\npublic class practice {\n\npublic static void main(String[] args )\n{\n StringBuilder sb = new StringBuilder (\"hello\");\nSystem.out.println(sb.setCharAt( 2,'w'));\n\n}", "from_id": "65308186c5dc575feb3947d56f7199c7876576f28e29f178eb33193874285439", "reply_to": null, "datetime": "2023-06-19T15:41:14+00:00" }, { "message_id": "e20e5c6a8217ad29f09eb3c8b9f2fd4c91e846c2a0d9ba54d7182542ddc24e6c", "sticker": null, "text": "Why i am getting syntax error in this code?", "from_id": "65308186c5dc575feb3947d56f7199c7876576f28e29f178eb33193874285439", "reply_to": "c87672465754bd1ccf509da1f23991caed1a515e160735527799d9863a0442b3", "datetime": "2023-06-19T15:41:42+00:00" }, { "message_id": "14790646c8c6020336d06d000171d74fcdffef6307d56f63e9996ac0851e90ed", "sticker": null, "text": "Me idk sorry", "from_id": "8aadf0bb14273129125647a4bb5af41494a3b6b21c18d76fa23d13605cfd4756", "reply_to": null, "datetime": "2023-06-19T15:48:43+00:00" }, { "message_id": "54d0e65c9210e1013305d45f7f0a40673c7dce2c3b45b1b75189be68b12dace2", "sticker": null, "text": "int C_RfQResponseLine_ID = line.getC_RfQResponseLine_ID();\n List responseLineQtys = new Query(line.getCtx(), MRfQResponseLineQty.Table_Name, \"C_RfQResponseLine_ID = ?\", line.get_TrxName())\n .setParameters(C_RfQResponseLine_ID)\n .list();\n for (MRfQResponseLineQty responseLineQty : responseLineQtys) {\n int C_RfQResponseLineQty_ID = responseLineQty.getC_RfQResponseLineQty_ID();\n \n String sql = \"SELECT Price \" +\n \"FROM C_RfQResponseLineQty \" +\n \"WHERE C_RfQResponseLineQty_ID = ?\";\n BigDecimal price = DB.getSQLValueBD(responseLineQty.get_TrxName(), sql, C_RfQResponseLineQty_ID);\n BigDecimal Price = responseLineQty.getPrice();\n responseLineQty.set_ValueOfColumn(\"LastPOPrice\", Price);\n\n\nanyone can help me? so i want to get value Price from rfqresponselineqty with the same business partner and same product then set it in LastPOPrice, but I still cant get the Price Value\n responseLineQty.saveEx();", "from_id": "1b439fd7f77c4636777cfa3523740d5075ff7eae4bba6cc44dbf5c8a8fa428a3", "reply_to": null, "datetime": "2023-06-21T05:53:05+00:00" }, { "message_id": "c6398754939a3da892d854c658f66aac2d6e2a4133609ea5f17a178531fd4477", "sticker": null, "text": "thanks in advance", "from_id": "1b439fd7f77c4636777cfa3523740d5075ff7eae4bba6cc44dbf5c8a8fa428a3", "reply_to": null, "datetime": "2023-06-21T05:53:46+00:00" }, { "message_id": "a07ee7991d1b1b2ea41cd5fff157ce8ca37afb9b9fe9129b498012c26e220955", "sticker": null, "text": "Hello everybody", "from_id": "bfa15ff127a9daa5ad3352c1aa63e62f023ba4e8cc1aa58a07088f628b7bf255", "reply_to": null, "datetime": "2023-06-21T13:40:57+00:00" }, { "message_id": "e40296a651442d7f554cfca600d6d42088b7f2d6ab4f3957bffa6b87d79d4cb6", "sticker": null, "text": "I need help for my project", "from_id": "bfa15ff127a9daa5ad3352c1aa63e62f023ba4e8cc1aa58a07088f628b7bf255", "reply_to": null, "datetime": "2023-06-21T13:41:09+00:00" }, { "message_id": "107cdd8123b0b3075aedb98f0b5df10f31cfdc99cc849848f92c9edd32f85248", "sticker": null, "text": "is there anyone who can help", "from_id": "bfa15ff127a9daa5ad3352c1aa63e62f023ba4e8cc1aa58a07088f628b7bf255", "reply_to": null, "datetime": "2023-06-21T13:41:34+00:00" }, { "message_id": "67d027d0da48eedd89d00d85ab3280d4ea5ec27d24fd8e306bb2b9f4e4f35460", "sticker": null, "text": "anyone know active direction", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2023-06-21T13:44:28+00:00" }, { "message_id": "11b2b6fb88257feeaa89604fd2b43f3ce408ca76997a6f941fdfffb32055994d", "sticker": null, "text": "Anyone here need Jspider java full stack course ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": null, "datetime": "2023-06-21T15:07:53+00:00" }, { "message_id": "437336c30d62f79fde073464f4d4ad89419d6a0e0fe76009e0e07af8612a6cab", "sticker": null, "text": "is of type void setCharAt cannot return a value", "from_id": "f831bb1778f878c5975e00488b66e96f93c30208a33ecb8109aa61c6b860ce8c", "reply_to": "e20e5c6a8217ad29f09eb3c8b9f2fd4c91e846c2a0d9ba54d7182542ddc24e6c", "datetime": "2023-06-21T20:57:52+00:00" }, { "message_id": "609f5854c7f5f95d7772298a5b7e1ab4f2fd453d115327a247cb52fa9c9d3fb4", "sticker": null, "text": "Hi ,does anyone know how to start programming way without using money ?", "from_id": "0a6f1db3a8de3724578f0172ba6564165d02bac85a07b1e75988c10d57f78a27", "reply_to": null, "datetime": "2023-06-22T09:51:35+00:00" }, { "message_id": "9f9cbd5a48b099ede9ce06fa19945b8f0db07c9ff09a4ac16578c9813ba2fe28", "sticker": null, "text": "Maybe any good links ,or sites to help to master", "from_id": "0a6f1db3a8de3724578f0172ba6564165d02bac85a07b1e75988c10d57f78a27", "reply_to": null, "datetime": "2023-06-22T09:51:56+00:00" }, { "message_id": "afd55f91f3f413e6473158ce6b3bd15fc2e37008c99909987aff18b5b4284436", "sticker": null, "text": "Programming for free ,java or python", "from_id": "0a6f1db3a8de3724578f0172ba6564165d02bac85a07b1e75988c10d57f78a27", "reply_to": null, "datetime": "2023-06-22T09:52:21+00:00" }, { "message_id": "0f6130b0d27a67ce3c20022ee667c65f2e6398e62d7af13ef47c65b40d2ddb1d", "sticker": null, "text": "?", "from_id": "0a6f1db3a8de3724578f0172ba6564165d02bac85a07b1e75988c10d57f78a27", "reply_to": null, "datetime": "2023-06-22T09:52:25+00:00" }, { "message_id": "9afcddb28e06016cab1db8de778de9efe4f96464aa783d28133b0d3698b1c68b", "sticker": null, "text": "Else java - books", "from_id": "b280b0fbb902827b192d72eae90615e483ed8e85f7bcfd90b38d798218fe0a8d", "reply_to": "afd55f91f3f413e6473158ce6b3bd15fc2e37008c99909987aff18b5b4284436", "datetime": "2023-06-22T09:54:37+00:00" }, { "message_id": "2f71c1b121e2bce72592eb051cacb77f29ffb938d10015289c8200fda1bced32", "sticker": null, "text": "I need just some basic knowledge enough to work as programmer", "from_id": "0a6f1db3a8de3724578f0172ba6564165d02bac85a07b1e75988c10d57f78a27", "reply_to": null, "datetime": "2023-06-22T09:56:02+00:00" }, { "message_id": "8e9dbd2ee234f37a61387eaf74ae3fffc7a3de8d2f0471b2911b56e399f35cb7", "sticker": null, "text": "Maybe someone could help with it", "from_id": "0a6f1db3a8de3724578f0172ba6564165d02bac85a07b1e75988c10d57f78a27", "reply_to": null, "datetime": "2023-06-22T09:56:28+00:00" }, { "message_id": "7823bc88467615e7c3abe61d7da237373dc4b750bfa5bc1c60d61bba3b2ef967", "sticker": null, "text": "`Please guide me i generated java html code using springboot and thymeleaf. the logic of the code is that when the customer successfully logs in the customer username will be displayed on the dashboard page question when I successfully logged in and was directed to the dashboard page but the user username did not appear on the dashboard page`", "from_id": "b8e068c7ef22297f762a42b14290acd44a60cb69e6f9e59052a6d644c9cc8a08", "reply_to": null, "datetime": "2023-06-22T17:09:50+00:00" }, { "message_id": "19db0dded5192e5d6e8d6a8204f49ba967f1dba14d0bd22a591ae9dbca5ebfb1", "sticker": null, "text": "Marikoness", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": null, "datetime": "2023-06-23T02:40:26+00:00" }, { "message_id": "6ac1649a931a7f3b31c1401d954c0335655f086a12c5934926e871401bdcc525", "sticker": null, "text": "Good morning all. Keep doing programming", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": null, "datetime": "2023-06-24T00:17:31+00:00" }, { "message_id": "325b06c1b970f19e188fe5be88ee311c95e9521797c31a3a9d11fe77b7b166a1", "sticker": null, "text": "If anyone want start carries in it field contact me i have a experience of 4 years in this field genuine person only", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2023-06-24T12:38:03+00:00" }, { "message_id": "eaf8d63bfb1b56af4204e925cb2f1dd7f2d7698774773ea9ff609cccb3e6cad2", "sticker": null, "text": "Hi everyone! 👋\n\nMy name is Mirco and I am an expert in Java programming. If you need any kind of Java help or advice, don't hesitate to contact me! I'm here to offer my support and share my skills with those in need. 💪💻\n\n🔧 Services Offered:\n- Assistance in troubleshooting problems and bugs in Java code.\n- Consulting on the design and implementation of Java solutions.\n- Support in writing and optimizing Java code.\n- Review and analysis of existing code to identify possible improvements.\n- Explanation of complex Java concepts and clarification of doubts. 🚀🔍\n\n🔑 Key Competences:\n- Extensive experience in Java programming.\n- In-depth knowledge of Java best practices and design patterns.\n- Ability to solve problems efficiently and creatively.\n- Excellent communication skills and ability to explain complex concepts in a clear and accessible way.\n- Patient approach and willingness to adapt to individual needs. 💡📚\n\nIf you're a programming student who needs extra help, a professional facing a complex challenge, or just someone looking to improve their Java skills, I'm here for you! 🙌\n\nThank you,\nMirco", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": null, "datetime": "2023-06-25T07:33:27+00:00" }, { "message_id": "591d8e65984adf47bd21bd9ef4b8f8c2b2d1617547520998a24f6d0d951d1c4d", "sticker": null, "text": "```int C_RfQResponseLine_ID = linea.getC_RfQResponseLine_ID();\nList responseLineQtys = new Query(line.getCtx(), MRfQResponseLineQty.Table_Name, \"C_RfQResponseLine_ID = ?\", line.get_TrxName())\n .setParameters(C_RfQResponseLine_ID)\n .list();\n\nfor (MRfQResponseLineQty responseLineQty : responseLineQtys) {\n int C_RfQResponseLineQty_ID = responseLineQty.getC_RfQResponseLineQty_ID();\n\n String sql = \"SELECT price \" +\n \"FROM C_RfQResponseLineQty \" +\n \"WHERE C_RfQResponseLineQty_ID = ?\";\n BigDecimal price = DB.getSQLValueBD(responseLineQty.get_TrxName(), sql, C_RfQResponseLineQty_ID);\n \n // Check if the price is valid\n if (price != null) {\n responseLineQty.set_ValueOfColumn(\"LastPOPrice\", price);\n responseLineQty.saveEx();\n }\n}```", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": "54d0e65c9210e1013305d45f7f0a40673c7dce2c3b45b1b75189be68b12dace2", "datetime": "2023-06-25T07:45:18+00:00" }, { "message_id": "b8957f177d7b214180076fbb731b4bc541d9c6b61a8f9e5f303f12e853b6c4f9", "sticker": null, "text": "Let me know😊", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": "54d0e65c9210e1013305d45f7f0a40673c7dce2c3b45b1b75189be68b12dace2", "datetime": "2023-06-25T07:46:21+00:00" }, { "message_id": "b7dbab65222a548016d8ee71cd79baa2cbb04af76bf7bf11264ddaafef784a55", "sticker": null, "text": "import java.util.Scanner;\n\npublic class practice {\n public static void main(String[] args) {\n StringBuilder sb = new StringBuilder(\"hello\");\n sb.setCharAt(2, 'w');\n System.out.println(sb);\n }\n}", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "c87672465754bd1ccf509da1f23991caed1a515e160735527799d9863a0442b3", "datetime": "2023-06-26T05:02:15+00:00" }, { "message_id": "3d75e92b223e6c1410a87bd616e87354d0450a591c900ead4f15b03622a4f84b", "sticker": null, "text": "It'll print\n\nHewlo", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "b7dbab65222a548016d8ee71cd79baa2cbb04af76bf7bf11264ddaafef784a55", "datetime": "2023-06-26T05:02:44+00:00" }, { "message_id": "7e32185ce025ff9429111e891e0ac5987d75c377cc0c472cdff5676d18e90006", "sticker": null, "text": "Hello", "from_id": "058df0d338d40bc4b003d2c0cb2a4515dc7befe8e5fed4d5098ee900039cfb88", "reply_to": null, "datetime": "2023-06-26T11:10:58+00:00" }, { "message_id": "807b1d61285244005c6e166749ce5e50e63cd78296fba144691670df7fa33ac7", "sticker": null, "text": "It's true why are you wondering?", "from_id": "15877ea9ad6bd5cf972883058d98eaaedaf9a66c2470d13d0e7288de078bcc7c", "reply_to": "3d75e92b223e6c1410a87bd616e87354d0450a591c900ead4f15b03622a4f84b", "datetime": "2023-06-26T17:06:58+00:00" }, { "message_id": "c7a11b3be8474b815dda24a66aaf0109ca46056a08c84795e39f8e1cdcd588a6", "sticker": null, "text": "Hello, because the setCharAt() method returns a void object, i.e. it returns no value.\nThen you are trying to print the result of sb.setCharAt(2, 'w'), which is an illegal operation since there is nothing to print.", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": "c87672465754bd1ccf509da1f23991caed1a515e160735527799d9863a0442b3", "datetime": "2023-06-26T20:32:35+00:00" }, { "message_id": "e379052e05b4869bee4098a12c0b8fdb1cfaa0b9b1c5351e1ff24a4f12045125", "sticker": null, "text": "See if this works: ```public class practice {\n public static void main(String[] args) {\n StringBuilder sb = new StringBuilder(\"hello\");\n sb.setCharAt(2, 'w');\n System.out.println(sb.toString());\n }\n}```", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": null, "datetime": "2023-06-26T20:33:34+00:00" }, { "message_id": "923ba12cc882ddcc535801c240ab456378210f196417dfdf48f9603dd68646fb", "sticker": null, "text": "What do you mean?😄", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "807b1d61285244005c6e166749ce5e50e63cd78296fba144691670df7fa33ac7", "datetime": "2023-06-28T04:15:22+00:00" }, { "message_id": "56197afe06bf5962de6228eb6f35772466c0e887285353967cdce6e749158fe0", "sticker": null, "text": "it'll print hewlo because of you have changed char at the 2 index with 'w'. why are you wondering?", "from_id": "15877ea9ad6bd5cf972883058d98eaaedaf9a66c2470d13d0e7288de078bcc7c", "reply_to": "923ba12cc882ddcc535801c240ab456378210f196417dfdf48f9603dd68646fb", "datetime": "2023-06-28T05:14:50+00:00" }, { "message_id": "d20257756f27c1a5f921dd3bbd8393aa50f34c2e7af1e00d322b1bd65950b444", "sticker": null, "text": "Hahaha\nI replied someone's msg...\nLet it be...", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "56197afe06bf5962de6228eb6f35772466c0e887285353967cdce6e749158fe0", "datetime": "2023-06-28T06:22:30+00:00" }, { "message_id": "c8894e3dcc192199aabf9f33c3285bbc7f62505a04232c87f67860739b082a6c", "sticker": null, "text": "I think one year is enough.\nYou must learn java core, spring ecosystems. And some front end skill.\nBut I think if you need to get a job as fast as possible. I think you can learn front end and get a front end job first.", "from_id": "10b569c1c96fec703576a64d14adcfebbc2fff49c96f6468639f8b56ee1b9be1", "reply_to": "4a33768a825654f194fb99cff0a3ef10a139664f35296abb78171215c0a1b95b", "datetime": "2023-06-28T16:49:12+00:00" }, { "message_id": "f7298948225be27bf643ab6ac049c6bf953ab0d6a9513786a49692941142169b", "sticker": null, "text": "9", "from_id": "0ada5b54fc5449e7a5966f659928bf55080d3154bf3d43ec6b094938682cdd5d", "reply_to": null, "datetime": "2023-06-29T01:51:34+00:00" }, { "message_id": "fc65d29ad4b0256151e39f3d2946c5d4a189f5846fbf2a0e416978ff07549c78", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "224ddcad5b6e88ef36ce25f9d8444be6cb675cfd9b96bacdda125271adef2f65", "reply_to": null, "datetime": "2023-07-01T23:28:29+00:00" }, { "message_id": "6d1b173e87b738f5e31a68490c6c6573a3ff62ec62055a1a2dd62b74c2f170e8", "sticker": null, "text": "Anyone please help me to solve my error", "from_id": "1c90e606b77cebf9fd6c410ff183e453e68fc18f49eaa045c026ae298f48b04e", "reply_to": null, "datetime": "2023-07-03T12:18:01+00:00" }, { "message_id": "083d8a54d757d656dcc1a38a512ea66ac9473ee161e99627643accdceb899a66", "sticker": null, "text": "what's your error", "from_id": "f83487896ec677653b8c382af104aed88ab89020ae47369909ef5f95acca112a", "reply_to": "6d1b173e87b738f5e31a68490c6c6573a3ff62ec62055a1a2dd62b74c2f170e8", "datetime": "2023-07-03T12:20:34+00:00" }, { "message_id": "8ce1b544ac0b1682fdfdebe22a1b9d2e6ec6e3d35a09f8cfc730424bb51d676f", "sticker": null, "text": "Few Minutes to go for the Live Session TODAY.\n\nC Language @ 6.00 PM\nby Mr. Srikanth \n\nDemo Link: zoom.us/j/89566136336\n\n-\nNaresh i Technologies", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2023-07-03T12:39:21+00:00" }, { "message_id": "1140583d3205cec681c610f00b6ff9a8dd176a108bd12b16b6db5f9c243b9a47", "sticker": null, "text": "hello everyone, I just started learning java, could someone help me solve my error in a private message", "from_id": "4c5aab1a55ad827b15bdb51c1cda2f833055c5547c4599a85153132da133d9c1", "reply_to": null, "datetime": "2023-07-03T18:46:20+00:00" }, { "message_id": "0c9f4ff13804c8c6e279d8601fc634ab3f0a46148aaa9ceabf9ee12397f39669", "sticker": null, "text": "Is there anybody here who uses Intellij IDEA,\nI need some assistance?", "from_id": "2b4d733d2cfe1ff6cc56d75d6c642a9871ff99d504aedee2f8ae7b6b05980d7b", "reply_to": null, "datetime": "2023-07-03T19:42:43+00:00" }, { "message_id": "6cf0a3a647d893c4691318f32fe4eaf64a65ca0b2e0f2de08a4054887c98dc30", "sticker": null, "text": "Am also a beginner but I would like to help if am able, what's the issue", "from_id": "2b4d733d2cfe1ff6cc56d75d6c642a9871ff99d504aedee2f8ae7b6b05980d7b", "reply_to": "1140583d3205cec681c610f00b6ff9a8dd176a108bd12b16b6db5f9c243b9a47", "datetime": "2023-07-03T19:43:21+00:00" }, { "message_id": "b97acb4fe8a926007ed8895ac852534b97e4dc4ffaa044c05aa07120e30623e9", "sticker": null, "text": "If you think about it, you'll still need money \nTo buy internet but you can use YouTube and w3schools", "from_id": "2b4d733d2cfe1ff6cc56d75d6c642a9871ff99d504aedee2f8ae7b6b05980d7b", "reply_to": "609f5854c7f5f95d7772298a5b7e1ab4f2fd453d115327a247cb52fa9c9d3fb4", "datetime": "2023-07-03T20:53:37+00:00" }, { "message_id": "5db87c2d57ccb49826f5c4dee242e91e553e7f1c91fe960e408607448dff0c7a", "sticker": null, "text": "Can I come to your private box for a chat?", "from_id": "2b4d733d2cfe1ff6cc56d75d6c642a9871ff99d504aedee2f8ae7b6b05980d7b", "reply_to": "eaf8d63bfb1b56af4204e925cb2f1dd7f2d7698774773ea9ff609cccb3e6cad2", "datetime": "2023-07-03T20:55:18+00:00" }, { "message_id": "726897eb6d694f5a55752c8390f3f760615303119c0c0149dde7d7dd78c3c261", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "a08bdc3e1b3b87d2dc78a7c51810753f1970b516732e0007148d6b548c799d14", "reply_to": "609f5854c7f5f95d7772298a5b7e1ab4f2fd453d115327a247cb52fa9c9d3fb4", "datetime": "2023-07-04T07:59:49+00:00" }, { "message_id": "220ff5d8c29045964a75f8b3d12c297971a32c44c631a38367a334626db204b6", "sticker": null, "text": "Bytelegend is java version like rustlings", "from_id": "a08bdc3e1b3b87d2dc78a7c51810753f1970b516732e0007148d6b548c799d14", "reply_to": null, "datetime": "2023-07-04T08:00:50+00:00" }, { "message_id": "cdd39b23cbaae7f58b7118115cb55b5d98645a7de20cca8bb2a03ce4d7e08da2", "sticker": null, "text": "what's the error", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "1140583d3205cec681c610f00b6ff9a8dd176a108bd12b16b6db5f9c243b9a47", "datetime": "2023-07-04T09:03:16+00:00" }, { "message_id": "0ee044a24890796d5e49947a741599f1e86e12268ca82a3d43a83f43bfdb56f6", "sticker": null, "text": "Error:Unknown host services.gradle.org. You may need to adjust the proxy settings in Gradle", "from_id": "2b4d733d2cfe1ff6cc56d75d6c642a9871ff99d504aedee2f8ae7b6b05980d7b", "reply_to": "cdd39b23cbaae7f58b7118115cb55b5d98645a7de20cca8bb2a03ce4d7e08da2", "datetime": "2023-07-04T09:48:29+00:00" }, { "message_id": "ce73ed30af5d9391f5da8b216c6e2f37080360dfc5634620cdbd784e15df4a4d", "sticker": null, "text": "Good morning Fam", "from_id": "f2bab927ff84a37c1b62eebc1f15bca68ee0ff7ce3060644e0c2248693576bb1", "reply_to": null, "datetime": "2023-07-05T07:32:54+00:00" }, { "message_id": "4c1617ee722ec8926ae0f7db0368be2a91032c9fe43e44f3c6bc1b9b224a97d9", "sticker": null, "text": "Please can anyone help me with Java Projects for my end of Sem Exam", "from_id": "f2bab927ff84a37c1b62eebc1f15bca68ee0ff7ce3060644e0c2248693576bb1", "reply_to": null, "datetime": "2023-07-05T07:33:19+00:00" }, { "message_id": "3ca8bf7a61a925f827fe56785f08f8b2961a7108aa5cf7f3c83b9c388a453557", "sticker": null, "text": "Your suggestions will be well welcomed", "from_id": "f2bab927ff84a37c1b62eebc1f15bca68ee0ff7ce3060644e0c2248693576bb1", "reply_to": null, "datetime": "2023-07-05T07:33:30+00:00" }, { "message_id": "0eef3af4b1a1a6645306fc4df21e08e45d7b02ff912cb92a68f5b5b31e711688", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7a61a14d7a8eb869a33c43c1a09ea605a47c7b14a9f601596fcaa66dce382e40", "reply_to": null, "datetime": "2023-07-05T13:05:12+00:00" }, { "message_id": "7dde9bc28cc88130ef37c46c96c1fb4f3f99b72708a1818c14ad8d13509a9e44", "sticker": null, "text": "Yup\nI use it for java codes", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "0c9f4ff13804c8c6e279d8601fc634ab3f0a46148aaa9ceabf9ee12397f39669", "datetime": "2023-07-05T17:42:24+00:00" }, { "message_id": "11646cce15437faf5dfd122cc38fc1911987a721e1197073ac254ddd99577450", "sticker": null, "text": "Yes", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": "1140583d3205cec681c610f00b6ff9a8dd176a108bd12b16b6db5f9c243b9a47", "datetime": "2023-07-05T18:48:12+00:00" }, { "message_id": "54ac73886669b86074d0cb7ee641fdca003f400075f0fcd3b76ffd0a0951df77", "sticker": null, "text": "Ues", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": "4c1617ee722ec8926ae0f7db0368be2a91032c9fe43e44f3c6bc1b9b224a97d9", "datetime": "2023-07-05T18:50:25+00:00" }, { "message_id": "5f7c55fafe7185db59ef5a1550e64dfdfecb194ccdadec973b4d7ca0c9db7988", "sticker": null, "text": "Real programmer not see how much he spend time", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "4a33768a825654f194fb99cff0a3ef10a139664f35296abb78171215c0a1b95b", "datetime": "2023-07-06T01:07:36+00:00" }, { "message_id": "67c747b3539d927c64f221d0e18b6a5f459631cf8d3799d3db60593854a35b25", "sticker": null, "text": "int a=5;\nint b=5;\n\na---->5\nb---->5\n\nreference separate literal \n \n \n █▄▄ █░█ ▀█▀\n █▄█ █▄█ ░█░\n\nHere\n\nString s1=\"hi\";\nString s2=\"hi\";\n\n\n s1----> █░█ █\n s2----> █▀█ █\n\nInstead of creating different reference, compiler interned them ( creating a string pool in constant pool and assign all variable to one reference) to save memory\n\n Question : why compiler does not interned primitive literal to save memory", "from_id": "940c3fa781806c8b7f977648fe9346359f9d8bd9e6c2390a070f3956807cb7fe", "reply_to": null, "datetime": "2023-07-06T07:55:02+00:00" }, { "message_id": "a44e8a306215b87f95886493c468f3e86032a0c619a11822bd96cfdab168462d", "sticker": null, "text": "Yes", "from_id": "d5705b8f04dfbf8474c23e4ce18b6d865e2d92aaefb9d4be48d2a98a9c0d5115", "reply_to": "5db87c2d57ccb49826f5c4dee242e91e553e7f1c91fe960e408607448dff0c7a", "datetime": "2023-07-06T13:13:57+00:00" }, { "message_id": "0f3287c26cf858d79733ca152a93090cec78f69831f1a232dd35b50ad6e54bbb", "sticker": null, "text": "You guys can request for an access for IELTS Material.", "from_id": "26674c28395f5ccc47bd259cc597f8b37fcf5efedabb579e2dce1da698b9e00f", "reply_to": null, "datetime": "2023-07-07T19:08:08+00:00" }, { "message_id": "9b2d853e2b39bcc9f91f3f4e4612eff94f7e4501f8ef168863876ea19aaccbb5", "sticker": null, "text": "to who?", "from_id": "227db9ec2a3a56183b9c2c03a0578638206402ded8dee73b6601de3a8e85d7c3", "reply_to": "0f3287c26cf858d79733ca152a93090cec78f69831f1a232dd35b50ad6e54bbb", "datetime": "2023-07-08T08:08:46+00:00" }, { "message_id": "69689dad3f369c5ec1c60fb2a25d3a7a85f22957465d772dfb3b620f96ce5bbc", "sticker": null, "text": "Anyone here who can help in integration of monthly subscription in my app using Google pay and Google billing library?", "from_id": "a1aae01497e8042747ad8998fdbbe09bda65370b1d1ebcf56144f4323c478e0d", "reply_to": null, "datetime": "2023-07-09T17:52:06+00:00" }, { "message_id": "8b83597ce6695bf747517add3fc619b2bb80d4bff171b2b2a34edaccbfaa44d4", "sticker": null, "text": "Hi, does someone Socket programming in java?", "from_id": "d9321386619f5a0685fbb31557fbd156679e91ed143d3e2683f2c8c2e0e65531", "reply_to": null, "datetime": "2023-07-10T12:46:11+00:00" }, { "message_id": "65e051fb35afbfec0212b261dbde3be5a9ced7ea5efbda7c9ab267b0338fb0bd", "sticker": null, "text": "Yes,", "from_id": "b5a1ccb961e325214a7ccf1df5ccbbb6aac6a81c6467a5abc9dc167b0947f7a5", "reply_to": null, "datetime": "2023-07-11T10:57:43+00:00" }, { "message_id": "2c5863e5c38890c7a5b6a2a773089134f6c092f842f8754ad2f691641a8b59a0", "sticker": null, "text": "I suggest that if one has a question, do it right away if someone knows will answer! Because if you ask one if know something he might say no, thinking he's not able to help but he could on your question", "from_id": "b5a1ccb961e325214a7ccf1df5ccbbb6aac6a81c6467a5abc9dc167b0947f7a5", "reply_to": null, "datetime": "2023-07-11T11:00:09+00:00" }, { "message_id": "9d1f57b3346bf4cbaea7f595d7f002423eaec7263397919aade2b79edba7ab4f", "sticker": null, "text": "Guys, I am current working on my FYP project. I am doing an reasearch assessment website where user can log in and upload their research papers.... I need some intel on a specific function which intended to build. For an example there will be several levels for the user like beginner, intermediate and expert....this will be given to the user based on the assessment the user have achieved.... If a user have completed 2 research the system will gave suggestion like complete 2 more papers in period of 5 months to achieve the intermediate level. For this I thought wanna use Google analytic as my lecturer suggest. I cannot find any reference similar to this function in online? Can suggest me some materials or any videos that I can watch to get an idea on this function?", "from_id": "0ff90266a70ac4af0e557145b9a906c8c866f5485c66bdeceec7d4f85166be23", "reply_to": null, "datetime": "2023-07-11T15:10:41+00:00" }, { "message_id": "778b67980f4ac9c6589ba8fc0f6f32f31e5d9cce4a3c46e3e7e4cb05410c1c17", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "9d1f57b3346bf4cbaea7f595d7f002423eaec7263397919aade2b79edba7ab4f", "datetime": "2023-07-11T16:04:10+00:00" }, { "message_id": "a8a9455c4b27741ac688161a48132b6d328da22eeab763085f46e66fc7863ef0", "sticker": null, "text": "Ya correct....After my lecturer suggest the Google analytic I try to look up on it and It was what as you mention above...I thought I am the one missing something so that why text here to see if got any suggestion.... Thank for the Intel.🙂", "from_id": "0ff90266a70ac4af0e557145b9a906c8c866f5485c66bdeceec7d4f85166be23", "reply_to": "778b67980f4ac9c6589ba8fc0f6f32f31e5d9cce4a3c46e3e7e4cb05410c1c17", "datetime": "2023-07-11T16:14:03+00:00" }, { "message_id": "71f7a2ec9319cddfcedf0e5dbf1e1b848fd46ccdb7b542c1eac5689ebd14f027", "sticker": null, "text": "Hi", "from_id": "3205d0910c5f7b49f576bf40a438e1d133bc6300885b138ba128632477097a7b", "reply_to": null, "datetime": "2023-07-11T19:32:09+00:00" }, { "message_id": "285f7a2e8769dd5e90bad4f9fbf3e03d88e5d33690c8cb2aa699b7203157eb2e", "sticker": null, "text": "Few Minutes to go for the Live session Today\n\nUnix/Linux @ 4:00 PM (IST)\nby Mr. Imran\n\nDemo Link: zoom.us/j/89902544018\n\n-\nNaresh i Technologies", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2023-07-12T10:39:42+00:00" }, { "message_id": "4ac0dd167ac78a5eb44730df0671a4befbf65ec8f251e7ffb6d6581a58a4c8ee", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7a61a14d7a8eb869a33c43c1a09ea605a47c7b14a9f601596fcaa66dce382e40", "reply_to": null, "datetime": "2023-07-12T11:00:02+00:00" }, { "message_id": "f437823ac3161f6fbbe1abab4237dfac3f273dd9766dddb0040743250b7794cd", "sticker": null, "text": "Hi everyone, is it possible to work for free with other engineers on front and back end projects to learn?", "from_id": "0f4cd3a9f73d703f57d014cfe296854ea6620cfe998e9e443801c3c436470f1f", "reply_to": null, "datetime": "2023-07-12T11:51:44+00:00" }, { "message_id": "aac1b597b3790dcc553f289a586fcff35fd4589cac216dffa035360e8e9677a5", "sticker": null, "text": "Which is best Java course available on internet (should have everything)?", "from_id": "3ed04b2eafb1b4401bd03da3e4ff5c880d2fb88701ca4079b42eb981beb8b284", "reply_to": null, "datetime": "2023-07-12T17:17:36+00:00" }, { "message_id": "2e3d89327f2a0cd0e9eac82136e6a0ce525602542b3d806892359db815fd2116", "sticker": null, "text": "Text me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "aac1b597b3790dcc553f289a586fcff35fd4589cac216dffa035360e8e9677a5", "datetime": "2023-07-12T17:20:23+00:00" }, { "message_id": "b11a36d5aa9715b2cb6af61900027bac8050888c7e4207a39021c2ceffb53b59", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "be00f3710125f46e7df15dc16c874310f752f7d336d6b79ffef4cd0528d646ba", "reply_to": null, "datetime": "2023-07-13T16:07:00+00:00" }, { "message_id": "3a1be39c44f1de93d14b52bad1fab3fdf88a47cb1551c692ecb7108c2d119239", "sticker": null, "text": "Yes", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "f437823ac3161f6fbbe1abab4237dfac3f273dd9766dddb0040743250b7794cd", "datetime": "2023-07-13T22:51:07+00:00" }, { "message_id": "fbf178fb51dc374c954711d7c07e5625e860a16b8f57ba9f277e673b935cb17a", "sticker": null, "text": "Uzbek🧐🧐", "from_id": "4018e0880a693b5101defb11e9852269bebabf6afc442c37f47738cf748d11f1", "reply_to": "0d2fa16a989bfab2e32cb52a6773ded58b9d28b9e0fd1e07c00210a10c39a9cc", "datetime": "2023-07-14T14:44:55+00:00" }, { "message_id": "d7467d12c182aca8c1a5f8e20ea0ce9e257aa5f882f9f471ca10c3e474797358", "sticker": null, "text": "I would like to join such a group", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": "3a1be39c44f1de93d14b52bad1fab3fdf88a47cb1551c692ecb7108c2d119239", "datetime": "2023-07-14T17:51:49+00:00" }, { "message_id": "acce4829c890605e7c618f024e432b1bf9d61fe688be5cc87c29fbd797e48635", "sticker": null, "text": "How to configuration hibernate in java", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": null, "datetime": "2023-07-15T05:30:08+00:00" }, { "message_id": "9f8e6e973a390af9db763b7d08bf9ac49ef94c63797437c8611484e29ddcb9f6", "sticker": null, "text": "2", "from_id": "bec1bc479cfb3626e55bb64e138ee5a340f0d896dc14c0fbbb40c2f0cfde1830", "reply_to": null, "datetime": "2023-07-15T15:52:25+00:00" }, { "message_id": "7cf65f300274bdc59f778b4f4ea9d644119347280ea683d194e7f6b5f005933b", "sticker": null, "text": "You have with configuration", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": "9f8e6e973a390af9db763b7d08bf9ac49ef94c63797437c8611484e29ddcb9f6", "datetime": "2023-07-15T19:32:48+00:00" }, { "message_id": "053be61db9d668ab89d15ab4541b134482e2fdff70ba37cd47fb2ada6a5660e7", "sticker": null, "text": "Problem", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": null, "datetime": "2023-07-15T19:32:55+00:00" }, { "message_id": "4c1ccdb75b4d034fb6aea9f9e23a0c37517c46b34f731a6065269bd95546cb2f", "sticker": null, "text": "Yeah i will work on java project !", "from_id": "f2380c99d8a3dbebdc617f74fd4e584675a011bcaa03c0388d079cf15313e4e5", "reply_to": "f437823ac3161f6fbbe1abab4237dfac3f273dd9766dddb0040743250b7794cd", "datetime": "2023-07-17T14:22:32+00:00" }, { "message_id": "e7dd096b77224751a2358313c2d1b1e86fb2bc7ab3c77ec80996cecf59ed95af", "sticker": null, "text": "Hi everyone, is there somebody can help me with Packet tracer problem?", "from_id": "393dbdef9ea3994a906836c7ea5eeaecef1db2440cc67892102b5023f160a97d", "reply_to": null, "datetime": "2023-07-19T11:35:52+00:00" }, { "message_id": "77c2a4a5104c69788c69df7b0b4d64f7bcdc79c02c685231e02c56d506003c99", "sticker": null, "text": "after c++, i should learn java or dsa?", "from_id": "3ed04b2eafb1b4401bd03da3e4ff5c880d2fb88701ca4079b42eb981beb8b284", "reply_to": null, "datetime": "2023-07-19T12:06:10+00:00" }, { "message_id": "63f57b1b0b2cbf544fe0f7364840a1986afe91c09c9d09b9fed9f03d45e40a79", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "e0634bd0c207e8d909eb8c11bea53f16633af0c1c7062c897c2afd18bebb0763", "reply_to": null, "datetime": "2023-07-19T12:53:52+00:00" }, { "message_id": "e8fe0a0f4fccf6ddb306efa945bab95b94d3217a9331ff75049853b118c84d72", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "66b8a96ad9808831b081f774076d001f7834c1217aae3cd0f26fe1ec88532908", "reply_to": null, "datetime": "2023-07-19T14:25:50+00:00" }, { "message_id": "6634f7f7eb6386faa64f40f19f808b194bbc67e7d03c44abe61d27da7d618eb3", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "66b8a96ad9808831b081f774076d001f7834c1217aae3cd0f26fe1ec88532908", "reply_to": null, "datetime": "2023-07-19T14:26:36+00:00" }, { "message_id": "a838ec13a4ce13b49f762252241b5c695a4dcb203edaeb8fc28bb0d61ba65847", "sticker": null, "text": "Software program development and implementation : \n\nwe are looking for software developers.\n- CC / CC++  \n- EMBEDDED C++\n- SOFTWARE DEVELOPER PYTHON\n- SOFTWARE DEVELOPER JAVA\nBachelor of Computer Science or Electronics Engineering, software developer\nTeamwork\nEU countries\nLanguages: English, Germany..\nExperiens: Logistic systems,\nPlease send us your CV's, certificates, diploms", "from_id": "6419e84567e3a391384ab8c7a175e8eb006fce8400ba252ab0586efe12ef96fc", "reply_to": null, "datetime": "2023-07-20T12:10:20+00:00" }, { "message_id": "04195f037e3993395931a49e6bf434a856cfd6d48de847ef5a0db1b1a43017d7", "sticker": null, "text": "Why don’t you three make one or join an open source project together?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "d7467d12c182aca8c1a5f8e20ea0ce9e257aa5f882f9f471ca10c3e474797358", "datetime": "2023-07-20T21:22:39+00:00" }, { "message_id": "9e24f30d92c8421d931c322bd2915b46228283325c28dd6d09c059d6891bc7c4", "sticker": null, "text": "Where to join such an open source project ? Github?", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": "04195f037e3993395931a49e6bf434a856cfd6d48de847ef5a0db1b1a43017d7", "datetime": "2023-07-21T02:18:54+00:00" }, { "message_id": "b8f26513e44b9b2e380194c3a2f6e332f0316659fe6eb9935470f6107f548eaa", "sticker": null, "text": "Yes", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "9e24f30d92c8421d931c322bd2915b46228283325c28dd6d09c059d6891bc7c4", "datetime": "2023-07-21T02:55:06+00:00" }, { "message_id": "4ba3d11cd4edae456b39b8796e4783a8f03ab55c4d6276d63e7564e8e094d231", "sticker": null, "text": "Fraud", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "8a6086dd7f2df15835b6571f38d8df60f00f673b874080dc2c176a0a67eac443", "datetime": "2023-07-21T09:49:06+00:00" }, { "message_id": "ce5d4942775710c9969bf1d456440a4a94b5b94155a8dd08e03beb7036377d6a", "sticker": null, "text": "how to filter data in java,the requirement is i have product_id should be filtered by product_category", "from_id": "1b439fd7f77c4636777cfa3523740d5075ff7eae4bba6cc44dbf5c8a8fa428a3", "reply_to": null, "datetime": "2023-07-21T10:08:48+00:00" }, { "message_id": "ceb3caa45f50a3c665501c90c7cb330c217515852376976e859ddeaa7b938255", "sticker": null, "text": "thanks in advance", "from_id": "1b439fd7f77c4636777cfa3523740d5075ff7eae4bba6cc44dbf5c8a8fa428a3", "reply_to": null, "datetime": "2023-07-21T10:08:53+00:00" }, { "message_id": "7fa80e0a7f037a102e45481d9ead4b19e897a491bf4a8cad238feebb6daee7e9", "sticker": null, "text": "Software program development and implementation : \n\nwe are looking for software developers.\n- CC / CC++  \n- EMBEDDED C++\n- SOFTWARE DEVELOPER PYTHON\n- SOFTWARE DEVELOPER JAVA\nBachelor of Computer Science or Electronics Engineering, software developer\nTeamwork\nEU countries\nLanguages: English, Germany..\nExperiens: Logistic systems,\nPlease send us your CV's, certificates, diploms", "from_id": "6419e84567e3a391384ab8c7a175e8eb006fce8400ba252ab0586efe12ef96fc", "reply_to": null, "datetime": "2023-07-21T12:57:01+00:00" }, { "message_id": "8b92a9beb2c3fadedac3c89ba644d021721e42c871e4f46a441eb596731c2514", "sticker": null, "text": "too expensive, can you make it free?", "from_id": "678fdcf20a35e6a866788d369d15b2ffb3c8320fc506108780901dff01038faa", "reply_to": "8a6086dd7f2df15835b6571f38d8df60f00f673b874080dc2c176a0a67eac443", "datetime": "2023-07-21T14:57:52+00:00" }, { "message_id": "a847552b37b52b01450bd7e363efd68191664c635d6430f9b01ecfbae656c897", "sticker": null, "text": "hey everyone, has anyone ever encountered an error like this\n\nReport could not be viewed because : java.lang.ClassCastException: Could not set an instance of net.sf.jasperreports.engine.base.JRBaseStaticText to field net.sf.jasperreports.engine.base.JRBaseLineBox.boxContainer of type net.sf.jasperreports.engine.JRBoxContainer in a instance of net.sf.jasperreports.engine.base.JRBase Line Box", "from_id": "b656cf34a30da5de59901d1ac280a34585e15c5126c1f13437b280a7ee72ddce", "reply_to": null, "datetime": "2023-07-22T03:23:11+00:00" }, { "message_id": "f48b513b75f24638f44a72ccba05a6092fb0646c9dd8f5c236f70771edbe169b", "sticker": null, "text": "Type casting in wrong object", "from_id": "e829f3ab34dec1c6125a829156dd22f637038ccd0c7289cee53ecdddf75994e1", "reply_to": "a847552b37b52b01450bd7e363efd68191664c635d6430f9b01ecfbae656c897", "datetime": "2023-07-22T03:43:45+00:00" }, { "message_id": "ac3a2697cf3bc3f200a7b8827e2a0d8aa8a40d94b764f8bb121824eee2c1395d", "sticker": null, "text": "Check if object instanceof JRBaseStaticText", "from_id": "e829f3ab34dec1c6125a829156dd22f637038ccd0c7289cee53ecdddf75994e1", "reply_to": null, "datetime": "2023-07-22T03:44:19+00:00" }, { "message_id": "d597e76c4e25607f2cd935503fd842a68c4ec87618fc3a9744bb7de125e0c4d4", "sticker": null, "text": "Then perform operation", "from_id": "e829f3ab34dec1c6125a829156dd22f637038ccd0c7289cee53ecdddf75994e1", "reply_to": null, "datetime": "2023-07-22T03:44:26+00:00" }, { "message_id": "8542888cd91e22bc4d7c6033b291da9688b2c2e8191109c32f80dc610d41eb2f", "sticker": null, "text": "do you have any references ?", "from_id": "b656cf34a30da5de59901d1ac280a34585e15c5126c1f13437b280a7ee72ddce", "reply_to": null, "datetime": "2023-07-22T07:33:04+00:00" }, { "message_id": "86dd47dadde6b67ff3b5274b89787c26a337fbb9c79aafad1adfbb63e939056f", "sticker": null, "text": "I", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "1637bdd233eaa6ea2ee40568cf0c41b1ce892413bf03a68d7c6fd0c9d99a26b7", "datetime": "2023-07-22T17:46:19+00:00" }, { "message_id": "025b6add69f1fef6bd0d523dc8d1f22a05ed067fd62e96e1b1af853e417e2a52", "sticker": null, "text": "Me", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": "1637bdd233eaa6ea2ee40568cf0c41b1ce892413bf03a68d7c6fd0c9d99a26b7", "datetime": "2023-07-22T17:57:11+00:00" }, { "message_id": "0ee27aac14413d3b4702a817a8a0e78836ea7802bc2746082e775552798c25a8", "sticker": null, "text": "Me", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": "1637bdd233eaa6ea2ee40568cf0c41b1ce892413bf03a68d7c6fd0c9d99a26b7", "datetime": "2023-07-22T18:59:57+00:00" }, { "message_id": "94a56f8dfaa416443078a94f1f3704ce4349db32e9645db59d924b35fe6e5773", "sticker": null, "text": "Yes", "from_id": "9e854741dd12fc0a81cc4b81074804b6236d4645441512fe5e0b99cc82405e33", "reply_to": "1140583d3205cec681c610f00b6ff9a8dd176a108bd12b16b6db5f9c243b9a47", "datetime": "2023-07-23T01:42:44+00:00" }, { "message_id": "ca563bb5ddf5a592662ab73d0d9bfd7888b2206c657e5f12500e97de5636d27a", "sticker": null, "text": "Anyone up for 100 days coding challenge", "from_id": "14439bb08158ab426b293e97bb49fdbdf57a90c9099c7e8268b11342d1861ba7", "reply_to": null, "datetime": "2023-07-23T10:10:36+00:00" }, { "message_id": "d1593ef8d8f793457539725777ca16abb77ebef39e52d1b95cf8d61323738a99", "sticker": null, "text": "I'm planning to upload series of coding challenge videos on YouTube, which is somewhat similar to advent of code. Targetting Junior or Mid Level coding questions", "from_id": "14439bb08158ab426b293e97bb49fdbdf57a90c9099c7e8268b11342d1861ba7", "reply_to": null, "datetime": "2023-07-23T10:11:36+00:00" }, { "message_id": "fbc30168fc6b8147e1928f3c866b98399b2a6c518e5cb585e96bc70852999511", "sticker": null, "text": "YouTube channel mytechhub3", "from_id": "14439bb08158ab426b293e97bb49fdbdf57a90c9099c7e8268b11342d1861ba7", "reply_to": null, "datetime": "2023-07-23T10:13:24+00:00" }, { "message_id": "286ad120c06f88179adabd9d6eaee005daee05f41582a690ec07bcf12156994a", "sticker": null, "text": "Hello", "from_id": "14439bb08158ab426b293e97bb49fdbdf57a90c9099c7e8268b11342d1861ba7", "reply_to": "006253baa61aa36f1fda312b06f2587bc01ff08f5f2c5ba3a31680db42a498ed", "datetime": "2023-07-23T15:51:52+00:00" }, { "message_id": "b3a1d7e350afb7ade14f52f7286038b265d31304d6912d5614787ed572d57b45", "sticker": null, "text": "hello", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": null, "datetime": "2023-07-23T15:51:57+00:00" }, { "message_id": "d8b5fd708e0ada7db7811df9c97ab2216ea8e46b8f76f85dbe93ef149a11de47", "sticker": null, "text": "Is it possible to make an app based on only java code without using android Studio?", "from_id": "2b4d733d2cfe1ff6cc56d75d6c642a9871ff99d504aedee2f8ae7b6b05980d7b", "reply_to": null, "datetime": "2023-07-23T20:06:28+00:00" }, { "message_id": "29668f7b9fbd0d02753ce210a48e449c7a02193ba7cf7048ffe56f23f8273bee", "sticker": null, "text": "Android app? Android studio is just an IDE. You can use the terminal if you don't want any IDE.", "from_id": "66b8a96ad9808831b081f774076d001f7834c1217aae3cd0f26fe1ec88532908", "reply_to": "d8b5fd708e0ada7db7811df9c97ab2216ea8e46b8f76f85dbe93ef149a11de47", "datetime": "2023-07-23T21:49:20+00:00" }, { "message_id": "3a63852d3d00e261cc299847ab877a962b84431ac99d0cb77f66d6afc63c1ecb", "sticker": null, "text": "How many students know smart programming chennal for advance java course???", "from_id": "465fa99c1457bf48df2413f8e4ad3a1d8d208388c57625070f8d0b92e1f96f37", "reply_to": null, "datetime": "2023-07-25T16:19:01+00:00" }, { "message_id": "0cd84771dca560d13832e199f6d82f0c7083563fba18c3b6788ddf98d8092e6c", "sticker": null, "text": "Hi how clear all directory in android with java ? or flash directory android?", "from_id": "7c3894567cd0fee455fb6509fb7beb39d3f8046707a045304cf5be7d297140c8", "reply_to": null, "datetime": "2023-07-25T21:38:29+00:00" }, { "message_id": "9d421d801a681f06aaaba28113644783d4333a1b28dcdf6cbbf349f2ca9d912f", "sticker": null, "text": "what do you mean? just delete the dir?", "from_id": "76788e2bc8e129332739858427947da56c6998ce55d3191fd4b55a34bd356e18", "reply_to": "0cd84771dca560d13832e199f6d82f0c7083563fba18c3b6788ddf98d8092e6c", "datetime": "2023-07-26T02:00:24+00:00" }, { "message_id": "c7f35d60a1158314a14bfcfbacc2e224c9c50a93ba0196ca366de1cb3907a888", "sticker": null, "text": "Is there any way to protect my jar from being cracked?", "from_id": "43cac6db9e45732802189766b2dc781f9553941ecb3eab2aabb06de35856247b", "reply_to": null, "datetime": "2023-07-26T18:48:14+00:00" }, { "message_id": "48bb23b1b473767b221961f62eeea38d7c06d1baf727a83faf904821e7d81632", "sticker": null, "text": "What", "from_id": "4bd7229a3b878679c2f4a4982312ad30c937010fa401456a38a44a86a912f061", "reply_to": "c7f35d60a1158314a14bfcfbacc2e224c9c50a93ba0196ca366de1cb3907a888", "datetime": "2023-07-26T19:00:20+00:00" }, { "message_id": "23841d2ef4604fb87ffb69d34219ba24982fd3a8353ab46b5d08c22c3d9f322f", "sticker": null, "text": "What is that", "from_id": "4bd7229a3b878679c2f4a4982312ad30c937010fa401456a38a44a86a912f061", "reply_to": "c7f35d60a1158314a14bfcfbacc2e224c9c50a93ba0196ca366de1cb3907a888", "datetime": "2023-07-26T19:00:39+00:00" }, { "message_id": "b32606cba88656bf423edb315582545f2dfbdb27afef39c196828c90f2aa8843", "sticker": null, "text": "Hi, Everybody!\nI am a senior Java developer/mentor with 15+ years of extensive experience.\nIf you have any Java project or job, please let me know.\nThanks.", "from_id": "5ebf7776e8ebd5e3d9b34b6a744bc98c4b58280469657e3f95d30824ef91e6d5", "reply_to": null, "datetime": "2023-07-26T19:27:02+00:00" }, { "message_id": "1b1ee1094b9ee17ffd17bc67756c8c426a0fe006c946dc329c01a8d26157c9d1", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "3f86c58f83479a8fee43efe05b93773c34b1a5875817f2bdb8b222ce3657b458", "reply_to": null, "datetime": "2023-07-27T03:19:20+00:00" }, { "message_id": "c2476cb7ec4ee3aecf5a2fedf34191e6620f831b0c0beb01652e845559d8199f", "sticker": null, "text": "Hello everyone \n\n If you have the time and opportunity, and if it doesn't bother you, can you help me with one problem in Spring? Specifically, the problem is in implementing Spring Security in Spring MVC", "from_id": "96f0c8e0bac0ff84b0a91832262a1aa6ef0b9fd8273cbede07a64a3b4e22de93", "reply_to": null, "datetime": "2023-07-27T05:07:51+00:00" }, { "message_id": "0767302c044a7c076b9803b70fb090498784cd80b6d704306a4950d20b12c89e", "sticker": null, "text": "Yeah I wanna this work", "from_id": "e85de8725b8c720fac4bc0aa0ec2e6425d39e5c71ca94a0f64f6ea7a46d4cffc", "reply_to": "df4292b693b517d93dc9a048b8b1c0c22cde8fc0a085e6c8f61c8abc1c4032e4", "datetime": "2023-07-27T08:01:43+00:00" }, { "message_id": "793cfffd7e6af25d80e2900f11d2bd53e1a73e460eb0baafccf7abd71f1d7e37", "sticker": null, "text": "Can anyone please tell me how can I improve my interview skills? What did you do/ are doing?", "from_id": "d797ba2416133f6e2ee716b9c27d86fb7ad474b7239f65e35ee33a4071fe3513", "reply_to": null, "datetime": "2023-07-27T10:05:27+00:00" }, { "message_id": "1e7682dd51e2e56da3f63996360cd3da8a75e535157bb20a34b3a8edd9825545", "sticker": null, "text": "Do practical interview with your friends and paid them", "from_id": "e85de8725b8c720fac4bc0aa0ec2e6425d39e5c71ca94a0f64f6ea7a46d4cffc", "reply_to": "793cfffd7e6af25d80e2900f11d2bd53e1a73e460eb0baafccf7abd71f1d7e37", "datetime": "2023-07-27T11:20:38+00:00" }, { "message_id": "827495692f3906ee66878a47cea7a069bdfcd8bcf64f260e6fa95e5c7b93ee98", "sticker": null, "text": "can someone pls suggest some good ways to learn DSA", "from_id": "2573baae73f262baa1e42e93c28e3c0f4c29b34a6f5135e43a7a3a7d5a8bd272", "reply_to": null, "datetime": "2023-07-27T12:16:31+00:00" }, { "message_id": "79be00f225e4910572aabe1288560bcbc1497702258395a68e22ecd1cfeacd55", "sticker": null, "text": "Google, Youtube, Github, Slideshare, Stackoverflow, superuser and etc...", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "827495692f3906ee66878a47cea7a069bdfcd8bcf64f260e6fa95e5c7b93ee98", "datetime": "2023-07-27T13:00:22+00:00" }, { "message_id": "3bff405da326e3f56e9dd386103f027ebc31e673cc6a23efc0a243b76c9ffeed", "sticker": null, "text": "Hey bro,\nCan you suggest me,what skills should I need to learn java full stack developer", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "4ed2c283f0c65ba103489238944fbaca6b6d195a09cde71305fd503c4f34c48a", "datetime": "2023-07-27T16:38:26+00:00" }, { "message_id": "930b0270ae6cb2fe2f96489d06bbc30f3b2b99e44ca46f93290da18bae2cc800", "sticker": null, "text": "Yeaa but which courses are good to start Idk", "from_id": "2573baae73f262baa1e42e93c28e3c0f4c29b34a6f5135e43a7a3a7d5a8bd272", "reply_to": "79be00f225e4910572aabe1288560bcbc1497702258395a68e22ecd1cfeacd55", "datetime": "2023-07-27T19:55:13+00:00" }, { "message_id": "97d07f603c4ce63b636afb574a7efdf7e420c0cf8b20715a6efbb5731734417a", "sticker": null, "text": "Hey anybody interested in working together as team in project or be friends than dm me i have project too", "from_id": "726fe518ef581cb29198ea9c0fd58514ba5b76dd2c9aa8b366a266fc08a858d3", "reply_to": null, "datetime": "2023-07-28T19:39:01+00:00" }, { "message_id": "146ffea9ea75ed4d703a984651bf309c9db623a7dfe32edf135949c7a2959b71", "sticker": null, "text": "Software program development and implementation : \n\nwe are looking for software developers.\n- CC / CC++  \n- EMBEDDED C++\n- SOFTWARE DEVELOPER PYTHON\n- SOFTWARE DEVELOPER JAVA\nBachelor of Computer Science or Electronics Engineering, software developer\nTeamwork\nEU countries\nLanguages: English, Germany..\nExperiens: Logistic systems,\nPlease send us your CV's, certificates, diploms\nWOFA IT AG", "from_id": "6419e84567e3a391384ab8c7a175e8eb006fce8400ba252ab0586efe12ef96fc", "reply_to": null, "datetime": "2023-07-28T21:29:20+00:00" }, { "message_id": "9ba88dabd1c127a637bf02b737615ca355b3f6d95bed9019defc87d0202243a6", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2023-07-30T06:20:23+00:00" }, { "message_id": "6b7cd0e3094adcfb726428de7e4765447517cf7e68cc984f65211c1a30850951", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "66b8a96ad9808831b081f774076d001f7834c1217aae3cd0f26fe1ec88532908", "reply_to": null, "datetime": "2023-07-30T15:43:50+00:00" }, { "message_id": "68a20a52c10ea358928c8076a8c52e65df408ac0badd2cad5d17a6041c54261e", "sticker": null, "text": "Hi everyone, can anyone help with best channels or website to practice java 11", "from_id": "9eba4f04e92c8244eb37dbe4c658e72b95a41d0e010b8f656bfe0a07fc6e29df", "reply_to": null, "datetime": "2023-07-31T00:30:52+00:00" }, { "message_id": "c6896eb8f5a14c2f725274a1ffc04e4b0d0ceb80aae11012d37b7b17613a1aa2", "sticker": null, "text": "hey guys, good day. I need help but its with node.js", "from_id": "71d2adb423961fe54352d85daa04a469b9fba773377df74208852735a8b0a521", "reply_to": null, "datetime": "2023-07-31T23:35:43+00:00" }, { "message_id": "8ea2441f8a069f55b00c2e69babcd6eea3c619a3f78ec981b88d4ffa3c52d7e1", "sticker": null, "text": "any node.js dev here", "from_id": "71d2adb423961fe54352d85daa04a469b9fba773377df74208852735a8b0a521", "reply_to": null, "datetime": "2023-07-31T23:35:57+00:00" }, { "message_id": "eabafae3e13fe8e29f8eff433ce60fac365c1c0ade39e020a340d5d729e1e470", "sticker": null, "text": "Hello", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "c6896eb8f5a14c2f725274a1ffc04e4b0d0ceb80aae11012d37b7b17613a1aa2", "datetime": "2023-08-02T17:37:42+00:00" }, { "message_id": "fee13e865a5618c68687516ad6a3a89af06e71e97041a2522d65f195f04ff44c", "sticker": null, "text": "Hi", "from_id": "3634f63b76efc24271d516deccc0345d3cb00d47276c761a0dbf8559f5f62365", "reply_to": null, "datetime": "2023-08-03T07:17:47+00:00" }, { "message_id": "662faf56eb87e8bf8d425d3ff6c22c7fc4e520083a3a78c43eded128dfe4db51", "sticker": null, "text": "What's up", "from_id": "3634f63b76efc24271d516deccc0345d3cb00d47276c761a0dbf8559f5f62365", "reply_to": null, "datetime": "2023-08-03T07:18:40+00:00" }, { "message_id": "ca4dba1ee7ff9091a91f61ab24b9a806530bae83f8a8d3a4b00b724529274c43", "sticker": null, "text": "Bro!", "from_id": "3634f63b76efc24271d516deccc0345d3cb00d47276c761a0dbf8559f5f62365", "reply_to": null, "datetime": "2023-08-03T07:18:42+00:00" }, { "message_id": "3c72725748274580242a6972ef35be39a9a92bf9a6ef67ddfc9396b8af578451", "sticker": null, "text": "Total messages: 125306", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-08-03T07:20:06+00:00" }, { "message_id": "daac189aeae2adb1cedac9d414bd721512b1affd6068b63753f66c95daca52a7", "sticker": null, "text": "I am 3 years of experienced Working professional", "from_id": "ee3de953f91d2340bd4f6fcbce59fabf0c97aca782ba7a4518dd84d6df4f95b1", "reply_to": null, "datetime": "2023-08-04T08:42:59+00:00" }, { "message_id": "167e1f9457229d3be1c53c92e17b246f3fbb7185a743cb37b665aad3e6a57072", "sticker": null, "text": "If you have any queries regarding Java I will help u here.", "from_id": "ee3de953f91d2340bd4f6fcbce59fabf0c97aca782ba7a4518dd84d6df4f95b1", "reply_to": null, "datetime": "2023-08-04T08:43:30+00:00" }, { "message_id": "8fbb094f82b42076ecfb08617b651d956aedb9c52ed39da1d9517bd32615f145", "sticker": null, "text": "👍 and about Algorithms ?", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": null, "datetime": "2023-08-04T08:43:56+00:00" }, { "message_id": "e91696594e2bf57d9b8788b216bcb73a2133f571dbd7a2a5eeb8c7e309d91181", "sticker": null, "text": "Hello", "from_id": "c3a55397baf0128b9ffbad8f788995ac79cd4ce923e9518cf100bbb289b33236", "reply_to": null, "datetime": "2023-08-04T11:45:19+00:00" }, { "message_id": "0cc572d08ff686ea4e2f456925ccbfc560da4b930f5e594b61accafa8613e014", "sticker": null, "text": "I have som problem deploying", "from_id": "c3a55397baf0128b9ffbad8f788995ac79cd4ce923e9518cf100bbb289b33236", "reply_to": null, "datetime": "2023-08-04T11:45:29+00:00" }, { "message_id": "79254fe7fe7b53f7612250d3872d29fc12b29152eee643f7d6af731026f3daed", "sticker": null, "text": "Need java developer", "from_id": "7edd3e997a03296dd31ba67282c774ba98573fde6506f8516927301f7ed0ce55", "reply_to": null, "datetime": "2023-08-05T13:57:33+00:00" }, { "message_id": "8063b4ba539a6df8ed076be5b32e0c70a02fd313f93e8cf04900faf426dbbadb", "sticker": null, "text": "Contact me for a java task", "from_id": "7edd3e997a03296dd31ba67282c774ba98573fde6506f8516927301f7ed0ce55", "reply_to": null, "datetime": "2023-08-05T13:58:28+00:00" }, { "message_id": "eb81a04f5b752fe2327129b09131b9610dfbe5bc5d2a7e447480e3a685b16ccb", "sticker": null, "text": "Hiiiiiio", "from_id": "28e31d5efc93f64e0edb30ae76d0a93fc6e0d33ec746fbdbb5bbc6ee09a261ae", "reply_to": null, "datetime": "2023-08-05T14:36:59+00:00" }, { "message_id": "09321a51ae1975d024cc69b73daa8de9fc1eaf22801380faa975742d380eb170", "sticker": null, "text": "I write a code that have a bug\nBut i dont know what is its bug", "from_id": "28e31d5efc93f64e0edb30ae76d0a93fc6e0d33ec746fbdbb5bbc6ee09a261ae", "reply_to": null, "datetime": "2023-08-05T14:38:04+00:00" }, { "message_id": "e0cce1a1ff98865b764f136a70b3ca9013866562e7c32a08576c652565a0a57f", "sticker": null, "text": "Guys what is the difference between selections and loops in java", "from_id": "5eaea727629619e5cf4e9c3bf635316e6e0a968ee103097fbcd8708bbe0cf448", "reply_to": null, "datetime": "2023-08-05T15:11:14+00:00" }, { "message_id": "a3c0fab11a9ca8231400669870593084aab50bb23e7eea4493ff3137149c88dd", "sticker": null, "text": "thing is its node.js not java, could anyone help", "from_id": "71d2adb423961fe54352d85daa04a469b9fba773377df74208852735a8b0a521", "reply_to": "eabafae3e13fe8e29f8eff433ce60fac365c1c0ade39e020a340d5d729e1e470", "datetime": "2023-08-05T17:24:20+00:00" }, { "message_id": "5799ddb98377b59711ee5277a8a1904a022321e123c3acd9e831ffbcbc08b413", "sticker": null, "text": "Yeah, sure", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "a3c0fab11a9ca8231400669870593084aab50bb23e7eea4493ff3137149c88dd", "datetime": "2023-08-06T02:23:38+00:00" }, { "message_id": "eb4155062bfe8214b2a5ad9e014c78cfdcfb366d9997cda87094657734238473", "sticker": null, "text": "alright, please give me a few minute", "from_id": "71d2adb423961fe54352d85daa04a469b9fba773377df74208852735a8b0a521", "reply_to": null, "datetime": "2023-08-06T02:40:41+00:00" }, { "message_id": "8822478f9d08ca1266fd5a600fe3b0e698a0e57915f2236c51e79a5b1baedaaf", "sticker": null, "text": "Hi", "from_id": "f77c1e08c1a8a0388421efa0ccd6174583203751c57309af7e1433a6a97c748c", "reply_to": null, "datetime": "2023-08-06T16:18:13+00:00" }, { "message_id": "06cdf5200394954be09c9f561a7b50ac85cf9fa9b1ddc608c9f456730b9eb3c6", "sticker": null, "text": "Hi", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-08-06T16:19:20+00:00" }, { "message_id": "69d5c11a62690eaef54782be35d66ea00f2438b0d486cb6fa41d832b69e009e4", "sticker": null, "text": "Java programming 10th edition by Joyce Farrell materials?", "from_id": "d30727dee440206d937efd5bf808d0bc195c2116de41df64c28916feb9b714a5", "reply_to": null, "datetime": "2023-08-07T12:29:23+00:00" }, { "message_id": "9141adfd61faf7cf59a6922be1bc6bd8ee8dbe709b5ec138440eaa5290ee88d6", "sticker": null, "text": "I want to do a survey regarding well being of IT Employees", "from_id": "32fbd140981cfb32447dc46ae269c75893304be3cbadb7d89e923285a16583bf", "reply_to": null, "datetime": "2023-08-07T12:29:34+00:00" }, { "message_id": "afab7bf9b4cc0c3932f13f4214d1e4d0845b1419eddd3ba5b0e284dd2228b4fe", "sticker": null, "text": "If you are an IT employee please DM me.", "from_id": "32fbd140981cfb32447dc46ae269c75893304be3cbadb7d89e923285a16583bf", "reply_to": null, "datetime": "2023-08-07T12:29:52+00:00" }, { "message_id": "48b1b20d235b92dc1d4514dcc62de82bfe30a7bdb66d0821dea3d41572802627", "sticker": null, "text": "Thank you", "from_id": "32fbd140981cfb32447dc46ae269c75893304be3cbadb7d89e923285a16583bf", "reply_to": null, "datetime": "2023-08-07T12:30:02+00:00" }, { "message_id": "c6681f89fa1869f9110e477ab172d54a6909df1d0f41984087f2271c9e94d5b8", "sticker": null, "text": "Anyone who can help with java programming materials?", "from_id": "d30727dee440206d937efd5bf808d0bc195c2116de41df64c28916feb9b714a5", "reply_to": null, "datetime": "2023-08-07T12:31:06+00:00" }, { "message_id": "f3ea81bfac2d8dc9feb401a7e88d97441329a89705e783fc565ede7ed0ff5331", "sticker": null, "text": "Maybe you can try zlibrary", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-08-07T15:02:31+00:00" }, { "message_id": "d547261b9bdf904db35c0d57ae9d42115898daaddc7e7add54d942d9f50f1c35", "sticker": null, "text": "There are lots of pdf materials on the website", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-08-07T15:03:45+00:00" }, { "message_id": "9ae9909e4128c7950014b9d072b750d814f9c072331c34797d086db8a0b4b2b1", "sticker": null, "text": "who can help me with an api for a website (hotel management)", "from_id": "dedba13088d7da49ca1cd6e5b6f67d12549b64ece326e0ce648924b0d09e2e23", "reply_to": null, "datetime": "2023-08-07T19:26:21+00:00" }, { "message_id": "7a47ed9840bea699ac9d78e46f5067937c5d75e3bda6098fab001bee46a6ad41", "sticker": null, "text": "Hello", "from_id": "32fbd140981cfb32447dc46ae269c75893304be3cbadb7d89e923285a16583bf", "reply_to": null, "datetime": "2023-08-08T05:29:19+00:00" }, { "message_id": "2f650e24e25eb4fc9159fd8a1de2c58e8ec755ea586465c358d315e31597137b", "sticker": null, "text": "Library genises", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "c6681f89fa1869f9110e477ab172d54a6909df1d0f41984087f2271c9e94d5b8", "datetime": "2023-08-08T05:35:49+00:00" }, { "message_id": "7b3de288dd892dbd0b0f8ce6caef456fb9f5fd0994334144df2b048f1789857b", "sticker": null, "text": "What interface do you want to implement?", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": "9ae9909e4128c7950014b9d072b750d814f9c072331c34797d086db8a0b4b2b1", "datetime": "2023-08-08T05:56:19+00:00" }, { "message_id": "94a08a32e2227adf0762ee535cc76e15b564128b6eba6d815580e445525524c0", "sticker": null, "text": "I'm new here", "from_id": "5bf8f4c11cb10106dd2a30c9663953cb1e60f50ad53a01eaecb6429af8652525", "reply_to": null, "datetime": "2023-08-08T11:11:18+00:00" }, { "message_id": "2ccc6d6a7379f6b94621a896568118a3ffafee61c16e831a3f495c8d2b52a83a", "sticker": null, "text": "Guys please a place to get java tutorials", "from_id": "5bf8f4c11cb10106dd2a30c9663953cb1e60f50ad53a01eaecb6429af8652525", "reply_to": null, "datetime": "2023-08-08T20:31:16+00:00" }, { "message_id": "5d15445898a70911dbeeac11d7f06780c5136851f5fff4f3281fb2563cba909f", "sticker": null, "text": "Just begin to write your code", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-08-09T01:12:40+00:00" }, { "message_id": "065fa8d06a25f147fba6c4ce584f3e922276b5fa785c40dfa012e5135a132b86", "sticker": null, "text": "Trading with a professional trader like Chris Dixon gives you a 💯 courage and confidence in trading I never expected this huge profits Sir thank you very much @#USER", "from_id": "4da939984fff85f014da9a058d725c8d28d3c0c59e9136f4b98afd9d19d02eb2", "reply_to": null, "datetime": "2023-08-09T01:44:39+00:00" }, { "message_id": "d4cfee3ba3a35e5c1552959efd8aa7dd7576a7da92d0b46a10dbd50b10fa74be", "sticker": null, "text": "here anyone knows how to convert fingerprint image to ISO 19794-2 format?", "from_id": "fe12a25b9ef822c8b346ef19312130ef6312f9400a9c3cf7f4a92927566428d5", "reply_to": null, "datetime": "2023-08-09T10:20:16+00:00" }, { "message_id": "0eb7f8221da7bb155d87e6fa54cabd9851342a8167916f653824cb591587e3dd", "sticker": null, "text": "test", "from_id": "9006e7f04328b967214448c49eb1c2c4d02e4078bdf8d88f1cfb8f3ef93d36f3", "reply_to": null, "datetime": "2023-08-09T15:13:45+00:00" }, { "message_id": "b200b995bb1c4dafa1185b059673c15a15d5a6e414493f701011b04759609968", "sticker": null, "text": "i've write some text, why is was deleted?", "from_id": "9006e7f04328b967214448c49eb1c2c4d02e4078bdf8d88f1cfb8f3ef93d36f3", "reply_to": null, "datetime": "2023-08-09T15:14:16+00:00" }, { "message_id": "51ea168610b13df01d708ecd8953fe87eea16ffc1124dfd787fedc879a5d8f3a", "sticker": null, "text": "Who guid me to java desktop application development", "from_id": "1a54efce7ae3c7c4e24844e08b64d8a351fec4e2f3adf982f9233e24aa6f6c77", "reply_to": null, "datetime": "2023-08-09T15:35:01+00:00" }, { "message_id": "3bb2a37793728db78244318f8d163564c1b562ebf58966b722e9c2e5aef83615", "sticker": null, "text": "Did anyone had Java certification ??", "from_id": "e807869d2215bcb7d29efb09a4b2a32fe426710ef8c49d003d9133aa09f64f81", "reply_to": null, "datetime": "2023-08-10T06:02:01+00:00" }, { "message_id": "97a6ff65cd75a67d4f947958918a875b13fda7ea27e61ddd57e15630e7f68301", "sticker": null, "text": "How to use?", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": "3bb2a37793728db78244318f8d163564c1b562ebf58966b722e9c2e5aef83615", "datetime": "2023-08-10T07:43:59+00:00" }, { "message_id": "f646fc1dffafb6da3bb7deef62402c5f6444bf2c03bc421e9567bf24e2f71b70", "sticker": null, "text": "Best course in java", "from_id": "50304b830e0284f964c4e77961218e5de48c206503b58de3c86a3968c3fb1912", "reply_to": null, "datetime": "2023-08-10T12:04:27+00:00" }, { "message_id": "8079402609bf4e536a7b338f6836cf84eba64efe08e8badb029b0b2a7a6e04ef", "sticker": null, "text": "Hey everyone,\n\nWhat do you think about Java 21 ?", "from_id": "5a9caf40c2d51bc98c9250412fab8e4255087131bca224e3642af8d98ce1c6c9", "reply_to": null, "datetime": "2023-08-10T13:11:58+00:00" }, { "message_id": "2a41a5b08dbc8ef19426291900ab18d54681fc2e18c8e87fc71d596385a8f4ce", "sticker": null, "text": "I can help you out !", "from_id": "5a9caf40c2d51bc98c9250412fab8e4255087131bca224e3642af8d98ce1c6c9", "reply_to": "51ea168610b13df01d708ecd8953fe87eea16ffc1124dfd787fedc879a5d8f3a", "datetime": "2023-08-10T13:14:36+00:00" }, { "message_id": "4b727291dd229827abee1f3a3d852e5537e1598526d17e3bac56c6029eabe6f1", "sticker": null, "text": "I don't recommend you to do courses !\nLearn from documentation ,YouTube etc .\nMake projects .... Upload on GitHub!\n\nSpecify it on your resume and portfolio!\n\nNow you are good to go and grab jobs !\n\nNOTE : There is no value of course certificate but your own developed project have a lot !", "from_id": "5a9caf40c2d51bc98c9250412fab8e4255087131bca224e3642af8d98ce1c6c9", "reply_to": "f646fc1dffafb6da3bb7deef62402c5f6444bf2c03bc421e9567bf24e2f71b70", "datetime": "2023-08-10T13:17:32+00:00" }, { "message_id": "70afe3b02bf7e5d7f0b6b0d06c480bfffd6bd7921f4dd4997d1b2945e73f42db", "sticker": null, "text": "Hi", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-08-10T16:58:32+00:00" }, { "message_id": "ffcf46ac51fdec2aad18d81fb0920116baa7c7a8ca167322b3381f34ac07e84f", "sticker": null, "text": "Without knowledge of spring framework can we learn springboot?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-08-10T17:00:31+00:00" }, { "message_id": "d637f64ed3354b0f95829dbac756fe2c080869c8fb465ec55c893ab4b06c0bb8", "sticker": null, "text": "Yes", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "ffcf46ac51fdec2aad18d81fb0920116baa7c7a8ca167322b3381f34ac07e84f", "datetime": "2023-08-10T17:02:55+00:00" }, { "message_id": "7fe653b41d2016118c4625b89b8d0bc9658febcaa581ef44704c14a63511b31d", "sticker": null, "text": "If you know spring core it may be helpful", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "ffcf46ac51fdec2aad18d81fb0920116baa7c7a8ca167322b3381f34ac07e84f", "datetime": "2023-08-10T17:03:17+00:00" }, { "message_id": "231ad6b1d386f1d9166d457fffcdbb3d8aaac9d51da88879ea2a6cda588d51db", "sticker": null, "text": "Spring core is best to learn springboot?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "7fe653b41d2016118c4625b89b8d0bc9658febcaa581ef44704c14a63511b31d", "datetime": "2023-08-10T17:09:28+00:00" }, { "message_id": "da92b61bdd7a3a52f5c3800b8ba7e17215361a63e7aab215da353d163713ad0f", "sticker": null, "text": "If you know only core java the it's better to know spring core", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "231ad6b1d386f1d9166d457fffcdbb3d8aaac9d51da88879ea2a6cda588d51db", "datetime": "2023-08-10T17:10:43+00:00" }, { "message_id": "1c04d587c157a6ea64168e6abde37a149163e9a27a5dbc573422c8a6e3c9633d", "sticker": null, "text": "Thanks for helping brother 👍", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "da92b61bdd7a3a52f5c3800b8ba7e17215361a63e7aab215da353d163713ad0f", "datetime": "2023-08-10T17:11:23+00:00" }, { "message_id": "c4a90cda09d541a3ec66a1d5b136d5ce5735ecea556f36daac582a147679f067", "sticker": null, "text": "Welcome", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "1c04d587c157a6ea64168e6abde37a149163e9a27a5dbc573422c8a6e3c9633d", "datetime": "2023-08-10T17:12:24+00:00" }, { "message_id": "8096d6cf28dd2ea2d01948c67fee6c647b107d9a56e81a0c5d1c860f8ad14c59", "sticker": null, "text": "If you know telugu I can explain more clearly", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "1c04d587c157a6ea64168e6abde37a149163e9a27a5dbc573422c8a6e3c9633d", "datetime": "2023-08-10T17:12:55+00:00" }, { "message_id": "d92c7b1bceaacbd8e4440ac947828ccf16dddf55eda1e3690d6e8c6f4e946712", "sticker": null, "text": "Yes! I know telugu bro", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "8096d6cf28dd2ea2d01948c67fee6c647b107d9a56e81a0c5d1c860f8ad14c59", "datetime": "2023-08-10T17:13:40+00:00" }, { "message_id": "3f8594d8f8cb1e6129f947df3207002544ec601ee12aa468390ac35ef8fa4a30", "sticker": null, "text": "Ok msg chai", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "d92c7b1bceaacbd8e4440ac947828ccf16dddf55eda1e3690d6e8c6f4e946712", "datetime": "2023-08-10T17:13:58+00:00" }, { "message_id": "f96a701f158a440129b923f648b5850128c9c9ff06d279be22850d584a4c5cbe", "sticker": null, "text": "Haa", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-08-10T17:14:05+00:00" }, { "message_id": "b39d36b313667cb6e8da44c73b69d5e81f29383e7b14ea75cc149009fcc7f3c0", "sticker": null, "text": "Hi anyone here who can help me develop a flutter mobile app", "from_id": "7c2dcad2e876906a64224420de85973f8da45c19d8de1cf2fec615be7a312adf", "reply_to": null, "datetime": "2023-08-10T17:35:00+00:00" }, { "message_id": "640eb127f2717d3f0193e6bd146bff23d5503221176929858856ea77326b16e9", "sticker": null, "text": "Hi", "from_id": "17fd697d8703a9c7f911a289ed2c23b7ff6524354f188bed936b012506689452", "reply_to": null, "datetime": "2023-08-11T01:07:46+00:00" }, { "message_id": "59564fd73e306320bafa9cecc2705df2956786dff4fdfd90a22a8be7d427d4ef", "sticker": null, "text": "Yes i can", "from_id": "e8054baa155e9a37e2d9ae6620804520956d66dd0e6dd778e77ac64b6f43aa4a", "reply_to": "b39d36b313667cb6e8da44c73b69d5e81f29383e7b14ea75cc149009fcc7f3c0", "datetime": "2023-08-11T02:26:03+00:00" }, { "message_id": "12d95d5b7da291c333f73e398890dc75ff0e6034dbc99281a2f0f15c431284ef", "sticker": null, "text": "Hi", "from_id": "5bf8f4c11cb10106dd2a30c9663953cb1e60f50ad53a01eaecb6429af8652525", "reply_to": null, "datetime": "2023-08-11T06:15:25+00:00" }, { "message_id": "ca23f12acc7e9faa3561668f2d72266d61e28ffbadb6fbf511333c2d959215c7", "sticker": null, "text": "Hlo amen", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "12d95d5b7da291c333f73e398890dc75ff0e6034dbc99281a2f0f15c431284ef", "datetime": "2023-08-11T06:16:45+00:00" }, { "message_id": "a19b1effb743fa53b48955f504791cca3d38a2f3df07184fcb7e4db80de8500b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "dcaf84822824e61e3494a1f65acba1e7933e9f311f58330e83128d98d319ef36", "reply_to": null, "datetime": "2023-08-11T13:27:28+00:00" }, { "message_id": "a8837112f9c3b3b2ceacc313f35df6a34064c0cc159088f6ba626233bbe6d799", "sticker": null, "text": "Good evening everyone. In your opinion, is there a way to find out how many tickets have been sold on TicketOne without having to manually count the map?\nVivaticket, for example, gives availability in writing without having to count the available seats.\nA thousand thanks.", "from_id": "1cd5d8ecbe85a126b41fdbdd804319bc493bee9a444b35ec9ab15065141201dc", "reply_to": null, "datetime": "2023-08-11T21:17:29+00:00" }, { "message_id": "daf0dfbfb36fa3d0284289e708788d36df53625784f48c40ec46e1a9294957f4", "sticker": null, "text": "Salary ??", "from_id": "5a9caf40c2d51bc98c9250412fab8e4255087131bca224e3642af8d98ce1c6c9", "reply_to": "d2d581ae2acaeb648cfdc2d717254bc6eec6a4e9e46426c59b845378b69988d0", "datetime": "2023-08-12T02:09:18+00:00" }, { "message_id": "9cac37a86786d027d2d42be3b67d44e68234369d6da6a58f05e9620d2ad5c71f", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-08-12T05:57:06+00:00" }, { "message_id": "f6c9d4c8f2c5d6fae66a54ad9183e1ea5fddaa690f974c2c9e10b4971ccc85a8", "sticker": null, "text": "Hu", "from_id": "b9db81001ab7c425c780952d062109edfcc64ae507d624c63daea9e3ea9b986e", "reply_to": null, "datetime": "2023-08-12T11:12:10+00:00" }, { "message_id": "c3b82d1fb066aaeb51ed6a2228ced2ae1eefc341a89e0b14563eb5583d37fb95", "sticker": null, "text": "Hy", "from_id": "b9db81001ab7c425c780952d062109edfcc64ae507d624c63daea9e3ea9b986e", "reply_to": null, "datetime": "2023-08-12T11:12:13+00:00" }, { "message_id": "61072f00602cbdfec44b75870bb0f527783146be5dd707a320ea654316a64d32", "sticker": null, "text": "Guys", "from_id": "b9db81001ab7c425c780952d062109edfcc64ae507d624c63daea9e3ea9b986e", "reply_to": null, "datetime": "2023-08-12T11:12:26+00:00" }, { "message_id": "da77c3e70a3693f053af1bde8fce9977c888236c089a9412bcc79e9d76979000", "sticker": null, "text": "If anyone need software projects assignment and learning sessions we are here to help you", "from_id": "b9db81001ab7c425c780952d062109edfcc64ae507d624c63daea9e3ea9b986e", "reply_to": null, "datetime": "2023-08-12T11:12:54+00:00" }, { "message_id": "91ba9612b1de3066a6fc82a2765c29320ca1dfa4d96350b0704063e0b51bab0b", "sticker": null, "text": "Contact us", "from_id": "b9db81001ab7c425c780952d062109edfcc64ae507d624c63daea9e3ea9b986e", "reply_to": null, "datetime": "2023-08-12T11:12:59+00:00" }, { "message_id": "80150afed4272ac2ddc2752f2100483092d19e6c07c50254ad2e7d930b2bcd26", "sticker": null, "text": "Dm me", "from_id": "b9db81001ab7c425c780952d062109edfcc64ae507d624c63daea9e3ea9b986e", "reply_to": null, "datetime": "2023-08-12T11:13:36+00:00" }, { "message_id": "268169def327e436efc26ac8d4461da8694867f91f9003ee21362db0e95cd5de", "sticker": null, "text": "Hello everyone, can you tell me if there is a way/or to just edit the nested json in java? On the screenshot, I pointed out how I would like to see it, in principle, you can write yourself, but you don't want to crutch", "from_id": "7c8e5d52cf7b737d24de629a994268ca35b94bcac270b756ef5a23cd83047539", "reply_to": null, "datetime": "2023-08-13T11:20:20+00:00" }, { "message_id": "26cc2375e68b713453a81c60e6a3c8069d25a6dea70c0c02b28439ecf4e9a4b7", "sticker": null, "text": "Bro , see ....\nFor JSON manipulation, use python script and get the data and extract that using JAVA ....\n\nMake things easy !", "from_id": "5a9caf40c2d51bc98c9250412fab8e4255087131bca224e3642af8d98ce1c6c9", "reply_to": "268169def327e436efc26ac8d4461da8694867f91f9003ee21362db0e95cd5de", "datetime": "2023-08-13T11:35:56+00:00" }, { "message_id": "cd2fed4375dfb475d60661ea5f02f8afe2d08dc6f34cd9df5e9cf891d6b5a60c", "sticker": null, "text": "thank you, will you show me an example?", "from_id": "7c8e5d52cf7b737d24de629a994268ca35b94bcac270b756ef5a23cd83047539", "reply_to": "26cc2375e68b713453a81c60e6a3c8069d25a6dea70c0c02b28439ecf4e9a4b7", "datetime": "2023-08-13T11:36:54+00:00" }, { "message_id": "90050c0ebe045329a15dfe72ee72c6af12966122d6d5389c4e54afa0c9cc8b4c", "sticker": null, "text": "Total messages: 125857", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-08-14T11:04:56+00:00" }, { "message_id": "f9e82b583b0534d4a86f735ce985bacc757c467f4eb8db8e000c6178af265693", "sticker": null, "text": "Guys I'm facing error can anyone help ?", "from_id": "b5ccccbadf900ce250cfc3d7c5c10d3479e374ec4caf16ee867124f05ac3f6d8", "reply_to": null, "datetime": "2023-08-14T11:05:44+00:00" }, { "message_id": "b5c1a2abe3c977c42b2f4a8459104941d20027d2f648d84e8aa1459eac71c1df", "sticker": null, "text": "Hello everyone. Looking for people who will look for bugs in our game. Payment for 1 bug 0.5 eth. Also testing our anti-chit system. When finding critical vulnerabilities in the memory of the game payment 1 eth. Who is free, write me in messages.", "from_id": "fa8170667746e7f2e8324aab2294787a330ec323c4dd2bab7f1910c7e4ed5162", "reply_to": null, "datetime": "2023-08-15T11:36:21+00:00" }, { "message_id": "4b4671f7a702cff3ebb9a228cbf5b2c9713ec8fb75287e5b58fbca4a5dcf6878", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "32fbd140981cfb32447dc46ae269c75893304be3cbadb7d89e923285a16583bf", "reply_to": null, "datetime": "2023-08-15T15:53:14+00:00" }, { "message_id": "ccdeb93af94705029f65c13f321e51459829d3d44b47c14a3bd25024cd57f563", "sticker": null, "text": "Please does it worth learning both Java and react native for mobile app development🙏", "from_id": "19bd7cf607e74d02eac0105bc0790ed4c87b08de0d772f6ee605e6b0f977e248", "reply_to": null, "datetime": "2023-08-16T15:48:03+00:00" }, { "message_id": "e6b2007c573c280741a46cdb41824f16142be2581ef636f26902dd591200c507", "sticker": null, "text": "Hello my friends ...\nThere any one to modify on osmand app open source? ...send me", "from_id": "4e667a814b7fbfb138218a5b57f7c6cad6b02edb924294e6e38233cd28acf006", "reply_to": null, "datetime": "2023-08-16T19:01:56+00:00" }, { "message_id": "78360ca5c355adb59b2432fedb5e348f9a686c372bd05be694f6aad5bacda607", "sticker": null, "text": "Can someone recommend me a java programming youtube channel for beginner to master", "from_id": "709f2ed9d73c5c5045deb4a99cd1b52052ac0f2949aeb6e71e5d38d5b809beb3", "reply_to": null, "datetime": "2023-08-16T19:24:00+00:00" }, { "message_id": "01cb42476797d95d161f2f905d5d01523a9b016c383ee0dcd6aaec3c4fe28879", "sticker": null, "text": "take a course on udemy", "from_id": "385368241167d60a8daae0983adcd7f402ed23b2994f266bd2794eac56ebfc5b", "reply_to": null, "datetime": "2023-08-16T19:24:27+00:00" }, { "message_id": "de4df5929f9a7c5a1e93630f019fe2320d999bd2c31e6cbb4fbc6997f8cb52f3", "sticker": null, "text": "they're cheap", "from_id": "385368241167d60a8daae0983adcd7f402ed23b2994f266bd2794eac56ebfc5b", "reply_to": null, "datetime": "2023-08-16T19:24:36+00:00" }, { "message_id": "c4d761e60a10daeeb163207e281b56b69c342df9f26baad96e3438dd18f0e6e4", "sticker": null, "text": "I know udemy. I am thinking about it. I wonder another opportunities. If someone knows a good youtube channel that would be perfect thank you", "from_id": "709f2ed9d73c5c5045deb4a99cd1b52052ac0f2949aeb6e71e5d38d5b809beb3", "reply_to": "01cb42476797d95d161f2f905d5d01523a9b016c383ee0dcd6aaec3c4fe28879", "datetime": "2023-08-16T19:28:30+00:00" }, { "message_id": "01d03a56de77a943648e4f6e383c12aafa81bf70df1da5ed3e100aa7560780c7", "sticker": null, "text": "I’m looking for someone who can explain real-time Java springboot Microservices using Mongodb,deployed on PCF project \n\nIn interviews people were asking but as I don’t have much real-time exp I’m unable to answer . I would be happy if someone explain the project from end to end or share any links \n\nThanks in Advace!!", "from_id": "e807869d2215bcb7d29efb09a4b2a32fe426710ef8c49d003d9133aa09f64f81", "reply_to": null, "datetime": "2023-08-16T20:27:27+00:00" }, { "message_id": "f77ef49f6c4b1e61d0af837e9652bb62ad1b6ce3b62ab3990b606b7ebc2521fc", "sticker": null, "text": "Hi", "from_id": "8bc67e983c039fed56e781653ef1b14e05bef43e7ea3a265754cb024e32bc82e", "reply_to": null, "datetime": "2023-08-17T09:06:23+00:00" }, { "message_id": "bdf8b346f5c1a542dc01f87dc5fbcc6c758058dcd5d3d716f3a3090d387d7eff", "sticker": null, "text": "i have this error *incompatible types: java.lang.String cannot be converted to org.springframework.security.core.userdetails.UserDetails* when use inMemoryUserDetailsManager", "from_id": "8bc67e983c039fed56e781653ef1b14e05bef43e7ea3a265754cb024e32bc82e", "reply_to": null, "datetime": "2023-08-17T09:07:46+00:00" }, { "message_id": "5b4c22dcae773c9a378ab65922e994e03826512d4a788100132535abb58cc03a", "sticker": null, "text": "Hi guys \nHow has got javaFx tutorial videos? \nI really need them \nIf someone has got send them to me as a valuable gift♥️", "from_id": "0239b823040e8a6b927d22df6d3cedc671dae9c27c3484f76fce0e7b3dfc8fe1", "reply_to": null, "datetime": "2023-08-17T18:33:59+00:00" }, { "message_id": "787d994dc6e133f5711414ac7959d3263af560f19dd63440efbb81f7a73f88c2", "sticker": null, "text": "Me too", "from_id": "1a54efce7ae3c7c4e24844e08b64d8a351fec4e2f3adf982f9233e24aa6f6c77", "reply_to": "5b4c22dcae773c9a378ab65922e994e03826512d4a788100132535abb58cc03a", "datetime": "2023-08-17T20:11:13+00:00" }, { "message_id": "db2a28328e3b7fc2684b7fc75838e45f5090c944ab8e8ed3e7254ffa0d3592da", "sticker": null, "text": "Please buy course on udemy", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": null, "datetime": "2023-08-18T01:39:26+00:00" }, { "message_id": "f0580bb481b780a2c738d76a4c481953272918e64326f2fcfc9c4d5cb98e06f6", "sticker": null, "text": "How to subset elements in array and find the min possible difference of subset sums", "from_id": "d65593d082768dbd60b5bafb1f930309a3727a1d520b317f9dbc95770020db98", "reply_to": null, "datetime": "2023-08-18T06:01:30+00:00" }, { "message_id": "1267f27f7ab1e94b18dd405b1e9acba9bb6791052874c0163674fd9133fe57e6", "sticker": null, "text": "Can anyone know how to write code for it", "from_id": "d65593d082768dbd60b5bafb1f930309a3727a1d520b317f9dbc95770020db98", "reply_to": null, "datetime": "2023-08-18T06:01:49+00:00" }, { "message_id": "cb57f03a29670cac9cb70b51f9eafda9e09a11e61460501de7aec706edcc4dbf", "sticker": null, "text": "Input -n = 4\n97, 12,19,90 \nO/p = 0\nExplanation:\n { 97+12} -{90+19}", "from_id": "d65593d082768dbd60b5bafb1f930309a3727a1d520b317f9dbc95770020db98", "reply_to": null, "datetime": "2023-08-18T06:03:44+00:00" }, { "message_id": "b425372697eda6bd808373e86f9c231abdbc5c0d3471c52b5f22c6ee955d6046", "sticker": null, "text": "Hi anyone with Ms sql text books can please share", "from_id": "6423cc9b640fb9828cee332d036b4157535ae0b3334cb250436c15f52c005568", "reply_to": null, "datetime": "2023-08-18T09:48:13+00:00" }, { "message_id": "1c67d6340a3c0b9b931120b07a7a131332f2abe441fe4e251db721c30d0a3859", "sticker": null, "text": "Can anyone recommend a good course for java with dsa topics and oops concepts", "from_id": "6d8102c59ebd7828d0fe11849ed51c22f2696d7501a691950b19f75e378f23ce", "reply_to": null, "datetime": "2023-08-18T10:27:48+00:00" }, { "message_id": "2f216294a49f16c898e98484184ad7029d885d5fd726ddc06169cf0f6b5a21bd", "sticker": null, "text": "Language", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "1c67d6340a3c0b9b931120b07a7a131332f2abe441fe4e251db721c30d0a3859", "datetime": "2023-08-18T10:34:50+00:00" }, { "message_id": "c79fd69225c5b32a38b57619d9ed2345dd4467d613dd936df51403038a98307a", "sticker": null, "text": "Java", "from_id": "6d8102c59ebd7828d0fe11849ed51c22f2696d7501a691950b19f75e378f23ce", "reply_to": null, "datetime": "2023-08-18T10:35:09+00:00" }, { "message_id": "aa05acb8397c7056b97b7707dea2d100195cb80502ec0060b87bb9dfe1a41886", "sticker": null, "text": "Krunal kushwaha", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "1c67d6340a3c0b9b931120b07a7a131332f2abe441fe4e251db721c30d0a3859", "datetime": "2023-08-18T10:35:23+00:00" }, { "message_id": "3be99d6b90ead92884ed4248eda615d8eb1d46a6801e509ed58bcbde82a5ea8f", "sticker": null, "text": "Good for you\nIf you find, send me 😐♥️", "from_id": "0239b823040e8a6b927d22df6d3cedc671dae9c27c3484f76fce0e7b3dfc8fe1", "reply_to": "787d994dc6e133f5711414ac7959d3263af560f19dd63440efbb81f7a73f88c2", "datetime": "2023-08-18T15:30:18+00:00" }, { "message_id": "1786f723c6f8c2d6b28d0c0884adf9faab1b8682e31beabf672629cfff4cf157", "sticker": null, "text": "We don’t have money", "from_id": "0239b823040e8a6b927d22df6d3cedc671dae9c27c3484f76fce0e7b3dfc8fe1", "reply_to": "db2a28328e3b7fc2684b7fc75838e45f5090c944ab8e8ed3e7254ffa0d3592da", "datetime": "2023-08-18T15:30:43+00:00" }, { "message_id": "015ab7c3c2e8c40ac40aa5a9ecabd1797f42772b852fb6bdd4fe1ae912878065", "sticker": null, "text": "Please where can I find a remote ai ( machine learning and tensorflow) job \nEven if it's not paying for a begin\nI've just complete my ai course and I want to have more practice please 🙏🏿", "from_id": "1ac882a8d531aaf7c63e0bd81da83f5a5ff17402aeac7e6a882ca3c3262232e4", "reply_to": null, "datetime": "2023-08-18T15:51:05+00:00" }, { "message_id": "987d2f08c485399b40f2f4a88c110bad5ad937fbc3b637861244efeb3739cfe8", "sticker": null, "text": "Anyone, can you please tell, if I use news website content in my app, will Google Play ban my account?", "from_id": "f8d1ec361dde775595859dec05938980cbb1c4abeeaa0f71167a7d429859f343", "reply_to": null, "datetime": "2023-08-18T16:13:09+00:00" }, { "message_id": "375b69e5bc6f540b79239e2fe6bcfe1fa80112136d6325f54db13f265e8d3608", "sticker": null, "text": "Guys, who can do script on mexc? The payment is $800. Deadline - two days. The task - withdrawal of funds once every 5-10 minutes from the same account to a static address, preferably with experience with binance or something like this", "from_id": "fe992ac694248949e32e9a3a07ec05b5debd5d2cecdc0c09dd6dc85b22b6dea4", "reply_to": null, "datetime": "2023-08-19T17:48:19+00:00" }, { "message_id": "34a5d4631f521b64d079d119091b33b9f9393442f75a77aab6401a8483a6a1c3", "sticker": null, "text": "/", "from_id": "ac1b5c34fe24d21974599a8ab0fa8746b671c8bd384616db377a6211ee6a5168", "reply_to": null, "datetime": "2023-08-20T02:10:08+00:00" }, { "message_id": "da79ec0b6af7bc58936721e09e460c8f6f017a264bbc2d7f3a20fe2a4d35c38b", "sticker": null, "text": "Guys", "from_id": "ac1b5c34fe24d21974599a8ab0fa8746b671c8bd384616db377a6211ee6a5168", "reply_to": null, "datetime": "2023-08-20T02:10:25+00:00" }, { "message_id": "dd110cbc188b8e2e466a7693b8897adb9ef1712c0d213efd255922584e622159", "sticker": null, "text": "Anybody write Java coding", "from_id": "ac1b5c34fe24d21974599a8ab0fa8746b671c8bd384616db377a6211ee6a5168", "reply_to": null, "datetime": "2023-08-20T02:10:51+00:00" }, { "message_id": "e83f404358d903f20cbbb8ca4dd2eaf38c6ef7093f900802d5d9cc0961b9c3ef", "sticker": null, "text": "anyone can do it please", "from_id": "ac1b5c34fe24d21974599a8ab0fa8746b671c8bd384616db377a6211ee6a5168", "reply_to": null, "datetime": "2023-08-20T02:34:02+00:00" }, { "message_id": "681f5d683f96d4dcc6d668f2f4678cbba7f846c8bcc3896706d9ef0e70b30afe", "sticker": null, "text": "/stat@#USER", "from_id": "5a9caf40c2d51bc98c9250412fab8e4255087131bca224e3642af8d98ce1c6c9", "reply_to": null, "datetime": "2023-08-20T10:47:33+00:00" }, { "message_id": "c3dbc514301e472fa1dc87b892a3894d3a54962b5d5c8efd36e9e217830b2282", "sticker": null, "text": "Total messages: 126272", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-08-20T10:47:34+00:00" }, { "message_id": "1ab3b34e1aa9db615327200effb5e231178b928ce2a98081ad6b8a123b030a01", "sticker": null, "text": "You do your own work. If you need help, give us specifics. Let us know what you tried and where you’re struggling. We won’t do your work for you. Thanks", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "e83f404358d903f20cbbb8ca4dd2eaf38c6ef7093f900802d5d9cc0961b9c3ef", "datetime": "2023-08-20T16:40:44+00:00" }, { "message_id": "1e5fb1ce394b17bf14aa80fa58d5db13c11899df9c71a6eef24ac0b1b4cb7a8b", "sticker": null, "text": "Hi", "from_id": "648d0a656053a8fb8c7cefcedfa38b1a20b8de3664c7bdfbd7f50b4951152d55", "reply_to": null, "datetime": "2023-08-20T20:39:37+00:00" }, { "message_id": "a7e4ad25bf53a652d444ad12c54eaa13ee09c544c6acb43882a0c1a73a157753", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-08-21T15:54:21+00:00" }, { "message_id": "cdb2792ea7970a928f2a7ce27e394bd89dfb1042218c29b7ab6e1a1bd5477f1c", "sticker": null, "text": "Total messages: 126328", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-08-21T23:37:35+00:00" }, { "message_id": "65187e15b2e8db641fcc4b1c64389558ed06376a00346a89b983ee047164624f", "sticker": null, "text": "Hey there\nIs anyone here who knows Spring Boot with the microservices", "from_id": "250b07837f6ebddb771201ddc63b72c48b2add5bbcaad5741a987b3b438a6f21", "reply_to": null, "datetime": "2023-08-22T04:35:43+00:00" }, { "message_id": "f2e0863e0f428a4606a8fc5cee74c29bbba38847ea2aa2d2a7ca7e81bb8b1cea", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-08-22T09:44:56+00:00" }, { "message_id": "bde5650b4dbf0032b10ad8659866b945cba82372a99f9851167dd4143f6d4a78", "sticker": null, "text": "DM me your portfolio", "from_id": "5a9caf40c2d51bc98c9250412fab8e4255087131bca224e3642af8d98ce1c6c9", "reply_to": "bc555111fc2d0c3e61c0c9b08f9a8615ee9de8ea0c5b0201db139248c341fafd", "datetime": "2023-08-22T13:59:56+00:00" }, { "message_id": "cda00b202777716330f9e8a39da15020f7ed7c920e1ce978eded59ed3e2e2212", "sticker": null, "text": "8", "from_id": "ba8b9744a0d78e8665cb43fdee50c1e91f562f2f681a033dd7c5f1cf82786135", "reply_to": null, "datetime": "2023-08-22T18:06:17+00:00" }, { "message_id": "9ecbcd3925736ab489cd459e952fe03283e019a1e59f44686c40aa18269e6439", "sticker": null, "text": "One easy way is to use ftl", "from_id": "af5038ec83a3dc8100459f55c62f3c52bbd38b0f2dd59d192d8734b00afa538a", "reply_to": "268169def327e436efc26ac8d4461da8694867f91f9003ee21362db0e95cd5de", "datetime": "2023-08-23T01:46:44+00:00" }, { "message_id": "ca6ceae0a56353d5fd58f14368a5ec366cbb40fb55f23440224a8101f19365db", "sticker": null, "text": "which is the best book for c language ?", "from_id": "e85de8725b8c720fac4bc0aa0ec2e6425d39e5c71ca94a0f64f6ea7a46d4cffc", "reply_to": null, "datetime": "2023-08-23T08:12:17+00:00" }, { "message_id": "4a26149f70c2a9a467ceeb79fde263c820860376aa39e35dea6be99c2cd9391e", "sticker": null, "text": "Dear IT Industry Professionals,\n\nGreetings! 🌟\n\nAre you ready to make a difference? Your insights can shape the future of well-being in the IT industry! My name is Aditi Gaikwad, and I am pursuing my Master's in Industrial Psychology at S.P College, Tilak Rd, Pune. As part of my academic journey, I'm conducting a captivating research study on the Overall Well-Being of IT Employees, and I need your valuable input.\n\n**Why Participate?**\nThis is your chance to be a catalyst for positive change! Your participation will contribute to understanding and enhancing the well-being of IT professionals like yourself. By sharing your experiences and thoughts, you're actively shaping the future work environment for all.\n\n**Your Contribution Matters**\nYour voice matters, and your insights are invaluable. This questionnaire is divided into three engaging sections, designed to capture a holistic view of your well-being as an IT employee. Rest assured, all your responses will be treated with the utmost confidentiality and will be used exclusively for academic purposes.\n\n**What's in it for You?**\n- A chance to reflect on your well-being and work-life balance.\n- The opportunity to contribute to research that can bring positive changes to the IT industry.\n- Be part of a pioneering effort to create a healthier and more fulfilling work environment.\n- Your involvement could pave the way for better well-being initiatives in IT companies.\n\n**How to Participate?**\nParticipating is a breeze! Simply click on the following link to access the questionnaire:\nhttps://formsgle/v9ujNBqCZvczHp888\n\nYour insights can ignite a positive revolution in the IT industry's well-being landscape. Join hands with me to make this research journey impactful and inspiring!\nThank you for considering this invitation. Together, let's shape a brighter, more balanced future for IT professionals.\n\nWarm regards,\nAditi Gaikwad\nMaster's in Industrial Psychology\nS.P College, Tilak Rd, Pune", "from_id": "32fbd140981cfb32447dc46ae269c75893304be3cbadb7d89e923285a16583bf", "reply_to": null, "datetime": "2023-08-23T15:57:10+00:00" }, { "message_id": "f1bc7d0dfffc6762545fdb1a1897d0abf108c60a5fda7b519e2fcee72242ab86", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-08-23T17:24:16+00:00" }, { "message_id": "1789e05a1bde88fe8b3134be38296090f99926274ea011490dac2bb8dff580bc", "sticker": null, "text": "**Anyone who want to teach on my youtube channel can dm me. **\n\n**Note**: Its our beginning so we can't pay. So, if you have passion to teach then only dm me.", "from_id": "a0cd83eeb17e177bb027c9c34cf9f936b0b95c26b6a356a60f568fd3252c7fdc", "reply_to": null, "datetime": "2023-08-24T17:12:06+00:00" }, { "message_id": "e17377e8815cf6a056587c75a0690be37391d85358a4c41b9889f07bd0583a04", "sticker": null, "text": "`does anyone have a youtube video tutorial explaining authenticationsuccesshandler for the link to me`", "from_id": "b8e068c7ef22297f762a42b14290acd44a60cb69e6f9e59052a6d644c9cc8a08", "reply_to": null, "datetime": "2023-08-24T17:27:12+00:00" }, { "message_id": "7cb5f76925e0d4e8dfc3de7bcf735f620f9207ea2a5cfef6fc425ea8d02ea444", "sticker": null, "text": "Any dennis ritchie book on c", "from_id": "af5038ec83a3dc8100459f55c62f3c52bbd38b0f2dd59d192d8734b00afa538a", "reply_to": "ca6ceae0a56353d5fd58f14368a5ec366cbb40fb55f23440224a8101f19365db", "datetime": "2023-08-25T06:29:06+00:00" }, { "message_id": "d9a5e57d8ba667d0466561aaf421ff21dc5374a34ec56eadc7a777231c82963e", "sticker": null, "text": "Looking for c++ developer with some knowledge in artificial intelligence. If you are fit call or whatsapp me at +254729980715", "from_id": "7edd3e997a03296dd31ba67282c774ba98573fde6506f8516927301f7ed0ce55", "reply_to": null, "datetime": "2023-08-25T07:56:29+00:00" }, { "message_id": "cf36d36811cdc83cab6af2fbb12885084f66c9fcb380495cfa436031b9d57edb", "sticker": null, "text": "experienced java developer available for weekend job. write in pvt", "from_id": "385368241167d60a8daae0983adcd7f402ed23b2994f266bd2794eac56ebfc5b", "reply_to": null, "datetime": "2023-08-26T11:48:47+00:00" }, { "message_id": "01537175590f5e9b53a5a5d094993e2d27ad96bebe7d4128bb510b75aa002f52", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-08-27T03:46:31+00:00" }, { "message_id": "c359a9fea0401c84b239a13628f56985e46f3e8c86039cec7e3d759b550f1ced", "sticker": null, "text": "Hello good people, I want to practice big nested json response integration in laravel project. Please tell me is there any api provider who provide big nested json response for free", "from_id": "642f5151cc3eb121d2ede8272e7cece6d8442efa9eb1ee6f564aa2a9a72ad618", "reply_to": null, "datetime": "2023-08-27T08:13:00+00:00" }, { "message_id": "0bd3db3b2ddf2f719ca5e3685653562ff296ccdb621e7e41de328c2e72a7ca23", "sticker": null, "text": "Wiremock it.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "c359a9fea0401c84b239a13628f56985e46f3e8c86039cec7e3d759b550f1ced", "datetime": "2023-08-27T16:31:40+00:00" }, { "message_id": "5a58bc981ff6b5a671900a0e8a4440440adcaf04106af47363baee2ec6852926", "sticker": null, "text": "Create a file with the json and use it", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2023-08-27T16:31:59+00:00" }, { "message_id": "631c1ad6db431de441e6a936776358b301f0603bf0295fb134f5ee9263acafa4", "sticker": null, "text": "Thank you", "from_id": "642f5151cc3eb121d2ede8272e7cece6d8442efa9eb1ee6f564aa2a9a72ad618", "reply_to": "5a58bc981ff6b5a671900a0e8a4440440adcaf04106af47363baee2ec6852926", "datetime": "2023-08-27T16:32:26+00:00" }, { "message_id": "4d0dba411bb70493e2b09d382daa3c6fff87ef9e8eec8d0382a3d62568050bac", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "631c1ad6db431de441e6a936776358b301f0603bf0295fb134f5ee9263acafa4", "datetime": "2023-08-27T16:51:18+00:00" }, { "message_id": "6195b333403ce0c0eec9bec73d9fb58f0915890cb9d5d6fd69ec661de0371df5", "sticker": null, "text": "Many many thanks brother.", "from_id": "642f5151cc3eb121d2ede8272e7cece6d8442efa9eb1ee6f564aa2a9a72ad618", "reply_to": "4d0dba411bb70493e2b09d382daa3c6fff87ef9e8eec8d0382a3d62568050bac", "datetime": "2023-08-27T17:30:56+00:00" }, { "message_id": "cad74205d22137a7d9741bc3b014e8899d3edbef1cc759c253400f43d2e9227b", "sticker": null, "text": "I want to contribute in open source project that is primarily using Java as a language. Can somebody guide me", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": null, "datetime": "2023-08-28T09:16:39+00:00" }, { "message_id": "93ba4f3780907f11db590a353517482246f164831b05dbfa096206d6bc7dff46", "sticker": null, "text": "Do you interest in wiki software?", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": "cad74205d22137a7d9741bc3b014e8899d3edbef1cc759c253400f43d2e9227b", "datetime": "2023-08-28T15:24:30+00:00" }, { "message_id": "80cf47a98bd485f3c4700fae33503f0f4cdf1321589280d17d9fdcb8e1a46f36", "sticker": null, "text": "Sure, I can contribute", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": null, "datetime": "2023-08-29T08:07:09+00:00" }, { "message_id": "0da05e65431fe3b358e3c92172379fc2f689a5bcd96a374303bc689363e6fe49", "sticker": null, "text": "Sure", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": "93ba4f3780907f11db590a353517482246f164831b05dbfa096206d6bc7dff46", "datetime": "2023-08-29T08:07:16+00:00" }, { "message_id": "b41d11609a419676e6f8b6149b59caf3f44295ffcf078c2c2875cf254c02505d", "sticker": null, "text": "I want to write a wiki software., Which Will look like dokuwiki", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": "0da05e65431fe3b358e3c92172379fc2f689a5bcd96a374303bc689363e6fe49", "datetime": "2023-08-29T09:42:09+00:00" }, { "message_id": "1f01c879abf88ac5bca412fd2f2c18d6eea7ad0b4afba31ece296b53eadaf112", "sticker": null, "text": "I found that its ability of search isn't enough", "from_id": "0966c93c1c1652648d8c00d461506836f9e5ff79ba7cc22a4516cb218c0c91c2", "reply_to": null, "datetime": "2023-08-29T09:44:00+00:00" }, { "message_id": "f53d77537d09fb8de15909ef5c23fadc7b20a4df814ee25bd2d2c3ebb0d17122", "sticker": null, "text": "Is the issue solved??", "from_id": "d128626ae8bdc66e5de2f6ab34754c5f38d887a4f3edb25272f6b53fa090d9ef", "reply_to": "7cfb4455b688998967b771010069a8ee6b9ef89e36ca5f5cb816002a593f6866", "datetime": "2023-08-29T13:05:42+00:00" }, { "message_id": "b25319b0b8dbb4d1215701f4b0b2f87b15a50750acebbf7bbd206f61e10f1a68", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-08-29T13:37:22+00:00" }, { "message_id": "c177033241949946dbe04df443db2838f40c855e5d8691cc25e241a82d34f1ec", "sticker": null, "text": "Can we connect on inbox?", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": "1f01c879abf88ac5bca412fd2f2c18d6eea7ad0b4afba31ece296b53eadaf112", "datetime": "2023-08-29T16:12:27+00:00" }, { "message_id": "ef0287e0a6508e1f892003000df60cc289c00c949a3be9664d48877118d02358", "sticker": null, "text": "Guys, who can do script on mexc? The payment is $800. Deadline - two days. The task - withdrawal of funds once every 5-10 minutes from the same account to a static address, preferably with experience with binance or something like this", "from_id": "fe992ac694248949e32e9a3a07ec05b5debd5d2cecdc0c09dd6dc85b22b6dea4", "reply_to": null, "datetime": "2023-08-29T19:23:35+00:00" }, { "message_id": "d831dd42b5eb9bfd01102ce070e2fc0d0f5f9e54826d4e91d62537c4cdd0f2e6", "sticker": null, "text": "@#USER @#USER English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-08-30T19:01:46+00:00" }, { "message_id": "6569e6c8cc8038422e94dcab597a245e57943b163875adbd13c12fbd4cbda1a5", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "58dc8a955a24a6b87ac7e0bfd9ff44428dfe4137d12487d4107ebd1f5d72cf7c", "reply_to": null, "datetime": "2023-08-30T23:49:42+00:00" }, { "message_id": "897e1b7fe4f7d0e087577bcf9f89217e5eb202d154ad996fb05f24c0225d9e17", "sticker": null, "text": "I have a job for Java senior. Need to clean toilet for my cat. Pm me.", "from_id": "53f9037e02e9b49f6d25f1864ec8c28d4c199ba21697afb44039e9288f051532", "reply_to": "2242d3536fdc26e88239984769b911378db2819a15a9a702546cedf0425fe8f2", "datetime": "2023-08-31T08:44:24+00:00" }, { "message_id": "061b39af2c6f21ab6fd00f2bd1624b0f47c953d1bd0b0e2f6c4d6cf31636ee24", "sticker": null, "text": "how much?", "from_id": "385368241167d60a8daae0983adcd7f402ed23b2994f266bd2794eac56ebfc5b", "reply_to": "897e1b7fe4f7d0e087577bcf9f89217e5eb202d154ad996fb05f24c0225d9e17", "datetime": "2023-08-31T10:22:57+00:00" }, { "message_id": "04e735ea69c6b3d8dfdc130e9bb3f29e2f05315175f4514f8772f16cb678c41c", "sticker": null, "text": "Loool", "from_id": "a3d9059c394662c501f5c8df775a2dd0ee8e5c900dcc0fa18f8e5fabe34cfb7a", "reply_to": "897e1b7fe4f7d0e087577bcf9f89217e5eb202d154ad996fb05f24c0225d9e17", "datetime": "2023-08-31T17:31:29+00:00" }, { "message_id": "f3ef8a71c3d13352f479d297952cc8de4f714d607a53ec8dc1a83931567653a8", "sticker": null, "text": "5$/hour , location 📍 🇷🇺 Russia Sochi", "from_id": "53f9037e02e9b49f6d25f1864ec8c28d4c199ba21697afb44039e9288f051532", "reply_to": "061b39af2c6f21ab6fd00f2bd1624b0f47c953d1bd0b0e2f6c4d6cf31636ee24", "datetime": "2023-08-31T18:08:32+00:00" }, { "message_id": "f5b642faf07af15cc0cb752dc91522d84f80bce7c5f729c33ecc6bec19f372e2", "sticker": null, "text": "no thanks", "from_id": "385368241167d60a8daae0983adcd7f402ed23b2994f266bd2794eac56ebfc5b", "reply_to": "f3ef8a71c3d13352f479d297952cc8de4f714d607a53ec8dc1a83931567653a8", "datetime": "2023-08-31T19:04:55+00:00" }, { "message_id": "83c84a772fa82405902a9d66b656ddebf6c32af706115ed9debd81ddb06172bc", "sticker": null, "text": "Why not? Large amount for unemployend Java seniors...", "from_id": "53f9037e02e9b49f6d25f1864ec8c28d4c199ba21697afb44039e9288f051532", "reply_to": "f5b642faf07af15cc0cb752dc91522d84f80bce7c5f729c33ecc6bec19f372e2", "datetime": "2023-08-31T21:18:38+00:00" }, { "message_id": "6cb931eb026bcca8b6ad1e5c71ee4f95980e7309807ce1d7c14a2ccf3b6a6761", "sticker": null, "text": "i work i am not unemployed i earn enough to live well, i'm looking for extra job. i'm not desasperate, maube you are? i'm not going to do hatbyou said for 5€", "from_id": "385368241167d60a8daae0983adcd7f402ed23b2994f266bd2794eac56ebfc5b", "reply_to": "83c84a772fa82405902a9d66b656ddebf6c32af706115ed9debd81ddb06172bc", "datetime": "2023-09-01T04:46:16+00:00" }, { "message_id": "1eb09912575c81634ad649bf6a54f0376dd50fa26e93cd1bbdf2d1d8d5d33593", "sticker": null, "text": "Very sad, can you please help me to find Java senior for this job?", "from_id": "53f9037e02e9b49f6d25f1864ec8c28d4c199ba21697afb44039e9288f051532", "reply_to": "6cb931eb026bcca8b6ad1e5c71ee4f95980e7309807ce1d7c14a2ccf3b6a6761", "datetime": "2023-09-01T08:45:56+00:00" }, { "message_id": "274e7f8e76972ad9768241c33ac517e3b01c4067aed027cbf05d9f331df53dfe", "sticker": null, "text": "sure i'll keep you update", "from_id": "385368241167d60a8daae0983adcd7f402ed23b2994f266bd2794eac56ebfc5b", "reply_to": null, "datetime": "2023-09-01T08:46:36+00:00" }, { "message_id": "e9524c20fad11f9c260cf13bb46c7b6b3afd081e0b13573b1c37b656241af26d", "sticker": null, "text": "I wanna some idea for project in flutter for beginner", "from_id": "69952bbcb046d91bdb693df1c92b03c7e2630407ed7baf9929f5497a796d9ca8", "reply_to": "40597e2f7728294706532dd172ee4b622f1ea707d6a517532a5d3cb3437be72d", "datetime": "2023-09-01T10:18:32+00:00" }, { "message_id": "77b0949d7159ab7fd3dad7c665d0f705c594cecb9570ed69092cce64c649c328", "sticker": null, "text": "Looking for a remote job", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2023-09-01T15:13:03+00:00" }, { "message_id": "9acc1ff5448a21ad6ca0aa8fcf195b63038631d3f5d141d0088e2beccdeca155", "sticker": null, "text": "Hey guys i need a java mentor or helper, who's very good with intellij idea. I have been trying to create a crud web app, but when i send the data from the frontend to the backend, the data doesnt get to the servlet despite defining the servlet in the user form.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-09-01T19:39:31+00:00" }, { "message_id": "0449cf7a64c1c8188f7c0804320a54266ce37479d80db6df63362f2e751f10ec", "sticker": null, "text": "Can u share screen shot of ur code", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": "9acc1ff5448a21ad6ca0aa8fcf195b63038631d3f5d141d0088e2beccdeca155", "datetime": "2023-09-01T19:49:36+00:00" }, { "message_id": "e616d24e2f7bdb348fa907e4c72a416eccc23ea80653b037b6a48716d94c0bb0", "sticker": null, "text": "thanks bro, I'll snap and send to you since media is not allowed here", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "0449cf7a64c1c8188f7c0804320a54266ce37479d80db6df63362f2e751f10ec", "datetime": "2023-09-01T19:59:37+00:00" }, { "message_id": "8fa32a1fd99c144431dd83cfe0ddbda12867112f41dbc1f68ba7d2ffcd06a736", "sticker": null, "text": "is it solved?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "9acc1ff5448a21ad6ca0aa8fcf195b63038631d3f5d141d0088e2beccdeca155", "datetime": "2023-09-01T23:09:17+00:00" }, { "message_id": "e03a63062f626bd8c602ee4e67410df7163738d78c4c2a7391fdfffba75b4367", "sticker": null, "text": "No not yet", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "8fa32a1fd99c144431dd83cfe0ddbda12867112f41dbc1f68ba7d2ffcd06a736", "datetime": "2023-09-02T06:18:49+00:00" }, { "message_id": "a5222cfb8fafa6a76eb2a43e77f062fa903c3b10dd25c473f77408d23c2d7611", "sticker": null, "text": "Can you help me?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "8fa32a1fd99c144431dd83cfe0ddbda12867112f41dbc1f68ba7d2ffcd06a736", "datetime": "2023-09-02T06:19:05+00:00" }, { "message_id": "0d5ab1ca3df830178a975be0df0e1d840f782690a0296fc16694059a4c823bc1", "sticker": null, "text": "Its 11.20pm here. I might be able to help tomorrow morning", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2023-09-02T06:19:44+00:00" }, { "message_id": "5e0b27085decc3f7d5e45c003b1b9f1a13845d7ab23da9a4401c1d573018fb3d", "sticker": null, "text": "Dm'ed you.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2023-09-02T06:20:36+00:00" }, { "message_id": "8ca2a9ab0a9a67a2d899b7cff319dc04222a06e28ba7628b95e53004a6e12179", "sticker": null, "text": "Alright thanks bro, it's morning here", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "0d5ab1ca3df830178a975be0df0e1d840f782690a0296fc16694059a4c823bc1", "datetime": "2023-09-02T06:25:09+00:00" }, { "message_id": "1e7259efc56c72d701cbce8b9420cded4c9b62967d69c12076e3ad1fa3626e63", "sticker": null, "text": "If anyone wants to build website, application or domain etc .. then dm me I am an computer engineer and I have done startup plz support us ..... Friends☺️☺️☺️☺️☺️☺️", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2023-09-02T08:58:06+00:00" }, { "message_id": "86806e114fafddb6642c51d71842d9c1a870a3d82458edef311881b0fdfd77bb", "sticker": null, "text": "That is no where near large amount, it is barely something that junior without any experience would work for", "from_id": "09e2a4fc14a6b034d5cb158f3a2716f7dd1ef641e4dbc5c2c5047dad93997775", "reply_to": "83c84a772fa82405902a9d66b656ddebf6c32af706115ed9debd81ddb06172bc", "datetime": "2023-09-02T13:35:14+00:00" }, { "message_id": "0ce0496352a203df426ac27fad03c9e336f4cbe1372de312151c17faa6ca5540", "sticker": null, "text": "Is ok?", "from_id": "8f5312ce78a995b87d57904f569fc5297a5800747919481ebba4b541c4b3e61c", "reply_to": null, "datetime": "2023-09-03T01:10:07+00:00" }, { "message_id": "aa598fbab7840b79f39b7e99ff364eff7387ddde6492f681a43fed12f9d5a12e", "sticker": null, "text": "Can I chat in here", "from_id": "8f5312ce78a995b87d57904f569fc5297a5800747919481ebba4b541c4b3e61c", "reply_to": null, "datetime": "2023-09-03T01:10:18+00:00" }, { "message_id": "c417b5f97a463679569b658606ed9effa9b58281c15ba5789b73cc5765219596", "sticker": null, "text": "Complete C Language course with basic concepts visit to my YouTube channel \"scriptsafar\"", "from_id": "91780bf04d7186153da65056930b1a60bbb201bebcfba1e4d64eba22287feaeb", "reply_to": null, "datetime": "2023-09-03T04:09:09+00:00" }, { "message_id": "49a268881fee23ab880f04b2471b7272d6dd69462283727b9d5285ddc0192561", "sticker": null, "text": "Hi", "from_id": "f7079788db636819554185b16be4d5cb9e8be7b4066055684993fac5791faca2", "reply_to": null, "datetime": "2023-09-03T11:01:00+00:00" }, { "message_id": "bdfd12022d6f3aa9514da35dedd6527c422d39e69f6b02997344f96609d8e12b", "sticker": null, "text": "Here", "from_id": "f7079788db636819554185b16be4d5cb9e8be7b4066055684993fac5791faca2", "reply_to": null, "datetime": "2023-09-03T11:01:02+00:00" }, { "message_id": "15f6a6f44a275dba54363bcd950a81bac7518cfee78d28983fa55cfcd797325c", "sticker": null, "text": "Am new and am from DRC", "from_id": "f7079788db636819554185b16be4d5cb9e8be7b4066055684993fac5791faca2", "reply_to": null, "datetime": "2023-09-03T11:01:18+00:00" }, { "message_id": "420fa9ae7f37e06fb289590345f39eeb8b284ce1b68570f8961efaa41a826c21", "sticker": null, "text": "Cong", "from_id": "f7079788db636819554185b16be4d5cb9e8be7b4066055684993fac5791faca2", "reply_to": null, "datetime": "2023-09-03T11:01:20+00:00" }, { "message_id": "a9b13bca5a8f0f80d62f11083fc8413e57167ee38b1343ae33665aeb03ddae13", "sticker": null, "text": "Am really much interested in learning java", "from_id": "f7079788db636819554185b16be4d5cb9e8be7b4066055684993fac5791faca2", "reply_to": null, "datetime": "2023-09-03T11:01:51+00:00" }, { "message_id": "93c82432011b0e4eae8bc8b3a6c1186c14e1d5284b0aee4b6726e613a29b7037", "sticker": null, "text": "Hello everyone", "from_id": "b49bef1a24a801927b47e2ddff44c128d6d9d9947326d7e52bec9b925ab8478a", "reply_to": null, "datetime": "2023-09-03T11:13:41+00:00" }, { "message_id": "8c632a550c15d70c4b76662b06445438f625a24aa3b8638d2818a80b6252217a", "sticker": null, "text": "Hi", "from_id": "f7079788db636819554185b16be4d5cb9e8be7b4066055684993fac5791faca2", "reply_to": "93c82432011b0e4eae8bc8b3a6c1186c14e1d5284b0aee4b6726e613a29b7037", "datetime": "2023-09-03T11:14:14+00:00" }, { "message_id": "996ef372c51247eecc62686c7093535f5bb71e831feef0db2b6c8bbb9c699b75", "sticker": null, "text": "Let's test our understand about java", "from_id": "b49bef1a24a801927b47e2ddff44c128d6d9d9947326d7e52bec9b925ab8478a", "reply_to": null, "datetime": "2023-09-03T11:14:39+00:00" }, { "message_id": "6729d257095f954b3edb81f69ad724f960fecdbacb436793aeca9aaaeb219070", "sticker": null, "text": "Good day", "from_id": "b49bef1a24a801927b47e2ddff44c128d6d9d9947326d7e52bec9b925ab8478a", "reply_to": "8c632a550c15d70c4b76662b06445438f625a24aa3b8638d2818a80b6252217a", "datetime": "2023-09-03T11:14:56+00:00" }, { "message_id": "ffb741473d36ecfd202ed49da9a118857fe39a694d8c53682f71fcf92d71e49b", "sticker": null, "text": "Thanks sir", "from_id": "f7079788db636819554185b16be4d5cb9e8be7b4066055684993fac5791faca2", "reply_to": "6729d257095f954b3edb81f69ad724f960fecdbacb436793aeca9aaaeb219070", "datetime": "2023-09-03T11:16:21+00:00" }, { "message_id": "bb86909d83d725dbe018b72985b3e4cb03278ea5b0b271ec8c0c9d3c1e517d0f", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-09-03T14:39:44+00:00" }, { "message_id": "680ac121515ecdd5a0bbe8ec1fdf798a688d817bda22aac3176474956946c2ae", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "91780bf04d7186153da65056930b1a60bbb201bebcfba1e4d64eba22287feaeb", "reply_to": null, "datetime": "2023-09-06T15:03:25+00:00" }, { "message_id": "f7e7973cc232f3ee4a42f367e348ec1a97d76e5b8afce204034b0c2e19d51b14", "sticker": null, "text": "Learn complete HTML visit to my channel \"scriptsafar\"", "from_id": "91780bf04d7186153da65056930b1a60bbb201bebcfba1e4d64eba22287feaeb", "reply_to": null, "datetime": "2023-09-06T15:05:33+00:00" }, { "message_id": "77eebaccd50ca2790564f5829142813b3cb5b63c13656a9bc4533d493e060e85", "sticker": null, "text": "Hey👋", "from_id": "726fe518ef581cb29198ea9c0fd58514ba5b76dd2c9aa8b366a266fc08a858d3", "reply_to": null, "datetime": "2023-09-07T15:08:50+00:00" }, { "message_id": "f343d22a4da1ba1ee5155e06b7e38c24827a4471e59c0344ea27087037ddc3f8", "sticker": null, "text": "Hello", "from_id": "397e251e8c0f9e96ffcecc4a1ed70bce6053deb5780c9e065ecf1e1a1b04283d", "reply_to": null, "datetime": "2023-09-08T03:19:22+00:00" }, { "message_id": "765017e7ad351757f13b05b602fdf7f24a0d6e51c880e07b544e38117a67bb7c", "sticker": null, "text": "is real, but need to pay.", "from_id": "a563f1b39fed1ed5b84c959b9802b2d685be43426c4b84890864dba43ec29c22", "reply_to": null, "datetime": "2023-09-08T10:59:21+00:00" }, { "message_id": "4ba70fa770945b30a88ba524ce531ea182fe5eff29d2969b242ae240268e149a", "sticker": null, "text": "Guys, is there anyone who can help me and see a project I've written?", "from_id": "97c3f2dfc116eb025c7327a05c8bdc39d909c3d007bea027a854507e683d3569", "reply_to": null, "datetime": "2023-09-08T14:41:12+00:00" }, { "message_id": "80f959bfa562b8153ad5ae426e8500954c41f3bbd22b531a2097a4ef08388344", "sticker": null, "text": "Share please...", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "4ba70fa770945b30a88ba524ce531ea182fe5eff29d2969b242ae240268e149a", "datetime": "2023-09-08T16:18:41+00:00" }, { "message_id": "282244b6f1a55486de4e091520e6d189ea5104fcf2630cd97032e99ccca1371a", "sticker": null, "text": "i’m need developers", "from_id": "13a39d4b4f5bce8eb820af813c959442a693907dc34562008f738a35e1dd22c9", "reply_to": null, "datetime": "2023-09-08T18:51:42+00:00" }, { "message_id": "a3580bfed767b83414eb534712ceaa2d082d4ab219cd64bdc23ebfb37f0678b8", "sticker": null, "text": "who can help for money", "from_id": "13a39d4b4f5bce8eb820af813c959442a693907dc34562008f738a35e1dd22c9", "reply_to": null, "datetime": "2023-09-08T18:51:47+00:00" }, { "message_id": "9c6677ee26502ee25e81c8e2406afed74675208795db95a9cdc23c0b397584c4", "sticker": null, "text": "i will pay on btc", "from_id": "13a39d4b4f5bce8eb820af813c959442a693907dc34562008f738a35e1dd22c9", "reply_to": null, "datetime": "2023-09-08T18:51:54+00:00" }, { "message_id": "1b039a83b4f56d00724b45752ccdd0bc9c8f99205e6a574ec5d2d90ceb66ba5b", "sticker": null, "text": "or eth", "from_id": "13a39d4b4f5bce8eb820af813c959442a693907dc34562008f738a35e1dd22c9", "reply_to": null, "datetime": "2023-09-08T18:51:56+00:00" }, { "message_id": "f807ed23f96f5208345e762623eafb620a7aa5acd5cf3d3e7c2496cd4f6ca989", "sticker": null, "text": "What kind of dev?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "282244b6f1a55486de4e091520e6d189ea5104fcf2630cd97032e99ccca1371a", "datetime": "2023-09-08T19:08:36+00:00" }, { "message_id": "09200f0bcdd31aba0f50cd0b4d3c410e484785552786a4b29c58dfc547c838f6", "sticker": null, "text": "Now days I working in spring framework if someone in same doman just inbox me we will go together learning new things", "from_id": "468a689cb6e975685425a853211f0f03712d7de1b1886513bf9c8930e5439127", "reply_to": null, "datetime": "2023-09-08T19:14:27+00:00" }, { "message_id": "59732d3f7ff229f8fc0f0f560c51e94f1083e37c0b3de9406bd7d895d8a07a95", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "4ba70fa770945b30a88ba524ce531ea182fe5eff29d2969b242ae240268e149a", "datetime": "2023-09-08T23:43:20+00:00" }, { "message_id": "fb957fca8d7a3cb975f9e03751d7d8b74b2f2e5d156f2f386c8921a4a4eb6691", "sticker": null, "text": "Like what?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "c69db780f6a03f0b8f12b1becdb19e8384114f09f35e0f7521b2c6663d619f4d", "datetime": "2023-09-09T00:45:33+00:00" }, { "message_id": "1e9c49b79ae4520c69114c2a9495a702039fb3553843fef57d0a988cba298091", "sticker": null, "text": "There’s a JavaScript group. Ask there", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "4acaa983e7d574ba37295103796bad3bab9a61a19350ae49bfcab73ddea80017", "datetime": "2023-09-09T00:46:53+00:00" }, { "message_id": "06a54d7d5b2692476cda28297946736ca5dbf80e430b17ff0f3f4827029b71ae", "sticker": null, "text": "Sent it to you. They are more active than here", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-09-09T00:48:23+00:00" }, { "message_id": "7b00498486942b017dfc3e980ee9a630f18ea38eaf81769e7a6e8b3878f60984", "sticker": null, "text": null, "from_id": "dd0cad357976a34504e3a09387d0e11b1fb235cab50e77e4ddf82003d5460eab", "reply_to": null, "datetime": "2023-09-09T05:52:06+00:00" }, { "message_id": "e164be78a835954767d749826c6bfdb36ba526c042067b8a4de108f5ac593ba6", "sticker": null, "text": "Any one want to have any course for free can dm me", "from_id": "6da62052e75b6c58af68db882f7e655825b02984125709158ed66db74da497d5", "reply_to": null, "datetime": "2023-09-09T07:31:39+00:00" }, { "message_id": "7a40f3b6c95fd3a2aa8847e461a586ecf519d13df34a39a6c33ef9162f653026", "sticker": null, "text": "what course it is", "from_id": "82da4a433c662abb8736e09829f8f7006958d766107cd94c522dd6f3cf5e4385", "reply_to": null, "datetime": "2023-09-10T06:48:56+00:00" }, { "message_id": "43f164ac405916c42011f2abc9086c788f7ba6ffc557a26649e0f0a87423fa41", "sticker": null, "text": "U-Sticker detects this as offensive text.", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "6b925c901ee1659b78263e52ae41c91b5c3ea56d020448b5f08565f4ba8c5c94", "datetime": "2023-09-10T09:01:21+00:00" }, { "message_id": "fcf7c4a29056168f707d88409c226fad2d023a68e661060f18a2727eaca4c3b4", "sticker": null, "text": "I need a java mentor for my learning of java", "from_id": "d54ca4483407779594e1d4e967b92cafb44e5de81d7433fd2bdb94cb52f19fd0", "reply_to": null, "datetime": "2023-09-10T13:45:33+00:00" }, { "message_id": "d5046f88a040b48a03f4ed3a2bb5f7f5d73f1139d749cf2bc85477727e5b47e3", "sticker": null, "text": "I can pay for their time", "from_id": "d54ca4483407779594e1d4e967b92cafb44e5de81d7433fd2bdb94cb52f19fd0", "reply_to": null, "datetime": "2023-09-10T13:45:45+00:00" }, { "message_id": "d1116115233a1bd82d9ba7b0c0630441ae90c247b2c769e64ab9b53ab0bf6c51", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-09-10T16:23:36+00:00" }, { "message_id": "2379b7c28c5959e4403cac6c4c0bb9a7be9796b814b01bc1f67746354aca9f10", "sticker": null, "text": "7", "from_id": "8bd439fb2c85b9bd35c0563ecd9e4d45941071d817fe42fb3b9f375efed6d8cc", "reply_to": null, "datetime": "2023-09-10T20:28:33+00:00" }, { "message_id": "dbab8c5e1a661c67ed48b2137e0dcd1c0d3617c7400342f8fe8a40da32947451", "sticker": null, "text": "Hi help me out", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": null, "datetime": "2023-09-11T01:14:50+00:00" }, { "message_id": "e664ae8776fa2d6cbe52ba010cbd2ab87593dc47dd5988689d6b88e0882349d2", "sticker": null, "text": "Hiii Everyone\n\nI want to learn Core java. Please suggest me YouTube channels to learn Core java", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2023-09-11T06:26:20+00:00" }, { "message_id": "fc807d8423e6093ed9175f2095bd06c4d9598d595c73cc4fd518fa8b34547173", "sticker": null, "text": "Apna college java playlist", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "e664ae8776fa2d6cbe52ba010cbd2ab87593dc47dd5988689d6b88e0882349d2", "datetime": "2023-09-11T06:36:29+00:00" }, { "message_id": "57ded31ed568d95df42c37d9a602b7f8373d18ae06509178608518acbe9dca92", "sticker": null, "text": "Any expert in selenium and networking contact me", "from_id": "7edd3e997a03296dd31ba67282c774ba98573fde6506f8516927301f7ed0ce55", "reply_to": null, "datetime": "2023-09-11T10:05:55+00:00" }, { "message_id": "4ed4f8b3abf7076d1e8deccdb7fc89456becb0ad3da47d2343edff8e6d906079", "sticker": null, "text": "hello", "from_id": "4328f65d5aac87a5ea9b7b1eebf70b2d1370ee1a79d33c2d251c33b19d62cd80", "reply_to": null, "datetime": "2023-09-11T10:19:25+00:00" }, { "message_id": "6395a66a11ac6a05d76993925723b305dbb3960dd232c9a73f463ce23251ba57", "sticker": null, "text": "Thank you brother", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": "fc807d8423e6093ed9175f2095bd06c4d9598d595c73cc4fd518fa8b34547173", "datetime": "2023-09-11T11:07:41+00:00" }, { "message_id": "f1f9a1323ef1c1196f6cb61e8ce9beb113c87c1c035174f400aa348b39383d9d", "sticker": null, "text": "I’m looking for an investor partner for my P2E project (I can deposit the amount as collateral), I’ll bring you fully up to date, write to me via private message", "from_id": "13a39d4b4f5bce8eb820af813c959442a693907dc34562008f738a35e1dd22c9", "reply_to": null, "datetime": "2023-09-11T14:09:54+00:00" }, { "message_id": "14433ab9900b6432f540b99f794426d65295997c07d4320a673a8533ea67d06d", "sticker": null, "text": "ForMyScholars and Apna College", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "e664ae8776fa2d6cbe52ba010cbd2ab87593dc47dd5988689d6b88e0882349d2", "datetime": "2023-09-11T14:15:24+00:00" }, { "message_id": "608d6099f2940a773aac12efea812c322eb202ebf16bf5f0f996b79c4c1d40a7", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-09-11T14:49:34+00:00" }, { "message_id": "9155cc6e506ec3039f747855013606549444b7337dee6fc467fa401ccddec1ae", "sticker": null, "text": "What type of Java project should one do after doing Core Java, GUI(swing), MySQL, Jdbc ?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-09-12T04:06:36+00:00" }, { "message_id": "eba08de3e77fae5d6ec2691d63f8d429700282198244e47ffe897bb1031666f7", "sticker": null, "text": "\"Java by MySirG\". Prerequisite is C++.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "e664ae8776fa2d6cbe52ba010cbd2ab87593dc47dd5988689d6b88e0882349d2", "datetime": "2023-09-12T04:07:17+00:00" }, { "message_id": "2a3ebb0a7f1072e6fdb6d2ae4236d26deee369cc7784bb8b3343e8771ef1b943", "sticker": null, "text": "I have difficulties to learn java, have just started but lack right resources, kindly request for help", "from_id": "f63e9824ddf93682731ba026bf1a7054ace3f4b24f887574239ea58457220584", "reply_to": null, "datetime": "2023-09-12T08:22:04+00:00" }, { "message_id": "ada30ecbdf18120c6652b7535760e72ceb27c114113d9d277da76ff5f931e8d9", "sticker": null, "text": "plz subscribe to my channel", "from_id": "20d1a6694df8a38f156feb65bc70734d933c57215654a27c4fb1c3c4a4b1915e", "reply_to": null, "datetime": "2023-09-12T09:37:16+00:00" }, { "message_id": "271d36c366c5b8ad7d0f77a5a34c69cd2670144f0bbc3bfc8b14a84d57f363d1", "sticker": null, "text": "Rms", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": "9155cc6e506ec3039f747855013606549444b7337dee6fc467fa401ccddec1ae", "datetime": "2023-09-12T09:42:53+00:00" }, { "message_id": "230a6bb7e77bad6a932c4c5d5ac4908589bf4244f621ece441ce632ae0517251", "sticker": null, "text": "Restaurant management system or railway? Or root mean square ?💀.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "271d36c366c5b8ad7d0f77a5a34c69cd2670144f0bbc3bfc8b14a84d57f363d1", "datetime": "2023-09-13T00:05:50+00:00" }, { "message_id": "a583e75e3396fc10b6f4fd93c7c8ac6ce3bfcb333c57d3f0f822f573092d939e", "sticker": null, "text": "Retail management system.", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": "230a6bb7e77bad6a932c4c5d5ac4908589bf4244f621ece441ce632ae0517251", "datetime": "2023-09-13T00:06:31+00:00" }, { "message_id": "125dcf0aab6e677ef7d678a0797dd065c1b80541aa40b64c1ebf5971480e783c", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "2a3ebb0a7f1072e6fdb6d2ae4236d26deee369cc7784bb8b3343e8771ef1b943", "datetime": "2023-09-13T00:10:43+00:00" }, { "message_id": "ecb5b4aa4300367c46328acba21a8c6fb60bf13a8cab674478e16df3c0d30b0a", "sticker": null, "text": "Hello guys I'm learning java as a beginer", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-13T00:46:49+00:00" }, { "message_id": "a3a6fb7f6cd9a02a85b939ad1f15e51846033123c64a09811c6aa4337e14de55", "sticker": null, "text": "Nice nice I am learning it too", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "ecb5b4aa4300367c46328acba21a8c6fb60bf13a8cab674478e16df3c0d30b0a", "datetime": "2023-09-13T02:42:39+00:00" }, { "message_id": "b308015f02938a24b05ac6fcc40648c52120129435c4a00032477b76bc044131", "sticker": null, "text": "All the best", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "a3a6fb7f6cd9a02a85b939ad1f15e51846033123c64a09811c6aa4337e14de55", "datetime": "2023-09-13T02:44:17+00:00" }, { "message_id": "c7bb5bd88e418dd476a345c2ac00180e5a8d720239619e8354c07623cbf315a8", "sticker": null, "text": "Thanks man 🥹", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "b308015f02938a24b05ac6fcc40648c52120129435c4a00032477b76bc044131", "datetime": "2023-09-13T02:45:00+00:00" }, { "message_id": "b929e326f772be3314a6fd9974ce5385657cf3831682e7af58537113b69533b0", "sticker": null, "text": "Thanks man", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "b308015f02938a24b05ac6fcc40648c52120129435c4a00032477b76bc044131", "datetime": "2023-09-13T02:51:22+00:00" }, { "message_id": "fc4bb7502f9a95b6b212a74a98a24a945990a4eb14fbcec3349da92ad4110e0a", "sticker": null, "text": "Please is inteli j ide free", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-13T02:51:33+00:00" }, { "message_id": "6b2bf7168468add168add005a86a4d24fbb485c75cdbb456022aa3d65093c5f5", "sticker": null, "text": "Yes", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "fc4bb7502f9a95b6b212a74a98a24a945990a4eb14fbcec3349da92ad4110e0a", "datetime": "2023-09-13T02:58:04+00:00" }, { "message_id": "45364b4ad336b1cdd259380058037d003d2987539dfa24f4a4e96dd30a83f738", "sticker": null, "text": "But if I recommend use vs code", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": null, "datetime": "2023-09-13T02:58:21+00:00" }, { "message_id": "be84a192ef46b723b79245cd6ec91fa1b98df51cf1881e2e7f3e67846cb85e3e", "sticker": null, "text": "Okay do I download am extension for the java", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "45364b4ad336b1cdd259380058037d003d2987539dfa24f4a4e96dd30a83f738", "datetime": "2023-09-13T03:03:05+00:00" }, { "message_id": "13c8250a42dc2fe174d9f3b23988ecb9f384e197ef46cc11807df040210ca723", "sticker": null, "text": "Yes you have to download some actions stuff too", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "be84a192ef46b723b79245cd6ec91fa1b98df51cf1881e2e7f3e67846cb85e3e", "datetime": "2023-09-13T03:10:01+00:00" }, { "message_id": "264d93b4c899bdadc4c0321ee78a3b50067d8cbda4674c1a5fac60fcbbb4d98e", "sticker": null, "text": "Just watch a Yt video it will be more clear in it", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": null, "datetime": "2023-09-13T03:10:17+00:00" }, { "message_id": "0b97629c20e3d3b926b51b5a7e39b2789cab8f8c398c448a269594209c4b3047", "sticker": null, "text": "Please could you recommend a tutorial I could follow", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "264d93b4c899bdadc4c0321ee78a3b50067d8cbda4674c1a5fac60fcbbb4d98e", "datetime": "2023-09-13T03:12:40+00:00" }, { "message_id": "d86423c307485ecb68318885d58803f5212aa489aba1dd15cf2ef112b1fcca1e", "sticker": null, "text": "Use eclipse", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "45364b4ad336b1cdd259380058037d003d2987539dfa24f4a4e96dd30a83f738", "datetime": "2023-09-13T03:12:54+00:00" }, { "message_id": "13f7fd17866494578166e4ea284a30aae18328f21360ab2ab36fbf6d4c0ed9a4", "sticker": null, "text": "Telusuko", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "0b97629c20e3d3b926b51b5a7e39b2789cab8f8c398c448a269594209c4b3047", "datetime": "2023-09-13T03:13:02+00:00" }, { "message_id": "5d75628a6a5ca1e4073677e8b3c8c73c4a39427ba0614d81cb68fc33ff26057f", "sticker": null, "text": "On youtube", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "13f7fd17866494578166e4ea284a30aae18328f21360ab2ab36fbf6d4c0ed9a4", "datetime": "2023-09-13T03:13:14+00:00" }, { "message_id": "5d5e34b5ba09d45b3e7c39510ba22b9a0fb22e5049bfba11f672e3b0cf6cdd48", "sticker": null, "text": "Yes", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "5d75628a6a5ca1e4073677e8b3c8c73c4a39427ba0614d81cb68fc33ff26057f", "datetime": "2023-09-13T03:13:20+00:00" }, { "message_id": "39fe452f8209318674586ff50cd1bf6a1808055a75cf36af18fe0f7a59c30dcd", "sticker": null, "text": "Okay", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "d86423c307485ecb68318885d58803f5212aa489aba1dd15cf2ef112b1fcca1e", "datetime": "2023-09-13T03:13:22+00:00" }, { "message_id": "b63ba13967fe612eb48919ec126ebd570b162d90677a872c17b10dfb25eb4736", "sticker": null, "text": "I saw some guys designing using something called apache", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-13T03:14:35+00:00" }, { "message_id": "dae2a4a034104440ebd96393df09edb3f3a6f2a3aac44f61930cec535bba1ae4", "sticker": null, "text": "Is it used in eclipse", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-13T03:14:52+00:00" }, { "message_id": "ae40b34a6b63d16c44e21fbd5da691c3bf312f787b8376990022162c77457857", "sticker": null, "text": "Or I shouldn't worry about thta", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-13T03:15:08+00:00" }, { "message_id": "875df75d10c4f04e26f46ae165d92bfa2d46dd6d5c6a1cc2e12ff236d1272ff7", "sticker": null, "text": "No need to worry Apache as for now they get in advance Apache Kafka Apache poi etc", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "b63ba13967fe612eb48919ec126ebd570b162d90677a872c17b10dfb25eb4736", "datetime": "2023-09-13T03:15:49+00:00" }, { "message_id": "4c5d9c209e14e40889f55134eb30c85dbe910b6342d244b146d5cbbd6622e7c7", "sticker": null, "text": "Ohh okay but I don't know why the apache it wants to be lile tkintr", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "875df75d10c4f04e26f46ae165d92bfa2d46dd6d5c6a1cc2e12ff236d1272ff7", "datetime": "2023-09-13T03:16:48+00:00" }, { "message_id": "883e4ab215dca474a527213de4e1ff31ab995a98b09b2a04fba330fde3fcad6b", "sticker": null, "text": "Tkinter in python", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-13T03:16:56+00:00" }, { "message_id": "2fcb2a32dce3b4bba2f6b90876eb82c6df45c4713521664024c86ea3f39c84e4", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "0b97629c20e3d3b926b51b5a7e39b2789cab8f8c398c448a269594209c4b3047", "datetime": "2023-09-13T03:19:10+00:00" }, { "message_id": "809d9f1cdf5712068b3aac77c4cfdc38a829b8a8aaf095cca2a598feaa4f2972", "sticker": null, "text": "Apchae has lot of softwares", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "4c5d9c209e14e40889f55134eb30c85dbe910b6342d244b146d5cbbd6622e7c7", "datetime": "2023-09-13T03:19:56+00:00" }, { "message_id": "801020dc3b785644c286d58064ae3ed6e756b15d10faf1fbfa67d7ae00788791", "sticker": null, "text": "If you don’t understand the language due to language barrier, just follow the steps it’s not a problem", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": null, "datetime": "2023-09-13T03:20:07+00:00" }, { "message_id": "327fcc86a7835f7c9c2a0005872da45d539b18d9fc83ce6fd745085711fd9973", "sticker": null, "text": "Thanks allot man", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "801020dc3b785644c286d58064ae3ed6e756b15d10faf1fbfa67d7ae00788791", "datetime": "2023-09-13T04:20:32+00:00" }, { "message_id": "a29b26e80e177bd658462cce7ae855aed4f6a612d11277068529dd2835931cd2", "sticker": null, "text": "Ohh thanks man", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "809d9f1cdf5712068b3aac77c4cfdc38a829b8a8aaf095cca2a598feaa4f2972", "datetime": "2023-09-13T04:20:56+00:00" }, { "message_id": "c38ee31ee2421010696525fd02365e0eb16612f515f8190070411a46449472ad", "sticker": null, "text": "Hlo", "from_id": "61c428c41795d18a27498201eaffbd8c011d4a31d50e1c788434278d24f04a3a", "reply_to": null, "datetime": "2023-09-13T08:54:54+00:00" }, { "message_id": "44ba29b8b221fbc0e2d174097cfa016f5af0bcb04ee26a5472f4aad52c4dc6d6", "sticker": null, "text": "Any here", "from_id": "61c428c41795d18a27498201eaffbd8c011d4a31d50e1c788434278d24f04a3a", "reply_to": null, "datetime": "2023-09-13T08:54:57+00:00" }, { "message_id": "31511375c3598dad9cdedeea255feece8add2895031e8719ee0d28d802693dbb", "sticker": null, "text": "HEY", "from_id": "386dea51a4b36d4fd94c9c4118ed86e9c79e9afeca02179cc46c503993b2f431", "reply_to": null, "datetime": "2023-09-13T09:31:55+00:00" }, { "message_id": "1c8775caf4bf09fd7589a6a229a92d69f84245e146f24c2c6abccc7317ef1e9c", "sticker": null, "text": "mera gcc connect nhi horaha h mere program se anyone pls help", "from_id": "386dea51a4b36d4fd94c9c4118ed86e9c79e9afeca02179cc46c503993b2f431", "reply_to": null, "datetime": "2023-09-13T09:32:17+00:00" }, { "message_id": "72285bbcb836e0beac6de6abc79118d3b3af28086281e099700e5284df11b93e", "sticker": null, "text": "Javac use karna hoga... i don't think gcc use ho paega", "from_id": "f70482620d05fb70f229c6d45a6a02d4342d70b8d6274fd1bd208d6d03d757b6", "reply_to": null, "datetime": "2023-09-13T11:22:31+00:00" }, { "message_id": "9644c13c0c56cd8f953ac32a6b193dd96a1f2103f4b489458f4719eb3f04f99d", "sticker": null, "text": "Can we convert complex XML to Word through Java code any good API recommendation? Paid and free both.", "from_id": "9d22cac74b806786c9a7101e05fd784e2190230bda29a4cba5b3c942463e170c", "reply_to": null, "datetime": "2023-09-13T12:32:15+00:00" }, { "message_id": "aace8ae8acd2520d5b7bdf7bd21d9fe31123997abc6fa2f5951c193b3f64b0e9", "sticker": null, "text": "Current scenario we're converting XML to PDF through a paid API after another paid OCR tool to convert to a WORD file.\nBut now I want to use the same XML to render a WORD file.\n\nyour valuable input is required.", "from_id": "9d22cac74b806786c9a7101e05fd784e2190230bda29a4cba5b3c942463e170c", "reply_to": null, "datetime": "2023-09-13T12:36:44+00:00" }, { "message_id": "313d08593eaa9fa835cb7e7023722997fc193540d4f8c4f7e64fd2da4e2939ac", "sticker": null, "text": "Try Apache POI.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "aace8ae8acd2520d5b7bdf7bd21d9fe31123997abc6fa2f5951c193b3f64b0e9", "datetime": "2023-09-13T13:14:14+00:00" }, { "message_id": "dc2d9640da9f7338f587a622f4af0525b29930750cd4717b92c4ba78db6ddfde", "sticker": null, "text": "Guys help .. I started learning Java about 1 week ago and now in vs code it is showing problem in every code idk what is going on", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": null, "datetime": "2023-09-13T19:11:07+00:00" }, { "message_id": "a4f7cbaf9d922c35e6101f69e74a06bdf909f2d5c0bd791a3f2744b3256b9c3b", "sticker": null, "text": "Even the code is right it is showing problems", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": null, "datetime": "2023-09-13T19:11:47+00:00" }, { "message_id": "7b56038470f894f4991816151aa003bfebf1a9dd167ffdbf3abf5a519c4370f9", "sticker": null, "text": "Better use intelliJ community edition", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "dc2d9640da9f7338f587a622f4af0525b29930750cd4717b92c4ba78db6ddfde", "datetime": "2023-09-13T23:20:17+00:00" }, { "message_id": "2f09ba5b7eee091cb167062f12ab0b94eadd9c2a7e398f8fbcf0065b6b74916e", "sticker": null, "text": "Hi guys! Can you recommend me the best Java backend bootcamp on Udemy or Coursera?", "from_id": "15877ea9ad6bd5cf972883058d98eaaedaf9a66c2470d13d0e7288de078bcc7c", "reply_to": null, "datetime": "2023-09-14T00:36:48+00:00" }, { "message_id": "97b0e2a9dfc645976f3ba282a7bf754eef2f236a14fb59c3d626301249997e64", "sticker": null, "text": "Make a java code of any pyroll system of a government, include the computation", "from_id": "caec33374e9bbb7572eb88ca034eab847cbeb6d452b2b66ee83bd3cb4451cdfc", "reply_to": null, "datetime": "2023-09-14T00:49:49+00:00" }, { "message_id": "1aeaa678c3b523635a241b6d7296d1eb4826e71855ca13833fb5421c0d3c5f2b", "sticker": null, "text": "Java with Instructor Tim Buchalka, Udemy.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "2f09ba5b7eee091cb167062f12ab0b94eadd9c2a7e398f8fbcf0065b6b74916e", "datetime": "2023-09-14T07:04:14+00:00" }, { "message_id": "5b81e20a334a698a0b0c0ba251b4aab030d25c17509da471bd2de3084f4f8f31", "sticker": null, "text": "Hindi or English?", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": "608d6099f2940a773aac12efea812c322eb202ebf16bf5f0f996b79c4c1d40a7", "datetime": "2023-09-14T11:17:47+00:00" }, { "message_id": "f45d88496df129cc320e2244998c76d9e5dc8dcf4c0a73fb613ef862ce2e4e12", "sticker": null, "text": "Hindi only", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": "5b81e20a334a698a0b0c0ba251b4aab030d25c17509da471bd2de3084f4f8f31", "datetime": "2023-09-14T13:41:10+00:00" }, { "message_id": "9df26f1feabbf422aecd18f6ecf346de096ac2e9f2d9b70f293a6803c8d60904", "sticker": null, "text": "Register now for maximum discount and don't forget to use the referral code", "from_id": "a0cd83eeb17e177bb027c9c34cf9f936b0b95c26b6a356a60f568fd3252c7fdc", "reply_to": "16a5930309c724456fc7f34aa99a582a6c00e925f2d40b33ccb55565d84a6fa6", "datetime": "2023-09-14T15:11:52+00:00" }, { "message_id": "afc1c3837fb93547145730da4c4185bac7682a72938a8287693110d681efe261", "sticker": null, "text": "No", "from_id": "a0cd83eeb17e177bb027c9c34cf9f936b0b95c26b6a356a60f568fd3252c7fdc", "reply_to": "7e72279fd1a45ed5a1f4bc81f5b761c573e20f80b7eaad9b00604e90a082dabc", "datetime": "2023-09-14T17:44:35+00:00" }, { "message_id": "f472d43c7d778064cd715e643b5ad189ad0d36560913242c1ee6d5a2e1080cc0", "sticker": null, "text": "For now just fill this form and the company person will contact you", "from_id": "a0cd83eeb17e177bb027c9c34cf9f936b0b95c26b6a356a60f568fd3252c7fdc", "reply_to": "226c1645002f29a7b262c8367457441cde3e0fea2cf31060523672229e7c835c", "datetime": "2023-09-14T17:45:54+00:00" }, { "message_id": "8d6211d5684c7ba612f181cd02f4f12d54ccfd9447c6347d470ab8ad94dcc271", "sticker": null, "text": "They will let you know everything", "from_id": "a0cd83eeb17e177bb027c9c34cf9f936b0b95c26b6a356a60f568fd3252c7fdc", "reply_to": null, "datetime": "2023-09-14T17:46:52+00:00" }, { "message_id": "8f1b883b973ebfc88b314c91b12b94dfedb06c9a2187c95907fd1afcf7176b40", "sticker": null, "text": "No", "from_id": "a0cd83eeb17e177bb027c9c34cf9f936b0b95c26b6a356a60f568fd3252c7fdc", "reply_to": "a52d909cc2f1a9cad713043a1030c6defcf47672d4ba174d9b314479934857c3", "datetime": "2023-09-14T17:47:13+00:00" }, { "message_id": "a17dcb6426cd48abf19f7ae656e3fe5d1bbe434d688bba075d62aabec9922217", "sticker": null, "text": "Hi, what's up?", "from_id": "eba6fd6a378b0da70b0b895f0158aa745ec4813f5cb03ad453cfdc6b5ff951dd", "reply_to": null, "datetime": "2023-09-14T18:56:47+00:00" }, { "message_id": "9c88c9528c7b3fc3628ea5226b79c8930a193bb3d7b8d1e8b6a39593d02cc474", "sticker": null, "text": "Hello everybody", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2023-09-14T23:48:36+00:00" }, { "message_id": "c30a023e68e28656d9706941f5d2560c77cf9043d2b8b3d2352216729efbe7b0", "sticker": null, "text": "I need a solution.\n\nI want to query firebase in the background. I did it but when app closed it doesnt work..", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2023-09-14T23:49:59+00:00" }, { "message_id": "ca4abf76093d9e23f06b3ea88a07b2324edeab7aefd76bd5f05c69f0c91323a8", "sticker": null, "text": "I want to ckeck notifications in the background if app fully closed or removed from memory", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2023-09-14T23:51:52+00:00" }, { "message_id": "1696db8eee738fbf1c34f64f368de02deeefcb5b96e2e28bd812aa6d09435319", "sticker": null, "text": "I am working on the following project", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2023-09-14T23:52:24+00:00" }, { "message_id": "4e20c447cad511b723e1778c1df802861bb60ce4a589b52429868f5a7171429f", "sticker": null, "text": "Hi Navdeep", "from_id": "d849ee7bfd5ab5472e199a9303e1b5c84264dda2b44888d5a820d9a2b703775f", "reply_to": "9c88c9528c7b3fc3628ea5226b79c8930a193bb3d7b8d1e8b6a39593d02cc474", "datetime": "2023-09-15T12:08:30+00:00" }, { "message_id": "9ffdea7fb8fc0a0556ab7f19ed9cb32214360a68226fad10631df5f890ffeaf1", "sticker": null, "text": "I am a full stack developer and I can help you in resolving this glitch", "from_id": "d849ee7bfd5ab5472e199a9303e1b5c84264dda2b44888d5a820d9a2b703775f", "reply_to": "c30a023e68e28656d9706941f5d2560c77cf9043d2b8b3d2352216729efbe7b0", "datetime": "2023-09-15T12:09:36+00:00" }, { "message_id": "f6371606d07aa4ac91934f4082f946fb5ef7453d0eb0f8836d6dc2507f063f88", "sticker": null, "text": "I want some one who can help me in hacker ranker code", "from_id": "e807869d2215bcb7d29efb09a4b2a32fe426710ef8c49d003d9133aa09f64f81", "reply_to": null, "datetime": "2023-09-15T22:33:03+00:00" }, { "message_id": "4b542c66399fb3fe2e34f54fd0fa2c199b8af0c2da500a0a07a491e156955d0b", "sticker": null, "text": "Where can I prepare Data structures ??", "from_id": "e807869d2215bcb7d29efb09a4b2a32fe426710ef8c49d003d9133aa09f64f81", "reply_to": null, "datetime": "2023-09-15T22:34:03+00:00" }, { "message_id": "36da27806676917a3b11f7a81ebf712c5a67d77231be92731509f8c87eccc4a1", "sticker": null, "text": "doston mere pass ek job opportunity hai jo commission base hai agar kisi ko interest hai to vah mujhse contact kar sakta hai", "from_id": "ba8d67346f77f84b44f375a5f1a0e778743c7d430fe0b51a3e5789c38e633b26", "reply_to": null, "datetime": "2023-09-17T09:39:08+00:00" }, { "message_id": "5c86056bd3926c36ef2b436101ac64c62568e138eb3d6a97b9a45ec2a4421e76", "sticker": null, "text": "3", "from_id": "60536397c478dd6e0cbad2112314f8a817d86b3d33405262463137311f0c1636", "reply_to": null, "datetime": "2023-09-17T15:52:21+00:00" }, { "message_id": "b5237dc225f749d3ea6336c4492cbd88ca3baf58ec0783197fff7e420e55c7f6", "sticker": null, "text": "What it is dm me", "from_id": "726fe518ef581cb29198ea9c0fd58514ba5b76dd2c9aa8b366a266fc08a858d3", "reply_to": "36da27806676917a3b11f7a81ebf712c5a67d77231be92731509f8c87eccc4a1", "datetime": "2023-09-17T22:17:46+00:00" }, { "message_id": "f5e08f81cfecd6d52fd80f1dfe987412b460c4941482930678d753ae3843fff0", "sticker": null, "text": "Hi", "from_id": "8f5312ce78a995b87d57904f569fc5297a5800747919481ebba4b541c4b3e61c", "reply_to": null, "datetime": "2023-09-18T04:16:33+00:00" }, { "message_id": "2ce08a1adfa66468dd91e8e94d1853754479456c336cbab6b0b9e77d1530fba7", "sticker": null, "text": "Every one", "from_id": "8f5312ce78a995b87d57904f569fc5297a5800747919481ebba4b541c4b3e61c", "reply_to": null, "datetime": "2023-09-18T04:16:39+00:00" }, { "message_id": "7cab66ba742dab8a89d34b733969b59c65df4cb694c79ac3077860e01aaa06f8", "sticker": null, "text": "Hi", "from_id": "d5dfd0d6234490fbcf7db2aa07d0175606c798a1a913d3728221b3d2aea55f3c", "reply_to": null, "datetime": "2023-09-18T05:09:48+00:00" }, { "message_id": "3266189200580580363debbe7737a3823ed2347676b7d327f68b90c088be1de0", "sticker": null, "text": "I wanna slow down my phone", "from_id": "d5dfd0d6234490fbcf7db2aa07d0175606c798a1a913d3728221b3d2aea55f3c", "reply_to": null, "datetime": "2023-09-18T05:09:53+00:00" }, { "message_id": "c4a2ed2683178ce12c361394112fc8c2bf704e4f3f8841b0d28427fdd609fa68", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2023-09-18T10:23:36+00:00" }, { "message_id": "d7dfd93e03c36ddfc86ee8b0e1551020f46b31082406bbe390be4cb4e3652ccd", "sticker": null, "text": "Hello guys.. I have developed this quiz android app. I want to develop similar app for ios in windows.. Can someone guide me how i can do it windows pc... what kind of tools I need.", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2023-09-18T10:26:37+00:00" }, { "message_id": "fd5e6fa121b5893ad206fa0bdf226b1e61fad317732ff96f40af8dab3bc9f38b", "sticker": null, "text": "I'm a complete beginner in programming and want to begin career and I was told that I should learn java as it has the most potential so can anybody please tell me how to begin and how to start my career after learning java", "from_id": "1aee879affa77f87533d5e20752683d93a9be42aade517f3374deab75de0e3eb", "reply_to": null, "datetime": "2023-09-18T11:49:16+00:00" }, { "message_id": "66dd685973c86cbcf50d03778f5615a0bd9b7864b8da843d7312e74f0907ccad", "sticker": null, "text": "If you want to go into placement learn Dsa with Java but if you have time choose what you want to get into web D or software eng or maybe a developer… with this you can explore Java", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "fd5e6fa121b5893ad206fa0bdf226b1e61fad317732ff96f40af8dab3bc9f38b", "datetime": "2023-09-18T12:29:18+00:00" }, { "message_id": "905c45a52b8b448eeeb7f8dd93bf6113056a21fc23db64a006743369b024df98", "sticker": null, "text": "Can anyone say some tips", "from_id": "d5dfd0d6234490fbcf7db2aa07d0175606c798a1a913d3728221b3d2aea55f3c", "reply_to": "3266189200580580363debbe7737a3823ed2347676b7d327f68b90c088be1de0", "datetime": "2023-09-18T12:37:01+00:00" }, { "message_id": "316ddb6a3207e28702b4ca1a7c43a4c108ad112cea44457171c905f401457b46", "sticker": null, "text": "Anyone have coding ninja java and dsa video", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": null, "datetime": "2023-09-18T16:50:13+00:00" }, { "message_id": "f3cd681f54b37cfb4fbb33edaba99fddf5ccf9128fcbe9d98db84b6689b6c861", "sticker": null, "text": "Is anybody there", "from_id": "07a10593f49de1d8675dbb656874b91f441a8b820bd178596c6a99b54db5616b", "reply_to": null, "datetime": "2023-09-19T06:40:13+00:00" }, { "message_id": "8257b9878e2715ebf487c188449e665654e940b05172c83ad8b002f3aeeafff7", "sticker": null, "text": "Hey", "from_id": "726fe518ef581cb29198ea9c0fd58514ba5b76dd2c9aa8b366a266fc08a858d3", "reply_to": "f3cd681f54b37cfb4fbb33edaba99fddf5ccf9128fcbe9d98db84b6689b6c861", "datetime": "2023-09-19T06:46:58+00:00" }, { "message_id": "50f9ce65b64380a8b8f5e8185537138ab4113473525a81006b468c832ebe9fbf", "sticker": null, "text": "I only know java, how can I use it to make money?", "from_id": "07a10593f49de1d8675dbb656874b91f441a8b820bd178596c6a99b54db5616b", "reply_to": null, "datetime": "2023-09-19T06:48:14+00:00" }, { "message_id": "a6bfd754aa5a8088f184a30f85c8368cefea7910bfe8ec010505259a1f026ec4", "sticker": null, "text": "Cyber attacks or something are too deep.", "from_id": "07a10593f49de1d8675dbb656874b91f441a8b820bd178596c6a99b54db5616b", "reply_to": null, "datetime": "2023-09-19T06:49:09+00:00" }, { "message_id": "fd895f5c88cc99bcc1c795451393d388dbc7e3480361c59cb114f834b03f37b3", "sticker": null, "text": "Do freelancing", "from_id": "c2a3a2fdd0dd9c03d85ef120a016f0995c647d381a225e1aa787bdd733b2a905", "reply_to": "50f9ce65b64380a8b8f5e8185537138ab4113473525a81006b468c832ebe9fbf", "datetime": "2023-09-19T09:14:55+00:00" }, { "message_id": "0b7a740d0d759228a6292642b24446bc5edded814b8226366d39e86c6500e733", "sticker": null, "text": "Like how? What should we offer?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "fd895f5c88cc99bcc1c795451393d388dbc7e3480361c59cb114f834b03f37b3", "datetime": "2023-09-19T15:59:45+00:00" }, { "message_id": "5985fb5e8b6fc94115da86c7055c22dbfff730f323bd0c6a3fdc351b3e2f461b", "sticker": null, "text": "I wouldn't suggest Java to be the first programming language you should learn. Especially if you're in 1st year of your degree.\nStart with C (take a good course or follow playlist)\nDo the programming problems parallely\nLearn C++ and OOPs in C++\nThen go for Java. \nThis way you can learn Java indepth as you'll be already good in C++. \nThen do DSA in Java and you'll make decisions by yourself later.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "fd5e6fa121b5893ad206fa0bdf226b1e61fad317732ff96f40af8dab3bc9f38b", "datetime": "2023-09-19T16:07:42+00:00" }, { "message_id": "089d9c9cf766ede31b75bb10fe2d2b00cb7de4b1e649c4507f1d6f6059782b43", "sticker": null, "text": "? ? How to do this?", "from_id": "07a10593f49de1d8675dbb656874b91f441a8b820bd178596c6a99b54db5616b", "reply_to": "fd895f5c88cc99bcc1c795451393d388dbc7e3480361c59cb114f834b03f37b3", "datetime": "2023-09-19T16:14:07+00:00" }, { "message_id": "882dad7c8e203af176a6edd1ea3d5ff3390d8e661df492573a2e137ad4ac6d41", "sticker": null, "text": "Hi", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-20T00:59:03+00:00" }, { "message_id": "6bd2dc5450f64e06e35dfe6f87a0049ffdf047e9ebdcfcdcc14ab6776b94a8cb", "sticker": null, "text": "Anyone knows jasper reports?", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-20T00:59:17+00:00" }, { "message_id": "6d0150dc7c1e34e4df1f17b3969e46f9fc5668f921273eed86bc79bd448cd31b", "sticker": null, "text": "No one knows?", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-20T04:28:09+00:00" }, { "message_id": "5e684d2a1ea70619a7b973dda2dab386e39051fccb252923ab6153200960e291", "sticker": null, "text": "what??", "from_id": "07a10593f49de1d8675dbb656874b91f441a8b820bd178596c6a99b54db5616b", "reply_to": null, "datetime": "2023-09-20T04:51:12+00:00" }, { "message_id": "a7f31949d8802db8c00588098d11f344ee291c3b32bb435cebc867e679256069", "sticker": null, "text": "Jasper", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-20T05:56:01+00:00" }, { "message_id": "a826ae7f9c77bec79cdd4c15053dbbf641dcb83be2c35e50481e117c9ff43cfa", "sticker": null, "text": "Reports", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-20T05:56:04+00:00" }, { "message_id": "cf6f51e67652b77c29ca9c54d09770be6f7a1ac39b220588a1611a122ae44bf0", "sticker": null, "text": "Few Minutes to go for the Live Session TODAY\n\nCore Java & Full Stack Java @#USER PM\nby #SENSITIVE-INFO", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2023-09-20T10:39:09+00:00" }, { "message_id": "c19891aa2f84e3ee894cf14689ce32b0e032a323ffa2c120bbaaa51b2809adc5", "sticker": null, "text": "do it before", "from_id": "bdf306c29ba401d7e66093b7a38790856adf8cd6e71cfb2734240095ddc80808", "reply_to": "6bd2dc5450f64e06e35dfe6f87a0049ffdf047e9ebdcfcdcc14ab6776b94a8cb", "datetime": "2023-09-20T19:30:31+00:00" }, { "message_id": "23c19fb449d4570e1ceacc6166b074349ce4317d88bbae3871d66c5a17a59bde", "sticker": null, "text": "Any telegram group for udemy course coupon", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": null, "datetime": "2023-09-21T05:44:29+00:00" }, { "message_id": "bf785053c55b789f370c7f5167c0b8ee7f119937f94d9de06f0b8bd2ecc822b0", "sticker": null, "text": "Anyone have geeks for geeks Java dsa course", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": null, "datetime": "2023-09-22T14:18:50+00:00" }, { "message_id": "78a6f51e37b1a9c8bb52ccfd9d2aae49ce51fa2a526827796708c4174e7117b2", "sticker": null, "text": "Hello, \n\nHow to download a zip file using spring boot", "from_id": "4f7b868ac00aff7ff8d8cdcf1e941f341a8a06969eb36f24c85803422efe8b29", "reply_to": null, "datetime": "2023-09-22T16:16:10+00:00" }, { "message_id": "d2b69d4bc0426c85a960a08d8b04b4ccb7f75cc4ecbc6c38ac7fcb37a9e9a70a", "sticker": null, "text": "Is it important to do Java EE after doing core java and able to create desktop applications using java?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-09-22T18:02:24+00:00" }, { "message_id": "73de1b6404824ac2d404804683deb9b86d41edba77d5f2e1f08e81993ca4cf8b", "sticker": null, "text": "Why not try spring framework instead?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "d2b69d4bc0426c85a960a08d8b04b4ccb7f75cc4ecbc6c38ac7fcb37a9e9a70a", "datetime": "2023-09-22T18:07:17+00:00" }, { "message_id": "b5a265803e2a93bfa00e8aae22f8d6926fe0aadcf86c05207d2a59d480f5b17b", "sticker": null, "text": "9", "from_id": "11b0cbe174e8e793fdf97bb6a23a7c8336e173ffb0e3ddd2c5e32e1b521303a2", "reply_to": null, "datetime": "2023-09-22T18:08:26+00:00" }, { "message_id": "48dc34ab1f758d4db83106ace837db94fa3f4001f91a9ab329864bada4c7bb67", "sticker": null, "text": "Where is it used ? is it useful in webdev also?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "73de1b6404824ac2d404804683deb9b86d41edba77d5f2e1f08e81993ca4cf8b", "datetime": "2023-09-22T18:09:15+00:00" }, { "message_id": "ae99ac3bea3188985825cf346e58bdcecbe27c394c7fdbc78fd74aa6f49c9f9e", "sticker": null, "text": "I was also learning web development with python and django. now I am not sure if I can use both of them(java and python). I thought for software development we have to learn app and web dev both but nobody gave clarity", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-09-22T18:11:48+00:00" }, { "message_id": "562b44af6cc7ffe3b749ad33195ec6d4f279668fcf3c008d6bb39c53511c9719", "sticker": null, "text": "Yeah very useful", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "48dc34ab1f758d4db83106ace837db94fa3f4001f91a9ab329864bada4c7bb67", "datetime": "2023-09-22T18:12:19+00:00" }, { "message_id": "04f6b3ca67f7cf75c9032be63d1512c5e18172637db29ae56850285b931403ac", "sticker": null, "text": "Just pick one, and move on with it. It's really not about the technologies you know, but what you can build with the technology you know (problem solving basically)", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "ae99ac3bea3188985825cf346e58bdcecbe27c394c7fdbc78fd74aa6f49c9f9e", "datetime": "2023-09-22T18:14:16+00:00" }, { "message_id": "8f903f8f722cd812dc13eaf20243f72fe0248e9ce83c6510244fea98a8511525", "sticker": null, "text": "And yes, Java and Spring Framework are on-demand in the job market", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-09-22T18:14:42+00:00" }, { "message_id": "7954fea54d61538e232f2dae4e7366ee3160963b44a6bc01e187f659f475961d", "sticker": null, "text": "okay thank you", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-09-22T18:16:07+00:00" }, { "message_id": "0a74bdd3bfb7d2ac100d02e6225daf6d359377221044b3446cbedd8288c59efa", "sticker": null, "text": "Anyone have \n\n1. Geeks for geeks dsa with Java\n2. Coding ninja Java with dsa\n3. Love babbar dsa", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": null, "datetime": "2023-09-22T18:21:37+00:00" }, { "message_id": "5ba9bac4ff0e62d88bb93baa8fac348d2167308ea6bc9b0bd63ddf08edf24fcb", "sticker": null, "text": "Any of three", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": "0a74bdd3bfb7d2ac100d02e6225daf6d359377221044b3446cbedd8288c59efa", "datetime": "2023-09-22T18:21:37+00:00" }, { "message_id": "70d0d55d2c7846c13493290f3389bc62ac8ecc85bb9aa03b4e01f10f59da1e41", "sticker": null, "text": "import org.springframework.core.io.InputStreamResource;\nimport org.springframework.core.io.Resource;\nimport org.springframework.http.HttpHeaders;\nimport org.springframework.http.MediaType;\nimport org.springframework.http.ResponseEntity;\nimport org.springframework.stereotype.Controller;\nimport org.springframework.web.bind.annotation.GetMapping;\nimport org.springframework.web.bind.annotation.RequestMapping;\n\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\n\n@#USER\n@#USER(\"/download\")\npublic class DownloadController {\n\n @#USER(\"/zip\")\n public ResponseEntity downloadZipFile() throws IOException {\n String filePath = \"path/to/your/zipfile.zip\";\n InputStreamResource resource = new InputStreamResource(new FileInputStream(filePath));\n\n HttpHeaders headers = new HttpHeaders();\n headers.add(HttpHeaders.CONTENT_DISPOSITION, \"attachment; filename=yourfile.zip\");\n\n return ResponseEntity.ok()\n .headers(headers)\n .contentLength(resource.contentLength())\n .contentType(MediaType.APPLICATION_OCTET_STREAM)\n .body(resource);\n }\n}", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "78a6f51e37b1a9c8bb52ccfd9d2aae49ce51fa2a526827796708c4174e7117b2", "datetime": "2023-09-23T10:26:47+00:00" }, { "message_id": "646452fdbdb4e9fb3b7c500a176be353ec3c23753e40af74cd492441966fa43c", "sticker": null, "text": "Tired this , but no converter available exception is occurring", "from_id": "4f7b868ac00aff7ff8d8cdcf1e941f341a8a06969eb36f24c85803422efe8b29", "reply_to": "70d0d55d2c7846c13493290f3389bc62ac8ecc85bb9aa03b4e01f10f59da1e41", "datetime": "2023-09-23T11:16:37+00:00" }, { "message_id": "434855a34de721a7d1c5f282eeb25483003d55d9aa410f15916a3927bb8bcb3d", "sticker": null, "text": "ok let me check", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "646452fdbdb4e9fb3b7c500a176be353ec3c23753e40af74cd492441966fa43c", "datetime": "2023-09-23T11:19:14+00:00" }, { "message_id": "1fd4f2505919af7ac6e0517e7091ee3d798b735b57fef85651811e282c64f54c", "sticker": null, "text": "anyone here knows about Oasis infobyte internships ? Alot of students are doing it. But it seems like it h as no value", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-09-23T17:29:39+00:00" }, { "message_id": "666ae42314309e6f44aed54d53387ad0e7d7d0c0a4c4b15595f43814bf20b3ae", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-09-24T07:04:33+00:00" }, { "message_id": "79c028d4d9fe322936e2f19cea0967e9f7eba7b08dcad61e0d86bb55444c5c66", "sticker": null, "text": "Anyone good with jasper reports?", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-24T17:19:35+00:00" }, { "message_id": "13b8810eabbe80ca33d2402b741419ae5f9915cd8e65e803bc856848151c05f3", "sticker": null, "text": "Guys no one knows jasper reports?", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-26T00:27:17+00:00" }, { "message_id": "b5d84b153c20a081e363b0c2c183dafe2d4165e1a1af516b409a8f93a12ca826", "sticker": null, "text": "Comeon guys no one?", "from_id": "0e087710ace152aca601ef14c9b1a48faef0dbe9fdd40cc2b459d0f7291730bb", "reply_to": null, "datetime": "2023-09-26T04:25:51+00:00" }, { "message_id": "c02a1ce858f57273f1c243d2f0d42710615090ab8d66e32707b575da8646a830", "sticker": null, "text": "I need a video dat will simply explain to me what I need to no abt a class in java", "from_id": "27482d0810f59782e3ce478f961ecd4837fe89cd2aa4dbf44db4fa725b8c1b60", "reply_to": null, "datetime": "2023-09-26T05:40:57+00:00" }, { "message_id": "a1b168e81ad92bdda7106c25c4466b37ea7ba7a914fcd88467a0cb11b4cf2119", "sticker": null, "text": "Morning guys pls how can I connect java with mysql", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-26T07:51:00+00:00" }, { "message_id": "63de827fdc2f1c7225ce7c3ad9ffa7a83314a58accf3bbbd8f345eb2873d80a6", "sticker": null, "text": "In netbeans", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-26T07:51:12+00:00" }, { "message_id": "97d2706824df80c2489d72584873b2150349f231631ada93295a41dcf4c9ef16", "sticker": null, "text": "Dm me", "from_id": "726fe518ef581cb29198ea9c0fd58514ba5b76dd2c9aa8b366a266fc08a858d3", "reply_to": "a1b168e81ad92bdda7106c25c4466b37ea7ba7a914fcd88467a0cb11b4cf2119", "datetime": "2023-09-26T11:48:50+00:00" }, { "message_id": "cfd2a9c215d2cb40123a11bb248949e9ffa6e082cfbd86dc79efbc8158a5c19a", "sticker": null, "text": "Okay thank you", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "97d2706824df80c2489d72584873b2150349f231631ada93295a41dcf4c9ef16", "datetime": "2023-09-26T11:49:17+00:00" }, { "message_id": "11e151b1d8e33c1dbf5be59efd896939eb2eb32adb03c4514589c66482065931", "sticker": null, "text": "Anyone please suggest absolute beginner book for **Java programming. **I have zero knowledge of programming.\n\n\nPlease suggest me absolute beginner book.", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": null, "datetime": "2023-09-26T15:39:27+00:00" }, { "message_id": "a42ff841670e2bcd3281f7edca261920666fb815c40b79cc9f195912dcf6acca", "sticker": null, "text": "If anyone need web designer for design a website text me I have 4 years of experience in this field", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2023-09-26T17:10:54+00:00" }, { "message_id": "c7aaab6d83a14552148444d3ae07b88c6f3aebd33f722fa8bd58d79fe8bec37c", "sticker": null, "text": "bro, start youtuve channel and teach dummies like me how to make proper design (especially in \"art\" sense, cause css and html are the simplest parts of the problem). most of us here are either poor or greedy 🙂", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": "a42ff841670e2bcd3281f7edca261920666fb815c40b79cc9f195912dcf6acca", "datetime": "2023-09-26T17:13:36+00:00" }, { "message_id": "d2d1f20806191d02eff3fa3c0bbd096b2d23a5312e0f32a6a53480a2166cc544", "sticker": null, "text": "Ya are are telling right 👍", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": "c7aaab6d83a14552148444d3ae07b88c6f3aebd33f722fa8bd58d79fe8bec37c", "datetime": "2023-09-26T17:17:00+00:00" }, { "message_id": "ec3f4a4c441bb9714486070bc4ca311831bee4c7e0277e8e5a8b5e88c0fb9e18", "sticker": null, "text": "Instead of books go for youtube videos that has got playlist. Lots of great teachers have uploaded videos on java", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": "11e151b1d8e33c1dbf5be59efd896939eb2eb32adb03c4514589c66482065931", "datetime": "2023-09-26T19:46:16+00:00" }, { "message_id": "0c1293a8ab82752fe1193c5fecbb88937afab2728db45ab5aff94cf9dd78da9a", "sticker": null, "text": "What is the best YouTube channel for Java. ( absolute beginner)", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": "ec3f4a4c441bb9714486070bc4ca311831bee4c7e0277e8e5a8b5e88c0fb9e18", "datetime": "2023-09-27T03:14:01+00:00" }, { "message_id": "ead41316561f8bab4b780c46611782dc15f9b583a904a2cec1ed3d6928aa668c", "sticker": null, "text": "Based on your mother tounge", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "0c1293a8ab82752fe1193c5fecbb88937afab2728db45ab5aff94cf9dd78da9a", "datetime": "2023-09-27T05:19:58+00:00" }, { "message_id": "d5036baf039ef749a88ecdd26dd30d733968ea803808b6f08373c2afcff786cc", "sticker": null, "text": "In Hindi language,", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": "ead41316561f8bab4b780c46611782dc15f9b583a904a2cec1ed3d6928aa668c", "datetime": "2023-09-27T05:29:21+00:00" }, { "message_id": "e78c770db48697ec2ec57873fdf3d24dddb35c308892ed7b5e7e518d12da6f9e", "sticker": null, "text": "Go with learn with durgesh", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "d5036baf039ef749a88ecdd26dd30d733968ea803808b6f08373c2afcff786cc", "datetime": "2023-09-27T05:29:51+00:00" }, { "message_id": "39e39613a80386cd1334971cf7761814459fad1300978ace9a51f93db22e2c14", "sticker": null, "text": "Please provide a link", "from_id": "e14b41f9a8266a32a54786cd7bd1844d4172a21864afd8d23765e52c0744207e", "reply_to": "e78c770db48697ec2ec57873fdf3d24dddb35c308892ed7b5e7e518d12da6f9e", "datetime": "2023-09-27T05:30:59+00:00" }, { "message_id": "89e29417052ea88b45da46a350289f250836f2cd1b91074103f8249eb0494a2a", "sticker": null, "text": "May be i can help", "from_id": "4f7b868ac00aff7ff8d8cdcf1e941f341a8a06969eb36f24c85803422efe8b29", "reply_to": "13b8810eabbe80ca33d2402b741419ae5f9915cd8e65e803bc856848151c05f3", "datetime": "2023-09-27T14:39:02+00:00" }, { "message_id": "3706e9c868fee403c49db561f65570e31ceb5818f772c0f9d528c25a0d09b6e5", "sticker": null, "text": "I am Full Stack Developer and expert in:\n- Front/Back-end \n- Machine learning\n- Ai integration \n- JavaScript, Python, PHP\n- Database/Server Mgmt\n- Customized UI/UX Design", "from_id": "d849ee7bfd5ab5472e199a9303e1b5c84264dda2b44888d5a820d9a2b703775f", "reply_to": null, "datetime": "2023-09-27T17:52:26+00:00" }, { "message_id": "e62b503c5ce167fa5c066eb9e7b671edff6783649b30b4a70f3174f50f28c2bf", "sticker": null, "text": "If you want to learn in details, go for Durga Soft. There is a playlist. You can also combine this with Hyperskill.org.", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": "0c1293a8ab82752fe1193c5fecbb88937afab2728db45ab5aff94cf9dd78da9a", "datetime": "2023-09-28T05:02:47+00:00" }, { "message_id": "a27329837c574fad2ca1967bef958f7bdc81a6558996a430bc970f3bb554bfb8", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-09-28T06:16:51+00:00" }, { "message_id": "693814a460f25199b29374726f1c38177a1592b04f4ad742732471b59d0e335c", "sticker": null, "text": "Hello there please I'm a beginer learning java please what are the wrapper classes used for mainly", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": null, "datetime": "2023-09-30T00:21:07+00:00" }, { "message_id": "f53aa0fabe6daf9708cea47bc2666a45356441ee1ae26d6dd199c303a78ae252", "sticker": null, "text": "Gg", "from_id": "ccd4a46a0c01c8ff273f9ab2ad225b031285a2a41ecca92e493b7baafe41814d", "reply_to": "3706e9c868fee403c49db561f65570e31ceb5818f772c0f9d528c25a0d09b6e5", "datetime": "2023-09-30T06:44:39+00:00" }, { "message_id": "990d2f7b7967e6917f43b16ac5c63e8ade503eb998242eaa8eee55c4e222f9b6", "sticker": null, "text": "Wrapper classes primarily serve as class representations for primitive data types (e.g., int, float, double, char). Their direct use is often limited, especially in the early stages of programming, as primitive types are usually sufficient. Instead, developers commonly utilize methods provided by wrapper classes, primarily for type conversion. Typically, variables are not declared using wrapper classes, but these classes offer valuable functions for data manipulation, especially concerning conversions between primitive types and objects.\n\nAlso consider this question if you want to know more. \"Is java a pure object oriented programming language?\". And then search why wrapper classes were developed.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "693814a460f25199b29374726f1c38177a1592b04f4ad742732471b59d0e335c", "datetime": "2023-09-30T13:45:27+00:00" }, { "message_id": "d0ad841318e59cea10531dbf30c9080027b541750a5c72fb74e2903cff24d129", "sticker": null, "text": "Wow thanks allot bro the explanation was clear", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "990d2f7b7967e6917f43b16ac5c63e8ade503eb998242eaa8eee55c4e222f9b6", "datetime": "2023-09-30T13:46:15+00:00" }, { "message_id": "fb68473ba510693682f14272b628f50a20f739801f1f60e48b6889602a6984d8", "sticker": null, "text": "Anytime 👌", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-09-30T13:47:38+00:00" }, { "message_id": "1517352e94523f0e8efdcfa3843692ec81bed2635422d2c26403c9e77dcbf72b", "sticker": null, "text": "In what time approx can i learn coding if i give around 2.5 to 3 hrs everyday?", "from_id": "dc99b0e0401638a0136eac20f0c061d03a7ebb068804e8d32ef5564b7f7df915", "reply_to": null, "datetime": "2023-09-30T14:21:22+00:00" }, { "message_id": "591119c333f280599237d66c5a6e8e1b8554293a07562e5f45770d40297b4eae", "sticker": null, "text": "If it's your first time learning to code and along with learning to code you're solving basic programming problems then it might take you a month or 2. While grasping the syntax of a programming language is relatively straightforward, the key lies in building strong logical and conceptual foundations. So focus on solving basic problems related to the concepts you learn. Speaking from my experience, when I did C with proper guidance, I learned in a month.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "1517352e94523f0e8efdcfa3843692ec81bed2635422d2c26403c9e77dcbf72b", "datetime": "2023-09-30T14:44:34+00:00" }, { "message_id": "569170ea0131907742f255d299e259fe45fb3b23e0f83386ddce882c046eb5c4", "sticker": null, "text": "Thanks", "from_id": "dc99b0e0401638a0136eac20f0c061d03a7ebb068804e8d32ef5564b7f7df915", "reply_to": null, "datetime": "2023-09-30T15:47:11+00:00" }, { "message_id": "d88f08873344a4dff8496395c122e7f8fc115898f6e6a8253946f6e9e57b827a", "sticker": null, "text": "😊", "from_id": "dc99b0e0401638a0136eac20f0c061d03a7ebb068804e8d32ef5564b7f7df915", "reply_to": null, "datetime": "2023-09-30T15:47:15+00:00" }, { "message_id": "ffb3e8777ac04ac4ef79fb212a435eb8c2465d1b02fac2cfa22f645dc818109e", "sticker": null, "text": "👍", "from_id": "dc99b0e0401638a0136eac20f0c061d03a7ebb068804e8d32ef5564b7f7df915", "reply_to": null, "datetime": "2023-09-30T15:47:22+00:00" }, { "message_id": "1a0fd18641b4b31c5eab3858ebf5fd05d7f634d70081f2b8184848d962ca8f87", "sticker": null, "text": "you're welcome.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-09-30T15:48:14+00:00" }, { "message_id": "df874e096f59e4156df555351446f2eb50e5ceffa18206dae5b4e5c083b603bc", "sticker": null, "text": "@#USER\nBan", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "56be276fdf48d359d057c4def608c9439d61376056986d5c23e7dea95f849c78", "datetime": "2023-10-01T05:07:51+00:00" }, { "message_id": "d2edc8b123f5bab32ce809c741c615710b20bea2b7bcaaecb7d8e60d02e74a55", "sticker": null, "text": "@#USER", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "56be276fdf48d359d057c4def608c9439d61376056986d5c23e7dea95f849c78", "datetime": "2023-10-01T05:08:03+00:00" }, { "message_id": "cf9ecf39aae8f4eb73a4f1e46da3851bfeeb57da4c4a520d31e79d28dcbb3a21", "sticker": null, "text": "@#USER", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "56be276fdf48d359d057c4def608c9439d61376056986d5c23e7dea95f849c78", "datetime": "2023-10-01T05:08:19+00:00" }, { "message_id": "2c614e884aff18e81d0c91da6cec06c87ce086360389cc68fa10ad474032f81e", "sticker": null, "text": "Please anybody can tell me how to remove \"generate key for 24\" to use any application without any ads", "from_id": "80153568ad8f6e9ab2ae9c45684dd79c32e0ea7eca4492a86ebb7f3fb6fde814", "reply_to": null, "datetime": "2023-10-01T17:23:51+00:00" }, { "message_id": "98f580ff9be2d127f0a33f3dd624377df6d6b0285f200a5eed7e62dccabd51cd", "sticker": null, "text": "Please reply", "from_id": "80153568ad8f6e9ab2ae9c45684dd79c32e0ea7eca4492a86ebb7f3fb6fde814", "reply_to": null, "datetime": "2023-10-01T17:24:02+00:00" }, { "message_id": "922e4246e4cdcb3faf436865a720fad5c76784111ea33abb2b976906a1ee578e", "sticker": null, "text": "Ban who", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "cf9ecf39aae8f4eb73a4f1e46da3851bfeeb57da4c4a520d31e79d28dcbb3a21", "datetime": "2023-10-02T05:12:02+00:00" }, { "message_id": "0e6ee2c417e282a3d31b4701d9d0fcb7ca72c73d9111e53cc40bc166bbef7ed2", "sticker": null, "text": "English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "81e22869aba7118fdb291bc8f60d73d8518f8ddc6cdb94640fdd2cf9616976ba", "datetime": "2023-10-02T05:12:12+00:00" }, { "message_id": "8405f0fc1e9a618425be924279d65ae21f69f3ac8f423e677acf110ac7a3a221", "sticker": null, "text": "Ayush Agarwal,\nHe spammed here. \n\nPlease check DELETE MESSAGE HISTORY.", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "922e4246e4cdcb3faf436865a720fad5c76784111ea33abb2b976906a1ee578e", "datetime": "2023-10-02T06:35:41+00:00" }, { "message_id": "c1f6612861291e825c8ad6bfbce254d5ffff69a2cc5d9bfbd4515eea8b2cb890", "sticker": null, "text": "☝️spam detected", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-10-02T08:14:42+00:00" }, { "message_id": "48ca173d9b4b591b4d5656704a602247e5a3e667fff2b7cb571c9caa68382472", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-10-02T11:02:05+00:00" }, { "message_id": "7f5a88891ded23fe5d81159a4e7219419bf4a1184a65b09af782b85788486712", "sticker": null, "text": "Only thing I see deleted for this user is the number 7", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "8405f0fc1e9a618425be924279d65ae21f69f3ac8f423e677acf110ac7a3a221", "datetime": "2023-10-02T15:07:07+00:00" }, { "message_id": "aa7a8d783da1d697084306860cb6857f0dc05ba0318dd9d40792658928027ce4", "sticker": null, "text": "Got it 👍🏾", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "c1f6612861291e825c8ad6bfbce254d5ffff69a2cc5d9bfbd4515eea8b2cb890", "datetime": "2023-10-02T15:07:18+00:00" }, { "message_id": "fa3a75cc2c7f6d378ff12a67b3929fcea354bbb267568fe6f6a979b6833095b5", "sticker": null, "text": "Anyone good in html ?", "from_id": "04867cffa26cc69089628e6fbdf5e51389f555170d7e186a65dbdb0de306d117", "reply_to": null, "datetime": "2023-10-02T15:11:56+00:00" }, { "message_id": "9e0a0fdb29a68d774fe6fb2f5571315f1e9de1df4e8d4e36a79e866ced0ead34", "sticker": null, "text": "I have a urgent question", "from_id": "04867cffa26cc69089628e6fbdf5e51389f555170d7e186a65dbdb0de306d117", "reply_to": null, "datetime": "2023-10-02T15:12:10+00:00" }, { "message_id": "39d9028d0d104b744991c8bd4377c1dbddb7a569c4e84b53acc944f11f7380cd", "sticker": null, "text": "Yeah you can ask it", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "fa3a75cc2c7f6d378ff12a67b3929fcea354bbb267568fe6f6a979b6833095b5", "datetime": "2023-10-02T15:17:37+00:00" }, { "message_id": "ee220d9175cb67b3d477dd3ecd7c61721093d8e502e55fa37133c84854245970", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "52ab830994007eb987080029d09ee674ac83d40f309317226c5db3605f8bfb6c", "reply_to": null, "datetime": "2023-10-02T17:35:25+00:00" }, { "message_id": "2905e7dd07a5650d88e5161c1f9df6b105f4e81dc90ab6eb194226316b3e53e2", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "52ab830994007eb987080029d09ee674ac83d40f309317226c5db3605f8bfb6c", "reply_to": null, "datetime": "2023-10-03T11:42:07+00:00" }, { "message_id": "09dcb1ee4486e8c2843c50073cf650cb3db399ccca0a52d09522e33329a08841", "sticker": null, "text": "When using the class level synchronization, do we need to pass the current class in the synchronized block or any class we can pass?\nEx:\nclass Test{\n synchronized (Test.class) //here can we pass any other class?\n {\n System.out.println(this);\n }\n}", "from_id": "6f35daec844f6f3851271f960fe8c802d374fc624dd1873a60c0f90464779bf5", "reply_to": null, "datetime": "2023-10-06T10:58:09+00:00" }, { "message_id": "c0e3d533ce056b02c8ef465d11260e91ef027ab169c0073e0ade73d17f54f052", "sticker": null, "text": "Can someone help me \n\nI need a course of jakartaee or java enterprise edition\n\nDo anyone know of a course?", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-07T02:32:59+00:00" }, { "message_id": "247760a41495159d230cff038fa29434219fffd1195d325034ec3bba88c86147", "sticker": null, "text": "Hi \nPlease I'm a beginner\nI need courses and materials to help me", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-10-07T15:26:13+00:00" }, { "message_id": "09cacceb604cacb580d967e4b78653dde67f47ac6756be94ecd8a88b432081d0", "sticker": null, "text": "You can learn it from official tutorial of Oracle", "from_id": "c2a3a2fdd0dd9c03d85ef120a016f0995c647d381a225e1aa787bdd733b2a905", "reply_to": "c0e3d533ce056b02c8ef465d11260e91ef027ab169c0073e0ade73d17f54f052", "datetime": "2023-10-08T05:30:39+00:00" }, { "message_id": "552aa2417c225a84143bd811a2210172057f4239eef009159fd1e653c1d2d775", "sticker": null, "text": "Scammer beware", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": "044e14784df497fc9b609e28914f3fc0b9d8a20e66a1cb85d416f2ef4609f8f6", "datetime": "2023-10-08T09:35:15+00:00" }, { "message_id": "37fcb9ba5de370e156573261af5ed129768df87a779cee4da923ff874a254586", "sticker": null, "text": "How to tell whether I’m rate-limited? ApiWrapper GRPC", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-10-08T10:04:49+00:00" }, { "message_id": "c5f236012beacbb82aba35a691a4612039714ce5d9403df2e1bc50341494a209", "sticker": null, "text": "tron", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-10-08T10:04:51+00:00" }, { "message_id": "4e1d4af22684e164def54c1d40bbe530a01cfd15282d668ba816c2367da7bc30", "sticker": null, "text": "Are you guys aware of Datathon? It's a hackathon by IBM", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-10-08T11:33:19+00:00" }, { "message_id": "6e0f9332a20fc401e7456dc6adeed098b6855a2bc0ffdb0ae8331573e4ae586f", "sticker": null, "text": "Thanks", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": "09cacceb604cacb580d967e4b78653dde67f47ac6756be94ecd8a88b432081d0", "datetime": "2023-10-08T13:05:40+00:00" }, { "message_id": "1cbbae7afb6d67dfa54d14e5ca6b22ec66ee7b7d73f6cf3f521a8260d2a3d6ca", "sticker": null, "text": "It's my pleasure", "from_id": "c2a3a2fdd0dd9c03d85ef120a016f0995c647d381a225e1aa787bdd733b2a905", "reply_to": null, "datetime": "2023-10-08T13:49:44+00:00" }, { "message_id": "aebf8f89f2b07e93fe450158bf492864d2e30646d819477cc59b37be775af94e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-10-08T17:25:35+00:00" }, { "message_id": "deec53a1f8989e13475fbcf29ad961865903a00de01de765cc1e41ce75fecdc1", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "e0634bd0c207e8d909eb8c11bea53f16633af0c1c7062c897c2afd18bebb0763", "reply_to": null, "datetime": "2023-10-09T04:22:11+00:00" }, { "message_id": "51006b6b98da5728f8c9483ff52660551626c5b0c62f4c29372c6432d4932b2b", "sticker": null, "text": "Are there any tron ​​nodes for rent?", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-10-09T14:48:21+00:00" }, { "message_id": "e44c52ffd2e7b09c3605f9137e559485d8d60fc3b44cbf87e5f81850252fe81a", "sticker": null, "text": "pay usdt", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-10-09T14:48:33+00:00" }, { "message_id": "a149f1ee984159b87dfa97202c096389fc2405cbe91a3ccae043cb1ed6c2fb43", "sticker": null, "text": "Hi , I'm a CS university student , and trying android dev , anyone suggest me an internship to apply to ?", "from_id": "b5f5bc095f0852f04e0aac95c592c3d02893488400a7e3f6dd4e17c0e7e10780", "reply_to": null, "datetime": "2023-10-09T15:55:53+00:00" }, { "message_id": "b0e2668ae46f7b768c412af0b21509d5ee9d92dfcfeb654657186c638839fda6", "sticker": null, "text": "You create games?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "aebf8f89f2b07e93fe450158bf492864d2e30646d819477cc59b37be775af94e", "datetime": "2023-10-09T18:57:19+00:00" }, { "message_id": "354a4dcb147ea303846df3ddb19e2bdc8eda7ce3ecbeb41d28b06810cc8c629f", "sticker": null, "text": "doing simple games as hobby, yes", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": "b0e2668ae46f7b768c412af0b21509d5ee9d92dfcfeb654657186c638839fda6", "datetime": "2023-10-09T18:57:49+00:00" }, { "message_id": "65e611d2fc6652bcc141a5a717389e2e879f7f94ba7bfbd81e0dd91a19e40752", "sticker": null, "text": "Have you used any gaming engines like unity?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "354a4dcb147ea303846df3ddb19e2bdc8eda7ce3ecbeb41d28b06810cc8c629f", "datetime": "2023-10-09T19:00:30+00:00" }, { "message_id": "872c54eabf3072fa129f2202fb15a23e4fccd0ac762ff77bf874ac1bc248be6a", "sticker": null, "text": "So far I used pygame, Pyxel and love2d. Don't particularly like unity or Godot - I think they less fun from coding stand point.\n\n\nAlso can't stand leaving my favourite ide 😂", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": "65e611d2fc6652bcc141a5a717389e2e879f7f94ba7bfbd81e0dd91a19e40752", "datetime": "2023-10-09T19:02:05+00:00" }, { "message_id": "62e9a4fb7934071169e1bb874cffb8810f36e95851d5a12dcfca346afa5c797b", "sticker": null, "text": "Lol why not?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "872c54eabf3072fa129f2202fb15a23e4fccd0ac762ff77bf874ac1bc248be6a", "datetime": "2023-10-09T19:05:57+00:00" }, { "message_id": "3f2c2630316b514ccced876398d0fe1e08b385047a1b8d396a3078c24f38d35d", "sticker": null, "text": "And thanks for the suggestions. I used Unity and GameMaker a few years ago. Looking to get back into it", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "872c54eabf3072fa129f2202fb15a23e4fccd0ac762ff77bf874ac1bc248be6a", "datetime": "2023-10-09T19:06:37+00:00" }, { "message_id": "2ff74ea12afa295f1dea40202a428677d332528f39ad90dff96c4a3f2c1b9e6d", "sticker": null, "text": "Because they force me to structure the game the way I don't like and make me use their workflow. I am an old and opinioted chap,since I do it for fun I just prefer my way of fun.\n\nAnd for the games I make (2d pixel art) I don't need unity or even Godot tbh", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": "62e9a4fb7934071169e1bb874cffb8810f36e95851d5a12dcfca346afa5c797b", "datetime": "2023-10-09T19:07:33+00:00" }, { "message_id": "bbca23e3853c34e429369684eb049db5c36eab8fb983f63157aa167553ee8851", "sticker": null, "text": "Where can I access the courses", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-09T21:53:04+00:00" }, { "message_id": "d7e410f05554723470141b269018dd7aacc9900abfa9d41204cb8c069e0fe11c", "sticker": null, "text": "??", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-09T21:53:06+00:00" }, { "message_id": "a6d3ce772c4a4693b4d8ccc3305cc6ee26c39efb3db08e4c81c64f91d1ef843b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ebc51ad6704855fe3089668995b76e3f27d0bcbf3387075f1f3e4b37d759e944", "reply_to": null, "datetime": "2023-10-10T19:01:21+00:00" }, { "message_id": "67ece0b0b2bd4cb4ba84e92c446bc0eb0488018eba3265e43e2bd6fa937e100e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7a61a14d7a8eb869a33c43c1a09ea605a47c7b14a9f601596fcaa66dce382e40", "reply_to": null, "datetime": "2023-10-11T01:00:01+00:00" }, { "message_id": "b9d339ab0c998e2fb82972894de6d2e536c31be8c2506a7556df8667d46f324a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-10-11T08:50:06+00:00" }, { "message_id": "5066b3698ff9a43513b3e56adf9785c7a80da858ad0c3e759908ff5db4f4f2c6", "sticker": null, "text": "Ook", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-11T15:49:06+00:00" }, { "message_id": "041c867d3ad68f1184e7b9446d451f4a5e69ded38a2ab45dbf7d3f5406143010", "sticker": null, "text": "hi, is there someone online?", "from_id": "b934192d156fa29dfc17d9ad09d11f7ccefe3349563c22b86fb22a682057efbb", "reply_to": null, "datetime": "2023-10-12T12:41:35+00:00" }, { "message_id": "2ff7e9d8794d2c6b6d04420778e93ba0da08c2f45010027b074cf70b834c1ae8", "sticker": null, "text": "why", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-10-12T12:48:04+00:00" }, { "message_id": "16f0453c834b26750f0793b7c149ac665a68f7dfe8b09e54c1a02dabed532b13", "sticker": null, "text": "To talk", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-12T14:09:07+00:00" }, { "message_id": "be88d66eacb57308c461c007815dbd6b3c33b5d9b2861ec158963225f208f9d1", "sticker": null, "text": "Hello", "from_id": "25325edda9b04db9cb19f2db32e5e5df5541ebda1c56da7df7d90291a4c978a8", "reply_to": null, "datetime": "2023-10-12T14:49:21+00:00" }, { "message_id": "3d38ecdc997319f1dedf6a8e5b35dff1b12d7dcf9d48dfbd5f3745886839d7d1", "sticker": null, "text": "Hello world", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": null, "datetime": "2023-10-12T14:50:54+00:00" }, { "message_id": "769bc9f06595ca32030386bad3fa713d674120545bf55fe662089edc00d7f722", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": null, "datetime": "2023-10-12T18:50:03+00:00" }, { "message_id": "e90837a0e9b37dfcf040610f7967b4db34b647e9d5bb2f83107f3e53bc6fb8ca", "sticker": null, "text": "Hi", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-10-13T08:00:01+00:00" }, { "message_id": "4f01e41d717d152b4a897771f58eaa7adc011534b11ad4426e4512b557076dfb", "sticker": null, "text": "Helloguys", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-10-13T13:35:45+00:00" }, { "message_id": "6a9eb3ad1dbf29d743d516eec42cf0c0e13342ec884ea4e9925294d6933ef685", "sticker": null, "text": "Any idea about Smart India hackathon?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-10-13T13:36:16+00:00" }, { "message_id": "d60d073c8d6cda06ddac2fe57d4401c60503471835f8e6645c683b082709095b", "sticker": null, "text": "Hello can anyone help me with this?\n\nProblem:\n3 Hairdressers work independently in a salon shop. The salon has 3 chairs for each hairdresser. There are only 2 combs and 2 scissors in the salon\nBasic requirements :\na. Each hairdresser follows the same work plan:\n1. Hairdresser sleeps when no customer is waiting (and not in the hairdresser's own chair)\n2. When the hairdresser is asleep, the hairdresser waits to be awakened by a new customer. (any available hairdresser can be told to wake up if multiple hairdressers are asleep)\n3. Once awake, the hairdresser cuts the hair of a customer in the hairdresser's chair\n4. The hairdresser requires 1 comb and 1 scissor to cut a customer's hair. When the haircut is done, the customer pays the hairdresser and then is free to leave.\n5. After receiving payment, the hairdresser calls the next waiting customer (if any). If such a customer exists, that customer sits in the hairdresser's chair and the hairdresser starts the next haircut. If no customer is waiting, the hairdresser goes back to sleep.\nb. Each customer follows the following sequence of events:\n1. When the customer first enters the salon, the customer leaves immediately if more than 10 people are waiting (5 standing and 5 sitting). On the other hand, if the salon is not too full, the customer enters and waits.\n2. If at least one hairdresser is sleeping, the customer wakes up the hairdresser who is sleeping and sits in that hairdresser's chair (after the hairdresser has stood up).\n3. If all hairdressers are busy, the customer sits in a waiting-room chair, if any chair is available. Otherwise, the customer remains standing until a waiting-room chair becomes available.\nAdditional Requirements:\n1. Customers keep track of their arrival, so the person sitting the longest is always the next customer to get a haircut.\n2. Similarly, standing customers remember their order, so the person standing the longest takes the next available waiting-room seat.\n3. The salon should close after all customers have left and all barbers are sleeping.\n4. Customers haircut progress should be seen.\n5. Which comb and scissors are used by which hairdresser should be clearly stated.\n6. Each event should take some time.\n7. The rate should be based on the duration of the haircut. \nExtra points: Some customers who are standing get tired after a while and leave the salon.\nDeliverables:\n1. For this exercise, you are to model the salon and write a Java program to simulate activity for this salon:\n2. Simulate each hairdresser and each customer as a separate process.\n3. Altogether, 20 customers should try to enter.\n4. Use a random number generator, so a new customer arrives every 0,1, or 2 seconds.\n5. Similarly, use a random number generator, so each haircut lasts between 3 and 6 seconds.\n6. Each hairdresser should report when he/she starts each haircut and when he/she finishes each haircut.\n7.Each customer should report when he/she enters the salon. The customer also should report if he/she decides to leave immediately.\n8. Similarly, if the customer must stand or sit in the waiting room, the customer should report when each activity begins.\n9.Finally, the customer should report when the haircut begins and when the customer finally exits the shop.\nSample output :\nIn order to see what is happening dynamically you must have output from the Customers andthe hairdressers reporting all their major events.\nAdd information about which process/thread is doing the output. This way you can see if a process/thread acts for another, which is strictly forbidden, but is a common error for Javasolutions (objects are not processes!). An example of such incorrect behaviour is\nThread-Hairdresser: 21.31: Hairdresser1: Customer 3 is done!\nmain: 21.50: Hairdresser: Next customer please!Thread-Customer-12 : 21.50: Customer12 is waiting for a chair.\nThread-Hairdresser: 21.31: Hairdresser2: Acquiring comb2!\nWhere you can see that not only the hairdresser thread but also the main thread is acting for the hairdresser.Note that realistic time stamps are not required, it is fine to use any", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-10-17T00:53:18+00:00" }, { "message_id": "f43629b0dbd78d2fc7705aa50a6d8ac56577ade7132df7a74cd04352ea44afbf", "sticker": null, "text": "function to generate them. \nYou must not• Kill a thread or process. You may not use any of the following in Java: \no Thread.stop\no Thread.resume \no Thread.suspend\no Thread.interrupt \no setDaemon", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-10-17T00:53:24+00:00" }, { "message_id": "da4158e2a1815ccf945cbf54134c9b6192ba9da784ca522249e2d31caf1e8cfa", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2023-10-17T04:11:04+00:00" }, { "message_id": "1a06e4bbb59a2110c9c493ec4699a48d0f031d32edb55ede8824f2601405ea40", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-10-19T04:26:50+00:00" }, { "message_id": "4d075b214433a126ac778484488510ec39b6e6a3c78dc11a023904e487910836", "sticker": null, "text": "Free of cost? 😁", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "1a06e4bbb59a2110c9c493ec4699a48d0f031d32edb55ede8824f2601405ea40", "datetime": "2023-10-19T06:23:47+00:00" }, { "message_id": "5e410d50e31d67364593ca3cc5c0d4ba94f69b568dc686ef881834b0e7901fa6", "sticker": null, "text": "Course Fee : 4000 INR", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-10-19T06:54:34+00:00" }, { "message_id": "28c214b431f2ce19c6c38d52ac8d2268cac44df6fff0c90cf3223df00dafca15", "sticker": null, "text": "No way, \nAll the paid courses are available free of cost in many TG groups, \n\n\nWe don't want, \nYou can leave this group", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "5e410d50e31d67364593ca3cc5c0d4ba94f69b568dc686ef881834b0e7901fa6", "datetime": "2023-10-19T06:55:29+00:00" }, { "message_id": "f7a21f29b1c54c3a2cb7aee64759d915edd64eb6e5acdfa05f752f90e0106aca", "sticker": null, "text": "It's only 4000 INR", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "28c214b431f2ce19c6c38d52ac8d2268cac44df6fff0c90cf3223df00dafca15", "datetime": "2023-10-19T07:19:30+00:00" }, { "message_id": "a3d4586b3bb6a7ece48e215692e55685e9324d2c6f7ad09505fab70242981795", "sticker": null, "text": "😂😂😂, bro,\nEverything is available free of cost, \n\nEvery single paid course is available FREE OF COST. Those courses are called Pirated course 😂😂. \n\nAnd don't come with different IDs.", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "f7a21f29b1c54c3a2cb7aee64759d915edd64eb6e5acdfa05f752f90e0106aca", "datetime": "2023-10-19T07:21:04+00:00" }, { "message_id": "615e9037681651ebca49432b4eb41d3682abd6949fb01e63e0185060c69aac81", "sticker": null, "text": "You can provide the links if you found the free ones", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "a3d4586b3bb6a7ece48e215692e55685e9324d2c6f7ad09505fab70242981795", "datetime": "2023-10-19T07:21:37+00:00" }, { "message_id": "f1aae3f4e013823c0df5d0cf16c6b3f5d882e7b569b8136bb0afdc0a655b7255", "sticker": null, "text": "I have 😂,\n\nAiplex.lol\n\nOpen this website. You will get everything 😂👍👍", "from_id": "aee33d44dffeec0b34ba53a8786e653db915fc6e40920a0aa9c7c5a2850b7086", "reply_to": "615e9037681651ebca49432b4eb41d3682abd6949fb01e63e0185060c69aac81", "datetime": "2023-10-19T07:22:52+00:00" }, { "message_id": "333108703e5ec5c9a30e3542cb17fe17a59be8b1ffc91e6b7430f9c42d6437e8", "sticker": null, "text": "Thanks", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-10-19T07:26:58+00:00" }, { "message_id": "53c62820a1151ca489633d0487680c95c8ec938ec10245a50aa53591f950d35d", "sticker": null, "text": "Can you give as free?", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": "1a06e4bbb59a2110c9c493ec4699a48d0f031d32edb55ede8824f2601405ea40", "datetime": "2023-10-20T01:09:25+00:00" }, { "message_id": "685950c8246491728952c0edeb36f18cce9a0cc9f946cde71ef65a2d58e25db4", "sticker": null, "text": "Interesting question do you have the solution for it??", "from_id": "dfe1e92d435a7648440e7e68301491a2a0603bb59eb8828c5440b29f34dbf01b", "reply_to": "d60d073c8d6cda06ddac2fe57d4401c60503471835f8e6645c683b082709095b", "datetime": "2023-10-21T18:06:14+00:00" }, { "message_id": "b390ad8367f6c862e05c7efd92797dddb9f8a61db8d0fe55e5b81e6e639146a0", "sticker": null, "text": "I have the code", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "685950c8246491728952c0edeb36f18cce9a0cc9f946cde71ef65a2d58e25db4", "datetime": "2023-10-21T22:22:05+00:00" }, { "message_id": "08408dd18f5e0dea9f12caf8d60b416f5106c2e898a24f2c8c54348671f4e41c", "sticker": null, "text": "But not fixed yet", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-10-21T22:22:09+00:00" }, { "message_id": "2f65ba771d30dd225754a1f85dd38ab871722daf1a55f6c3774b2f608b8dddd3", "sticker": null, "text": "Can you send it to me??", "from_id": "dfe1e92d435a7648440e7e68301491a2a0603bb59eb8828c5440b29f34dbf01b", "reply_to": null, "datetime": "2023-10-22T07:15:37+00:00" }, { "message_id": "f2dfa2bd717dadff335ad82a5afad1b554a9e6ecd93f75689ac19e12ef21e0bb", "sticker": null, "text": "Its fine!!", "from_id": "dfe1e92d435a7648440e7e68301491a2a0603bb59eb8828c5440b29f34dbf01b", "reply_to": "08408dd18f5e0dea9f12caf8d60b416f5106c2e898a24f2c8c54348671f4e41c", "datetime": "2023-10-22T07:15:46+00:00" }, { "message_id": "991c339382e78d5b8982ea744414a0a86482dee3baaaf232afde122a8a7b529f", "sticker": null, "text": "hello guys\nI have a app in Google play that I need to use AdMob and earn money.\nBut unfortunately, I cannot open an AdMob account in my country due to sanctions.\nA person who has an AdMob account and agrees to put my app on his panel by receiving a fee, let me know.", "from_id": "846a77918188c1b551b8f9ea5a2a1c99c558928072239a8da3ea9e15e131303a", "reply_to": null, "datetime": "2023-10-23T21:29:44+00:00" }, { "message_id": "95d9ee5baa18cfd983d548dea3c4ec23772c40a5c3f3eec90cc29c31cadb69e4", "sticker": null, "text": "Maybe u can create it using a VPN", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-23T23:37:50+00:00" }, { "message_id": "27ff5a38c4596b8e8746befcb44b2399e744474d053ae0161fdbf63680054f4a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-10-24T13:32:22+00:00" }, { "message_id": "970d5e27f3bf7a9cb9055f80a562ec1916b2ba4c830e3690d86fca6184be7142", "sticker": null, "text": "Is it for free?", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-24T16:42:56+00:00" }, { "message_id": "586b5e7a0b230df7ed319f369dd162d76a535ac85453c50ca1f5596ca2d52210", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b4b9ddc854ee05a52e1819ba401353a25263701bc2e987e08c757aba935720a0", "reply_to": null, "datetime": "2023-10-25T14:08:46+00:00" }, { "message_id": "07f3f134649dbb37b4f7604ecf278d96ea68a9c78d79b86b849e90c01d38d37a", "sticker": null, "text": "Es gratis?", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-25T14:30:57+00:00" }, { "message_id": "d4791d2dcb704c539c5ac908864c7e26f9db58e2936b05b7a60142a4c099d095", "sticker": null, "text": "15", "from_id": "1d5e842681597e2e3cf8ac601266797a0777b671766ff999ec97eb1802d6a767", "reply_to": null, "datetime": "2023-10-27T05:29:43+00:00" }, { "message_id": "c270a9790481b7b2844f43f4e4683ebaa2f6d1707c4596a40239161761d988be", "sticker": null, "text": "7", "from_id": "1d5e842681597e2e3cf8ac601266797a0777b671766ff999ec97eb1802d6a767", "reply_to": null, "datetime": "2023-10-27T07:19:31+00:00" }, { "message_id": "55877fdd3721cb9a97d57356a31a96db04f9a81d133f058a0d4bc27af21d3740", "sticker": null, "text": "Hello, excuse me. is there anybody who wants to teach me about coding in the Java language? i am from Indonesia, if you are willing please contact me, thankyou 🙏🏻", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-10-27T12:09:27+00:00" }, { "message_id": "e108eea3c0c8855299e70935543c4483981ac0de85e61e012262a7436ee70168", "sticker": null, "text": "yes I can", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "55877fdd3721cb9a97d57356a31a96db04f9a81d133f058a0d4bc27af21d3740", "datetime": "2023-10-27T19:36:17+00:00" }, { "message_id": "bbd4fd8ac6720566088dab133a2319b0b58e6adbc81468e93d9914ccb619fb17", "sticker": null, "text": "Hello, can anyone help me with Java multithreading?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-10-27T19:47:06+00:00" }, { "message_id": "35532eb10c9411b5140654a9a2b48f2352ee304455a90639f19cdf86fd8ddb53", "sticker": null, "text": "You may learn from Youtube or from Udemy", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "55877fdd3721cb9a97d57356a31a96db04f9a81d133f058a0d4bc27af21d3740", "datetime": "2023-10-29T17:21:32+00:00" }, { "message_id": "39618e2884106c4dbf6f5cc2cb739eb50ac42c3246ba8f2c7584da1017dc288a", "sticker": null, "text": "Hello, who would like to start working in the area of web pentesting?", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-10-29T21:01:35+00:00" }, { "message_id": "7264dae4723fa7f2529e690df7c37f981a4c7fb8f6fe724cb50d0c0c7b2752df", "sticker": null, "text": "How to make apps using python?", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-10-30T22:40:30+00:00" }, { "message_id": "84e2fb6b2c54efbf7a97f7673c8a313f05822be9f9f694f16469492fb0550263", "sticker": null, "text": "How to make apps using python and qt design", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-10-30T22:45:13+00:00" }, { "message_id": "3e7ed1a1935c50e50117a84c383c0415d12a89601d0a764278ddc413704e7406", "sticker": null, "text": "??", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-10-30T22:45:15+00:00" }, { "message_id": "3b854a8a2cab4867ab3dab65a78213dd18aa9e733dab2a22f3f9a2bd8188d3fe", "sticker": null, "text": "Anybody need help in website development or app development or content writer or academic writer or graphic designer than message me ASAP", "from_id": "726fe518ef581cb29198ea9c0fd58514ba5b76dd2c9aa8b366a266fc08a858d3", "reply_to": null, "datetime": "2023-10-30T22:58:23+00:00" }, { "message_id": "3bc2c2e304de3b149b56f46de161ba659df68609696a15d2c7461d3cce3b956b", "sticker": null, "text": "I have interview can anyone help me to pass by expaling any real-time project in banking and pharmacy using java Springboot microservice Mongodb with source code ?", "from_id": "e807869d2215bcb7d29efb09a4b2a32fe426710ef8c49d003d9133aa09f64f81", "reply_to": null, "datetime": "2023-10-31T00:07:56+00:00" }, { "message_id": "de9fd48d967513ccba123585e42b884db7f8de897edef6513ccc2eafa5f0778c", "sticker": null, "text": "Search by Github", "from_id": "a08bdc3e1b3b87d2dc78a7c51810753f1970b516732e0007148d6b548c799d14", "reply_to": "3bc2c2e304de3b149b56f46de161ba659df68609696a15d2c7461d3cce3b956b", "datetime": "2023-11-01T13:13:20+00:00" }, { "message_id": "c2a816360efb9568d8075ce761567fedfb7ec1ef1ae90ec85d22d5327bd7787a", "sticker": null, "text": "else just ask you, how are you ready money?", "from_id": "a08bdc3e1b3b87d2dc78a7c51810753f1970b516732e0007148d6b548c799d14", "reply_to": "3bc2c2e304de3b149b56f46de161ba659df68609696a15d2c7461d3cce3b956b", "datetime": "2023-11-01T13:14:35+00:00" }, { "message_id": "efed132774d30bd2fbc8b6b6da1e6175654a0226d8f9952cb277b2a8ccebb604", "sticker": null, "text": "Hello anyone know a telegram group for C++ discussions?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-11-01T15:56:05+00:00" }, { "message_id": "d9adb3704705374ecec36ad83b6d7a8fa19b830b9544802468ea19d4f3b3e271", "sticker": null, "text": "Hi", "from_id": "fe43788270b22ec0ad1fa5acab3fc2e3ad6b31d89229ab05adff69138ff43d46", "reply_to": null, "datetime": "2023-11-01T18:54:59+00:00" }, { "message_id": "cef42fcd818eea4c934bdb718bffe05a912b14fd0738b02d70e9fa74a20c84bf", "sticker": null, "text": "Hi", "from_id": "d04628a65a5b4c6881401add3db980dd3cce02d64db99e95fdd284b208ef5e40", "reply_to": null, "datetime": "2023-11-02T17:52:51+00:00" }, { "message_id": "d4427a1d45cdf6c42f9d5b08c9e532e7c7285df894a59db29709c0d4149a3d7f", "sticker": null, "text": "I did this once but I did it in JavaScript", "from_id": "3ad8e4da3c2242a09f7006f7c3ea7ba4ccf033856435e5eb3c72684d514370da", "reply_to": "ade1fa0327cbfdfdac1ce96021c7ece9b95d10c7a7a5a18ac4a1ff4d4e45ae1d", "datetime": "2023-11-03T09:15:55+00:00" }, { "message_id": "dbfdb6ffa304c3bbf85fe50edca10d86a5897b70974860efa95e5110307c484c", "sticker": null, "text": "No, that’s cheating", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "ade1fa0327cbfdfdac1ce96021c7ece9b95d10c7a7a5a18ac4a1ff4d4e45ae1d", "datetime": "2023-11-03T14:47:52+00:00" }, { "message_id": "20b18e395c24a657084281b934c4d9985d4e8d4f1f6881bc232c83673b25da54", "sticker": null, "text": "hi", "from_id": "60d59245eb1ce5acc3f6cf4d7d74ff4b4827444ccbf85c825a83b605198353e3", "reply_to": null, "datetime": "2023-11-04T02:22:11+00:00" }, { "message_id": "277c70fa7251ef672f0bc50dcc868fb600670951bd5fe7dcc4b2517eea6d2b08", "sticker": null, "text": "public static void main(String[] args)\n { \n City ForgetsVille = new City();\n MoveRobot mary = new MoveRobot(ForgetsVille, 4, 1, Direction.EAST, 0);\n new Wall(ForgetsVille, 2, 5, Direction.NORTH);\n CityFrame frame =new CityFrame(ForgetsVille);", "from_id": "41a4548351e92a9c3723be80acdb57288a78bb36032780fb8e2d0a6bd5a26d13", "reply_to": null, "datetime": "2023-11-04T04:09:00+00:00" }, { "message_id": "5e6a5188edf0b6e04826230da782a87c86b68bc5b92b8464bd11d5906fa24727", "sticker": null, "text": "哪位老哥知道为啥最后一段不对呀?", "from_id": "41a4548351e92a9c3723be80acdb57288a78bb36032780fb8e2d0a6bd5a26d13", "reply_to": null, "datetime": "2023-11-04T04:09:20+00:00" }, { "message_id": "3d924e6fef5a0297f6b6169ed18de7940591805c82fe5ba856de4dbeec78d1c2", "sticker": null, "text": "Hi", "from_id": "d04628a65a5b4c6881401add3db980dd3cce02d64db99e95fdd284b208ef5e40", "reply_to": null, "datetime": "2023-11-04T05:25:15+00:00" }, { "message_id": "e221cab7fc28f11e062a69daeb2d5ba49b64ae82c438f3adf1f42eda0adc67c3", "sticker": null, "text": "Can someone please me with my final year project \n\nI am to work on weather forecasting and monitoring system using java api", "from_id": "d04628a65a5b4c6881401add3db980dd3cce02d64db99e95fdd284b208ef5e40", "reply_to": null, "datetime": "2023-11-04T05:26:27+00:00" }, { "message_id": "4958447f71df0aa52a0810c0e839a572b202ec1f0619a8e31a1e7a8561ac6a7e", "sticker": null, "text": "What help you need?? Register yourself in openweather website to get your api key. Then use that to call their api. After that implement it in java", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "e221cab7fc28f11e062a69daeb2d5ba49b64ae82c438f3adf1f42eda0adc67c3", "datetime": "2023-11-04T05:32:41+00:00" }, { "message_id": "c99ab8ff92af46a682c973ac4ba1be44cebf2996ed04c9a255f634cd4f8f1d4e", "sticker": null, "text": "English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "5e6a5188edf0b6e04826230da782a87c86b68bc5b92b8464bd11d5906fa24727", "datetime": "2023-11-04T06:24:39+00:00" }, { "message_id": "972cc33620dcf7ac02cbdc951cb428893655a32c32baa822ef757170abac23c2", "sticker": null, "text": "Sorry, I thought this is a Chinese group", "from_id": "41a4548351e92a9c3723be80acdb57288a78bb36032780fb8e2d0a6bd5a26d13", "reply_to": "c99ab8ff92af46a682c973ac4ba1be44cebf2996ed04c9a255f634cd4f8f1d4e", "datetime": "2023-11-04T06:28:00+00:00" }, { "message_id": "253b4af45234976a5faacee41b2ce32fb4f426db978235575fe408ec3d063596", "sticker": null, "text": "I have already fixed that", "from_id": "41a4548351e92a9c3723be80acdb57288a78bb36032780fb8e2d0a6bd5a26d13", "reply_to": null, "datetime": "2023-11-04T06:28:15+00:00" }, { "message_id": "db3bc88c7616319e92d5e0f3d09138c54d538783e753ddebcca6e3157f9e6e71", "sticker": null, "text": "Thank you so much!!😁😁", "from_id": "41a4548351e92a9c3723be80acdb57288a78bb36032780fb8e2d0a6bd5a26d13", "reply_to": "c99ab8ff92af46a682c973ac4ba1be44cebf2996ed04c9a255f634cd4f8f1d4e", "datetime": "2023-11-04T06:29:48+00:00" }, { "message_id": "319750b1797810ac40a8347610226e8341d1a728c596cf0ad2187f8cb863eeaf", "sticker": null, "text": "Hi", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2023-11-05T16:49:49+00:00" }, { "message_id": "29a030482e506e0f40ddb68a84caf959dd96e9324844a2c546f5e202ad0578e3", "sticker": null, "text": "Your welcome", "from_id": "1a54efce7ae3c7c4e24844e08b64d8a351fec4e2f3adf982f9233e24aa6f6c77", "reply_to": "319750b1797810ac40a8347610226e8341d1a728c596cf0ad2187f8cb863eeaf", "datetime": "2023-11-05T17:04:56+00:00" }, { "message_id": "bd3f794cda6a4a31a929d47f90b13a5ba77e5ba49415a1bd64e085760f604d97", "sticker": null, "text": "Hi everyone", "from_id": "dcf6311e59364496f464f686cc4ee71d7cd41c3b5f9d078b0636af4990a4181b", "reply_to": null, "datetime": "2023-11-05T18:28:30+00:00" }, { "message_id": "9e6b35c381020518cbf40a6b7c9d2125fa80ffa10863395b2842b1f294c1720a", "sticker": null, "text": "Anyone doing cp in java ?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-11-05T22:19:33+00:00" }, { "message_id": "0ee930c4683621dade161de5ea061693f4c88cd7c170fd4c8ced7f2bd1f8533f", "sticker": null, "text": "Hello", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": null, "datetime": "2023-11-05T23:47:22+00:00" }, { "message_id": "2f0ef7bec8fa9acb6b2ae95df8eafb9eb899ed18672da9b9ef60fd86fbec68a6", "sticker": null, "text": "I'm available for any Frontend jobs/gig you might have,\nI'm just a DM away", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": null, "datetime": "2023-11-06T00:16:01+00:00" }, { "message_id": "d41db2b82d264bf45cbec17a64b78aaa784b37a7852d1ea39aaab73577a08d82", "sticker": null, "text": "Hai", "from_id": "cab456664935c64086743dfd3c341d86a329f5d830ddc2fde3f8229ae81747df", "reply_to": "bd3f794cda6a4a31a929d47f90b13a5ba77e5ba49415a1bd64e085760f604d97", "datetime": "2023-11-06T00:17:08+00:00" }, { "message_id": "d880707be1321108be798c19347f0a4b848d262bbde6365615ab5d25f288db14", "sticker": null, "text": "System.out.println(\"Hello\");", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "319750b1797810ac40a8347610226e8341d1a728c596cf0ad2187f8cb863eeaf", "datetime": "2023-11-06T00:25:04+00:00" }, { "message_id": "873b10112fdf4818a3ffac0652343f12f67672ab165c3bff4bd12d298b96e7af", "sticker": null, "text": "System.out.println(\"Hello\");", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "bd3f794cda6a4a31a929d47f90b13a5ba77e5ba49415a1bd64e085760f604d97", "datetime": "2023-11-06T00:25:10+00:00" }, { "message_id": "263e08b0701d05b98632506e71262d20f71cc80be62bdbde8fb919525a90a04d", "sticker": null, "text": "System.out.println(\"Hello\");", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "0ee930c4683621dade161de5ea061693f4c88cd7c170fd4c8ced7f2bd1f8533f", "datetime": "2023-11-06T00:25:15+00:00" }, { "message_id": "90ec26617b07570e023998f8bade8d669f2308fe45b4d3aee10249b17b45c310", "sticker": null, "text": "Hi, can you suggest a java course?", "from_id": "4e5aafc02dd6c476eeb4c558d093e7a936cb7ceaaaf710ca98486a72c8dcd04d", "reply_to": null, "datetime": "2023-11-06T09:45:08+00:00" }, { "message_id": "09658aa8a176a99c3334086452e7295819d09848ea91274604ecf45c2b830b78", "sticker": null, "text": ".", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": "2f0ef7bec8fa9acb6b2ae95df8eafb9eb899ed18672da9b9ef60fd86fbec68a6", "datetime": "2023-11-06T10:46:35+00:00" }, { "message_id": "9355e42ba3e6c08d5c4f336416bc4004667127a3a7186d929a6d41756f6cdd42", "sticker": null, "text": "Try finding jobs on LinkedIn or Indeed", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "09658aa8a176a99c3334086452e7295819d09848ea91274604ecf45c2b830b78", "datetime": "2023-11-06T10:53:36+00:00" }, { "message_id": "887dc300f979a4955ff64bfe39bda2fa8d87ad0c7db91acde8e90b7811988ce5", "sticker": null, "text": "Yeah,I use LinkedIn,but if there's any kindly refer me", "from_id": "9a01c902c1df1747ed5b5451a7903b3dc578d7f47c55983f0560b09fd5ebc4e3", "reply_to": "9355e42ba3e6c08d5c4f336416bc4004667127a3a7186d929a6d41756f6cdd42", "datetime": "2023-11-06T11:57:20+00:00" }, { "message_id": "f95e0cd6919a060449b216c4b95bd3927eef3a137537c634b997bbfca70dd9da", "sticker": null, "text": "Hi guys.\nI develop a vpn app via ssh method in java android.\n\nIf i want explain with detail: I connected to ssh server, create dynamic port forwarding and use tun2socks for communicate between vpn service and socks5.\n\nIt works correctly and vpn was established but some apps didn’t work. means they not route their traffic to/from vpn (maybe).\n\nFor example telegram works correctly but instagram not.\n(Im from Iran and we don’t have permission to access telegram and instagram, so i need to use vpn)\n\nWhat would i do?🙏🏻", "from_id": "f6fda2b5c3c02bbce5fe125c2a67fb9f9f897deb4ec0fe7bb951ca34c1c2e2f4", "reply_to": null, "datetime": "2023-11-06T16:32:50+00:00" }, { "message_id": "a6a10707a814dac1ce136ee5e0c63917c98d998b9272c3094cfb852b048a44d6", "sticker": null, "text": "ANYBODY NEED WEBSITE DEVELOPMENT OR ACADEMIC WRITING OR GRAPHIC DESIGNING OR CONTENT WRITING OR APPLICATION DEVELOPMENT THAN MESSAGE ME ASAP...!", "from_id": "726fe518ef581cb29198ea9c0fd58514ba5b76dd2c9aa8b366a266fc08a858d3", "reply_to": null, "datetime": "2023-11-06T17:12:54+00:00" }, { "message_id": "c309af056849aca1295b6e2e01643144c557754d91c6041fa25d09bf1c72f351", "sticker": null, "text": "Can you design a web site?", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-11-06T17:26:26+00:00" }, { "message_id": "bd7e375566cacfde4ebf0995277171edef6452b48d70236d43b75cb657c330af", "sticker": null, "text": "Download a vpn that works ..", "from_id": "1b71d9bdea8b7e5c57de47e1e16156252c07f98039c1e7fb6c81e5b4a25eb888", "reply_to": "f95e0cd6919a060449b216c4b95bd3927eef3a137537c634b997bbfca70dd9da", "datetime": "2023-11-06T18:33:39+00:00" }, { "message_id": "fa080da68f8a9a597f8145975c793627bf75012b27277c05f9faefb2eaf52e6d", "sticker": null, "text": "I want to develop one by myself", "from_id": "f6fda2b5c3c02bbce5fe125c2a67fb9f9f897deb4ec0fe7bb951ca34c1c2e2f4", "reply_to": "bd7e375566cacfde4ebf0995277171edef6452b48d70236d43b75cb657c330af", "datetime": "2023-11-06T18:35:03+00:00" }, { "message_id": "40b252da33205ed943ccb2886a9c542742432b4de66875222dfc07776b68d9a6", "sticker": null, "text": "well i have no skill about that but i have google this for you i hope it helps \n\nIf you're using SSH as a tunneling method for your VPN app and experiencing issues with certain apps not routing their traffic through the SSH tunnel, the steps to diagnose and address the problem can be adjusted accordingly:\n\n1. SSH Tunnel Configuration: Verify that your SSH tunnel setup is correctly established. Ensure that it's configured to forward all network traffic through the SSH tunnel.\n\n2. Firewall and DNS Restrictions: Check if specific apps are being blocked or restricted by firewalls or DNS settings. Make sure your SSH tunnel allows access to the necessary resources used by the apps.\n\n3. Tunnel Software:Confirm that the software or tools you're using for creating the SSH tunnel are working as expected. Test the tunnel with other applications to ensure it's correctly forwarding traffic.\n\n4. Application-Specific Issues: Some apps may have unique network configurations that can bypass your SSH tunnel. Consider using a firewall or routing rules to enforce all traffic through the SSH tunnel.\n\n5. DNS Leak:Ensure that DNS requests are also routed through the SSH tunnel and not leaked to default DNS servers. Check your SSH and DNS settings.\n\n6. Regional Restrictions: Be aware that some services may employ measures to detect and block SSH tunneling. Ensure your SSH tunnel is configured to bypass any such detection methods.\n\n7. App Updates: Keep your apps up to date, as updates can change their network behavior. Ensure they're compatible with your SSH tunnel setup.\n\n8. Logs and Error Messages:Review the logs and error messages in your SSH tunneling software or SSH client for any information that could help identify the problem.\n\n9. Legal Considerations:Always respect local laws and regulations when using SSH tunneling or VPN-like services, as there may be legal implications.\n\nyou can work to ensure that your SSH tunneling method correctly routes traffic for a broader range of applications.", "from_id": "1b71d9bdea8b7e5c57de47e1e16156252c07f98039c1e7fb6c81e5b4a25eb888", "reply_to": "fa080da68f8a9a597f8145975c793627bf75012b27277c05f9faefb2eaf52e6d", "datetime": "2023-11-06T20:13:25+00:00" }, { "message_id": "8d0c80f2fb46ed62a6800644c41b0a73c2fa3095cf06bc7465883cc6164004f4", "sticker": null, "text": "Hello, would anyone like me to do a pentest to your web site? send me a private message", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-11-06T22:10:18+00:00" }, { "message_id": "c735dc370649b6783c7feedd1c460425c01c0bb78f7956e410f1f98d5e59f663", "sticker": null, "text": "hi every one how do you get on now? i have a question how can i import image from roomdatabase to recyclerview. i wrote a program with java with mvvm designpattern", "from_id": "18461c795c7b6189051c2c52511bd0bbbba86a6533717ba5bd17092c97003d25", "reply_to": null, "datetime": "2023-11-07T13:02:59+00:00" }, { "message_id": "1445193a2603459957c79c48678c1fe05e6cf86b9b529e6c10e928f85c72862a", "sticker": null, "text": "Any channel suggestions or udemy course from a particular person for learning advanced java & spring framework as well ?.", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": null, "datetime": "2023-11-07T17:23:52+00:00" }, { "message_id": "9a97a64573356f14daf80e0fdf9e0f35449cc7d584ff579a13dce14f0cffcddf", "sticker": null, "text": "Java Masterclass on udemy by Tim buchalka, \nI'm doing it, found it good so far, I also use beside that AI chats to get more knowledge in depth.", "from_id": "7e15c9f506fd6e4bab60aaf969486818049f90dc2ad15b88a676e49beb77fa3a", "reply_to": "1445193a2603459957c79c48678c1fe05e6cf86b9b529e6c10e928f85c72862a", "datetime": "2023-11-07T20:53:48+00:00" }, { "message_id": "78d9e08d622ede48752fc3d4a6c86c452becca4f17c56a3e8cbfce9aeff419f6", "sticker": null, "text": "Thank you will give a try on that is spring also covered in it ?", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "9a97a64573356f14daf80e0fdf9e0f35449cc7d584ff579a13dce14f0cffcddf", "datetime": "2023-11-08T02:51:39+00:00" }, { "message_id": "b6bce6c0327749b94bddc25763a2438dd2cf803bc68e61f523589ed511180e7a", "sticker": null, "text": "Idk. You can check it out", "from_id": "7e15c9f506fd6e4bab60aaf969486818049f90dc2ad15b88a676e49beb77fa3a", "reply_to": "78d9e08d622ede48752fc3d4a6c86c452becca4f17c56a3e8cbfce9aeff419f6", "datetime": "2023-11-08T06:50:33+00:00" }, { "message_id": "7b20a4e5debcd37e2d7650628585e7c0ccdbe8c2b19020b95d3372ec1e81e369", "sticker": null, "text": "Sure thank you", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "b6bce6c0327749b94bddc25763a2438dd2cf803bc68e61f523589ed511180e7a", "datetime": "2023-11-08T07:16:42+00:00" }, { "message_id": "7468f55cba3f9c814e66e27f397cbf9a1c1c7d04a0bde5d13c70b3392eef98ad", "sticker": null, "text": "Please tell me the code for add record of registration form in java rcp eclipse", "from_id": "ed293154e6d666b6286e441814abc75b47ddc7cf850291932e45be6ae625d6f4", "reply_to": null, "datetime": "2023-11-08T11:30:24+00:00" }, { "message_id": "e1112d013ef8eef3b4c538a41b68b0ea75cf3f21557a65344334bbdf1757bd4c", "sticker": null, "text": "HI?", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-08T13:13:32+00:00" }, { "message_id": "41522fac96cab0e7369b724b3234660d10cf0059fea3fa6b851559ebb7b4cc7a", "sticker": null, "text": "can u describe what really u need", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "7468f55cba3f9c814e66e27f397cbf9a1c1c7d04a0bde5d13c70b3392eef98ad", "datetime": "2023-11-08T14:54:10+00:00" }, { "message_id": "cbdf6fa2e152ea780c78666817ac8cd2ff6cf68b6af613733268238d8f70df43", "sticker": null, "text": "I am creating a registration form of students and in that to save a data i need a save data code", "from_id": "ed293154e6d666b6286e441814abc75b47ddc7cf850291932e45be6ae625d6f4", "reply_to": null, "datetime": "2023-11-08T14:56:29+00:00" }, { "message_id": "ad90a54b7967fa5ecbf0fba14c5903d85ba3979935137a31b3e1da0854a13ae7", "sticker": null, "text": "create a controller with post method send the data in request body and in the backend get the data and save it with the help of jpa", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "cbdf6fa2e152ea780c78666817ac8cd2ff6cf68b6af613733268238d8f70df43", "datetime": "2023-11-08T15:02:11+00:00" }, { "message_id": "0b0cca4f6216278429dfb417f0d487560541f8c449d1598d568d4bc16736d9da", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "cbdf6fa2e152ea780c78666817ac8cd2ff6cf68b6af613733268238d8f70df43", "datetime": "2023-11-08T18:05:53+00:00" }, { "message_id": "2f2d94c63d089f7d1ba78298481ad985c67c82c3c5c32cc2e405ee031563bbac", "sticker": null, "text": "If you want Spring framework den just google for 'Spring MVC + JPA'", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "cbdf6fa2e152ea780c78666817ac8cd2ff6cf68b6af613733268238d8f70df43", "datetime": "2023-11-08T18:06:39+00:00" }, { "message_id": "51b1a470d935f5d0a006987173a6a7ffe5760a5a33526635e9a4aefdb9bb5503", "sticker": null, "text": null, "from_id": "57e0875925f51670f1a77d2fb2286f123572748e64f8986d204000ecfcb62289", "reply_to": null, "datetime": "2023-11-09T02:24:33+00:00" }, { "message_id": "1e6896f6e39ed2b95d5986e3d86709801469c49aa2cac1b355cf5d54b22b9175", "sticker": null, "text": "Want to buy some cards? we will refund is the card is dead : t.me/vipcarding2", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-09T02:31:31+00:00" }, { "message_id": "9c3571909af1bdec4945494fbd423a0a33a528361a668a37f61146449b331c46", "sticker": null, "text": "Can anyone say after learning core java, swing, jdbc , mysql, what we can do next?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-11-09T02:32:56+00:00" }, { "message_id": "308487b43bd4d2c26afc9c0a447e69573d63d13509850214f5bd7fb06c2b8177", "sticker": null, "text": "Collections? Or advance java (jakarta EE) ?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-11-09T02:33:38+00:00" }, { "message_id": "52f4f057da070051c34c46ff6800257aac669b32d62c9a038decc0b590effcca", "sticker": null, "text": "Kindly reply.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-11-09T02:33:52+00:00" }, { "message_id": "5f102fc5f1feeb92a072a752f9c2036ac6abbcc3e0d74e8292245613fe23e84b", "sticker": null, "text": "try advance sir", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-09T02:34:05+00:00" }, { "message_id": "82b668797471fdd4aa89d178c87ba2910e7b6f79f66b31fe74066300370f668e", "sticker": null, "text": "or try spring", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-09T02:34:51+00:00" }, { "message_id": "36951bd2ff957e1b6e5694ca35f75f0c34571c78635e6645810d13d9ea790e57", "sticker": null, "text": "Or quarkus, another Java framework", "from_id": "dcf6311e59364496f464f686cc4ee71d7cd41c3b5f9d078b0636af4990a4181b", "reply_to": "82b668797471fdd4aa89d178c87ba2910e7b6f79f66b31fe74066300370f668e", "datetime": "2023-11-09T03:02:43+00:00" }, { "message_id": "1d091600d5ab64001372689a293d8f13283390c1ff5f0400cda4fcbe9a7a7dde", "sticker": null, "text": "Yes", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-09T03:03:50+00:00" }, { "message_id": "bf6b86a689ae244a44da8a52f65740cab097ffbe908b632c02e968064563765c", "sticker": null, "text": "Thank you 😊", "from_id": "ed293154e6d666b6286e441814abc75b47ddc7cf850291932e45be6ae625d6f4", "reply_to": "0b0cca4f6216278429dfb417f0d487560541f8c449d1598d568d4bc16736d9da", "datetime": "2023-11-09T06:17:11+00:00" }, { "message_id": "a31ccb38383e9274d029e647cab1b33fcb1166a6ab902e584baa4e6c1961064e", "sticker": null, "text": "Most of the people here are working professionals or students or self learning people?", "from_id": "b5ccccbadf900ce250cfc3d7c5c10d3479e374ec4caf16ee867124f05ac3f6d8", "reply_to": null, "datetime": "2023-11-09T06:28:07+00:00" }, { "message_id": "19859759d70c2efea6e8b059b675891b538d7ffc760d97ac234dc7089d17a751", "sticker": null, "text": "professionals", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-09T06:56:40+00:00" }, { "message_id": "238e1a6065aae076077dd04633cf2d9c2056b3cd42f8d09057037db2385a329f", "sticker": null, "text": "My brains stck :( I was coding 8 hrs I code almost 18hrs a day :(", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-09T06:57:43+00:00" }, { "message_id": "760f7366927b54c218490e3e9e6610231e2479e923d9a88ccb25c07f5d7b3336", "sticker": null, "text": "my back hurts", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": null, "datetime": "2023-11-09T06:57:49+00:00" }, { "message_id": "70795146be794d5f0dd7d5aec9f9d7e3966681076f959cd826412374c7d75393", "sticker": null, "text": "All of them", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "a31ccb38383e9274d029e647cab1b33fcb1166a6ab902e584baa4e6c1961064e", "datetime": "2023-11-09T07:30:28+00:00" }, { "message_id": "596009237647bebbada5c08510057f04ddfd9197f505e78dfa2e5de61a169861", "sticker": null, "text": "Collections would be good to know because it is interview topic", "from_id": "637fbbd1a96e3df1a8dd2a311c792173114574cfc8cd42afe5a679742456e0b6", "reply_to": "308487b43bd4d2c26afc9c0a447e69573d63d13509850214f5bd7fb06c2b8177", "datetime": "2023-11-09T08:14:11+00:00" }, { "message_id": "efd1db310d5e6da9f3ddc52d065e735032fe7c45ded630e4351b5a211978146c", "sticker": null, "text": "Working Professionals?", "from_id": "b5ccccbadf900ce250cfc3d7c5c10d3479e374ec4caf16ee867124f05ac3f6d8", "reply_to": "70795146be794d5f0dd7d5aec9f9d7e3966681076f959cd826412374c7d75393", "datetime": "2023-11-09T10:12:00+00:00" }, { "message_id": "80b8caaf44e611be477c61f625b4b40fb10ea4fd506b809a7ec66218c5367501", "sticker": null, "text": "Idk", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "efd1db310d5e6da9f3ddc52d065e735032fe7c45ded630e4351b5a211978146c", "datetime": "2023-11-09T11:28:35+00:00" }, { "message_id": "62e94dd19c772009a9d2becc4ad004a39cb0a0c904e8a2dc1036e5be6073545a", "sticker": null, "text": "Techie Who knows kannada please ping me need support for my java project", "from_id": "0b287a8a545e6d224401a75744e072755bc35141388acb056917adce5aca2252", "reply_to": null, "datetime": "2023-11-09T13:08:45+00:00" }, { "message_id": "62f783642dba3e52be8cbc56c7d8628a25b50fbeb8d04e43ea6ffae4cda08ee3", "sticker": null, "text": "Definitely collections. No any sense to start learning frameworks without solid fundamental knowledge. And collections is one of such knowledge for sure, it's \"bread and butter\" of any java developer.\n\nNo any sense to jump to any advanced topics before you have solid basis. And by the way, usually people include collections to \"core java\". Here's my recommendation what to learn first before learning any frameworks or advanced stuff:\n - language basics (types, operators, functions, etc.)\n - control flow operators (loops, if/else, switch, etc.)\n - arrays\n - strings handling\n - collections basics\n - error handling\n - I/O (classic blocking IO only, in java.io)\n - OOP\n - generics\n - collections advanced (with generics and type hierarchy)\n - java-8 functional features, streams\n - concurrency basics\n - built-in networking basics\n - SOLID principles\n - GOF patterns\n - GRASP patterns\n(last 3 are a subject of a kind of a chicken-egg problem: you can't really comprehend them without experience, but at the same time completely ignoring them will tremendously slow down improving your coding skill; hence, I recommend to still learn all patterns carefully, but not worry too much if some nuances are unclear or you don't feel deep understanding of their practical applicability)\n\nNext before going for anything more advanced, you better pick specialization. No any sense to waste time on learning swing or android if you want to work on backend. And vice versa - no sense to learn web frameworks if you are interested in android development. Whatever you choose, next topics would be:\n - build system (pick one - either gradle or maven)\n - unit testing\n - json processing\n - xml processing \n - concurrency model of the framework you'll use, you need to learn all best practices and \"how to\" and \"how to NOT\" in context of concurrency:\n — for web development start with classics - blocking processing, servlets, \"thread per request\"\n — for UI - learn single-threaded model and how to run blocking code in that framework\n\nOnly after that (at least get familiar with basics), you should start learning frameworks and specialization specific techs. \n\nFor backend - jdbc, mysql or any other database (I recommend to learn one relational and one nosql, my personal recommendation - postgres and mongodb), and web framework. I don't recommend java-ee as spring/spring-boot is much more popular on the market. When you become experienced, you'll easily switch to any framework in a short period, but at the start of your career picking unpopular framework may significantly impact your available choices for the first job(s). \n\nFor UI - swing or whatever else is needed here. I'm not a specialist in this field, don't know what they use here. However, in general, career wise, I wouldn't recommend to go \"java UI\" route. At least, I wouldn't recommend to stop there. Better target at android+kotlin, or web frontend with any popular js framework, or even better - dart + flutter. Java UI better be just an intermediate step, otherwise you might be very limited in your career options.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "9c3571909af1bdec4945494fbd423a0a33a528361a668a37f61146449b331c46", "datetime": "2023-11-09T22:18:58+00:00" }, { "message_id": "4fc940c89e4b4a586c5e7fefa7f9b6a139ab9f927ef4eb1e021bc3ea192428ed", "sticker": null, "text": "1", "from_id": "ccd337e3e00b01c852418245a0b7b503e1e18025531d649507fbae0d1cf42cbc", "reply_to": null, "datetime": "2023-11-10T02:01:42+00:00" }, { "message_id": "7d36c17027ec0802d1af721cd565eb27e32d227827ecf96a66fbb5f569edb161", "sticker": null, "text": "I guess she wanted to store all the entries of logins into SQL DB", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "41522fac96cab0e7369b724b3234660d10cf0059fea3fa6b851559ebb7b4cc7a", "datetime": "2023-11-10T06:14:06+00:00" }, { "message_id": "dcfb8a36bf2dc196d10c91876bd8f077b35a654f60aa03acef2fce9258ff158d", "sticker": null, "text": "Does anyone know how to implement workload identity to connect to azure file storage?", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": null, "datetime": "2023-11-10T06:14:29+00:00" }, { "message_id": "65669407afc9db27ba8f7c43d8198713d1d77b9a136a71b85a850e32174a84e5", "sticker": null, "text": "Woah. Thanks alot for taking the time to share your valuable insights and recommendations.\nI truly appreciate your and everyone's generosity in sharing knowledge.", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": "62f783642dba3e52be8cbc56c7d8628a25b50fbeb8d04e43ea6ffae4cda08ee3", "datetime": "2023-11-10T12:19:55+00:00" }, { "message_id": "22ee196011d732be4ae9384d5f919a1d13d93c6a0a5b8d820d728c93ca2df620", "sticker": null, "text": "Help me to explain this code", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": null, "datetime": "2023-11-11T07:39:31+00:00" }, { "message_id": "773b3257d953a9a71b59e2719fb803dc61f3bb6f72d13fb89e56e12526b97847", "sticker": null, "text": "Whats the problem?", "from_id": "ff245b4a8499eabeaf28822adbb38bc1f01bfdfe6f79b25c56d03be95f4f270c", "reply_to": "26bf6af19c007335de51138afcc10d3940dc918d5f8d48e692089154e98d5ef3", "datetime": "2023-11-11T07:42:31+00:00" }, { "message_id": "acbcbda825a3be42d5f4f3f399cccb9488674f2395739bf3b50e263f2b04ebbc", "sticker": null, "text": "I need to explain this code in my teacher i need help how to explain this", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": "773b3257d953a9a71b59e2719fb803dc61f3bb6f72d13fb89e56e12526b97847", "datetime": "2023-11-11T08:58:11+00:00" }, { "message_id": "f97ae64c361824c968cacaee6f430918654356eb40a710a51e37a5fb3d73f660", "sticker": null, "text": "If I'm not mistaken it's like your supposed to make a simple calculator", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "d4b9eeec28256fc70383a916ef60d75c5cababb8c9b2a02d3cf8732bdb6a1c05", "datetime": "2023-11-11T12:30:13+00:00" }, { "message_id": "27819b7be4a0789937dd162c11a11e5a1ee7762fc74c0b75d70ddebfdea4b659", "sticker": null, "text": "I believe this is Python, not Java", "from_id": "5a7b3948a2f7d0b4d8dc6ab3950cdfce58a638e72fe4ce2dacf6120fc3083675", "reply_to": "26bf6af19c007335de51138afcc10d3940dc918d5f8d48e692089154e98d5ef3", "datetime": "2023-11-12T01:56:59+00:00" }, { "message_id": "6a78be62d1bb0624aaab29c9943a2e16bb40e63796b38e9e1074a2ead8f512ae", "sticker": null, "text": "Yes this is my project", "from_id": "9317af5206799f3f0dc2e9592558d500a8dd801fdbe5b0b1020a17846af6034e", "reply_to": "f97ae64c361824c968cacaee6f430918654356eb40a710a51e37a5fb3d73f660", "datetime": "2023-11-12T01:57:36+00:00" }, { "message_id": "4dc5a261b047db35a17b30bc26d062849719b71bb8cd8d8ca56b5ed5acb95703", "sticker": null, "text": "C# is better than java idc ehat anyone says", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": null, "datetime": "2023-11-12T21:08:51+00:00" }, { "message_id": "50e23b5f79bf27c20d79dceed728b831ef9b81bb445d5eb1d8470916e01a40b1", "sticker": null, "text": "My friend tha codes in c# said its cause of c# is more flexible", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "4dc5a261b047db35a17b30bc26d062849719b71bb8cd8d8ca56b5ed5acb95703", "datetime": "2023-11-12T21:32:36+00:00" }, { "message_id": "20e75a79d9590301ef800d5f4d64c4b00ad931a952fa4936b4cafb1efb839ab4", "sticker": null, "text": "And less boilerplate", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "50e23b5f79bf27c20d79dceed728b831ef9b81bb445d5eb1d8470916e01a40b1", "datetime": "2023-11-13T00:33:48+00:00" }, { "message_id": "6070c3a4402bb60d312aad5055ef7e8e6d659f1abaac871061030b14a430e6bd", "sticker": null, "text": "Real", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "4dc5a261b047db35a17b30bc26d062849719b71bb8cd8d8ca56b5ed5acb95703", "datetime": "2023-11-13T04:15:19+00:00" }, { "message_id": "6e951a19c821af23ffdb8bd618a4767e2574948d3b695937dc1065949328577c", "sticker": null, "text": "Fake", "from_id": "d46422ce31c73ac1c05828d197422c4868a4d5937ef18cae3564a18fa1425f42", "reply_to": null, "datetime": "2023-11-13T10:07:02+00:00" }, { "message_id": "d625d3d92e6532cf572c3c6e00486a1c33cd6f2fef3c1972b29322743ca557c5", "sticker": null, "text": "Do you guys code c#", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "6070c3a4402bb60d312aad5055ef7e8e6d659f1abaac871061030b14a430e6bd", "datetime": "2023-11-13T10:27:38+00:00" }, { "message_id": "32b1421f9c5bb59cea2c27538299a3b419023503f77e04106292afb97e422f1a", "sticker": null, "text": "Not yet", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "d625d3d92e6532cf572c3c6e00486a1c33cd6f2fef3c1972b29322743ca557c5", "datetime": "2023-11-13T10:32:40+00:00" }, { "message_id": "cf1856bb23282f5284972cad152d48dc53a36023233b18340c9be22a553b6e30", "sticker": null, "text": "Same here I think till I've gotten too used to java before then", "from_id": "0bffab39b64899cfe40ae9684ef5e89aacf0c0f28512587724125b979828127a", "reply_to": "32b1421f9c5bb59cea2c27538299a3b419023503f77e04106292afb97e422f1a", "datetime": "2023-11-13T10:34:20+00:00" }, { "message_id": "05c2c35fc5741563c4487eabc0d22fbb8f3678a70be4737f15805416597ca28f", "sticker": null, "text": "Goodluck learning", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "cf1856bb23282f5284972cad152d48dc53a36023233b18340c9be22a553b6e30", "datetime": "2023-11-13T10:34:39+00:00" }, { "message_id": "1878fb7365a625baf961e69c35d7b1d6b6eb7d842dc5dec71b8ff846e0d6116b", "sticker": null, "text": "Techie Who knows kannada please ping me need support for my java project", "from_id": "0b287a8a545e6d224401a75744e072755bc35141388acb056917adce5aca2252", "reply_to": null, "datetime": "2023-11-13T14:01:16+00:00" }, { "message_id": "ba39282492bcd8c203c6124d476ae1b018d9d395c28c991e71e1c124c71450a3", "sticker": null, "text": "Hi", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "1878fb7365a625baf961e69c35d7b1d6b6eb7d842dc5dec71b8ff846e0d6116b", "datetime": "2023-11-14T13:27:54+00:00" }, { "message_id": "ec089a8fd6505ec3c23bd5627e82d01408eeabfee1b33b2a593f122b4b11b3d5", "sticker": null, "text": "What support you need?", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": null, "datetime": "2023-11-14T13:28:19+00:00" }, { "message_id": "a37fcedb4cc3ddd3281841e644ead9eefdee087f711430f1ef497ceb437c5085", "sticker": null, "text": "hello", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2023-11-14T13:32:35+00:00" }, { "message_id": "fb7908039abd0e0ca5d5892ff07196bb17c3697ea97f3993909345a40f1e3373", "sticker": null, "text": "I want to filter out the first line when Flink reads a specific topic from Kafka, who can help me with ideas", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2023-11-14T13:37:18+00:00" }, { "message_id": "032f1cea3364e37d2bbf7f8ddbc4c0915ec26fe384591af2747c98c9eb5adde0", "sticker": null, "text": "By the way, has anyone used a copy in clickhouse to recover data", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2023-11-14T13:39:02+00:00" }, { "message_id": "ebf912f8c518c2e579a2346eed006bfce5914a7908a41c965a52fe735180a139", "sticker": null, "text": "I want to gain practical experience, is there any free internships without paid I can do Without pay \n\nPlease do suggest", "from_id": "e807869d2215bcb7d29efb09a4b2a32fe426710ef8c49d003d9133aa09f64f81", "reply_to": null, "datetime": "2023-11-15T06:05:39+00:00" }, { "message_id": "38accad3c5c79e00a9a5ee0baa58041e8beb847fd789429e5a2faff5c5933921", "sticker": null, "text": "Hi. I m looking for a good programmer to participate in an interesting project. If there are any here, write to me.", "from_id": "3dbf49e04252f56ed76e321f80b3b0599791b5103e0341e2e33c942d45b2e7a2", "reply_to": null, "datetime": "2023-11-15T23:28:23+00:00" }, { "message_id": "9ca011342ef1ddf2285a1e90328a47f1a4dd415ce1c3b1ba5a6d00ea0c0ae2f7", "sticker": null, "text": "Hi. I m looking for a good programmer to participate in an interesting project. If there are any here, write to me.", "from_id": "3dbf49e04252f56ed76e321f80b3b0599791b5103e0341e2e33c942d45b2e7a2", "reply_to": null, "datetime": "2023-11-15T23:36:29+00:00" }, { "message_id": "eeacda4472a0df30e2c4937d5758e68cbe69fe89d6bbc07e4d0a8ab3da2bf630", "sticker": null, "text": "hi everyone! I've been encountering a problem for 2 weeks which is related to thymeleaf in Spring Boot. can anyone send me a message if he/she has a strong knowledge of them? Plz. I can share a list of problems' screenshots if you send me a message in private", "from_id": "15877ea9ad6bd5cf972883058d98eaaedaf9a66c2470d13d0e7288de078bcc7c", "reply_to": null, "datetime": "2023-11-16T06:58:49+00:00" }, { "message_id": "c5cfabc6173e614c916c9ad95d480d827bba7e720c2932aa6e1e5c53394f6448", "sticker": null, "text": "Is anyone doing project?", "from_id": "073bedbd44dd90d0388241f999acfc8dc0c26ba97383f314b9b4afd987398a11", "reply_to": null, "datetime": "2023-11-16T09:59:35+00:00" }, { "message_id": "4ca3beeddf096c8c02e0fbb95d43ed0331cc773eccbd5f041b7a0c60f38f74a2", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "c5cfabc6173e614c916c9ad95d480d827bba7e720c2932aa6e1e5c53394f6448", "datetime": "2023-11-16T14:11:18+00:00" }, { "message_id": "0bea09f4a656aa44476fd7d50c806de12604f79ff49e5a74db530be336f78a61", "sticker": null, "text": "What is the project?", "from_id": "5a7b3948a2f7d0b4d8dc6ab3950cdfce58a638e72fe4ce2dacf6120fc3083675", "reply_to": "9ca011342ef1ddf2285a1e90328a47f1a4dd415ce1c3b1ba5a6d00ea0c0ae2f7", "datetime": "2023-11-16T17:55:23+00:00" }, { "message_id": "cf64e356d51baff74a4da0686528aacb18ff1de8a374da12ac4eb12721e20963", "sticker": null, "text": "Front-end or backend?", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "9ca011342ef1ddf2285a1e90328a47f1a4dd415ce1c3b1ba5a6d00ea0c0ae2f7", "datetime": "2023-11-16T18:06:39+00:00" }, { "message_id": "978bfb415a84a700a052c3b6280aeb7a09c699c22992140b43dc1136e9591776", "sticker": null, "text": "Ping me on my inbox", "from_id": "a05fd06ab023d6c4458bab66b9ce7eac9a4a4f4fed2bf61277ff5fc6124b0fff", "reply_to": "9ca011342ef1ddf2285a1e90328a47f1a4dd415ce1c3b1ba5a6d00ea0c0ae2f7", "datetime": "2023-11-16T18:07:26+00:00" }, { "message_id": "8068b6772e214165ad1a4e31630d44b5685a12b1fcf0ed0bb119b7d6a46b2aea", "sticker": null, "text": "hi, anybody here want to help me with this problem 🙂", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T03:06:30+00:00" }, { "message_id": "fc3e8d58e3c2ac0a68240e64b17901aeebc2819dd44230d4e7e2856b404d9152", "sticker": null, "text": "Exercises 3\n\nWrite a Java program to find all combinations of four elements of an array whose sum is equal to a given value. The length, element of array and given number is by user input an array.\n\nThe output should be like this : \ninput the number of element you want in an array :\n6\nEnter all the elements :\ninput number element of index 0 : 1\ninput number element of index 1 : 2 \ninput number element of index 2 : 3 \ninput number element of index 3 : 4 \ninput number element of index 4 : 5 \ninput number element of index 5 : 6\ninput the value : 12\ncombinations of four elements that sum to 12 is\n1236\n1245\n1560\n2460\n3450", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T03:12:23+00:00" }, { "message_id": "948103301b8dacdae53f6c611de57443fa43a4fb973c1faac325552273734492", "sticker": null, "text": "please help me 🙂", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T03:12:53+00:00" }, { "message_id": "aa2a63f981912262c6d3d847249e387c7f6b7b5f0190bbe83fc99c194342caea", "sticker": null, "text": "i have tried, but still cant work", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T03:15:22+00:00" }, { "message_id": "86fdf151637cd8d2cb6b5b611821065e5cc3aa1450472d177ec71a447696a22e", "sticker": null, "text": "package com.ExersiceClass;\nimport java.util.Scanner;\n\npublic class test {\n public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n System.out.print(\"How many numbers do you want to input: \");\n int num = input.nextInt();\n\n while (num < 4) {\n System.out.println(\"You have to input at least 4 numbers! Input again: \");\n num = input.nextInt();\n }\n\n int[] array = new int[num];\n int i = 0;\n\n while (i < num) {\n System.out.print(\"Input the element at index \" + i + \": \");\n array[i] = input.nextInt();\n i++;\n }\n\n System.out.print(\"Input the value (v): \");\n int v = input.nextInt();\n \n int sum = 0;\n i = 0;\n\n while (i < num) {\n sum += array[i];\n i++;\n }\n \n if (v > sum) {\n System.out.print(\"The value are out of total sum of the array.\");\n }\n \n int a = 0;\n while (a < num) {\n int b = a + 1;\n while (b < num) {\n int left = b + 1;\n int right = left + 1;\n\n while (left < right) {\n int preliminarySum = array[a] + array[b] + array[left] + array[right];\n\n if (preliminarySum == v) {\n System.out.println(array[a] + \" \" + array[b] + \" \" + array[left] + \" \" + array[right]);\n left++;\n right--;\n } else if (preliminarySum < v) {\n left++;\n } else {\n right--;\n }\n }\n b++;\n }\n a++;\n }\n }\n}", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T03:15:25+00:00" }, { "message_id": "608266aaf08a28577fd2d6cc2876b713abbf15ce8af1ede4ed8a4138a8094bdb", "sticker": null, "text": "help me please, for all who have a kind heart 🙏", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T05:41:24+00:00" }, { "message_id": "cffd2514ee367ae9c24afe48817d4a67c97e0920422751d09176c084c4bb00a8", "sticker": null, "text": "Give me a moment", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "608266aaf08a28577fd2d6cc2876b713abbf15ce8af1ede4ed8a4138a8094bdb", "datetime": "2023-11-17T06:11:08+00:00" }, { "message_id": "9d39b35ba93fa2344e2b9e4a81b5ba3949f29c6741bb20c58c812c452d235eb9", "sticker": null, "text": "Something like this?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-11-17T06:23:34+00:00" }, { "message_id": "707677f9757aa1ea84a6df649366547245b0ebed03c9d24dc6fea49293b427ff", "sticker": null, "text": "Ah wait sorry", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-11-17T06:28:22+00:00" }, { "message_id": "43e14468574d944d8e3cf4251bc36b187e1954733a97e4667a07cb3787d9b63c", "sticker": null, "text": "package com.ExerciseClass;\nimport java.util.Scanner;\n\npublic class test {\n public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n\n // Input the number of elements in the array\n System.out.print(\"Input the number of elements you want in an array: \");\n int num = input.nextInt();\n\n // Input the elements of the array\n int[] array = new int[num];\n for (int i = 0; i < num; i++) {\n System.out.print(\"Input the element at index \" + i + \": \");\n array[i] = input.nextInt();\n }\n\n // Input the target value\n System.out.print(\"Input the target value: \");\n int target = input.nextInt();\n\n // Find combinations of four elements that sum to the target value\n System.out.println(\"Combinations of four elements that sum to \" + target + \" are:\");\n findCombinations(array, target);\n }\n\n private static void findCombinations(int[] array, int target) {\n int num = array.length;\n \n if (num < 4) {\n System.out.println(\"Array should have at least 4 elements to find combinations.\");\n return;\n }\n \n for (int a = 0; a < num - 3; a++) {\n for (int b = a + 1; b < num - 2; b++) {\n for (int left = b + 1; left < num - 1; left++) {\n for (int right = left + 1; right < num; right++) {\n int sum = array[a] + array[b] + array[left] + array[right];\n \n if (sum == target) {\n System.out.println(array[a] + \" \" + array[b] + \" \" + array[left] + \" \" + array[right]);\n }\n }\n }\n }\n }\n }\n}", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "86fdf151637cd8d2cb6b5b611821065e5cc3aa1450472d177ec71a447696a22e", "datetime": "2023-11-17T06:31:43+00:00" }, { "message_id": "3774a5cadbe8071e63f41c2ff86f97fb71271812a754f7c176045fc89db76efa", "sticker": null, "text": "omagaaa thankyouuu somuchhh", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T13:02:23+00:00" }, { "message_id": "9ced025388f4296c3dd713b122ebd2525ac437758905eb86cd117b6a3e544046", "sticker": null, "text": "but, how could i make the possible 3 number can also be an output as long as the sum of them is equal to the given value? i mean, its okay even though the number is only 3, as long as the sum is equal, we can put zero (0) in the back so it can becomes 4 number. how could i ya?", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": null, "datetime": "2023-11-17T13:05:52+00:00" }, { "message_id": "966b85e9574f89edee3588010e86fba85eadf168606ec47ef78dd6c1c0af997b", "sticker": null, "text": "great, thankyou. you're very helpful", "from_id": "7974a3b266fe5af745fc110507bd1c572925a21473b03770c74a444dc5ef63b3", "reply_to": "43e14468574d944d8e3cf4251bc36b187e1954733a97e4667a07cb3787d9b63c", "datetime": "2023-11-17T13:06:51+00:00" }, { "message_id": "fc3a16424ed8c481bbab57d8b8029c807fa491a82edbf873f44d61cb159b05df", "sticker": null, "text": "No problem", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "966b85e9574f89edee3588010e86fba85eadf168606ec47ef78dd6c1c0af997b", "datetime": "2023-11-17T13:07:42+00:00" }, { "message_id": "f79c10d27efa8a355529bdec6b70993e04b2bb96e3b3bd09a1d2079df5127b21", "sticker": null, "text": "Hey guys, anyone here who knows Kunal Khushwaha?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-11-17T13:11:04+00:00" }, { "message_id": "7dc98987c96fb3f84c17e89a041bb488c8c4fe4ce4ef1d735d693aa2be621f0f", "sticker": null, "text": "Int i = 5;\nWhile ( i > 0) {\n System.out.printLn(I);\n I= I++", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-11-18T13:53:42+00:00" }, { "message_id": "e88253268ba3e68acc871f6bd4f009415ba4470bf2fb019f0d3ee1b28e9cc0a9", "sticker": null, "text": "Why is it giving me infinite loop", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-11-18T13:53:53+00:00" }, { "message_id": "0aaa64296df39fe6b7cc5102b7fe5ebf3faae023c9cb20b90e94b77cc18f696c", "sticker": null, "text": "It will loop as long as the value of i is more than 0", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "7dc98987c96fb3f84c17e89a041bb488c8c4fe4ce4ef1d735d693aa2be621f0f", "datetime": "2023-11-18T13:54:42+00:00" }, { "message_id": "2c5cd179561bc7f07dc2c1c34ed6567e458f2012a199c3e14fbbba64db74d928", "sticker": null, "text": "Meaning the condition will always be true", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "0aaa64296df39fe6b7cc5102b7fe5ebf3faae023c9cb20b90e94b77cc18f696c", "datetime": "2023-11-18T13:55:05+00:00" }, { "message_id": "fb4871e9c39acc969c2a5ad0c29fa0d5a2b1dac553b8d16d48faa4d23fcdc994", "sticker": null, "text": "What's the solution", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": "0aaa64296df39fe6b7cc5102b7fe5ebf3faae023c9cb20b90e94b77cc18f696c", "datetime": "2023-11-18T13:55:22+00:00" }, { "message_id": "ac206f8701e55da9de196ae442404ebdd845664b40cf761914fa6c543e60c1b7", "sticker": null, "text": "To fix it you could do \n\nint i = 0;\nwhile(i <= 5){\n System.out.println(i);\n i++;\n}", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "fb4871e9c39acc969c2a5ad0c29fa0d5a2b1dac553b8d16d48faa4d23fcdc994", "datetime": "2023-11-18T13:56:17+00:00" }, { "message_id": "cc484921eb7a79a471cd48c3b2b63f39d9267344790b465fbe85178bc10798ca", "sticker": null, "text": "You want to display number 0 until 5 right?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "fb4871e9c39acc969c2a5ad0c29fa0d5a2b1dac553b8d16d48faa4d23fcdc994", "datetime": "2023-11-18T13:56:28+00:00" }, { "message_id": "60ef7787139fbee96acc22e8a7281c9848189c4bde97955cb392b363a789b0e8", "sticker": null, "text": "Yes", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": "cc484921eb7a79a471cd48c3b2b63f39d9267344790b465fbe85178bc10798ca", "datetime": "2023-11-18T13:56:37+00:00" }, { "message_id": "21ff333400c37447873dd64d3510641b897f4d9d559a11a85aba06db596fe703", "sticker": null, "text": "Here #USER_ID", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "ac206f8701e55da9de196ae442404ebdd845664b40cf761914fa6c543e60c1b7", "datetime": "2023-11-18T13:56:53+00:00" }, { "message_id": "b62d3edffd0547a6eaca0e2525628ad9daa7e99b77ab9a3e81f811ccc8017fad", "sticker": null, "text": "Thanks man", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": "21ff333400c37447873dd64d3510641b897f4d9d559a11a85aba06db596fe703", "datetime": "2023-11-18T13:57:03+00:00" }, { "message_id": "dbc4ed0f7674d7d87f3b98d5b4e46900642057b40add54b88de18a82a9c2b36d", "sticker": null, "text": "No problem", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-11-18T13:57:06+00:00" }, { "message_id": "bf1ea4eeb9dadde2cfdfda9789bde038c56796bf9de494948b11e613d076b184", "sticker": null, "text": "I'm just 2 weeks into the language", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-11-18T13:57:34+00:00" }, { "message_id": "1b2958d6539f58abd80ba7e12cbcf80076e17f2c5c9352216c2ba2cabb8e2096", "sticker": null, "text": "Don't worry we all start somewhere", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "bf1ea4eeb9dadde2cfdfda9789bde038c56796bf9de494948b11e613d076b184", "datetime": "2023-11-18T13:57:58+00:00" }, { "message_id": "a11da5e4aca35d62140bfb233974fc473914db5409a25c3940d7bd88a0a97cff", "sticker": null, "text": "I'm using intellij", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-11-18T13:58:35+00:00" }, { "message_id": "828a6a19af60095e4091906ac75fb7896d4c5a288f321353fb46a57f3e51fcf0", "sticker": null, "text": "I'm using that too", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "a11da5e4aca35d62140bfb233974fc473914db5409a25c3940d7bd88a0a97cff", "datetime": "2023-11-18T13:58:54+00:00" }, { "message_id": "09a3c874bc9c15183ae6b24e79205b00942c1857daec13d637efce2814f19620", "sticker": null, "text": "Most IDE i use are from JetBrains", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-11-18T13:59:25+00:00" }, { "message_id": "1a42ba08b4430c6fed8ce1a5bf46ec275c72ed0a4d6eef4903e0dcb35eaf3426", "sticker": null, "text": "Do you know how I could set up junit 5...", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-11-18T13:59:46+00:00" }, { "message_id": "3a67e35f0068c283608b2cd70f1441826ab06081d92b952100f0c03cf274fa3e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "1a42ba08b4430c6fed8ce1a5bf46ec275c72ed0a4d6eef4903e0dcb35eaf3426", "datetime": "2023-11-18T14:01:11+00:00" }, { "message_id": "158f945b1b186213c865cdde94373b2d719b3e001472ee9cbf5bf59fa0a93bc9", "sticker": null, "text": "Didn't still grab that 😁\nI'm sorry I'm too dull", "from_id": "6ca6690eeb036aa23baa828aaeb30cc8be899c2ba37f4a6f1cf912f47f1af590", "reply_to": null, "datetime": "2023-11-18T14:02:21+00:00" }, { "message_id": "27bb831d0101e03744ec8aa625926abf2beaf45f78e3e7040ed368b1095ebf30", "sticker": null, "text": "Don't worry just follow the steps provided in the documentation", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "158f945b1b186213c865cdde94373b2d719b3e001472ee9cbf5bf59fa0a93bc9", "datetime": "2023-11-18T14:04:50+00:00" }, { "message_id": "676131794d5a52bd9f41a844b095b7a9d60f04e191e1868a737b8703100bf3ac", "sticker": null, "text": "Hello everyone, does anyone know any MySQL group?", "from_id": "ca18c3b6bda40682f1ab7050ff76de5c6e38e37e5cfc5794e420da28516ec6ec", "reply_to": null, "datetime": "2023-11-18T17:51:20+00:00" }, { "message_id": "df90cc77a1f39af31f9aee97488c27b5d6ee16cee02bd4bf5996b281d50f263d", "sticker": null, "text": "who know how to add session timeout if my user do nothing 10 sec he should login again with sessions", "from_id": "6ec8498438c148e18a81da1b3a94f99721560448ab8ac2ea7400e5da1a50814e", "reply_to": null, "datetime": "2023-11-18T18:36:17+00:00" }, { "message_id": "e965cc6856990eb52cd1b0642f8e4964fcca20cdf4e23d04d7a7677a9e0c9714", "sticker": null, "text": "hi", "from_id": "e6435046d024fc7eb271057116fa314461766ca5899a972dae36277ba70d62f6", "reply_to": null, "datetime": "2023-11-19T00:41:57+00:00" }, { "message_id": "323454685683907ce781f3416464d0294870632cb8fea9be4c59b6953d8ac029", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "df90cc77a1f39af31f9aee97488c27b5d6ee16cee02bd4bf5996b281d50f263d", "datetime": "2023-11-19T05:22:25+00:00" }, { "message_id": "e43cd9ab140c676f65a2bcd15a29778756b14f31e57efccb7550e2d171be3be2", "sticker": null, "text": "class Solution {\n public List> generate(int numRows) {\n List> list = new ArrayList<>();\n List subList;\n for(int i=0; i < numRows; i++){\n subList = new ArrayList<>();\n for(int j=0; j <= i; j++){\n subList.add(comb(i,j));\n }\n list.add(subList);\n }\n return list;\n }\n public int comb(int n, int r) {\n return fact(n) / (fact(n - r) * fact(r));\n }\n public int fact(int n){\n if(n==0 || n==1)\n return 1;\n int factorial = 1;\n for(int i=1; i<=n; i++)\n factorial = factorial*i;\n return factorial;\n }\n}\n\nIt's giving wrong answers after numRows>=14\n\nleetcode 118: pascal's triangle. Note: I try brute force, I am not so familiar with dynamic programming", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2023-11-19T12:11:51+00:00" }, { "message_id": "f6f99402650c99f233b48f2e28110aea186f810cc1a6b8fc87883fead88c9530", "sticker": null, "text": "Hey guys! I'm keen to find out more about Java chats on telegram. I'd be happy to join in", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": null, "datetime": "2023-11-19T15:05:10+00:00" }, { "message_id": "93fb5ac32b94bdc9d7207cc4a3afd73f1c949c1f670498cf7b2f4491142408ff", "sticker": null, "text": "++", "from_id": "aff94566d33e3d3661cf32ecc0eba1801905d632dcbe989ef8bee520b9c80f99", "reply_to": "f6f99402650c99f233b48f2e28110aea186f810cc1a6b8fc87883fead88c9530", "datetime": "2023-11-19T15:12:20+00:00" }, { "message_id": "954521b47a3a13404e8b33ffc3fb2fe25ea5785f54f7e9071caf374752c98d2f", "sticker": null, "text": "Are you from Russia?", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "93fb5ac32b94bdc9d7207cc4a3afd73f1c949c1f670498cf7b2f4491142408ff", "datetime": "2023-11-19T15:13:44+00:00" }, { "message_id": "46002461a28934e291b2f2a707904830673ca92a3d1336f18f3a5099ab0ecf7e", "sticker": null, "text": "nope\nUzbekistan", "from_id": "aff94566d33e3d3661cf32ecc0eba1801905d632dcbe989ef8bee520b9c80f99", "reply_to": "954521b47a3a13404e8b33ffc3fb2fe25ea5785f54f7e9071caf374752c98d2f", "datetime": "2023-11-19T15:22:05+00:00" }, { "message_id": "e78805cb36c6a62d327874d84c33e4185039c1ca07fce8af1e9d6d24c6d6dd92", "sticker": null, "text": "But many of you live in Russia. Why?", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "46002461a28934e291b2f2a707904830673ca92a3d1336f18f3a5099ab0ecf7e", "datetime": "2023-11-19T15:22:48+00:00" }, { "message_id": "1ae6ddbc9e22b7756337c421c3d7469a8cc354a470ff7eaaf99f620f40034496", "sticker": null, "text": "Maybe they just work and travel", "from_id": "aff94566d33e3d3661cf32ecc0eba1801905d632dcbe989ef8bee520b9c80f99", "reply_to": null, "datetime": "2023-11-19T15:26:43+00:00" }, { "message_id": "8475527d9b7622dd6472e3b8264be7bb69e6aca38fb88ad24becfa044ff55f2f", "sticker": null, "text": "Pf... One third of your countrie's population live permanently in Russia", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "1ae6ddbc9e22b7756337c421c3d7469a8cc354a470ff7eaaf99f620f40034496", "datetime": "2023-11-19T15:28:18+00:00" }, { "message_id": "9a7788dfa58ff5912f9a2969603255a915e136324295ca33146b989398421fb6", "sticker": null, "text": "Where are u from", "from_id": "aff94566d33e3d3661cf32ecc0eba1801905d632dcbe989ef8bee520b9c80f99", "reply_to": "8475527d9b7622dd6472e3b8264be7bb69e6aca38fb88ad24becfa044ff55f2f", "datetime": "2023-11-19T15:28:52+00:00" }, { "message_id": "c2df682f3b08bc283892e3ce246c1bedc1d2a02d68e3f3b77cc316b1022d3f5f", "sticker": null, "text": "I'm from Tajikistan", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "9a7788dfa58ff5912f9a2969603255a915e136324295ca33146b989398421fb6", "datetime": "2023-11-19T15:30:35+00:00" }, { "message_id": "57751bf5001461bec75be61f8106be60306ed9c77a51db9299175ec25bf2da67", "sticker": null, "text": "I am Tajik", "from_id": "aff94566d33e3d3661cf32ecc0eba1801905d632dcbe989ef8bee520b9c80f99", "reply_to": "c2df682f3b08bc283892e3ce246c1bedc1d2a02d68e3f3b77cc316b1022d3f5f", "datetime": "2023-11-19T15:30:56+00:00" }, { "message_id": "1e5def6a771654c434456106476ba0ab7c83c5fa30fe2f08130ed2831f853275", "sticker": null, "text": "Will we be friends?", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "57751bf5001461bec75be61f8106be60306ed9c77a51db9299175ec25bf2da67", "datetime": "2023-11-19T15:32:30+00:00" }, { "message_id": "9c3b19c6b258071eb94b7682c6568dbd90ecb1744d3774c58671ec3a66c29577", "sticker": null, "text": "Try to change the notification channel Settings showBadge to false in system process, I didn't got the exception and desired effect too", "from_id": "9c6185d96240184a5e0796ab74cb039cfdf8cd4f81a84b7ce671dcf2c94f61a4", "reply_to": null, "datetime": "2023-11-20T05:19:56+00:00" }, { "message_id": "2a7dbdefad053b582b41ca30e49fa48e4c41df0a0be333127207f650812e843d", "sticker": null, "text": "😔", "from_id": "9c6185d96240184a5e0796ab74cb039cfdf8cd4f81a84b7ce671dcf2c94f61a4", "reply_to": null, "datetime": "2023-11-20T05:20:03+00:00" }, { "message_id": "1f63516cfc223475a2d0d0a682375807f9b0185e7950d1a07714b090ccc41b4c", "sticker": null, "text": "if (args.length == 4){\n String flag = args[0];\n String packageName = args[1];\n String notificationChannelId = args[2];\n boolean z = Boolean.parseBoolean(args[3]);\n if (flag.equals(\"--showBadge\")){\n\n for (NotificationChannel channel : notificationManager.getNotificationChannelsForPackage(packageName,\n false)){\n if (channel.getId().equals(notificationChannelId)){\n channel.setShowBadge(z);\n notificationManager.createNotificationChannels(packageName, Arrays.asList(channel));\n }\n }\n }\n }", "from_id": "9c6185d96240184a5e0796ab74cb039cfdf8cd4f81a84b7ce671dcf2c94f61a4", "reply_to": null, "datetime": "2023-11-20T05:22:12+00:00" }, { "message_id": "b96eecc14726dd4cb3e075443bfad2842daab17f415f5e59ac8e33e2a22273cf", "sticker": null, "text": "Hey everyone I have a project file for event management I don’t know how to load it and open it.. can anyone help me out", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": null, "datetime": "2023-11-20T18:31:54+00:00" }, { "message_id": "feba6117e3b6d1b234c7e9e38df40105b6fa28a20213d44a9ad05a87f4064f05", "sticker": null, "text": "It’s on spring boot", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "b96eecc14726dd4cb3e075443bfad2842daab17f415f5e59ac8e33e2a22273cf", "datetime": "2023-11-20T18:32:10+00:00" }, { "message_id": "deeb4550c19c2cddc7730a3aaefba2dad244f14798608242c2c266d857352e05", "sticker": null, "text": "Import it in your ide", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "b96eecc14726dd4cb3e075443bfad2842daab17f415f5e59ac8e33e2a22273cf", "datetime": "2023-11-21T03:47:57+00:00" }, { "message_id": "f62457dcf389563d56462644b8ce458a0c9ec40b68888828855958184c21d977", "sticker": null, "text": "someone help me pls", "from_id": "196b53eb67c1e9cd0a34a17a4d8cb3043140cfa94e86f95bb718a588c37f00e4", "reply_to": null, "datetime": "2023-11-21T10:36:30+00:00" }, { "message_id": "b66ab3d6bef8a09e533f832ae9b3c61a5e3ddc3a68397c51b6b16220ffb9d8dd", "sticker": null, "text": "in my code", "from_id": "196b53eb67c1e9cd0a34a17a4d8cb3043140cfa94e86f95bb718a588c37f00e4", "reply_to": null, "datetime": "2023-11-21T10:37:01+00:00" }, { "message_id": "52c3cdcded46ffe8f198b5f804c62efed1dd40dafb9201db0443d2d64bb7c38f", "sticker": null, "text": "Yes", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "e6cdd5d91a6db0a4b0578999ad79169e6ac4e61a06d215efdbdabf57d6d8a98d", "datetime": "2023-11-21T16:26:56+00:00" }, { "message_id": "2ad99743c08298a58d592d5072cbcb4701c5b1b2d1f9e87982d28b158ab31840", "sticker": null, "text": "I guess almost everyone from Indiana", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "e6cdd5d91a6db0a4b0578999ad79169e6ac4e61a06d215efdbdabf57d6d8a98d", "datetime": "2023-11-21T18:00:13+00:00" }, { "message_id": "26f73d46a90c1a4ea3c49ab96321dcfe9d4a7c8d26a06bcfbed37277e28c7fbf", "sticker": null, "text": "everyone lol", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "e6cdd5d91a6db0a4b0578999ad79169e6ac4e61a06d215efdbdabf57d6d8a98d", "datetime": "2023-11-22T05:48:44+00:00" }, { "message_id": "57b1ecfeb0eb0948f1f6676b2cdf8bd8b0c1e56d447c6a5105f9a6468b040254", "sticker": null, "text": "Crazy bio 🤧", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "e6cdd5d91a6db0a4b0578999ad79169e6ac4e61a06d215efdbdabf57d6d8a98d", "datetime": "2023-11-22T06:00:03+00:00" }, { "message_id": "ccbc4cd4cd6ef25f4e0fcb9ade7837c79779caf8a3ec3882a502a904e304304d", "sticker": null, "text": "She can do whatever she wants. Maybe that way she pays her tuition. Never charge a book by its bio", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "57b1ecfeb0eb0948f1f6676b2cdf8bd8b0c1e56d447c6a5105f9a6468b040254", "datetime": "2023-11-22T06:10:40+00:00" }, { "message_id": "c8b7fed072b08e5110acda946c17956a00c7e7b1ff9fc50b20b0cef30dc0e810", "sticker": null, "text": "Who’s judging ?", "from_id": "ea3d4af5ef5e0487928eab4b7ba54474afbfc02541dfb671a41cd24bd956580f", "reply_to": "ccbc4cd4cd6ef25f4e0fcb9ade7837c79779caf8a3ec3882a502a904e304304d", "datetime": "2023-11-22T06:11:56+00:00" }, { "message_id": "2dc6ffdefe6184d44fe8349949a81dce0c5a35b52e2398e62eb1bc9bbc4ca7fd", "sticker": null, "text": "DM me and I show you who", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "c8b7fed072b08e5110acda946c17956a00c7e7b1ff9fc50b20b0cef30dc0e810", "datetime": "2023-11-22T06:12:10+00:00" }, { "message_id": "0e6215458ef0e03d4d0d48eb60303fa653113098e3701596265561a8705d3174", "sticker": null, "text": "what's the issue", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "f62457dcf389563d56462644b8ce458a0c9ec40b68888828855958184c21d977", "datetime": "2023-11-22T06:27:18+00:00" }, { "message_id": "eed4f817214e12051f4ee07c8fb3b13b50165eef748921771544e6e565944c46", "sticker": null, "text": "Yes I am from India", "from_id": "b576d19ae9286fe7545f93c104973997f197b94f8139ebc1c718c16a8feb0723", "reply_to": "e6cdd5d91a6db0a4b0578999ad79169e6ac4e61a06d215efdbdabf57d6d8a98d", "datetime": "2023-11-22T07:26:25+00:00" }, { "message_id": "83fece904e530763efc32170e2038f3d783a9b01ad7168136b29aa47da2f6294", "sticker": null, "text": "Yes bro🤜", "from_id": "b576d19ae9286fe7545f93c104973997f197b94f8139ebc1c718c16a8feb0723", "reply_to": "2ad99743c08298a58d592d5072cbcb4701c5b1b2d1f9e87982d28b158ab31840", "datetime": "2023-11-22T07:27:07+00:00" }, { "message_id": "b3214683ed1ba8d67b2337223889cf527ae4a5692099c056b8d858942e406b80", "sticker": null, "text": "That's good or not?", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "83fece904e530763efc32170e2038f3d783a9b01ad7168136b29aa47da2f6294", "datetime": "2023-11-22T07:33:16+00:00" }, { "message_id": "d8745a85880576b91ddf3b14838b0a27415757fb4689dfaa08d3224829c5df94", "sticker": null, "text": "Good day all", "from_id": "05abdc34aed77ae8c0ddcbfd8bac475d8764175fac083ad89679b9ba1c9d3bfe", "reply_to": null, "datetime": "2023-11-22T07:42:29+00:00" }, { "message_id": "912d4846f5b55998518fcbfbde2efc1a39cc25b1109eadf9de6a964d97b84f3c", "sticker": null, "text": "6", "from_id": "05abdc34aed77ae8c0ddcbfd8bac475d8764175fac083ad89679b9ba1c9d3bfe", "reply_to": null, "datetime": "2023-11-22T07:43:11+00:00" }, { "message_id": "c447a9798eee4b896919342422566439593383c713455b1f9d36ba29dfc9975e", "sticker": null, "text": "?", "from_id": "c53a274a863b4ac86a941c8ece1e72878edba0ea68212aff795ba362cb5d9787", "reply_to": null, "datetime": "2023-11-22T15:07:07+00:00" }, { "message_id": "36301275cb0d87309634388c34d03db2e9622c0ff57a935f9ad445c08d61a647", "sticker": null, "text": "Hello everyone", "from_id": "722093ba2ed7b1498ee71a2be060b5e11596e8bbec02145b77b726e3d14e385e", "reply_to": null, "datetime": "2023-11-23T12:01:40+00:00" }, { "message_id": "790cca73d8cbfca985301b071920c81de7ff719b5c300c8073b1104d7bddec48", "sticker": null, "text": "Any help?", "from_id": "722093ba2ed7b1498ee71a2be060b5e11596e8bbec02145b77b726e3d14e385e", "reply_to": null, "datetime": "2023-11-23T12:05:27+00:00" }, { "message_id": "b24fc983a8d513586aff820b0e579a24bbfca34bb5125020a9b1171fc33638d6", "sticker": null, "text": "Wassup", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "36301275cb0d87309634388c34d03db2e9622c0ff57a935f9ad445c08d61a647", "datetime": "2023-11-23T12:58:09+00:00" }, { "message_id": "1df9c9e9f91177cec41176ca08df39061f95033c5ac142a65c3665c9c3120c23", "sticker": null, "text": "good dog", "from_id": "c53a274a863b4ac86a941c8ece1e72878edba0ea68212aff795ba362cb5d9787", "reply_to": null, "datetime": "2023-11-24T02:39:58+00:00" }, { "message_id": "0b3dd5f77633f2570ac7a6890b19e539fe60d51909a679f278a126729bbdb02a", "sticker": null, "text": "Yes", "from_id": "17aa7c5e1eccba69076eeb12141a360a1e9377f44662c5fd346c373408771d84", "reply_to": "676131794d5a52bd9f41a844b095b7a9d60f04e191e1868a737b8703100bf3ac", "datetime": "2023-11-24T04:08:35+00:00" }, { "message_id": "a2c483dd9d82b2e3d773f4f3994874e7ea5455982c932f59394e2737bf644d51", "sticker": null, "text": "✋", "from_id": "071e4d23ce7e1271e19956e56532f2b47d20b633c7d3f8f87eea4c9dd07d14d0", "reply_to": null, "datetime": "2023-11-27T15:22:32+00:00" }, { "message_id": "4ec4a084d674c7fe28e2a8cc68d215c359aa88aa69c261c6bfdfd5b05222b951", "sticker": null, "text": "Why so brownish?", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "0b3dd5f77633f2570ac7a6890b19e539fe60d51909a679f278a126729bbdb02a", "datetime": "2023-11-27T15:23:14+00:00" }, { "message_id": "a37289242c8d92e6aae52192ad6b8be184d0ab3a9a1e1adbd3f5f681c3ee982f", "sticker": null, "text": "hi,i trying to develop a simpletool, main functions are according to the selected system service class and method and the corresponding parameters to generate a service call command. when I selected android.os.IUserService it crash", "from_id": "9c6185d96240184a5e0796ab74cb039cfdf8cd4f81a84b7ce671dcf2c94f61a4", "reply_to": null, "datetime": "2023-11-27T15:49:40+00:00" }, { "message_id": "2273f9b76a717c7a62b16ec3eea80061372e0c0665626c7b526d22f8a7ccd72e", "sticker": null, "text": "11-27 23:44:59.549 23981 23981 E AndroidRuntime: FATAL EXCEPTION: main\n11-27 23:44:59.549 23981 23981 E AndroidRuntime: Process: com.ma.servicecallcommandgenerate, PID: 23981\n11-27 23:44:59.549 23981 23981 E AndroidRuntime: java.lang.RuntimeException: java.lang.ArrayIndexOutOfBoundsException: length=3; index=3\n11-27 23:44:59.549 23981 23981 E AndroidRuntime: at com.ma.servicecallcommandgenerate.MainActivity$ServiceCallTool.getMethodFieldValueBySystemService(MainActivity.java:104)", "from_id": "9c6185d96240184a5e0796ab74cb039cfdf8cd4f81a84b7ce671dcf2c94f61a4", "reply_to": null, "datetime": "2023-11-27T15:49:47+00:00" }, { "message_id": "3b7e652317eaeda4c71f6742893f7f3554cbdfbe781400cc45040065c3f243db", "sticker": null, "text": "public static boolean allParametersOfType(Method method, Class... types) {\n Class[] parameterTypes = method.getParameterTypes();\n for (int i = 0; i < parameterTypes.length; i++) {\n if (!parameterTypes[i].equals(types[i])) {\n return false;\n }\n }\n return true;\n }\n\n public static ArrayMap getMethodFieldValueBySystemService(String clz) {\n Method[] declaredMethods;\n Field[] declaredFields;\n try {\n ArrayMap arrayMap = new ArrayMap<>();\n for (Method method : Class.forName(clz).getDeclaredMethods()) {\n if (allParametersOfType(method, String.class, Boolean.TYPE, Integer.TYPE)) {\n for (Field field : Class.forName(clz + \"$Stub\").getDeclaredFields()) {\n if (field.getName().equals(\"TRANSACTION_\" + method.getName())) {\n field.setAccessible(true);\n arrayMap.put(field.getName().split(\"TRANSACTION_\")[1], (Integer) field.get(null));\n }\n }\n }\n }\n return arrayMap;\n } catch (Throwable e) {\n throw new RuntimeException(e);\n }\n }", "from_id": "9c6185d96240184a5e0796ab74cb039cfdf8cd4f81a84b7ce671dcf2c94f61a4", "reply_to": null, "datetime": "2023-11-27T15:50:34+00:00" }, { "message_id": "45ee758e01f13286f9dbe14903f8842410123969dd7c098ba28a35f5aadcb2f5", "sticker": null, "text": "My gosh... Use\n```java ```\nto format your damn code", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "3b7e652317eaeda4c71f6742893f7f3554cbdfbe781400cc45040065c3f243db", "datetime": "2023-11-27T15:56:39+00:00" }, { "message_id": "a5290bea9fab00aaf51736daf532dbc0620da5d86ca8bb1608704863daf09a68", "sticker": null, "text": "```public static boolean allParametersOfType(Method method, Class... types) {\n Class[] parameterTypes = method.getParameterTypes();\n for (int i = 0; i < parameterTypes.length; i++) {\n if (!parameterTypes[i].equals(types[i])) {\n return false;\n }\n }\n return true;\n }\n\n public static ArrayMap getMethodFieldValueBySystemService(String clz) {\n Method[] declaredMethods;\n Field[] declaredFields;\n try {\n ArrayMap arrayMap = new ArrayMap<>();\n for (Method method : Class.forName(clz).getDeclaredMethods()) {\n if (allParametersOfType(method, String.class, Boolean.TYPE, Integer.TYPE)) {\n for (Field field : Class.forName(clz + \"$Stub\").getDeclaredFields()) {\n if (field.getName().equals(\"TRANSACTION_\" + method.getName())) {\n field.setAccessible(true);\n arrayMap.put(field.getName().split(\"TRANSACTION_\")[1], (Integer) field.get(null));\n }\n }\n }\n }\n return arrayMap;\n } catch (Throwable e) {\n throw new RuntimeException(e);\n }\n }```", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "3b7e652317eaeda4c71f6742893f7f3554cbdfbe781400cc45040065c3f243db", "datetime": "2023-11-27T15:57:26+00:00" }, { "message_id": "62bddb12e3a49b6bf73d54bdea42fdcf4638d0924d1356511941b223d89cc323", "sticker": null, "text": "hey hey", "from_id": "9c6185d96240184a5e0796ab74cb039cfdf8cd4f81a84b7ce671dcf2c94f61a4", "reply_to": null, "datetime": "2023-11-27T16:01:45+00:00" }, { "message_id": "907038f307f13c5b410bcc59df792188f484c10ec5aade6fb6841dbfdcbfd096", "sticker": null, "text": "Can anyone help with big-o notation?", "from_id": "4e5aafc02dd6c476eeb4c558d093e7a936cb7ceaaaf710ca98486a72c8dcd04d", "reply_to": null, "datetime": "2023-11-27T16:03:40+00:00" }, { "message_id": "4d5cb34db18a0723c1952d44f2e6e73adddd99c2a28601648576f224719aee0e", "sticker": null, "text": "Time Complexity?", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "907038f307f13c5b410bcc59df792188f484c10ec5aade6fb6841dbfdcbfd096", "datetime": "2023-11-27T18:28:41+00:00" }, { "message_id": "26f01d70b6a52131b8ad7820c66e23e773fa20cb89ff8a4493467e712b976cb8", "sticker": null, "text": "Share your questions in this group, let member help you...", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": null, "datetime": "2023-11-27T18:29:06+00:00" }, { "message_id": "c097592e00c9d6697aa5c9b7ce1775db634cbe8ccc499b45f083eb596f76953c", "sticker": null, "text": "I couldn't share a photo", "from_id": "4e5aafc02dd6c476eeb4c558d093e7a936cb7ceaaaf710ca98486a72c8dcd04d", "reply_to": "4d5cb34db18a0723c1952d44f2e6e73adddd99c2a28601648576f224719aee0e", "datetime": "2023-11-27T18:30:45+00:00" }, { "message_id": "717e90438adb5caf4351034cd9c4c8097fb3925e507e29b8d1d222c4ffc1f2ba", "sticker": null, "text": "Hello, could you help me?", "from_id": "95730343e34117d42f9db2a7794fbc453ab91ac9e869a17043480c98bfbcfa3e", "reply_to": null, "datetime": "2023-11-28T04:54:18+00:00" }, { "message_id": "d45153b50fcf57a2f993e6856b67b863a5ba060aec3fa5078c93917ef168d9b7", "sticker": null, "text": "Halo. Sì", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "717e90438adb5caf4351034cd9c4c8097fb3925e507e29b8d1d222c4ffc1f2ba", "datetime": "2023-11-28T07:21:00+00:00" }, { "message_id": "1c0dabaa49907153bda2b82dfdd507988f61bdf6a17dd0c5fcbe63cb814eaefd", "sticker": null, "text": "Heloo", "from_id": "8f8502ba572a91fe3cb3ca8565044823d1ca2b774009c1099d27055a55022885", "reply_to": null, "datetime": "2023-11-29T18:39:00+00:00" }, { "message_id": "fc722c1be17dda5f3036bf2d360a5803b0817d308bf8df3bd76149d343016a08", "sticker": null, "text": "/stat@#USER", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": null, "datetime": "2023-11-30T01:58:56+00:00" }, { "message_id": "ef9510357a3c662263c9994b1a0d06863f6771e5da10fae8e4d0d774068a5720", "sticker": null, "text": "Total messages: 131126", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-11-30T01:58:56+00:00" }, { "message_id": "9acc9ed8622ff6727507c696e9975c2340bbdf6d55f42f5372763fc83bdab0b9", "sticker": null, "text": "Hlo guys", "from_id": "0f441afdf67a50831a97d8b96aa576522ec76a4ca3c604a68a3caaad09c34f0c", "reply_to": null, "datetime": "2023-11-30T05:38:58+00:00" }, { "message_id": "dc726fcbf0cd6fa11873c4e1d706d1a76023d80745188752548ed7a5aaddcb40", "sticker": null, "text": "Heloo", "from_id": "8f8502ba572a91fe3cb3ca8565044823d1ca2b774009c1099d27055a55022885", "reply_to": null, "datetime": "2023-11-30T07:19:53+00:00" }, { "message_id": "23f3f1532c148920fc05c95d29141a8d4ffdfe53f0638b5d6e695997d26cb659", "sticker": null, "text": "", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": null, "datetime": "2023-11-30T08:17:32+00:00" }, { "message_id": "89ff16990f41136df4a13587b4cd7acdcde06841dba70da50cc36d0b4765fd35", "sticker": null, "text": "Anyone to assist me with java code notes summary", "from_id": "8f8502ba572a91fe3cb3ca8565044823d1ca2b774009c1099d27055a55022885", "reply_to": null, "datetime": "2023-11-30T09:00:03+00:00" }, { "message_id": "944416528919d8bd703dab2416c33d6fb47c39cc459c6c0dca00735a85eaf78f", "sticker": null, "text": "Hey I have a question related to java", "from_id": "12f8024d0936df034f9bb8bcde5e9df77e78fa298e0fc2dce8a0f76cb216d8e7", "reply_to": null, "datetime": "2023-11-30T14:21:21+00:00" }, { "message_id": "9f3e6993a27dc2f5feebe94cf94c0cbbc88e268ffda5834c2a3b58237e1135a4", "sticker": null, "text": "Someone online?", "from_id": "12f8024d0936df034f9bb8bcde5e9df77e78fa298e0fc2dce8a0f76cb216d8e7", "reply_to": null, "datetime": "2023-11-30T14:21:23+00:00" }, { "message_id": "ae6d9a7e07183279224aa02a9dad02808c664e6d54b5c0f5f52af70f79b086f9", "sticker": null, "text": "Ues", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "9f3e6993a27dc2f5feebe94cf94c0cbbc88e268ffda5834c2a3b58237e1135a4", "datetime": "2023-11-30T14:21:41+00:00" }, { "message_id": "bf8768ccca92f288f4aba51877bd36961d378074ab6464e403eb1597f9abf3b5", "sticker": null, "text": "Yes", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": null, "datetime": "2023-11-30T14:21:47+00:00" }, { "message_id": "737e5fd10a7a09ddda122284a78f00c6056f69a7a9e774d7f1622a04657ce1b1", "sticker": null, "text": "Conditional operator includes only \n\n\n? :\n\nAnd AND OR is part of logical operators right?", "from_id": "12f8024d0936df034f9bb8bcde5e9df77e78fa298e0fc2dce8a0f76cb216d8e7", "reply_to": "ae6d9a7e07183279224aa02a9dad02808c664e6d54b5c0f5f52af70f79b086f9", "datetime": "2023-11-30T14:22:57+00:00" }, { "message_id": "f54c59252481e2c9b8d470173dca9121367542fadfc36c445bb1a0c5a457b16d", "sticker": null, "text": "But I read at a place\n\nConditional operator in java of 3 types\n\nCondition AND &&\nCondition OR ||\nTernary Operator ?\n\nWhich is true??", "from_id": "12f8024d0936df034f9bb8bcde5e9df77e78fa298e0fc2dce8a0f76cb216d8e7", "reply_to": null, "datetime": "2023-11-30T14:24:39+00:00" }, { "message_id": "66e7f2debdb1fad60f0a99b8307e4fafb44cfb5b90ebc56d6f1cd22251e05ef9", "sticker": null, "text": "Right", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "f54c59252481e2c9b8d470173dca9121367542fadfc36c445bb1a0c5a457b16d", "datetime": "2023-11-30T14:25:12+00:00" }, { "message_id": "e624e7deda740364ce64933926391d92b6e6be83e10d21603399674e4c65315c", "sticker": null, "text": "What about logical AND OR", "from_id": "12f8024d0936df034f9bb8bcde5e9df77e78fa298e0fc2dce8a0f76cb216d8e7", "reply_to": "66e7f2debdb1fad60f0a99b8307e4fafb44cfb5b90ebc56d6f1cd22251e05ef9", "datetime": "2023-11-30T14:29:53+00:00" }, { "message_id": "42742f342e47dd5b3f1a6c0f0b75de74f8d9e2f99b594b7257e0449b20bdb480", "sticker": null, "text": "Alla are operators", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": null, "datetime": "2023-11-30T14:30:09+00:00" }, { "message_id": "26561eec766200ea7f7941e50acb3e93809ac740f24c9506ca4780e0f0419252", "sticker": null, "text": "Ohk", "from_id": "12f8024d0936df034f9bb8bcde5e9df77e78fa298e0fc2dce8a0f76cb216d8e7", "reply_to": "42742f342e47dd5b3f1a6c0f0b75de74f8d9e2f99b594b7257e0449b20bdb480", "datetime": "2023-11-30T14:30:54+00:00" }, { "message_id": "bf5af652864726d0ee31246e7e7b2febcb0bb8d6251324b990d8c5ab2e9aa7bd", "sticker": null, "text": "10", "from_id": "9b07ca4138e6e668a018d162af396b6f6751d288c682ea74d1974b31f746ace9", "reply_to": null, "datetime": "2023-11-30T14:41:49+00:00" }, { "message_id": "35172237d5e621b79dfd7b1a69f35d0d9d7670543bea72cc005bc835d1e98bde", "sticker": null, "text": "/", "from_id": "53eebdbdc20cd6bf43f1161f4027a7288722fbbcd6d5a253a9593372f0db7c53", "reply_to": null, "datetime": "2023-12-03T17:17:11+00:00" }, { "message_id": "c71424b25a5de3b1ab7b5b44ef6d4d08ae0a3f0e2c7de1593f3caf74b9efd06c", "sticker": null, "text": "I am interested", "from_id": "6a3fc4eef722194af49c09857a0e44cad20c0d2c1fb8914b6ffe0ab964dba87a", "reply_to": "f489eb3f911b3e0bdc06deb00d6dafed7c4bf093680d6085b0ddaa10f767c5a7", "datetime": "2023-12-03T17:50:29+00:00" }, { "message_id": "a6279674491eaac91829ff00a228db5dbcc17743c7e4f5079b687bbb2c0545fc", "sticker": null, "text": "Looking for mathematics, C cplus and python programmers doing freelancing and willing to handle freelance jobs. Preferably from Kenya", "from_id": "7edd3e997a03296dd31ba67282c774ba98573fde6506f8516927301f7ed0ce55", "reply_to": null, "datetime": "2023-12-04T20:18:18+00:00" }, { "message_id": "91e94f3c5f961289b5377fb217c6b35413554233904cc489ac342aa4a911ca7f", "sticker": null, "text": "Is anyone using obsidian? Need an advice", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": null, "datetime": "2023-12-05T03:46:45+00:00" }, { "message_id": "3fe1f7584833183e2da842b2f18123186919d4aa9828dbebdb3956429d9607bb", "sticker": null, "text": "you need to go long way down to get them", "from_id": "0fcfe0ce2e79203394c3aa07e10ffd5babb7d16aa19ad5dfb2be51e24501b841", "reply_to": "91e94f3c5f961289b5377fb217c6b35413554233904cc489ac342aa4a911ca7f", "datetime": "2023-12-05T03:49:16+00:00" }, { "message_id": "53e1cdb0ddbdc2245188bcde7b13184eaffa7b74bce48b9a7dbf8630e76f0b97", "sticker": null, "text": "Where are they? Can't see them at all", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "3fe1f7584833183e2da842b2f18123186919d4aa9828dbebdb3956429d9607bb", "datetime": "2023-12-05T03:52:31+00:00" }, { "message_id": "3061d21fc17c88aab4c554437eab8b3bf43d232b9ebb980ff80da5f0dd927aad", "sticker": null, "text": "This is a Java forum", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "a6279674491eaac91829ff00a228db5dbcc17743c7e4f5079b687bbb2c0545fc", "datetime": "2023-12-05T04:17:22+00:00" }, { "message_id": "264fc3be0afd72b04d4f57a53754833a2cfc2c712c8e5095a630affa2e2f57b8", "sticker": null, "text": "Is this a Minecraft joke?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "3fe1f7584833183e2da842b2f18123186919d4aa9828dbebdb3956429d9607bb", "datetime": "2023-12-05T07:42:35+00:00" }, { "message_id": "83bfbfa8793cf16f5cfb8f23f6bb12e3fad63acad2ec6fa622561e7fa80c5bd0", "sticker": null, "text": "Sir, I am a beginner in Java programming...\nCan you suggest me some projects so that I can smoothen my Resume as well?", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "3061d21fc17c88aab4c554437eab8b3bf43d232b9ebb980ff80da5f0dd927aad", "datetime": "2023-12-05T07:55:21+00:00" }, { "message_id": "d0a888e7cb6dcc078fbf7fe104f959c842a61905aa009daa2411a9395b55ed81", "sticker": null, "text": "Google it", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "83bfbfa8793cf16f5cfb8f23f6bb12e3fad63acad2ec6fa622561e7fa80c5bd0", "datetime": "2023-12-05T09:23:03+00:00" }, { "message_id": "593110dfc45bb63ffa2a258fc1adaac1a803d74415f4d07d8d1d37bf005d8000", "sticker": null, "text": "I'm new to tech world, started learning Java 2 months back but having difficulties with finding a structured learning path. Kindly request for guidance", "from_id": "fac8addd40f7f713a0339bd362cf87e67bb429f929ac681cfe990f44cba606a3", "reply_to": null, "datetime": "2023-12-06T10:17:31+00:00" }, { "message_id": "1b28248eb08ebe7d01ae709ced9ff1cd6cc2c5d1e472ddb05c25d8f94fbac2f5", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "593110dfc45bb63ffa2a258fc1adaac1a803d74415f4d07d8d1d37bf005d8000", "datetime": "2023-12-06T11:08:03+00:00" }, { "message_id": "3b2c7e0bbfa3071519aae265b7c43504bff13f03eb0faa683989cbf4ae65d098", "sticker": null, "text": "Thanks sir, also humbly request for recommended reading materials.", "from_id": "fac8addd40f7f713a0339bd362cf87e67bb429f929ac681cfe990f44cba606a3", "reply_to": "1b28248eb08ebe7d01ae709ced9ff1cd6cc2c5d1e472ddb05c25d8f94fbac2f5", "datetime": "2023-12-06T11:16:34+00:00" }, { "message_id": "df2488d736046137081eb46cba8a337833e69fca8266ccd8dabc31f822007c7e", "sticker": null, "text": "For java", "from_id": "fac8addd40f7f713a0339bd362cf87e67bb429f929ac681cfe990f44cba606a3", "reply_to": "3b2c7e0bbfa3071519aae265b7c43504bff13f03eb0faa683989cbf4ae65d098", "datetime": "2023-12-06T11:19:49+00:00" }, { "message_id": "deff8780d22bb8538d75e73f644642b60b7aa1c1bbec0b936c219b70c9053d6f", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "3b2c7e0bbfa3071519aae265b7c43504bff13f03eb0faa683989cbf4ae65d098", "datetime": "2023-12-06T11:24:49+00:00" }, { "message_id": "92c7fae20d4ee0d35411162301b796463b6b59cd1053e824f9460a917c669859", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "df2488d736046137081eb46cba8a337833e69fca8266ccd8dabc31f822007c7e", "datetime": "2023-12-06T11:25:37+00:00" }, { "message_id": "17f81b04aeaf7f056249aab99f26ba585d19afe55a31ba7827814804a921366c", "sticker": null, "text": "Ok sir", "from_id": "fac8addd40f7f713a0339bd362cf87e67bb429f929ac681cfe990f44cba606a3", "reply_to": null, "datetime": "2023-12-06T11:29:00+00:00" }, { "message_id": "1aa8c107a10f24c9593ab5e1c11eacc93ab7d8ff4fcfb58a8f6d84c2d6a9e071", "sticker": null, "text": "Hi there", "from_id": "6bdf41669d1e3a96c510f7b7ade2e0cfa2568f9e338853f4c7ca910e33e58d37", "reply_to": null, "datetime": "2023-12-07T01:45:41+00:00" }, { "message_id": "87fae0ffe49365c97b2192327f9ccb2d89e00db37669e8313ae53c7f5cf9bd76", "sticker": null, "text": "Total messages: 131397", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-12-07T08:33:20+00:00" }, { "message_id": "8682b44cd2ed0005bf95920bc63ada2a06e88a9811d89818215ba4f34e9f50a9", "sticker": null, "text": "4", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2023-12-07T16:01:29+00:00" }, { "message_id": "ac534237c1d6203e57c72c249b7c5e132dcba633efdf2a59e6179f1f19998b8e", "sticker": null, "text": "Hey. Can so ein Help me Programm a simple product structure in Java springboot for school? Nearly everything ist finished,i only need to Connect items with Iteminstances and i have No Idea how to do that.", "from_id": "d96552244412ee3ba353623625e930da5f3cdc9b7045cdd773527ea038e06bdb", "reply_to": null, "datetime": "2023-12-07T18:31:27+00:00" }, { "message_id": "b1677090363ca7161faaea7c92b1824dbcaf99201914a83182c900c45911a574", "sticker": null, "text": "13", "from_id": "d96552244412ee3ba353623625e930da5f3cdc9b7045cdd773527ea038e06bdb", "reply_to": null, "datetime": "2023-12-07T21:21:51+00:00" }, { "message_id": "8b99cbebce27a12a7289642d782d016dad40bc9fb699d0818cc7a83674ace508", "sticker": null, "text": "Spring Boot😭I add one team but I am new that some people blame me and let me that gave up the Java programming😳", "from_id": "6bdf41669d1e3a96c510f7b7ade2e0cfa2568f9e338853f4c7ca910e33e58d37", "reply_to": null, "datetime": "2023-12-08T10:34:10+00:00" }, { "message_id": "7a25d60d34df0ae4d93d9b04d852e9393cb021a1b4bc8c43ceeda957083c4274", "sticker": null, "text": "I just recommended you start learning SpringBoot from some website or buy some Spring Boot Book(Just for me)", "from_id": "6bdf41669d1e3a96c510f7b7ade2e0cfa2568f9e338853f4c7ca910e33e58d37", "reply_to": null, "datetime": "2023-12-08T10:39:18+00:00" }, { "message_id": "eb9fedf3ce3f4a37bde05aa2949b160b7ef55e2aa21dd280d1548463088dd891", "sticker": null, "text": "It's not necessary to buy anything. On the internet, you can have everything for free", "from_id": "5463b2297e59e73b6fa0869417adc0adebbe1d74bf4e457d73ad00c2a5648917", "reply_to": "7a25d60d34df0ae4d93d9b04d852e9393cb021a1b4bc8c43ceeda957083c4274", "datetime": "2023-12-08T15:33:42+00:00" }, { "message_id": "292992779f7a8a54602fc34814fabcc71dc762f5ffc91c9a87d28b55699d9fe2", "sticker": null, "text": null, "from_id": "db3f9e35c31ae66ea4b75fbbff324200bcce63411b0fac6b421fc2b795ce6423", "reply_to": null, "datetime": "2023-12-08T16:55:57+00:00" }, { "message_id": "23e8e542c533b4dc85bb6220d2e4a7bab4fe9d4761c4f0142568759ef00df351", "sticker": null, "text": null, "from_id": "7ea257ce47bd4017efa21bb7ed24100c873e81246b03d75017e8e5e4454dcdab", "reply_to": null, "datetime": "2023-12-08T22:13:34+00:00" }, { "message_id": "5de58f27d5d27e961f418ac5eb4ee21c8566db7d1622ff0bc74084dcbe2d8925", "sticker": null, "text": null, "from_id": "16c1aab8d162da64c7f7a25a41bdba282d65a8bcbf879482f29e3ce7dcdc7b7e", "reply_to": null, "datetime": "2023-12-09T05:44:43+00:00" }, { "message_id": "0fadf57604632f7c10ca198f6a1398c1080e665aae2ea9c235d168ace6f29d29", "sticker": null, "text": "I need JAVA TUTORIAL ORACLE ACADEMY (MATERIAL) \n\nIF ANYONE CAN HAVE SO SEND ME PLEASE 🤝", "from_id": "bfb022bfe4938a4cf5dd024e8d3fcc89ed8cb3f21e0b4ecb3d016163ce4a9204", "reply_to": null, "datetime": "2023-12-09T06:54:27+00:00" }, { "message_id": "d265c833a6c11b4daea80e21b9bd149d94281bc583822de2867ee8e485309a6b", "sticker": null, "text": "I need Java to work remotely", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-12-09T06:56:02+00:00" }, { "message_id": "d62786f621e7fb988cb5e719b656786cdd98c2dceb0b77ba8f6e9495a56c427d", "sticker": null, "text": "❤️", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2023-12-09T06:56:08+00:00" }, { "message_id": "e5c6649846ea5ae148ebbe9ddacd0e1e05b13828219a60eeea511d9ee01eefa8", "sticker": null, "text": "I see but the book still there. I can check it anytime offline😂", "from_id": "6bdf41669d1e3a96c510f7b7ade2e0cfa2568f9e338853f4c7ca910e33e58d37", "reply_to": "eb9fedf3ce3f4a37bde05aa2949b160b7ef55e2aa21dd280d1548463088dd891", "datetime": "2023-12-09T13:59:50+00:00" }, { "message_id": "006271c917d13b6726a5085ef90a7bda83d85a8ba5f899514023a9f0dca6dc46", "sticker": null, "text": "Why would you code without internet?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "e5c6649846ea5ae148ebbe9ddacd0e1e05b13828219a60eeea511d9ee01eefa8", "datetime": "2023-12-09T14:34:07+00:00" }, { "message_id": "61b4819eb3925f5a2c6158a44fce138223b059a5f221c30ba1f21eacd0fac17b", "sticker": null, "text": "i use ChatGPT", "from_id": "f1a688e4b5aaf5fba8da20fad9e069dd4fe6d847b8d1ab8b04d70d66b1b6c8ff", "reply_to": null, "datetime": "2023-12-09T14:50:52+00:00" }, { "message_id": "14b3aa5e312567e96e83859103cc3f900bf1061619c6ccf0adef47b7dcd53565", "sticker": null, "text": "Actually I used that but I prefer read books😂", "from_id": "6bdf41669d1e3a96c510f7b7ade2e0cfa2568f9e338853f4c7ca910e33e58d37", "reply_to": "006271c917d13b6726a5085ef90a7bda83d85a8ba5f899514023a9f0dca6dc46", "datetime": "2023-12-09T17:22:26+00:00" }, { "message_id": "552ea87a704a0c8ceebeace1a076047cf9990600cbd14f6de792e251403a23a0", "sticker": null, "text": "Sometimes if books without my answer I will search it from net.", "from_id": "6bdf41669d1e3a96c510f7b7ade2e0cfa2568f9e338853f4c7ca910e33e58d37", "reply_to": null, "datetime": "2023-12-09T17:22:53+00:00" }, { "message_id": "33d4c9c563caed7d7dd89a79e6f5b6840da24f1b497f922a9ee3628881c7226f", "sticker": null, "text": "Thank you all😄", "from_id": "6bdf41669d1e3a96c510f7b7ade2e0cfa2568f9e338853f4c7ca910e33e58d37", "reply_to": null, "datetime": "2023-12-09T17:23:12+00:00" }, { "message_id": "d2031890e26567a8695f092f07e6628ced0947d9dfe59a115e299253bb4fe82f", "sticker": null, "text": "me", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": "7386d9b26156e2e850a8323fb2d1f81759351ec54b50cc2e3a4e6e6d08864186", "datetime": "2023-12-11T06:33:16+00:00" }, { "message_id": "d48b1560da3a10f8921a5da1cd125299542bcac48df2cbea3ab512c7c6f13f42", "sticker": null, "text": null, "from_id": "160d491f9e4a5791e79fdb54cb8d265221861732f2109158fda4240b76a73fd8", "reply_to": null, "datetime": "2023-12-12T12:51:36+00:00" }, { "message_id": "789f599bafda5c493206c98dd0280cc43443bc635d45ed5a0b5484b8322f7d76", "sticker": null, "text": null, "from_id": "fdabcd39eda8a92284f3a9f757942c3c45a85965434c9f378106449b032dbd99", "reply_to": null, "datetime": "2023-12-12T12:52:17+00:00" }, { "message_id": "8fa6b882d0e2f12847eab61b6684a3c02fa2ff8e98678a87878dcb1e2f0f1f3d", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2023-12-13T16:35:28+00:00" }, { "message_id": "7378d24edb667ee4fce362c82d70dd02a9e4a5294f294ea41bc348038c95a1d4", "sticker": null, "text": "hi everyone, can anyone of you review java code for best practices and coding standards? I really need this as part of a research to improve Github. If you are willing to join please just say yes, it takes 15 minutes", "from_id": "7f955063d737821288252d52ceeecf196db682cdfbe6519e4caddfb786f4eef4", "reply_to": null, "datetime": "2023-12-14T23:42:02+00:00" }, { "message_id": "3bdd868cddb093b05c30aacb0dd7d431629488cf43ddaf8ceac3958be0c9c94c", "sticker": null, "text": "Good morning gentlemen", "from_id": "c474b3020515b15bbdcba8c1d7a7a051f0532c18f9f28eba43c34606eb2e131d", "reply_to": null, "datetime": "2023-12-16T10:30:34+00:00" }, { "message_id": "34e0c168e169f92846f8f561695a81c8a44c1f99937db88030b0f8e7b0061cd6", "sticker": null, "text": "I was wondering if I can study the Moocfi java course with vs code instead of TMNbeans", "from_id": "c474b3020515b15bbdcba8c1d7a7a051f0532c18f9f28eba43c34606eb2e131d", "reply_to": null, "datetime": "2023-12-16T10:32:14+00:00" }, { "message_id": "efcf48e29e5d9f9f94677896313402182ed6b2a241e8276c2ce8e956e4317e9b", "sticker": null, "text": "Have a elegant day", "from_id": "c474b3020515b15bbdcba8c1d7a7a051f0532c18f9f28eba43c34606eb2e131d", "reply_to": null, "datetime": "2023-12-16T10:32:36+00:00" }, { "message_id": "d271755d1fc3776c19a616bf1e55a4624388579e80299b0d7ac1fbdc4a7b15a6", "sticker": null, "text": "Certainly", "from_id": "7596f18e5a4c4030df419ef7e4e21ffe2d11791c896243d61f25f1d9fcb05020", "reply_to": "34e0c168e169f92846f8f561695a81c8a44c1f99937db88030b0f8e7b0061cd6", "datetime": "2023-12-16T11:48:26+00:00" }, { "message_id": "d55d1a071f5dce57c3c8c959d524452d72dd91b26f7943f7f4a4d3d5b8837a99", "sticker": null, "text": "Good morning. So to be off topic. Is there anyone who has had their Instagram/Facebook account hacked and suspended? How did you solve it? A thousand thanks", "from_id": "1cd5d8ecbe85a126b41fdbdd804319bc493bee9a444b35ec9ab15065141201dc", "reply_to": null, "datetime": "2023-12-17T09:08:46+00:00" }, { "message_id": "cdf2cc70ffa142c71391f4746a9e48e67a7b65385580353ed55b9aacd817b72d", "sticker": null, "text": "As far as i know, you would need to report it to the customer service", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "d55d1a071f5dce57c3c8c959d524452d72dd91b26f7943f7f4a4d3d5b8837a99", "datetime": "2023-12-17T14:05:10+00:00" }, { "message_id": "69c0da1c5132d9d97a5d5a439d1ed0af5aa11fe1b4e5fe1c7c0b12ad72403e9e", "sticker": null, "text": "Then they'd ask you to provide personal details related to the account to prove its yours", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-12-17T14:05:31+00:00" }, { "message_id": "cee8e20962e9a879c9a4f33638f21ba5216bfc8ee461aca6d9080f30afb24c6c", "sticker": null, "text": "HI. there is no assistance! :(", "from_id": "1cd5d8ecbe85a126b41fdbdd804319bc493bee9a444b35ec9ab15065141201dc", "reply_to": "cdf2cc70ffa142c71391f4746a9e48e67a7b65385580353ed55b9aacd817b72d", "datetime": "2023-12-17T14:05:44+00:00" }, { "message_id": "68bf12d239bd3988c662cd0a6375ade6bfdb9abe5a1a3462f89f13df41366c83", "sticker": null, "text": "If your account is a fan account of some sort, less likely they would help", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "cee8e20962e9a879c9a4f33638f21ba5216bfc8ee461aca6d9080f30afb24c6c", "datetime": "2023-12-17T14:06:19+00:00" }, { "message_id": "d7d9324e612bc17a095ff45ebdd15d08549be1067b969aedc0b8c9b7b7b63e32", "sticker": null, "text": "Fan account or posting non-original contents", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-12-17T14:06:33+00:00" }, { "message_id": "0ec86901c9da40319883b8969e9a78ac2b2671e75462f3a071772dfede358a55", "sticker": null, "text": "account business", "from_id": "1cd5d8ecbe85a126b41fdbdd804319bc493bee9a444b35ec9ab15065141201dc", "reply_to": "68bf12d239bd3988c662cd0a6375ade6bfdb9abe5a1a3462f89f13df41366c83", "datetime": "2023-12-17T14:06:39+00:00" }, { "message_id": "b76108c345a296ff40f8f1b0cf5cd87ac49ca6065b1c59eb19669d7f118d8cee", "sticker": null, "text": "Try emailing the customer service", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2023-12-17T14:06:58+00:00" }, { "message_id": "ccc7f92181e388002aa8dcd082e8408e1737ac0867ca5966442470a95f7f2f9e", "sticker": null, "text": "Hey guys, I'm working with a team of developers. Backend team is using Spring boot, Frontend is using html css and js. But our projects aren't on the same file (frontend and backend are separated). Please how can I use the backend api with my frontend project?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-12-20T15:33:37+00:00" }, { "message_id": "7733c62153a2f8a01416426beefc97d22e9c7b0ecf9b14dff0594d32cfee6a77", "sticker": null, "text": "Dope", "from_id": "8f8502ba572a91fe3cb3ca8565044823d1ca2b774009c1099d27055a55022885", "reply_to": "878446310a0fd62f127338c2e4b36fc820124721fa6e7f96da287f12166dbfa3", "datetime": "2023-12-20T15:43:04+00:00" }, { "message_id": "4b0a868905d37e477c1225edf506f853874e38b1d6a3b04b557eabe29dd32ab7", "sticker": null, "text": "From JS you can call backend api using Ajax calls.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "ccc7f92181e388002aa8dcd082e8408e1737ac0867ca5966442470a95f7f2f9e", "datetime": "2023-12-20T19:27:30+00:00" }, { "message_id": "9e1ce6db9d69cb9698bd961db038e365ded43a75ef1925d414eaf3eef82f29f5", "sticker": null, "text": "Thank you very much Ashis", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "4b0a868905d37e477c1225edf506f853874e38b1d6a3b04b557eabe29dd32ab7", "datetime": "2023-12-20T20:16:35+00:00" }, { "message_id": "37f9f91ab6231599bffb9cbdd7a231de097a4c247930b6f6afe6d366fc1ed071", "sticker": null, "text": "Does anyone know how to use bioformats java library?", "from_id": "d861acdaf2cefbf5725ff4a1758763b6148bde4273ff8f831ba691000f1bc91e", "reply_to": null, "datetime": "2023-12-20T20:28:07+00:00" }, { "message_id": "95bbac493b4b814a7e364b54bb233f4d43da19ecbf109101d51a011cd7943eaa", "sticker": null, "text": "What if the backend project is separately decoupled from the front end project?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "4b0a868905d37e477c1225edf506f853874e38b1d6a3b04b557eabe29dd32ab7", "datetime": "2023-12-21T14:54:50+00:00" }, { "message_id": "1a9686bb02a4703fc8ecaddeb911ee44842edbd4aaa4bda7c136ab8510535327", "sticker": null, "text": "for more context, I've already deployed the frontend on github, and connected it to my netlify account. Now it displays, but I don't know how I can consume the backend apis. The apis were built with spring boot / java.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "95bbac493b4b814a7e364b54bb233f4d43da19ecbf109101d51a011cd7943eaa", "datetime": "2023-12-21T14:57:12+00:00" }, { "message_id": "77fa12555cbe4592fab50895bb062042808f00652c7f0927cd398facfcd096a9", "sticker": null, "text": "With AJAX you can call any api. Get, put,post, delete..", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "95bbac493b4b814a7e364b54bb233f4d43da19ecbf109101d51a011cd7943eaa", "datetime": "2023-12-21T15:11:22+00:00" }, { "message_id": "6905ef86e5dcae50dd539a855406c557bcc313be8ea10fb47a86f7a6cb3d682f", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "95bbac493b4b814a7e364b54bb233f4d43da19ecbf109101d51a011cd7943eaa", "datetime": "2023-12-21T15:12:31+00:00" }, { "message_id": "dd387315dbccaf5335c417995fef38981e6ff3f29d0c8d22839cc0e3ae31d9ca", "sticker": null, "text": "First step would be where your backend api are hosted.\nThat you can configure in configuration file in frontend app.\n\nNow make specific url by combining stored configuration and special call path. Use any framework for calling it.", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "1a9686bb02a4703fc8ecaddeb911ee44842edbd4aaa4bda7c136ab8510535327", "datetime": "2023-12-22T04:37:42+00:00" }, { "message_id": "d74517675e3da4ad6c26cea44a95c65ffde9b8142c073d6673165ad35c98f95d", "sticker": null, "text": "thanks", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "6905ef86e5dcae50dd539a855406c557bcc313be8ea10fb47a86f7a6cb3d682f", "datetime": "2023-12-22T08:09:18+00:00" }, { "message_id": "a612bef725d810bdc3287444833a4b89804cf9d8877c1b1860bcee62917cb4b0", "sticker": null, "text": "thanks, please where do you suggest I host the backend api? Since frontend is already hosted on netlify..And can you please privately send me a youtube video that'll aid me in configuring the file?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "dd387315dbccaf5335c417995fef38981e6ff3f29d0c8d22839cc0e3ae31d9ca", "datetime": "2023-12-22T08:10:38+00:00" }, { "message_id": "990cda4c2fcf36cfe80ea3244e117822da0dfeedd3739ca7ecf6ce9348b84c21", "sticker": null, "text": "Hi guys, \n\nI have a similar problem to this and I'm actually confused...\n\nWe were give a project to make a food delivery app.\n\nNow in my team; the backend team's using Java and front end is using react native \n\nPlease is react native a choice for frontend ?\n\nAlso, how can I use backend API in Java with the front end project?🥲", "from_id": "a27576ca498f3a3892a19b27e56bc43b8eced3d49608d089a4a674fc81b2d51e", "reply_to": "ccc7f92181e388002aa8dcd082e8408e1737ac0867ca5966442470a95f7f2f9e", "datetime": "2023-12-23T12:15:19+00:00" }, { "message_id": "7fa0599e5729b62bf1fe656818cefc9e8c9fa184c36cdfd958bbc84d56631f32", "sticker": null, "text": "Have you heard of Ionic?", "from_id": "071e4d23ce7e1271e19956e56532f2b47d20b633c7d3f8f87eea4c9dd07d14d0", "reply_to": null, "datetime": "2023-12-23T15:29:39+00:00" }, { "message_id": "d7bcc2d0de1290a65dce171848f6ae1bbcb86c0bef48dda88bd2d9ed041528cc", "sticker": null, "text": "or uniapp that develop by Chinese programer", "from_id": "071e4d23ce7e1271e19956e56532f2b47d20b633c7d3f8f87eea4c9dd07d14d0", "reply_to": null, "datetime": "2023-12-23T15:31:18+00:00" }, { "message_id": "d20ceffbbfcb1d7acb87ec8bb7cc5a74d33950698e5903096eab4cc079528416", "sticker": null, "text": "restful,json,Ajax", "from_id": "071e4d23ce7e1271e19956e56532f2b47d20b633c7d3f8f87eea4c9dd07d14d0", "reply_to": null, "datetime": "2023-12-23T15:34:28+00:00" }, { "message_id": "db99b219fe9b2e30c8065729668144c4cc84cf5a600057cfc2857d497e93cbc1", "sticker": null, "text": "React native is a technology for mobile applications, React itself is for Web applications. So it depends on the context of the application you're building.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "990cda4c2fcf36cfe80ea3244e117822da0dfeedd3739ca7ecf6ce9348b84c21", "datetime": "2023-12-23T19:56:15+00:00" }, { "message_id": "059adf0dfd932c5fdbb1038095d5aadcfe748ccde8cd0f35cbec534ce95e0255", "sticker": null, "text": "Okay thank u", "from_id": "a27576ca498f3a3892a19b27e56bc43b8eced3d49608d089a4a674fc81b2d51e", "reply_to": "db99b219fe9b2e30c8065729668144c4cc84cf5a600057cfc2857d497e93cbc1", "datetime": "2023-12-24T22:40:35+00:00" }, { "message_id": "99c5bea07ac81b7a636e077816c17805b6f0577c397dd373e6c9d70013a88775", "sticker": null, "text": "Yh another type of app dev framework right? \nSo it's better?", "from_id": "a27576ca498f3a3892a19b27e56bc43b8eced3d49608d089a4a674fc81b2d51e", "reply_to": "7fa0599e5729b62bf1fe656818cefc9e8c9fa184c36cdfd958bbc84d56631f32", "datetime": "2023-12-24T22:40:35+00:00" }, { "message_id": "3b96f57dc9180d735c35a73a408e2fde8740927e6f9a0766e40da698867a85c2", "sticker": null, "text": "Hello", "from_id": "68972eea7f555da46fda8a18a2e765b36dfa6940f09ca05cb52fc08c6e4cc46b", "reply_to": null, "datetime": "2023-12-25T08:19:51+00:00" }, { "message_id": "0e4b50bb0298e1cfcd718051e62c9da4ff49f5c932ed92d4a9b7cee33570fc89", "sticker": null, "text": "How can i solve the problem of * the requsted source is not found on this server*", "from_id": "68972eea7f555da46fda8a18a2e765b36dfa6940f09ca05cb52fc08c6e4cc46b", "reply_to": null, "datetime": "2023-12-25T08:20:26+00:00" }, { "message_id": "0678b1a1a603bb64cb8df143b1b48ab26d9677b6113595b5e53a43e6ddb96269", "sticker": null, "text": "Please", "from_id": "68972eea7f555da46fda8a18a2e765b36dfa6940f09ca05cb52fc08c6e4cc46b", "reply_to": null, "datetime": "2023-12-25T08:20:28+00:00" }, { "message_id": "4ddf4778cf223a0bea47eb4390a9ca51010fc8e17885f20448974bac05f12e38", "sticker": null, "text": "wow", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": "26c4186411db90a87dc69c412a457e15b3f7ec4313ada4ec98940444900b1c36", "datetime": "2023-12-25T09:28:00+00:00" }, { "message_id": "317fad62893230239083eb7161fbda04cce301015fe7de45ded471e32a40b47b", "sticker": null, "text": "Not sure that I follow what you want, but consider flutter", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "db99b219fe9b2e30c8065729668144c4cc84cf5a600057cfc2857d497e93cbc1", "datetime": "2023-12-25T11:24:06+00:00" }, { "message_id": "b6cd2dae01acff34ff4ab00b5738a4186e9a962821826adcf514b1555b7d66be", "sticker": null, "text": "6", "from_id": "914704e2d4aacd3bbaab1178f7e2b42ed965c206b001be2879159d5053a1d0ba", "reply_to": null, "datetime": "2023-12-26T19:42:50+00:00" }, { "message_id": "21aa66151dcad7b71b84484236400f6ee8dd3d0cb4b17d00a4fdf55dd07a6b4b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-12-27T21:48:22+00:00" }, { "message_id": "88a3d0124e3d60fd6a70ec12b3ff68652da285ca50cd2e4e274985acfc6774bf", "sticker": null, "text": "You mentioned you need help. But what help you need didn't mention that. Could you please be specific what kind of help you need?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "21aa66151dcad7b71b84484236400f6ee8dd3d0cb4b17d00a4fdf55dd07a6b4b", "datetime": "2023-12-27T21:59:55+00:00" }, { "message_id": "0ef0c3064633ad81a23943abe8968c32439e79834f63c90fff6acbe2720aab45", "sticker": null, "text": "I'll give full details soon, thank you. Its already night in my country, I'll send the full note tomorrow.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "88a3d0124e3d60fd6a70ec12b3ff68652da285ca50cd2e4e274985acfc6774bf", "datetime": "2023-12-27T22:04:50+00:00" }, { "message_id": "fa212d2b0ce8403b9f8a3aa6271c39771b57c6cb3284546a103db0304c5ac05a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2023-12-27T22:05:45+00:00" }, { "message_id": "a20f82d565a78cdb4bdeea16c31e1bf1feb61b6ab3aa94c7d7e8128b05e2b89e", "sticker": null, "text": "I just searched in google", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2023-12-27T22:05:51+00:00" }, { "message_id": "ca889eaf6aea59c7b79c6f3b4910f517ba0c4098cbdb3846028ac4a73dd500b1", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "0ef0c3064633ad81a23943abe8968c32439e79834f63c90fff6acbe2720aab45", "datetime": "2023-12-27T22:06:07+00:00" }, { "message_id": "292217a91ba6372cf7f5bec5530082493f4c2464f5af0f15c85f5e79b7938c58", "sticker": null, "text": "@#USER your constant help to this community is priceless, thanks a million!", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-12-27T22:09:45+00:00" }, { "message_id": "bcdec8aa7c8007515d18ed7efbe56e05a92cf9fb818fea793a11587d8d8e36be", "sticker": null, "text": "Total messages: 132433", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2023-12-28T16:39:09+00:00" }, { "message_id": "47616dd0fae5aba4c070e442bee2793ecea9450db0089aa2aaa71dbc6de59910", "sticker": null, "text": "I'm checking flyaway, no database was found to process jdbc:postgresql://localhost:5432/test, which database exists?", "from_id": "7c8e5d52cf7b737d24de629a994268ca35b94bcac270b756ef5a23cd83047539", "reply_to": null, "datetime": "2023-12-28T20:14:56+00:00" }, { "message_id": "4daab1a7133dfb91fc27f62dbe39716bd1d38fed42558c401fdb214c1ba702f2", "sticker": null, "text": "Hey guys. Please who has experience building a fullstack Web App with Springboot and Thymeleaf. I have an issue with the thymeleaf, when I click a link to render another view of my frontend page, it doesn't route me to that page but instead it remains on the same page. The only way I can do this is to open that link on a new tab (Which I don't enjoy). Please someone should help me fix this problem.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-12-29T01:57:02+00:00" }, { "message_id": "af6e86275086574632854d35e67907ccfa0009d6c247c0610978db2ae49e2d7b", "sticker": null, "text": "Also, how would I be able to include the endpoint of my controller that routes each page at the end of my local host when it runs. e.g. localhost:8080/login, or localhost:808/dashboard.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-12-29T02:00:32+00:00" }, { "message_id": "ee7699e4c96473aa1be0f3053ea31da292a7ac0eb614d26f974ea30bb0942f1c", "sticker": null, "text": "I can look at it. Send me the git url of ur project", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "4daab1a7133dfb91fc27f62dbe39716bd1d38fed42558c401fdb214c1ba702f2", "datetime": "2023-12-29T23:49:50+00:00" }, { "message_id": "1064ccea76a78f0f4a84c536f40b02a9af6c7cfd945483b62f41041b6f73b3c5", "sticker": null, "text": "Thanks, I will do that", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "ee7699e4c96473aa1be0f3053ea31da292a7ac0eb614d26f974ea30bb0942f1c", "datetime": "2023-12-30T09:14:56+00:00" }, { "message_id": "5939a4d08f1e5ab9e94cb051d213a631be8ee5e561d285aba3be834f4d1704eb", "sticker": null, "text": "Has anyone done the car rental project with Java?", "from_id": "914704e2d4aacd3bbaab1178f7e2b42ed965c206b001be2879159d5053a1d0ba", "reply_to": null, "datetime": "2023-12-30T22:00:51+00:00" }, { "message_id": "826d4690e854e8538a410e845f236af55ba898c961a9478f7555613d8dc72d29", "sticker": null, "text": "Anyone wants to learn java together ?", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": null, "datetime": "2023-12-30T23:38:57+00:00" }, { "message_id": "32ad48530d1a95dc1a40b473505ce7a99c174b9cf0e3f1ddaf56b90e7bc2f947", "sticker": null, "text": "Only if you are a girl. Tired of man company :)", "from_id": "5b8653b533317da81c6e92fba53370c29abda07a86c19ef4c934c6242792de31", "reply_to": "826d4690e854e8538a410e845f236af55ba898c961a9478f7555613d8dc72d29", "datetime": "2023-12-31T08:51:33+00:00" }, { "message_id": "81b2a77f142e88f99e10105f4187eef7528e0d31a9d5486fc058f124a427a8b3", "sticker": null, "text": "org.hibernate.PersistentObjectException: detached entity passed to persist: com.vet.petclinic.domain.entities.PetEntity", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-12-31T09:39:31+00:00" }, { "message_id": "2f8ffef2a4edf5ae756475b36b5439f912e82ba563bb3ddf11e92280ea2dabe7", "sticker": null, "text": "CAN SOMEONE HELP me debug this prolem", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "81b2a77f142e88f99e10105f4187eef7528e0d31a9d5486fc058f124a427a8b3", "datetime": "2023-12-31T09:39:50+00:00" }, { "message_id": "aa5fac922b625ab89e04d79e382792c17dc6237ab4d61262212a57d99cdd3222", "sticker": null, "text": "bug fixed, thanks", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2023-12-31T09:45:38+00:00" }, { "message_id": "7cab5794a653d16201203a1c8f6336172136712ae24b939a15a4af4cc08382a1", "sticker": null, "text": "Yep", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "826d4690e854e8538a410e845f236af55ba898c961a9478f7555613d8dc72d29", "datetime": "2023-12-31T10:50:38+00:00" }, { "message_id": "494c017737bb55c456fdf93dc3dee3405476dbf36e48684bf1d7a8e961960d85", "sticker": null, "text": "How to get the job at Microsoft as a Java developer guys?", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2023-12-31T19:25:20+00:00" }, { "message_id": "646064fde19f313b976b5df759c86fbc178aaeeaa0251fca36af10374f4e5035", "sticker": null, "text": "Does it require diploma (Bachelor certificate)?", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "494c017737bb55c456fdf93dc3dee3405476dbf36e48684bf1d7a8e961960d85", "datetime": "2023-12-31T19:26:02+00:00" }, { "message_id": "db250682b09e4f00c8746aa85b8d6fa4a351942fa4137ecd37c2fcd3d6485adc", "sticker": null, "text": "Yes so bad.", "from_id": "0c12ce2356582242799d813d432d5be421633c3942155c2009baf767bc3796ac", "reply_to": "826d4690e854e8538a410e845f236af55ba898c961a9478f7555613d8dc72d29", "datetime": "2024-01-01T01:27:12+00:00" }, { "message_id": "937e4c81b59f5bf66cf2e73654e6e0866a076453f8db341109395c4ea607a302", "sticker": null, "text": "Happy new year", "from_id": "914704e2d4aacd3bbaab1178f7e2b42ed965c206b001be2879159d5053a1d0ba", "reply_to": null, "datetime": "2024-01-01T04:25:50+00:00" }, { "message_id": "f27e34f07b371f43f0875e609310da793ea7bc89c03c23063e0fa2ee9b237370", "sticker": null, "text": "String str = \"**Hello World**\\n**From The Republic of Karakalpakstan**\\n**In Central Asia**\nSystem.out(str);", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-01T05:25:32+00:00" }, { "message_id": "b5523fa0d03fa52b3dfa1a4f900f8fc7cfddabe171a0fcf5e89d7c3ce4c0d1c0", "sticker": null, "text": "Asalamu Alaykum everyone🤝🌚", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-01T20:33:51+00:00" }, { "message_id": "165b9d37396bea7341a1fe980ae04d6e609f4099f88090c0cbcc7cadbc7f6d08", "sticker": null, "text": "Wa'alaikum us salam", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "b5523fa0d03fa52b3dfa1a4f900f8fc7cfddabe171a0fcf5e89d7c3ce4c0d1c0", "datetime": "2024-01-01T20:40:35+00:00" }, { "message_id": "888f17e692661cb283eabe1c42f648ed49c9f5e388a619503e528d10d0141f09", "sticker": null, "text": "Where are u from bro", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "165b9d37396bea7341a1fe980ae04d6e609f4099f88090c0cbcc7cadbc7f6d08", "datetime": "2024-01-01T20:43:27+00:00" }, { "message_id": "11f980cf0a543a3b195b2cb75b589b8b22e299bd6f364b2f4aeab69ec1038db9", "sticker": null, "text": "Im java developer guys from The Republic of Karakalpakstan in the Central Asia. Guys if u have some issue at java tasks i would help you", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-01T20:46:36+00:00" }, { "message_id": "774c0f0948ea2124bf6fcefe070de4c14bcd5ff2b9cd07bab26d45b5e868ff65", "sticker": null, "text": "Where can I get a part-time job?", "from_id": "bc53a85a9a57d83150e23afef9c944355189556fd0b1eb556c2a47beaf5e4e6a", "reply_to": null, "datetime": "2024-01-02T01:50:59+00:00" }, { "message_id": "94075b26ff6e4c3e48b6a6ea8a0d4a3e26dec1850debdeadd2cef8f5a135fb0f", "sticker": null, "text": "Pakistan...", "from_id": "a0ca6b1553c87f5e697c60d51c0ff909a392a670b086d421492536fea9d9e0ac", "reply_to": "888f17e692661cb283eabe1c42f648ed49c9f5e388a619503e528d10d0141f09", "datetime": "2024-01-02T02:14:03+00:00" }, { "message_id": "232f2229e58db83458e9860b4eaf684ea48273cf01bded0765a5ca479c8d0bd5", "sticker": null, "text": "Why rely on the uncertainty of technical analysis? Losses are ever-present. I opt for more dependable methods. I'm part of the channel (' RadiantLynx_31 ' - search for this term on Telegram) led by a prominent figure in the crypto industry. Join him to profit from successful pumps; he orchestrates and ensures their success.", "from_id": "1d9d4e47dc0786dda73672e8f342158e42f1fd99794c8b4a2dc6c5bf15a666c3", "reply_to": null, "datetime": "2024-01-02T07:12:29+00:00" }, { "message_id": "d54e2b510e10532fc3708da768115beaf99bd9705159e88a4112124bb525e6ea", "sticker": null, "text": "hello everyone can someone help with out research pls 😭😭😭 a home automation system code using c++ thank you guys 😭😭😭", "from_id": "0f35ffb87b0ed8db30fb481eef44a756732f741f995ee9dfbcf9df331e4516fc", "reply_to": null, "datetime": "2024-01-03T05:25:16+00:00" }, { "message_id": "412970b0ae43c7d7979dc59c0e7699136b0cb9b719591cdc93a069080cb91051", "sticker": null, "text": "Is anyone using Hyperskill.org premium?", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": null, "datetime": "2024-01-03T19:20:51+00:00" }, { "message_id": "bab624c8b1effae3f3ed2dea3098ccc2235400a57d56bc0ec77caa69fbcb2032", "sticker": null, "text": "Github?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "d54e2b510e10532fc3708da768115beaf99bd9705159e88a4112124bb525e6ea", "datetime": "2024-01-03T19:57:24+00:00" }, { "message_id": "58bb4e98b25813b33e8467192cd3d765bb15978be183430d94027996fa9f2d19", "sticker": null, "text": "@#USER is who Admin?", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-03T20:36:50+00:00" }, { "message_id": "625552b34720efaa9b23846625e598d137eda9729d997b7ee449e4c48cd8eb6c", "sticker": null, "text": "I meant is she programmer or not)", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "58bb4e98b25813b33e8467192cd3d765bb15978be183430d94027996fa9f2d19", "datetime": "2024-01-03T20:37:12+00:00" }, { "message_id": "e91dae89589e97f45b40e5843ccc8316163f1a1e62878d7875bbf5fdaab73336", "sticker": null, "text": "Did they reach out to you privately?", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "625552b34720efaa9b23846625e598d137eda9729d997b7ee449e4c48cd8eb6c", "datetime": "2024-01-03T21:22:26+00:00" }, { "message_id": "19ab1f57b74cc323181fb13691d083e1442743364d2c0bfa450f8e68c9e5ec1b", "sticker": null, "text": "No", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "e91dae89589e97f45b40e5843ccc8316163f1a1e62878d7875bbf5fdaab73336", "datetime": "2024-01-03T21:22:57+00:00" }, { "message_id": "727f6bbee04985ddbb894330b413f0b403b483632d5b40555c250b2a10c269f4", "sticker": null, "text": "Just i saw her profile and shameless photo setted on her profile", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-03T21:23:21+00:00" }, { "message_id": "8c29c6362a13dc1293c19f839ffdc60d69a55a55d3c6962a08c396812e396a93", "sticker": null, "text": "Then i think she is shameless", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-03T21:24:24+00:00" }, { "message_id": "4a80a6b07edf8695fa1ffbcde365d64cd5e0f27a90367bc4c3fc7684667cd859", "sticker": null, "text": "Here", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-03T21:24:25+00:00" }, { "message_id": "ab9837f639691bb2b5cda080891621be7213a641fa805673005d3a24a183e4ec", "sticker": null, "text": "Idk we get a lot of fake accounts, bots and scammers contacting and inviting ppl to groups.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2024-01-03T21:24:28+00:00" }, { "message_id": "5dfdda657110583e1ae4a11bb435e687584072a09368c1d265d844e72ffc1c96", "sticker": null, "text": "Aa thanks for attention sir", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "ab9837f639691bb2b5cda080891621be7213a641fa805673005d3a24a183e4ec", "datetime": "2024-01-03T21:24:47+00:00" }, { "message_id": "8487412527f67c8928a46a72ab7ffc6b56f4901df2d87a49416d7543e9914e35", "sticker": null, "text": "Ma’am and you’re welcome", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "5dfdda657110583e1ae4a11bb435e687584072a09368c1d265d844e72ffc1c96", "datetime": "2024-01-03T21:25:00+00:00" }, { "message_id": "e6457b4bfe1e4876f6599afdf68e69b8c7144e834139ba49e3a32a5e2c174bf9", "sticker": null, "text": "@#USER hello, I got an OA from a company to design a page in flutter and use some API, I didn't know how to do this ..can you please help 🙏🙏.. ???", "from_id": "6c191bd6b5b1a813e30c7d6600dba78346920ccc2a003f45d90458fc4c201663", "reply_to": null, "datetime": "2024-01-03T22:16:58+00:00" }, { "message_id": "8e941577d277463c68aaeaf458fa6e846738b778f88358a079ee4d52c2d324d1", "sticker": null, "text": "I would but no knowledge abt flutter.\nI can help on APIs in Java", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "e6457b4bfe1e4876f6599afdf68e69b8c7144e834139ba49e3a32a5e2c174bf9", "datetime": "2024-01-03T22:43:28+00:00" }, { "message_id": "aec60715a32e522a37999e6b05d8423b7f0ca456772b9db47e385123a6a28da2", "sticker": null, "text": "Thanks but I've to design the page in flutter only....", "from_id": "6c191bd6b5b1a813e30c7d6600dba78346920ccc2a003f45d90458fc4c201663", "reply_to": "8e941577d277463c68aaeaf458fa6e846738b778f88358a079ee4d52c2d324d1", "datetime": "2024-01-03T23:11:26+00:00" }, { "message_id": "19a8c9b66b07c0f7a2a6b8fd7a4dba937561a422cc3433a36485a292a94a0d66", "sticker": null, "text": "anyone can help me regarding this???", "from_id": "6c191bd6b5b1a813e30c7d6600dba78346920ccc2a003f45d90458fc4c201663", "reply_to": null, "datetime": "2024-01-03T23:11:31+00:00" }, { "message_id": "62cf8a0ddf25e61b5a27f317795a0f9822340292edcbc2c6afe1f742d7c5ef3e", "sticker": null, "text": "is this a toy project to get hired?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "aec60715a32e522a37999e6b05d8423b7f0ca456772b9db47e385123a6a28da2", "datetime": "2024-01-03T23:35:07+00:00" }, { "message_id": "f89bb926f2876a9ce3f341969623866a8a33ca44ae187c61bccf18f143ebe43d", "sticker": null, "text": "Yea", "from_id": "09e2d2b344b4036d6781227c294f2883515e7d3fd22820aaca36f36bbe408a3c", "reply_to": "826d4690e854e8538a410e845f236af55ba898c961a9478f7555613d8dc72d29", "datetime": "2024-01-03T23:39:00+00:00" }, { "message_id": "85a06954c6dd810270c687ad907b1f9bd9df56e1855206f1d17aa0f053a32210", "sticker": null, "text": "wdym?", "from_id": "0f35ffb87b0ed8db30fb481eef44a756732f741f995ee9dfbcf9df331e4516fc", "reply_to": "bab624c8b1effae3f3ed2dea3098ccc2235400a57d56bc0ec77caa69fbcb2032", "datetime": "2024-01-04T10:33:24+00:00" }, { "message_id": "ceda25c649ef49ba66f5c5021024ffc0cae731c010489772ffd5cd195462ed9f", "sticker": null, "text": "I meant you should check an already existing project on github", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "85a06954c6dd810270c687ad907b1f9bd9df56e1855206f1d17aa0f053a32210", "datetime": "2024-01-04T10:37:20+00:00" }, { "message_id": "d9567aa04bb7d34da695903f5c675840fff4e56183f84c63389b9fe9b39a0d40", "sticker": null, "text": "okay let me check thank you", "from_id": "0f35ffb87b0ed8db30fb481eef44a756732f741f995ee9dfbcf9df331e4516fc", "reply_to": null, "datetime": "2024-01-04T10:43:37+00:00" }, { "message_id": "c89f8c8dcc4e2856aaaa85e70ba60d84108c92913533747d17aded04814d9c32", "sticker": null, "text": "Hello.. I've DM you about the details.. kindly check", "from_id": "6c191bd6b5b1a813e30c7d6600dba78346920ccc2a003f45d90458fc4c201663", "reply_to": "62cf8a0ddf25e61b5a27f317795a0f9822340292edcbc2c6afe1f742d7c5ef3e", "datetime": "2024-01-04T12:25:33+00:00" }, { "message_id": "da2126dab0e6c8ffe18459fbe91aa579b1ecada500b75c2413f0611cdcb6d4ba", "sticker": null, "text": "at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:178) ~[jackson-databind-2.15.3.jar:2.15.3] can someone please help me debug", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-04T13:06:16+00:00" }, { "message_id": "6604a27a50282e8ea42aa4a896e9f2891f70c7f907cfdf17fcef145a513abfe4", "sticker": null, "text": "help me debug please", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "da2126dab0e6c8ffe18459fbe91aa579b1ecada500b75c2413f0611cdcb6d4ba", "datetime": "2024-01-04T13:06:25+00:00" }, { "message_id": "da87b2c83a67981191f2b902f8eac37a28a4814e73390bdd9a80d73fa41309b3", "sticker": null, "text": "41", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "6460b25284509c023f70bdc9f27a69a009069679ba7e843d61b1d329fb7201a7", "datetime": "2024-01-04T14:44:30+00:00" }, { "message_id": "bdf0a56fc40fd2331da999ea448339d876d581d7fd343c98f5dab3d0cb32a169", "sticker": null, "text": "5", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-04T14:44:37+00:00" }, { "message_id": "925e319008ce4b159def1e03a89c11c6af416b32e76f575c129ad7313f8eada0", "sticker": null, "text": "😅😅", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "da87b2c83a67981191f2b902f8eac37a28a4814e73390bdd9a80d73fa41309b3", "datetime": "2024-01-04T14:44:45+00:00" }, { "message_id": "f99abec020acb266ab4228798fc21e02778f2dbc3efdf89f128b0049211a5de7", "sticker": null, "text": "not funny 😁", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "925e319008ce4b159def1e03a89c11c6af416b32e76f575c129ad7313f8eada0", "datetime": "2024-01-04T14:45:19+00:00" }, { "message_id": "dcf7a3abe740fd453fa45df6912db9f6aa4a4a5a5813d42d5c4deb9059e136eb", "sticker": null, "text": "Yeah", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "f99abec020acb266ab4228798fc21e02778f2dbc3efdf89f128b0049211a5de7", "datetime": "2024-01-04T14:45:35+00:00" }, { "message_id": "03a6736e786e72614438912be934762058b0c8221e4684f279624ca968c2ae09", "sticker": null, "text": "Hi guys", "from_id": "67aa6092da770277cf154039904b2f74f2e5872b207b56ae921c5b68cf3d856d", "reply_to": null, "datetime": "2024-01-05T13:52:49+00:00" }, { "message_id": "d7ad6ba162be5f9c7305383c837b407414f178f0e46a090f663b188b290da20c", "sticker": null, "text": "any spring boot course suggestions?", "from_id": "67aa6092da770277cf154039904b2f74f2e5872b207b56ae921c5b68cf3d856d", "reply_to": null, "datetime": "2024-01-05T13:53:12+00:00" }, { "message_id": "9084239fe5ef23e12babbe953724cf914c12ffb0e51a582e63eac06030cf7995", "sticker": null, "text": "in my bio", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "d7ad6ba162be5f9c7305383c837b407414f178f0e46a090f663b188b290da20c", "datetime": "2024-01-05T15:07:21+00:00" }, { "message_id": "fd22625f5bf62ba1e7c7fb7ec154f1ca0b7af7f3d941c2607954ee520096402c", "sticker": null, "text": "*** \n* * *\n\n* * *\n***\nI need output like this in java program by using for loop metho in a  square pattern and the size is 5.", "from_id": "29b7d0e2af2886378a338f03fb6291ffd1329493c009857c4854c7c01d5357c6", "reply_to": null, "datetime": "2024-01-08T18:41:42+00:00" }, { "message_id": "6efb72e26897c79e850579390dc42a2115dc86fe8d9552cce99db55ebe25a59e", "sticker": null, "text": "ribbon is configured in eureka server or api gateway?", "from_id": "6f35daec844f6f3851271f960fe8c802d374fc624dd1873a60c0f90464779bf5", "reply_to": null, "datetime": "2024-01-08T19:24:53+00:00" }, { "message_id": "b2fb55d89b09e4ed6ed3f9f485474c7e9d18b3b671a763ebf574f249988d97bf", "sticker": null, "text": "Try solving it as you understand in English, then translate the logic to code. Hope this helps", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "fd22625f5bf62ba1e7c7fb7ec154f1ca0b7af7f3d941c2607954ee520096402c", "datetime": "2024-01-08T19:28:06+00:00" }, { "message_id": "9ac676784fc963707570ae8fef80ee37738fd7de8fc232d1b6c36be831bf6e7d", "sticker": null, "text": "Happy New Year", "from_id": "53138ca532684e5dc2cd8df7e3ffc6012a2802c76afd097b8cddb3e727b1d1d8", "reply_to": null, "datetime": "2024-01-09T20:42:17+00:00" }, { "message_id": "4fddd5ab67415052b4f55f8f72054002d1476da01052b5c75b0cb779b620aba5", "sticker": null, "text": "☕ vs 🐍 ?", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-10T08:50:26+00:00" }, { "message_id": "c9cf3da3283df050f6b7e539e6e3a6241bf00c5a0a17b881471407a645cf7d9a", "sticker": null, "text": "We are looking for Java programer", "from_id": "063edba738198aed713847a33b4ca7cda1af3c6585a7d7c219ebfc7b8a7460b1", "reply_to": null, "datetime": "2024-01-10T12:10:06+00:00" }, { "message_id": "6974561bf3bda698a513cde9bd12493e5d8e768e12be762ef9fbff8ddec85c35", "sticker": null, "text": "Wassap", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-10T13:20:45+00:00" }, { "message_id": "79bcefb9a64bad14e6dbaedaee961bdb8524ff0911613b2bb015bbee62637262", "sticker": null, "text": "devs", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": null, "datetime": "2024-01-10T13:20:51+00:00" }, { "message_id": "9cfb8024737a23ece6ca4619a47cd677864ba4e066745c394e6906950c23d64b", "sticker": null, "text": "HTML 💪", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": "4fddd5ab67415052b4f55f8f72054002d1476da01052b5c75b0cb779b620aba5", "datetime": "2024-01-10T17:34:25+00:00" }, { "message_id": "7e4e0fb14991220680f21bf32c3ae4e8f971698de771677005d9d0940be571be", "sticker": null, "text": "yes tell me", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "c9cf3da3283df050f6b7e539e6e3a6241bf00c5a0a17b881471407a645cf7d9a", "datetime": "2024-01-11T02:00:30+00:00" }, { "message_id": "a2480753cc9b7f28b9bb0501aaa1a0fee36e15924c36c1df9587b8d11becc1af", "sticker": null, "text": "Without doubt it is Strong", "from_id": "d6ea8b078823fa301aa97c4a3b3836f58e215506695b0df1ffecdd46339cd135", "reply_to": "9cfb8024737a23ece6ca4619a47cd677864ba4e066745c394e6906950c23d64b", "datetime": "2024-01-11T03:21:27+00:00" }, { "message_id": "f158f3060051cb8bdb91a669a883fa8642c4380fa48eab604cf14595a2cd318f", "sticker": null, "text": "Hi", "from_id": "0d6fc5ebcc19e20754af3565490f24f7f11207e31b949da386f455937f4eb7db", "reply_to": null, "datetime": "2024-01-12T10:33:56+00:00" }, { "message_id": "8df7269e6c8280c2f5be864006e0761c5c88c370d6e5e1457f18d4112fc32cc1", "sticker": null, "text": "Good evening. Does anyone know any way (even among various scripts) to find out the availability of TicketOne seats?\nI'll explain:\nI would like to know the availability, in number, of the tickets sold by TicketOne, such as Vivaticket (e.g. for the grandstand \"250 available\" and not \"average availability\").\nThank you", "from_id": "1cd5d8ecbe85a126b41fdbdd804319bc493bee9a444b35ec9ab15065141201dc", "reply_to": null, "datetime": "2024-01-12T19:47:29+00:00" }, { "message_id": "82b2890a23efcfeadb57cb2c6786f515ed15c7e4bc75845e25fb8db1d80a97bb", "sticker": null, "text": "Sendria is a gangster", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": null, "datetime": "2024-01-12T22:34:33+00:00" }, { "message_id": "77b5db8287e86ea545539991ad7c1aaa64b4836d3dfd6f653e9d0f56cc49353d", "sticker": null, "text": "Still waiting for java programming", "from_id": "1e1e0b46f18426675a463952a251534dde0c413100c56c88d7f0dcff8b694e55", "reply_to": null, "datetime": "2024-01-12T22:47:48+00:00" }, { "message_id": "8adfa5ad93d03689b663656ac2269cdf57fc647da3c4aa8e3dafc3fcbd7eb925", "sticker": null, "text": "Is it better choice to learn spring or spring boot instead of advanced java? Advanced java that includes jakarta EE or basically JSP, jdbc, etc. Those are legacy now IG and current trends are spring or spring boot. So is it a good choice to skip jakarta EE ??", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2024-01-13T03:25:14+00:00" }, { "message_id": "8eeb35fb00c9003a8826a99cf0487bdebf7597386d78cf3a0cbe5a791f5b87fa", "sticker": null, "text": "Not sure bit the EE should be quite important, the more you learn the better you become so i would not skip it just out of curiosity", "from_id": "438f7bb423962efd226c7d97889a41b0ea57a9511100e9ab191b652cfec38d87", "reply_to": null, "datetime": "2024-01-13T04:37:50+00:00" }, { "message_id": "8c97ee7dd695418a1ca5a82cebbcea94121642953fd00a58046fcef417076efb", "sticker": null, "text": "I want MultiPOS woocommerce", "from_id": "2dfb9d340361a37c39fd71e99b708aba1488f96efac41fa799afb5f988b9da1b", "reply_to": null, "datetime": "2024-01-14T03:46:57+00:00" }, { "message_id": "0dfe1f173874f73dafe8e04645810ed6320e8a9443da37ce947da19db1db8b5b", "sticker": null, "text": "Bi", "from_id": "e474321a1bc5c942e34985e9d00f04f496fbfc5e6a722570811d7dc376a35a07", "reply_to": "b608066ded0c47d16ebb0b9d26f0a6dff20d1fa62e59c52e1c261b4114ce4151", "datetime": "2024-01-14T12:07:13+00:00" }, { "message_id": "a76bdc342aaf818b195296b91de753b97b7ce1b9db250f7ba1d90e8b9932ffa2", "sticker": null, "text": "Hi", "from_id": "e474321a1bc5c942e34985e9d00f04f496fbfc5e6a722570811d7dc376a35a07", "reply_to": null, "datetime": "2024-01-14T12:07:17+00:00" }, { "message_id": "be5c1d7638fc0529529b450cccb3988f839584ae349c0f82a50db42489c03482", "sticker": null, "text": "I from brasil", "from_id": "e474321a1bc5c942e34985e9d00f04f496fbfc5e6a722570811d7dc376a35a07", "reply_to": null, "datetime": "2024-01-14T12:07:23+00:00" }, { "message_id": "0e5140d9ff9b4110028600492b35094af470d9322ae06d8e598823b917ea20c9", "sticker": null, "text": "Can you help?", "from_id": "e474321a1bc5c942e34985e9d00f04f496fbfc5e6a722570811d7dc376a35a07", "reply_to": null, "datetime": "2024-01-14T12:07:37+00:00" }, { "message_id": "468407706020fd2fe29eb90daa73409249a05fc0462f7a410a5f6481ec3a28b1", "sticker": null, "text": "Send me a message", "from_id": "e474321a1bc5c942e34985e9d00f04f496fbfc5e6a722570811d7dc376a35a07", "reply_to": null, "datetime": "2024-01-14T12:08:16+00:00" }, { "message_id": "1a314230ecf2b7949584901190a6a60445e966f90d51939ccb0b41b4667ebe02", "sticker": null, "text": "Ok", "from_id": "e474321a1bc5c942e34985e9d00f04f496fbfc5e6a722570811d7dc376a35a07", "reply_to": null, "datetime": "2024-01-14T12:08:45+00:00" }, { "message_id": "8680b63d31a629bd3cc84fce2c9374ebaee4792df8b94869c29bd9b9679baf08", "sticker": null, "text": "Hello any Tips for SDE 2 Java Engineer", "from_id": "67aa6092da770277cf154039904b2f74f2e5872b207b56ae921c5b68cf3d856d", "reply_to": null, "datetime": "2024-01-14T18:17:10+00:00" }, { "message_id": "d60c311e0258a7aced6947a7fc2a49134bd32ffa044864a6423934c4b6c982f1", "sticker": null, "text": "For preparing interview", "from_id": "67aa6092da770277cf154039904b2f74f2e5872b207b56ae921c5b68cf3d856d", "reply_to": null, "datetime": "2024-01-14T18:17:25+00:00" }, { "message_id": "80412a35e4ad89ead4fc8116a3b77676d314acd4d65f94eec69c60a00414d02e", "sticker": null, "text": "I'm quite interested", "from_id": "40adf7b64a906fbdbaa4f7f831e549d71613511bb54d9c049c0161e11518e47b", "reply_to": "c9cf3da3283df050f6b7e539e6e3a6241bf00c5a0a17b881471407a645cf7d9a", "datetime": "2024-01-16T12:04:20+00:00" }, { "message_id": "e7e99f1c14fafbba31450ad4dcc001075853e058ff6fd4eadcd0d324e6345614", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b8d877fa4ddcd58bab05bf7d6f0603b22928fd65be9d561558931318a87104fc", "reply_to": null, "datetime": "2024-01-16T12:22:19+00:00" }, { "message_id": "59846f92efe7b499ef3e488f471e782d851ed800fd6030a799761f1bcda0934f", "sticker": null, "text": "Why java backend developer skills is take time more?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2024-01-17T06:35:33+00:00" }, { "message_id": "35fb3b57a87f41445b4b5c7c18136558d42d18a8be6823dd9541e812db13bb48", "sticker": null, "text": "languages ​​in the backend are themselves more difficult than in the frontend", "from_id": "db0a1422dbc3bcf05c3a656c4c1703d26be4104b4d54178f15626eb2f276be0f", "reply_to": null, "datetime": "2024-01-17T07:34:43+00:00" }, { "message_id": "81df3f01be834aed691cb828191ec35ec42ed0ee83448152d9fbbc5afa35fbaa", "sticker": null, "text": "Nothing is difficult, it's just your mindset", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-17T09:00:27+00:00" }, { "message_id": "4d7555a849980288fb253033c0bcf42cab3d3bb74d340625934017e9821c35c2", "sticker": null, "text": "Definitely", "from_id": "1e1e0b46f18426675a463952a251534dde0c413100c56c88d7f0dcff8b694e55", "reply_to": null, "datetime": "2024-01-17T09:06:00+00:00" }, { "message_id": "73145ea4d725f0d2f4dc7abe8306a2b5779f78059b0dd43cea6894e6fb06a011", "sticker": null, "text": "How to make a program that will compute for the perimeter of the rectangle.", "from_id": "e63db62843f1577ea686ca40ecd05c4b8279a9abc027c34c7ce873dd2e6f2b68", "reply_to": null, "datetime": "2024-01-18T05:05:34+00:00" }, { "message_id": "8859795816a48b2b9b161f90ee976932bee07816b670fb9302d4a3fc7c2be56d", "sticker": null, "text": "which language?", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "73145ea4d725f0d2f4dc7abe8306a2b5779f78059b0dd43cea6894e6fb06a011", "datetime": "2024-01-18T12:58:27+00:00" }, { "message_id": "4d30d9769f1e4d4be45bb84ed357e5182b131982acc670b5986a3867b0a9fff4", "sticker": null, "text": "``` \nclass Solution {\n public static void main(String[] args) {\n int width = 10;\n int height = 5;\n\n System.out.println(\"Perimeter is \" + perimeter(width, height));\n }\n\n private static int perimeter(int width, int height) {\n return 2 * (width + height);\n }\n\n}```", "from_id": "85705ed40190dc6984439d12bd363424ab34dda7972bb10997fa30823e78b7c4", "reply_to": "73145ea4d725f0d2f4dc7abe8306a2b5779f78059b0dd43cea6894e6fb06a011", "datetime": "2024-01-18T14:55:16+00:00" }, { "message_id": "2fc4183ad05b98051f7aa71fbe067c0a47d8cd1313eacc6b12eacca7c6740b79", "sticker": null, "text": "Thank you my friend", "from_id": "e63db62843f1577ea686ca40ecd05c4b8279a9abc027c34c7ce873dd2e6f2b68", "reply_to": null, "datetime": "2024-01-18T15:20:26+00:00" }, { "message_id": "68a22622c9b5a83667a2d24e08bfeb67d152264cb3b1d3a69affc2df34b7ef9b", "sticker": null, "text": "Thank you for your help response", "from_id": "e63db62843f1577ea686ca40ecd05c4b8279a9abc027c34c7ce873dd2e6f2b68", "reply_to": "4d30d9769f1e4d4be45bb84ed357e5182b131982acc670b5986a3867b0a9fff4", "datetime": "2024-01-18T15:23:21+00:00" }, { "message_id": "d6910016104c9b99b472caa86daa6a5629ec18baeebe76f087221a6929d6e568", "sticker": null, "text": "public class RectanglePerimeter {\n public static void main(String[] args) {\n // Hardcoded values for length and width\n double length = 5.0;\n double width = 3.0;\n\n double perimeter = calculatePerimeter(length, width);\n\n System.out.println(\"Perimeter of the rectangle: \" + perimeter);\n }\n\n // Method to calculate the perimeter\n private static double calculatePerimeter(double length, double width) {\n return 2 * (length + width);\n }\n}", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "73145ea4d725f0d2f4dc7abe8306a2b5779f78059b0dd43cea6894e6fb06a011", "datetime": "2024-01-18T16:23:50+00:00" }, { "message_id": "cc864033edd8892c583f0948f16b3ae520d5883ea390bd0b95aaa904c45320e7", "sticker": null, "text": "Have you tried to google it once? Plus now a days AI is helping too. Dont want to be rude but this is atleast what you should be doing before asking a question.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-01-18T16:24:49+00:00" }, { "message_id": "74aa9ba5b7f686c6fd754a6d8dd23a35949d56ffde780b503e181119367586ab", "sticker": null, "text": "import java.util.Scanner;\n\nclass Solution {\n public static void main(String[] args) {\n // Create a Scanner object to take user input\n Scanner scanner = new Scanner(System.in);\n\n // Prompt the user to enter the width\n System.out.print(\"Enter the width: \");\n int width = scanner.nextInt();\n\n // Prompt the user to enter the height\n System.out.print(\"Enter the height: \");\n int height = scanner.nextInt();\n\n // Close the scanner to prevent resource leak\n scanner.close();\n\n // Calculate and display the perimeter\n System.out.println(\"Perimeter is \" + perimeter(width, height));\n }\n\n private static int perimeter(int width, int height) {\n return 2 * (width + height);\n }\n}", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": "73145ea4d725f0d2f4dc7abe8306a2b5779f78059b0dd43cea6894e6fb06a011", "datetime": "2024-01-18T18:07:24+00:00" }, { "message_id": "47682be4e49efa3b7f5f062a996439dae746d4c738f972b4e952a14c1055a281", "sticker": null, "text": "FYI, i just asked and AI tool to generate this answer for you. Lol", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "d6910016104c9b99b472caa86daa6a5629ec18baeebe76f087221a6929d6e568", "datetime": "2024-01-18T18:21:59+00:00" }, { "message_id": "6d398b904574c56756ae1ec6c15991cd6daad44c1f405f2635cdd4c7332cff29", "sticker": null, "text": "8", "from_id": "a31323df0aea0b82ca07d330227a37e6357a6974271e4449cd3d67d8e52f7136", "reply_to": null, "datetime": "2024-01-18T20:30:29+00:00" }, { "message_id": "c11853bfd37a0ed990279170c902dcad9283cb2669f2fed502ef1ebaee44d2ea", "sticker": null, "text": "How much tym it would require to learn MongoDB, Kafka, rest and fast APIs and spring boot?", "from_id": "4bbe7a652f1c420587408515ae38d03d4edda920eb8d353fd3d88257df306e48", "reply_to": null, "datetime": "2024-01-19T06:42:56+00:00" }, { "message_id": "22662d069a267e0ff2e0a64bed07f9ba2092103c012ec8ea0b63bdbc1d603489", "sticker": null, "text": "Ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "0200629583382c4db0e7f3447efb76aca44ae58b7babc9e96d36d3df456b61c1", "datetime": "2024-01-20T02:19:29+00:00" }, { "message_id": "6f4e03cbf8fab7809d3fdc91a24a8a55f7ef18ff2cc2186da57228d719ec9352", "sticker": null, "text": "16", "from_id": "68972eea7f555da46fda8a18a2e765b36dfa6940f09ca05cb52fc08c6e4cc46b", "reply_to": null, "datetime": "2024-01-21T13:30:13+00:00" }, { "message_id": "5002098227c8eb7a6d32c1c0df0f3c6af4478c8019a6be6066aa735d8b3f6ca3", "sticker": null, "text": "Because on the backend there are much more problems to solve, therefore more techs for those problems exist, and more \"how to\" and \"how to not\" to learn.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "59846f92efe7b499ef3e488f471e782d851ed800fd6030a799761f1bcda0934f", "datetime": "2024-01-21T20:30:53+00:00" }, { "message_id": "2bef5b900065ec1500474bdef4c13795e4d08d1a98efb7e082aaff994899aa04", "sticker": null, "text": "This is not an AD group buddy. Please take your business elsewhere.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "8e4bf97eff8df51786ede2e5a51be27586dcf3dbcfafff74948807e2631c4d32", "datetime": "2024-01-23T15:55:26+00:00" }, { "message_id": "c304a618c62a75a4b015b5d139bf3b301e947079d7e7bdf05b21f86eb4a31230", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2024-01-24T10:41:39+00:00" }, { "message_id": "e781ddf505a3cc02b27afaad0226a59ef7d456500e51081e22cc6add10cca4d6", "sticker": null, "text": "Hi", "from_id": "ff32c9a64db26c635bf9b6744280156ecfd2ef116030352b64ea7218852f43ff", "reply_to": null, "datetime": "2024-01-24T17:29:54+00:00" }, { "message_id": "313fb2740303a14d024afcdc95250ff16080e6a6e53911cdfce3b060e687d0c0", "sticker": null, "text": "I have a dought\nIn polymorphism when if a declare 2 methods \nint max(int a,int b, int c){\n}\nint max(int a,int b,int c=0){\n}\nAnd call the method\nmax(1,2,3)", "from_id": "ff32c9a64db26c635bf9b6744280156ecfd2ef116030352b64ea7218852f43ff", "reply_to": null, "datetime": "2024-01-24T17:31:48+00:00" }, { "message_id": "1a3a80a9b333d4f2b8933cde8da4ab99ece8e099cc08d79c98b4bbaf793418ad", "sticker": null, "text": "which method will be called and y if error y", "from_id": "ff32c9a64db26c635bf9b6744280156ecfd2ef116030352b64ea7218852f43ff", "reply_to": null, "datetime": "2024-01-24T17:32:07+00:00" }, { "message_id": "f9edee600275434576e6128e8d36c63c1171b01dc776f225961f86cd114d9203", "sticker": null, "text": "U are writing the same method twice and java doesn't allow the duplicate methods either name of the method should be different or parameters should be different or order of type of the parameters should be different", "from_id": "a781684e9cc3c9b541a41da5cf00817072ba2cc21521b28f5f3a27193780d5cf", "reply_to": "313fb2740303a14d024afcdc95250ff16080e6a6e53911cdfce3b060e687d0c0", "datetime": "2024-01-24T17:37:37+00:00" }, { "message_id": "4679e3b37afecf65b2ec4b6019f87ff95ab60212185c77e23611289481483bde", "sticker": null, "text": "I am a beginner in programming!", "from_id": "e228df544e414bf1af8cbba004074a9754e9c68c156ddf8c7c942b6a4d0e8509", "reply_to": null, "datetime": "2024-01-24T19:50:26+00:00" }, { "message_id": "4f559c81f57d22793d1e75d3e078cda0c36d3e8a9632eb367269f4f7dd41411d", "sticker": null, "text": "Any types to start before start learning programming languages?💯", "from_id": "e228df544e414bf1af8cbba004074a9754e9c68c156ddf8c7c942b6a4d0e8509", "reply_to": null, "datetime": "2024-01-24T19:50:52+00:00" }, { "message_id": "7ba29bcc21f2ead2ee58d089a05e416e6492c00c560a9a22b59c8cd435bc05e8", "sticker": null, "text": "What's the fundamentals of programming?", "from_id": "e228df544e414bf1af8cbba004074a9754e9c68c156ddf8c7c942b6a4d0e8509", "reply_to": null, "datetime": "2024-01-24T19:54:00+00:00" }, { "message_id": "c557f2735a9ae925fc3cb511067e84ec8d799599f538562bfcc107843755f391", "sticker": null, "text": "Please 🙏", "from_id": "e228df544e414bf1af8cbba004074a9754e9c68c156ddf8c7c942b6a4d0e8509", "reply_to": null, "datetime": "2024-01-24T19:54:10+00:00" }, { "message_id": "d7eac1dc2049606d7c2d0687c906232a465434ee93965687321f83240194982e", "sticker": null, "text": "Hi, Salah where you from", "from_id": "2c87054e049e207b72e0267a146ff371b49e1ca7c2bb94b497cadd64433ed435", "reply_to": null, "datetime": "2024-01-25T10:25:35+00:00" }, { "message_id": "9344e2fb40ee55af7eae53a241a388696756c7d1603f7ee51cce46cce642d99f", "sticker": null, "text": "?", "from_id": "2c87054e049e207b72e0267a146ff371b49e1ca7c2bb94b497cadd64433ed435", "reply_to": null, "datetime": "2024-01-25T10:25:37+00:00" }, { "message_id": "a740df50544df4edf9081ff18c66e5078b3f82ecab386aa5cfa33ee9360b28fc", "sticker": null, "text": "You can learn Data Structures and Algorithms, then try to implement them in the language you learn", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "4f559c81f57d22793d1e75d3e078cda0c36d3e8a9632eb367269f4f7dd41411d", "datetime": "2024-01-26T05:57:10+00:00" }, { "message_id": "c3b621b56f584848330b376fc3545f8776e2ea1725f6d35d9ae062a27280a0fd", "sticker": null, "text": "I'm from Algeria!", "from_id": "e228df544e414bf1af8cbba004074a9754e9c68c156ddf8c7c942b6a4d0e8509", "reply_to": "d7eac1dc2049606d7c2d0687c906232a465434ee93965687321f83240194982e", "datetime": "2024-01-26T06:23:04+00:00" }, { "message_id": "894d7302584b111c7cdc0fe056f47c748a8a8832e0924962bbfb705a66a17efa", "sticker": null, "text": "Thank you so much 🙏", "from_id": "e228df544e414bf1af8cbba004074a9754e9c68c156ddf8c7c942b6a4d0e8509", "reply_to": "a740df50544df4edf9081ff18c66e5078b3f82ecab386aa5cfa33ee9360b28fc", "datetime": "2024-01-26T06:23:16+00:00" }, { "message_id": "19e42207d3e0594d9ad5d399a492732afff8773b85cfd490bbddd1896e99df41", "sticker": null, "text": "Hi, everybody. I have a quite complex question regarding Java Spring Boot. May i share my stackoverflow question link here so maybe someone can answer it?", "from_id": "8705af78e5f40e704f472992a0e64c3fc118925436f7c16aeccff1c1c69de7c7", "reply_to": null, "datetime": "2024-01-27T10:48:43+00:00" }, { "message_id": "c6496946812eb09cc274ad3ab7d8150ec4d72f520f38c12dc659cc04040c42b4", "sticker": null, "text": "pls share", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "19e42207d3e0594d9ad5d399a492732afff8773b85cfd490bbddd1896e99df41", "datetime": "2024-01-27T18:04:24+00:00" }, { "message_id": "0f8b61e08ab6174d01be559d8cd2f4bb67a66d5c20a0887f31dd9b63f648e965", "sticker": null, "text": "Thank you so much", "from_id": "8705af78e5f40e704f472992a0e64c3fc118925436f7c16aeccff1c1c69de7c7", "reply_to": "c6496946812eb09cc274ad3ab7d8150ec4d72f520f38c12dc659cc04040c42b4", "datetime": "2024-01-27T20:39:06+00:00" }, { "message_id": "5692ea7f757f2f917baa01a777fb0188b4a6a66aa545b5be909d5ef6d3253636", "sticker": null, "text": "Wait i can't send link in here 😢", "from_id": "8705af78e5f40e704f472992a0e64c3fc118925436f7c16aeccff1c1c69de7c7", "reply_to": null, "datetime": "2024-01-27T20:41:51+00:00" }, { "message_id": "51cd2d6326248cf42d338755f625d37a05030c6e694df0bb1341719b04483c23", "sticker": null, "text": "Give some space in link", "from_id": "43e8556463442a0a496267ecdf72e41c814028e28124da745e85a8d40ba33c12", "reply_to": "5692ea7f757f2f917baa01a777fb0188b4a6a66aa545b5be909d5ef6d3253636", "datetime": "2024-01-27T20:42:20+00:00" }, { "message_id": "fcd99ad501643abf0eac04e058c0e0ce1e9f21c119594eed7e8ffc19b347676a", "sticker": null, "text": "And then try to send", "from_id": "43e8556463442a0a496267ecdf72e41c814028e28124da745e85a8d40ba33c12", "reply_to": null, "datetime": "2024-01-27T20:42:26+00:00" }, { "message_id": "d0a3e2aac7f972bf81cdfcf753fea48481f35f96c6e2ff7cbd432a3b7e74ca65", "sticker": null, "text": "Okay", "from_id": "8705af78e5f40e704f472992a0e64c3fc118925436f7c16aeccff1c1c69de7c7", "reply_to": "51cd2d6326248cf42d338755f625d37a05030c6e694df0bb1341719b04483c23", "datetime": "2024-01-27T20:43:34+00:00" }, { "message_id": "749fbe6ce6a24ea316490fe3ac7a859fb0cb5a32503b5f0c6051bde9cb802e8b", "sticker": null, "text": "shorturl(dot)at/ekCHL", "from_id": "8705af78e5f40e704f472992a0e64c3fc118925436f7c16aeccff1c1c69de7c7", "reply_to": null, "datetime": "2024-01-27T20:43:53+00:00" }, { "message_id": "eb966da7e0d1b5e862477a352f8d07c87a6212518749b0bf3cae1be89d96cfa3", "sticker": null, "text": "How about that? if it can't be accessed, please let me know", "from_id": "8705af78e5f40e704f472992a0e64c3fc118925436f7c16aeccff1c1c69de7c7", "reply_to": null, "datetime": "2024-01-27T20:44:52+00:00" }, { "message_id": "0e884b725c64ed74b00b54df992d994d55b5b13f0d294ef6edc453a6a7a2112f", "sticker": null, "text": "you have a constructor that takes string and int, you need to add another constructor that takes only int. right now its looking for constructor with int param", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "749fbe6ce6a24ea316490fe3ac7a859fb0cb5a32503b5f0c6051bde9cb802e8b", "datetime": "2024-01-28T06:12:03+00:00" }, { "message_id": "e45bcfdbef8abac0e82f2b5503c58e6faed2cd4501289ab731fc2a920f6a01ee", "sticker": null, "text": "Hello. In the java file I have it says:\nimport org.bitcoinj.core.*;\nimport org.bitcoinj.params.MainNetParams;\nimport org.omg.PortableInterceptor.SYSTEM_EXCEPTION;\nWhen I run java file in Netbeans IDE it gives an error: package org does not exist.\nHow to fix this problem? How can I get these packages? I searched on the internet but couldn't find a solution.", "from_id": "9136e4db132b705c588bc3842306c4640e8b032ba33b241e5719e8975786c55e", "reply_to": null, "datetime": "2024-01-28T23:42:41+00:00" }, { "message_id": "a2c99d076fe65e79ea306b2a50c84ebb86a8b3e66d9cad240bb6c2e82c5d6eca", "sticker": null, "text": "Ensure that the package file i.e. jar file is in classpath, check system environment variables", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "e45bcfdbef8abac0e82f2b5503c58e6faed2cd4501289ab731fc2a920f6a01ee", "datetime": "2024-01-29T04:13:36+00:00" }, { "message_id": "b032682ba1a4ae68dd49c710c749bcaae6463eddcb37eb6f52d761aea7de0861", "sticker": null, "text": "Please tell me how to develop GTN web Application", "from_id": "ed293154e6d666b6286e441814abc75b47ddc7cf850291932e45be6ae625d6f4", "reply_to": null, "datetime": "2024-01-30T15:15:45+00:00" }, { "message_id": "cc268520e84dbb9d18274cc5fb3ffcd3d23d210981a1f5e51fcabdcbdc12a82f", "sticker": null, "text": "To develop a GTN (Global Trade Network) web application, you would typically follow these steps:\n\nDefine Requirements: Clearly define the requirements of your GTN application. Understand what features and functionalities it needs to offer, who the users will be, and what data it will handle.\n\nChoose Technologies: Select the appropriate technologies for your web application development. This includes choosing a programming language, frameworks, libraries, and tools that best suit your requirements. For example, you might choose Java/Spring Boot for the backend and React.js for the frontend.\n\nDesign Database Schema: Design the database schema to store the data required by your GTN application. Identify the entities, relationships, and attributes, and create a normalized database schema.\n\nBackend Development:\n\nSet up your development environment.\nDevelop the backend logic using your chosen programming language and framework. Implement features such as user authentication, authorization, data validation, and business logic.\nImplement RESTful APIs to communicate with the frontend and perform CRUD (Create, Read, Update, Delete) operations on the database.\nFrontend Development:\n\nSet up your frontend development environment.\nDesign the user interface (UI) and user experience (UX) of your GTN application. Create wireframes and design mockups to visualize the layout, navigation, and interactions.\nDevelop the frontend components and views using HTML, CSS, and JavaScript libraries/frameworks like React.js, Angular, or Vue.js.\nImplement features such as user authentication, form validation, data visualization, and real-time updates using AJAX or WebSockets.\nIntegration:\n\nIntegrate the frontend and backend components of your GTN application. Ensure that they communicate effectively via RESTful APIs or other communication protocols.\nTest the integration to verify that data flows smoothly between the frontend and backend without errors or inconsistencies.\nTesting:\n\nWrite unit tests and integration tests to verify the correctness and robustness of your GTN application.\nPerform manual testing to validate the application's functionality, usability, and performance.\nUse testing frameworks and tools to automate testing and identify and fix any bugs or issues.\nDeployment:\n\nDeploy your GTN application to a web server or cloud platform. Choose a hosting provider that meets your scalability, reliability, and security requirements.\nConfigure the server environment, set up databases, and install any necessary dependencies.\nMonitor the application's performance and usage metrics, and optimize the deployment configuration as needed.\nMaintenance and Updates:\n\nRegularly maintain and update your GTN application to fix bugs, address security vulnerabilities, and add new features or improvements based on user feedback.\nMonitor user activity and performance metrics to identify areas for optimization and enhancement.\nDocumentation and Support:\n\nDocument the architecture, design decisions, and implementation details of your GTN application for future reference and knowledge sharing.\nProvide user documentation and support resources to help users navigate and use the application effectively.\nBy following these steps, you can successfully develop a GTN web application that meets the needs of your users and stakeholders.", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "b032682ba1a4ae68dd49c710c749bcaae6463eddcb37eb6f52d761aea7de0861", "datetime": "2024-01-30T16:21:20+00:00" }, { "message_id": "d3d26f5eb796058c75b5e01aff01d5088c005daa056ef370584dab37c2ef30d4", "sticker": null, "text": "Can you share that with me?", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "18399fb89f52bc4664f69d1d4d4d676db2ada9408a3fad604b4a0ffeab71cc73", "datetime": "2024-01-30T18:12:00+00:00" }, { "message_id": "f9ab59f28a921e917615f0292e7717629a50b0734c32bd581bfd395fce8863c8", "sticker": null, "text": "hey guys", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-30T23:45:13+00:00" }, { "message_id": "62ad119c0684ae5863fb4bf12684b1e5a83e0c6b351fc5f49c55a2b0feadbb8d", "sticker": null, "text": "need help with a dsa question but i cant send images", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-30T23:46:06+00:00" }, { "message_id": "62849a1109983e54116acfcbdc35947898e1a46ff66c461ce72d7433a7a76cad", "sticker": null, "text": "Anyone who can volunteer to assist me? If you're very good with dsa", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T00:15:12+00:00" }, { "message_id": "66c325983bca6b5d630525a1af660a1a393ded6df643adf607048b1a3f75c240", "sticker": null, "text": "🇮🇹 🇮🇹STUDY IN ITALY🇮🇹 🇮🇹\n🇮🇹 🇮🇹WITH 100% SCHOLARSHIPS🇮🇹 🇮🇹\n\n📍Assured 100% scholarship which covers\n\n🇮🇹Tuition fees for Entire Degree Program\n\n🇮🇹Hostel Expenses as well\n\n🇮🇹Stipend of Rs. 12 TO 13 lacs for Masters & Rs. 15 TO 18 lacs for Bachelors\n\n🇮🇹Free access to 4th best Medical health Facility in the World\n\n🇮🇹1 Year Post Study Schengen Work Visa(Gateway to 26 EU Countries)\n\n🇮🇹Part-time & Full-time jobs available\n\n\n\nEDUCATION CRITERIA\n\n12th Completed & Pursuing Minimum 60%\nFor Masters - Minimum 50%-55% in Bachelors & if Bachelor Pursing then Minimum 50%-55% till Last Appeared Examination (Non-stem Courses)\nMinimum 60% in Bachelors & if Bachelor Pursing then minimum 60% Till Last Appeared Examination (Stem Courses)\n\n*For Bachelors Maximum 5 Years of Gap will be Acceptable and it Should be Justified\n. \n*For Masters Maximum 8 to 10 Years of Gap will be acceptable and it should be justified.\n\n 8 Universite's We Deal in\n\n IELTS 5.5 OR 6.0\n\n📍PART TIME SALARY PER HOUR APPOX 10 TO 11 EUROS\n \n\nScholarships abroad provide crucial financial support, enabling access to top-tier education, fostering global networking, enhancing career opportunities, and promoting merit-based education for a more equitable society.\n\nFOR MORE INFO. YOU CAN CONTACT US:\n📧 Email: INFO@#USER\n📞 Phone/WhatsApp: +91-98104 81174", "from_id": "cd82c20e2b65db9f370afbbd4def85ac18de74611f635d6579260928f1b1d3f0", "reply_to": null, "datetime": "2024-01-31T06:52:42+00:00" }, { "message_id": "8d2b6794f0ac18f2477ccb7dfc3b3ba568ea408a91e3caec9b73509005642cec", "sticker": null, "text": "Question: 10 of 11\nChoose the case in which you will apply the DFS or BFS algorithm on a graph to obtain the required result.\nChoose the correct option\nA.DFS will be used when you want to traverse to every vertex, so you will first go to all the children of each vertex you visit every time.\nB.DFS will be used when you want to traverse to every vertex, so you will first go to the lowest child of each vertex every time.\nC.BFS will be used when you want to traverse with lesser time complexity than DFS.\nD.BFS will be used when you want to traverse to every vertex, so you will first go to the lowest child of each vertex every time.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T21:46:25+00:00" }, { "message_id": "c567a4a4bd85b775a8d35603e91fbf563ead0e2fa67244385244d7acd22231fc", "sticker": null, "text": "if you're awake please help me", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "8d2b6794f0ac18f2477ccb7dfc3b3ba568ea408a91e3caec9b73509005642cec", "datetime": "2024-01-31T21:46:39+00:00" }, { "message_id": "d62ba39ebef51b3f8b4265050ae3044f2e8247662b4e6fa54b547ae6d3775f57", "sticker": null, "text": "Hi,I’m a beginner backend developer,I wanna ask you to help me ,I created a program which calculates squares,but when I write a big square,my method can’t return its,because value is too big for integer.How can I return a Long type ?", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:02:19+00:00" }, { "message_id": "dc77c40a9728bc17908b2f6702f759066b28a0e7eb82de0dbeaea1396a482ef7", "sticker": null, "text": "can you share the code?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "d62ba39ebef51b3f8b4265050ae3044f2e8247662b4e6fa54b547ae6d3775f57", "datetime": "2024-01-31T22:05:47+00:00" }, { "message_id": "e669723efae2505d9863db7c65d653cc8631df2f3b8cbacdcb21276bf69e1e3e", "sticker": null, "text": "Yes", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:06:02+00:00" }, { "message_id": "0c44b3ed218d911db0270ac7b173153296747c2a8705e2128cd39bd902d676f5", "sticker": null, "text": "please do, I'll try my best to help", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "e669723efae2505d9863db7c65d653cc8631df2f3b8cbacdcb21276bf69e1e3e", "datetime": "2024-01-31T22:06:38+00:00" }, { "message_id": "b94cdde1cf49a00878266a91f513a808dd4f04ef0d5b36d251b8e13803ac68aa", "sticker": null, "text": "class SwapAdjacentElements {\n \n static int Fon (int x,int d){\n int s=1; int f=1;\n\n for(;s<=d;s++){\n\n f*=x;\n\n }\n\n\n return f; }\n public static void main(String[] args) {\n\n System.out.println(Fon(16,19));\n\n }}", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:06:55+00:00" }, { "message_id": "177a513a47f304a1e5b4e893832a885ae98e904d8cee4fec39f41b7bc42a67a3", "sticker": null, "text": "I wanna return long type,but gives an error message", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:08:01+00:00" }, { "message_id": "21052e80d8918c4806a08fc628f2ef714c2ea72fa7a21aea8100083fa6405ace", "sticker": null, "text": "Writing me that must return integer,not long", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:08:44+00:00" }, { "message_id": "c7c928beb15ea4362c0ea1121ab4a9f8e0cf99b828a3206615b35f4de1d904bf", "sticker": null, "text": "change int to Long in the method type declaration", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "b94cdde1cf49a00878266a91f513a808dd4f04ef0d5b36d251b8e13803ac68aa", "datetime": "2024-01-31T22:11:10+00:00" }, { "message_id": "de49c0690d87e598e64ede0f21e66a4f40661500d1d588bdefed0e6056fb728e", "sticker": null, "text": "Do you mean value change on Long?", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:12:35+00:00" }, { "message_id": "199a7cf8c3bfa35aa026dbeb3a62d18ced095233edcc0b24660f0eda963b1585", "sticker": null, "text": "class SwapAdjacentElements {\n \n static Long Fon (int x,int d){\n int s=1; int f=1;\n\n for(;s<=d;s++){\n\n f*=x;\n\n }\n\n\n return f; }\n public static void main(String[] args) {\n\n System.out.println(Fon(16,19));\n\n }}", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:13:08+00:00" }, { "message_id": "0c1d92a028a5b6b23b7684e2307005ba0b5e527fd18394df28d71293f08c0846", "sticker": null, "text": "If it’s not difficult,could you send me example?", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:13:08+00:00" }, { "message_id": "e4980834c4bd1482206d175493f136627762dedb2b7a239e3469b1a8dc4850d7", "sticker": null, "text": "try this code", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:13:15+00:00" }, { "message_id": "a9df9af6663c32ab9546e22de25739f8cc30ca82f915ab5fe75635a1720d53d9", "sticker": null, "text": "O", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:13:19+00:00" }, { "message_id": "e3ed8dd2891bc6ee59e9bfe0a32edb9baebb9d0a5a8444d3f305389425ae1929", "sticker": null, "text": "Thx", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:13:22+00:00" }, { "message_id": "d5a85d667f768f0b655cf8ac52d2387135be1ed5c350ec67756433a1a7546aed", "sticker": null, "text": "That’s easy ,I’m distracted", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:14:26+00:00" }, { "message_id": "f4b12ddf0cdbb3a1b9f490322cf64da95a2c4e3573b3872b18eaa4db176696aa", "sticker": null, "text": "Thank you", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:14:34+00:00" }, { "message_id": "0ee8cd5dce11954b812c8ae036dba617841fd2c9ccf3e5c518e551d20cef4dd3", "sticker": null, "text": "lol, no problem", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:15:09+00:00" }, { "message_id": "2b23e3b2a9a93066de1b0aee923ec2034f23e59a927e9455f856e226c7876b1c", "sticker": null, "text": "did it work?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:15:11+00:00" }, { "message_id": "a1021828340861d753e7ce8e7d9c60e983bbcbba76bd59643badaafda045318b", "sticker": null, "text": "One second", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:15:22+00:00" }, { "message_id": "d1d3dfdf1f07f10f5f4bf544ccd191b1d713e4b12c26fc1fd6f1cc82d8f77961", "sticker": null, "text": "alright", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:15:27+00:00" }, { "message_id": "3e0ef8261313258b6e3d798dc126560ca05172f8102c98b396e91964e6383d78", "sticker": null, "text": "Yep", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:15:39+00:00" }, { "message_id": "29df4132ceddcde9f966450d43f7005dd7557d7e61fbc4be2ee2303a58fba988", "sticker": null, "text": "worked?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "3e0ef8261313258b6e3d798dc126560ca05172f8102c98b396e91964e6383d78", "datetime": "2024-01-31T22:15:51+00:00" }, { "message_id": "02c0fcfa6dac893b2997ab5e90844d57ff82acb8e9c0ceb2a5bca92a7cdc6067", "sticker": null, "text": "It works", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:15:51+00:00" }, { "message_id": "2c31d4318d262c8080999c97549d8752ba8fae5da369b8cda37e0ef25dc53b24", "sticker": null, "text": "cool, i'm happy i was able to help", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:16:03+00:00" }, { "message_id": "624448a02801d600576f7e820a729bcd9c36af6fd4034c76c569b04eeabb051d", "sticker": null, "text": "so next time you can try to understand the error to have more insight on a possible solution. All you need to know is the different kinds of return types (int, void, Long, String etc)", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:17:20+00:00" }, { "message_id": "80d74d493b57db105ced2b98502fadab556ee18a828c2fdaefdef60af4bc123a", "sticker": null, "text": "Im a beginner in this sphere,if you have been learning this for a long time. Maybe you have some advices?", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:17:51+00:00" }, { "message_id": "f6794e692b11ebd481f2691124963573ee9e6f136fcf17d67b7a9fe911fe420f", "sticker": null, "text": "learning the basics of everything should be overemphasised", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:18:58+00:00" }, { "message_id": "1d4747050001fe01626ff17d68431f9b468011f2a8da7c2d22d0ed7e90e05cb9", "sticker": null, "text": "I know it,but i have to be more concentrated 🥶", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": "624448a02801d600576f7e820a729bcd9c36af6fd4034c76c569b04eeabb051d", "datetime": "2024-01-31T22:19:34+00:00" }, { "message_id": "f235ab32bd7772171a4ba9cce8a3849e7ce7838ec0d10b6d57d6057d515444c9", "sticker": null, "text": "yop, calm your nerves next time", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:20:03+00:00" }, { "message_id": "e9f76e6993bc653eb44b5181e78946eec46dcc4025aa73e0f5c441b038183d66", "sticker": null, "text": "How long do you learn it ?", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:20:47+00:00" }, { "message_id": "c1b9f3e2f921a3dba3ac678c080329562d1a6b493f1194bec7cd2f4aa8392908", "sticker": null, "text": "In-depth understanding of how things work matters more, not the length of how long I study.. I understand concepts and then I move on", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "e9f76e6993bc653eb44b5181e78946eec46dcc4025aa73e0f5c441b038183d66", "datetime": "2024-01-31T22:22:03+00:00" }, { "message_id": "5dd7119894386b07255df13dd91abbe636b4ef4242f099a5f2c60284820ff608", "sticker": null, "text": "Telusko is a good go", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:22:27+00:00" }, { "message_id": "fec5265872724b356b98bae2fd377d6c0cb09b60da2f74a7ef37120b59310a57", "sticker": null, "text": "try out his free core java lesson on youtube", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-01-31T22:22:46+00:00" }, { "message_id": "339a0ccb51ab94c831a12ea6a0b512845186b4a03c16731bb6291fe091e62d05", "sticker": null, "text": "Thx,I’ve recently bought a course,trying to learn something,but it’s not enough,regularly search information in internet", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:24:52+00:00" }, { "message_id": "691c198cea5b6b74a088251f86d6f8bae93d1bcbe8fe9db2c2da43ee7cb0d0e2", "sticker": null, "text": "I came across this chat ,I think I will often to ask for helping 😅", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": "339a0ccb51ab94c831a12ea6a0b512845186b4a03c16731bb6291fe091e62d05", "datetime": "2024-01-31T22:26:07+00:00" }, { "message_id": "07ed7ed822fca39c02503913fe615dcb6001abd27b6557c5e9e33f746c230df8", "sticker": null, "text": "best place to be as a java dev", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "691c198cea5b6b74a088251f86d6f8bae93d1bcbe8fe9db2c2da43ee7cb0d0e2", "datetime": "2024-01-31T22:26:34+00:00" }, { "message_id": "15d30a1a4980775c9c7045a256b467e14bc4c00ccf7ee9f5b2e050c06825589d", "sticker": null, "text": "I think so", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-01-31T22:26:59+00:00" }, { "message_id": "9067b882f13f3509c75f591177a1fa6b3b4cd6f2cb19d0ddfeeedbbba7e45c33", "sticker": null, "text": "Anyone doing project?\nI have simple android project\n\n\nI will pay for this please let me know if anyone free to do this", "from_id": "e961d953cf7173431b873b171c4a72aa4e85bf16b7c39ffd8a0bf8ea911f8745", "reply_to": null, "datetime": "2024-02-01T09:53:52+00:00" }, { "message_id": "d1ae2507bbbe3f6fe3bac523b3607281601aeec468c5e839ab983d784fcde172", "sticker": null, "text": "details", "from_id": "f2a4f41982bcb8d7ce5c1d83cc1a1ae0327b7beafc31176c8f464d50ccac0b0a", "reply_to": "9067b882f13f3509c75f591177a1fa6b3b4cd6f2cb19d0ddfeeedbbba7e45c33", "datetime": "2024-02-01T13:41:27+00:00" }, { "message_id": "7334ed6e9ffb0a7b529cfbcc6da832e74e1089e1d55469c1630fd73d62948944", "sticker": null, "text": "I downloaded the bitcoinj-core 0.16.jar file and added it to the classpath but it still gives the same error.", "from_id": "9136e4db132b705c588bc3842306c4640e8b032ba33b241e5719e8975786c55e", "reply_to": "a2c99d076fe65e79ea306b2a50c84ebb86a8b3e66d9cad240bb6c2e82c5d6eca", "datetime": "2024-02-01T14:35:10+00:00" }, { "message_id": "0d0fc0ef734e2d493113dd50109794ef313277ed4586bb08f90c78444bf84c1b", "sticker": null, "text": "its better to use maven", "from_id": "6dd6c810cbc38223ddcb61f01b0b0e39a0d3bf21225a60b01324ca5a12dc5990", "reply_to": "7334ed6e9ffb0a7b529cfbcc6da832e74e1089e1d55469c1630fd73d62948944", "datetime": "2024-02-01T19:36:21+00:00" }, { "message_id": "9a27c17971b1e3c3b2c71a55a593b0a9b2c687ab67febb409c475929781b87b6", "sticker": null, "text": "try updating your project or cleaning it", "from_id": "6dd6c810cbc38223ddcb61f01b0b0e39a0d3bf21225a60b01324ca5a12dc5990", "reply_to": null, "datetime": "2024-02-01T19:36:35+00:00" }, { "message_id": "2a7161ab5371434f9df1dbbf815e4c0aaa7a81d5d598d2eda1b8103b39a37aef", "sticker": null, "text": "press right click and find update/clean", "from_id": "6dd6c810cbc38223ddcb61f01b0b0e39a0d3bf21225a60b01324ca5a12dc5990", "reply_to": null, "datetime": "2024-02-01T19:36:46+00:00" }, { "message_id": "7b1846b16594b321cc29fe1e8860bd8fa24fc157374889a3282acd06a3f49baa", "sticker": null, "text": "and make sure the jar fila is really there", "from_id": "6dd6c810cbc38223ddcb61f01b0b0e39a0d3bf21225a60b01324ca5a12dc5990", "reply_to": null, "datetime": "2024-02-01T19:37:05+00:00" }, { "message_id": "c7deae67edb88b36dc6ef96fa9944dddf9d1c916b4cd1c9579790b5ecd9bbfdf", "sticker": null, "text": "yes I can do it", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "9067b882f13f3509c75f591177a1fa6b3b4cd6f2cb19d0ddfeeedbbba7e45c33", "datetime": "2024-02-01T20:12:00+00:00" }, { "message_id": "f430e6aa08b37952214bbff364b692ddb3bc07ff6dd2b94ca375750ac04771f6", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8b692a941b105a9760a7fddb73f5f2b2fb0767e27d46c7abb7d2203bb7bbe212", "reply_to": null, "datetime": "2024-02-02T11:43:49+00:00" }, { "message_id": "e648e92a8d18b16b4a346bcf9ccfa05b7f26a46617715649317dca32d88cfaf7", "sticker": null, "text": "yes", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "9067b882f13f3509c75f591177a1fa6b3b4cd6f2cb19d0ddfeeedbbba7e45c33", "datetime": "2024-02-02T17:09:22+00:00" }, { "message_id": "535b292625bb5c59a0b698b6c5decf269ddcb65dfdbe74f0a3eb566cb40d3dfe", "sticker": null, "text": "Ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "77fb6063bb4f4a4f2c50ad4df29cd4674e89417f093107f87143f566cd5309ba", "datetime": "2024-02-03T04:26:22+00:00" }, { "message_id": "4a68fc94b9b2e0632aef6956f2d7445c617831e704d50b67ab0b163a2f8a3d5e", "sticker": null, "text": "Ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "d01e9952b7f640d328c6b1cc0295369975b11d7083840e6e49eb389e41e2191f", "datetime": "2024-02-03T04:26:46+00:00" }, { "message_id": "ac4a755ae0f0a6955e1281d0bd1ca668494199af1b15d01007b08a7953a91970", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "9136e4db132b705c588bc3842306c4640e8b032ba33b241e5719e8975786c55e", "reply_to": null, "datetime": "2024-02-03T17:35:18+00:00" }, { "message_id": "301bc5ea5fb42487fb4bf5f78fee3dfb58cdcdb403595822333f84865fc8ba8c", "sticker": null, "text": "Try maven clean & then maven build", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "ac4a755ae0f0a6955e1281d0bd1ca668494199af1b15d01007b08a7953a91970", "datetime": "2024-02-03T19:37:10+00:00" }, { "message_id": "655b365fcd9de358bf83e1da5b7c550e8940b0d3f80576d5fc774dd229b30faf", "sticker": null, "text": "If it still doesn't work try deleting this from your m2 repo directory then do a maven clean install again", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "301bc5ea5fb42487fb4bf5f78fee3dfb58cdcdb403595822333f84865fc8ba8c", "datetime": "2024-02-03T19:37:48+00:00" }, { "message_id": "e7d7b87bc4aa9cd90f440693bd6cd7a48456481f252c69b327d50176f244ee27", "sticker": null, "text": "It will download the resources freshly", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": null, "datetime": "2024-02-03T19:37:59+00:00" }, { "message_id": "13f20e4f91ce2b44a4b29a677ed5d58bc32d153e0ddd36bfec6a8230b4e344c1", "sticker": null, "text": "What should I delete from m2 repository? maven-clean-plugin?", "from_id": "9136e4db132b705c588bc3842306c4640e8b032ba33b241e5719e8975786c55e", "reply_to": "301bc5ea5fb42487fb4bf5f78fee3dfb58cdcdb403595822333f84865fc8ba8c", "datetime": "2024-02-03T22:39:44+00:00" }, { "message_id": "78429f99959722df20e3d0367fff647fea63e74018deed93f7d42b6e1efbd1d7", "sticker": null, "text": "Open the C:\\Users\\your user\\\\.m2\\repository\\org\\codehaus\\mojo\\exec-maven-plugin, there delete the subdirectory 3.1.0, if maven doesn't download it automatically, you can use this command:", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "13f20e4f91ce2b44a4b29a677ed5d58bc32d153e0ddd36bfec6a8230b4e344c1", "datetime": "2024-02-04T04:13:53+00:00" }, { "message_id": "7d7eff60f3ea51fb5e76b62f09b42a14a03833301df4c8d8bc89d0ef8d40237c", "sticker": null, "text": "This is the default location, if there is no need to go to the location you configured", "from_id": "82da4a433c662abb8736e09829f8f7006958d766107cd94c522dd6f3cf5e4385", "reply_to": null, "datetime": "2024-02-04T05:58:22+00:00" }, { "message_id": "5b51493c7a25c80854cf7e5ea81cbac6f0252232862a719e2582ec4f9d988143", "sticker": null, "text": "This is the default location. If it is not here, you need to go to the location you configured.", "from_id": "82da4a433c662abb8736e09829f8f7006958d766107cd94c522dd6f3cf5e4385", "reply_to": null, "datetime": "2024-02-04T06:00:06+00:00" }, { "message_id": "3d43cde37b8126fedd286b057cc858195d25636477873b792d96b750635b7cc7", "sticker": null, "text": "what", "from_id": "82da4a433c662abb8736e09829f8f7006958d766107cd94c522dd6f3cf5e4385", "reply_to": "32ca836609a26234362cc78150813c4640c753a32a6f6ce80f94cc389f727284", "datetime": "2024-02-04T09:56:29+00:00" }, { "message_id": "c304897175eb8367151460a2e9082691b53b47dd914799c71a525bef05c7b51f", "sticker": null, "text": "Can someone have example for Spring security 3+ ver.? with jwt filter", "from_id": "18ec4aaabc9200a5f6b509a90963ae516104f0ddbe47edc6fd9fb46371d0cd51", "reply_to": null, "datetime": "2024-02-04T13:08:45+00:00" }, { "message_id": "aeeb184a18a600a6d5c4cc0de7b0c7aba5d88f3668066501fcc42c9a7accf5f9", "sticker": null, "text": "Which command? Where should I write the command?", "from_id": "9136e4db132b705c588bc3842306c4640e8b032ba33b241e5719e8975786c55e", "reply_to": "78429f99959722df20e3d0367fff647fea63e74018deed93f7d42b6e1efbd1d7", "datetime": "2024-02-04T14:56:51+00:00" }, { "message_id": "735a8ec50adbaf57432cdbf9fdf16357b259eca4ecc8685525d0d4f35906ff0f", "sticker": null, "text": "Total messages: 133772", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-02-04T15:42:16+00:00" }, { "message_id": "e9c82a798d5abbc2c64d1ff12df1e06f4460631ec2b47f2abe92ccce1b785411", "sticker": null, "text": "What is Java?? Doubt", "from_id": "400e3653bfdd5988071d4926172594e5d1f75e0c6cd75d293670bc88d9a70f14", "reply_to": null, "datetime": "2024-02-05T18:27:16+00:00" }, { "message_id": "2c3902b9c0afbe1cb70a4f5c78823d54ca2d6f9a3588d09e1c3a26ce39212b72", "sticker": null, "text": "Hello, please give detailed advice. Is it possible to code for the chip with C Plus Plus? For example, chips that take control of a device and perform the device's activities with the connection they have with the system.", "from_id": "4182aa4006b9ca9f4d81187aebbf3e808ec557314d03e59b3cf3d402531bec8b", "reply_to": null, "datetime": "2024-02-06T07:47:07+00:00" }, { "message_id": "a82237ec0c20c5599d40ab9e8a6d4b48a0d524f6d20502d5e42de5ada0317352", "sticker": null, "text": "17", "from_id": "e00519f7b21299c48d333153b4f362d4752d08b21bec9f925011b961aac1a940", "reply_to": null, "datetime": "2024-02-06T17:15:55+00:00" }, { "message_id": "1326fc6d0c80fd14c5afc75864303c038df5e810c0cc96e4c0d538b699997ff5", "sticker": null, "text": "Any open source java developer here? I need your guidance", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-02-07T00:03:31+00:00" }, { "message_id": "2b4e20d939bf0c4b2401d1287441ca0f6678eb68ba163ea4180c1036aa0e36df", "sticker": null, "text": "Yahh", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": null, "datetime": "2024-02-07T06:28:58+00:00" }, { "message_id": "a8b7a07779fb1353fcad8782586d91c2dd0623394fe7c531f89931e600ce63e3", "sticker": null, "text": "19", "from_id": "1d294949b49c187e1d9e53361b849f892e7a6e7d47dba58012f1810b2cdbf1c9", "reply_to": null, "datetime": "2024-02-07T21:31:34+00:00" }, { "message_id": "b7a48c9ddc164edb130d076163bce8d65ef101c9038e6c19f63359fa837d6c8a", "sticker": null, "text": "?", "from_id": "80906f7bb2c5ddf7ae1f3cdc20b269849bcdf801b58478b2474c52441b9adc62", "reply_to": null, "datetime": "2024-02-07T22:24:25+00:00" }, { "message_id": "fc7bd317b06cbfdaedcf2bc66dfe9a6e4ea56e5e456267fa61b82338ba63eaac", "sticker": null, "text": "Phew", "from_id": "0edae752723a128b628bae5c3059c35f37ecf161addfbf569133ec989eb92935", "reply_to": null, "datetime": "2024-02-08T01:00:42+00:00" }, { "message_id": "789b77a886be95fb30a19370a073314f43576b30d55bd7cd76b5c1015dbd1d6e", "sticker": null, "text": "class SwapAdjacentElements {\n \n public static int Fon (int x,int d){\n int s=1; int f=1;\n\n for(;s<=d;s++){\n\n f*=x;\n\n }\n\n\n return f; }\n public static void main(String[] args) {\n\n System.out.println(Fon(16,19));\n\n }}", "from_id": "0edae752723a128b628bae5c3059c35f37ecf161addfbf569133ec989eb92935", "reply_to": null, "datetime": "2024-02-08T01:01:40+00:00" }, { "message_id": "726e44747f5a5f55fb3f07ab3b72ee75fc53f8e4063d866e2487c12873b2b7e2", "sticker": null, "text": "This right or", "from_id": "0edae752723a128b628bae5c3059c35f37ecf161addfbf569133ec989eb92935", "reply_to": "199a7cf8c3bfa35aa026dbeb3a62d18ced095233edcc0b24660f0eda963b1585", "datetime": "2024-02-08T01:02:04+00:00" }, { "message_id": "2caa1506df8b950dc3c933d3f0167867a3988dc00da3a8f974288ba9cdd66f8c", "sticker": null, "text": "`Long `is a boxed` long.` The larger type corresponding to` int `is` long `spelled with a small l.", "from_id": "5a7b3948a2f7d0b4d8dc6ab3950cdfce58a638e72fe4ce2dacf6120fc3083675", "reply_to": "624448a02801d600576f7e820a729bcd9c36af6fd4034c76c569b04eeabb051d", "datetime": "2024-02-08T01:14:02+00:00" }, { "message_id": "436e2ab402314fe74ad16644dd71f4bfe9a8bf65aa8a19401063ef6afc0f19fe", "sticker": null, "text": "7 I answerd it", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": null, "datetime": "2024-02-08T19:59:33+00:00" }, { "message_id": "c406be5750a053bc1d79e481e01684d3871f8e1886dc0e67b32224120c252241", "sticker": null, "text": "For embedded programming C is used rather than C++ because embedded devices are low on CPU, RAM & Storage. C++ executable and programming environment is heavier than C", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "2c3902b9c0afbe1cb70a4f5c78823d54ca2d6f9a3588d09e1c3a26ce39212b72", "datetime": "2024-02-09T11:35:23+00:00" }, { "message_id": "6a34cd7c57a231df703ddfd0df578103e19f4d71fc826303809d6a0d255bcc8b", "sticker": null, "text": "Check whether the package names are proper, secondly maybe this jar does not contain the packages you need. \n\nJar files are just zip files, you can extract them and check their content", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "0d0fc0ef734e2d493113dd50109794ef313277ed4586bb08f90c78444bf84c1b", "datetime": "2024-02-09T11:40:57+00:00" }, { "message_id": "3e129c1dfe6818ccebf2938ee368c7ae6cc749c216986ba9070296162ecdd6e8", "sticker": null, "text": "Hey everyone", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-09T13:35:48+00:00" }, { "message_id": "074f9773f35c7f125510f56a3584e31531f84021a44c94b52258e2e73948ccf2", "sticker": null, "text": "please i wrote a code i java and its running fine in the terminal but now i want to make it a standalone exe that can be run anywhere without intsaling the latest JDK version please can anyone help ?", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-09T13:37:31+00:00" }, { "message_id": "1b1d452d209e2c496d6ea2b6599d213795911ad9810dd8da941cf89d4271d3b5", "sticker": null, "text": "there are java to exe building tools available online, pls check", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "074f9773f35c7f125510f56a3584e31531f84021a44c94b52258e2e73948ccf2", "datetime": "2024-02-09T13:48:58+00:00" }, { "message_id": "c67bb4ffc9a96004c3700bb2fc2ff1cb5c9c02ff3155fb2ef5bd47fc4df66975", "sticker": null, "text": "Hi, thanks. Does that mean that C Plus Plus is not used at all?", "from_id": "4182aa4006b9ca9f4d81187aebbf3e808ec557314d03e59b3cf3d402531bec8b", "reply_to": "c406be5750a053bc1d79e481e01684d3871f8e1886dc0e67b32224120c252241", "datetime": "2024-02-09T14:56:47+00:00" }, { "message_id": "dee67435a576bd4f3e2b964a155a416bfa61e45a60f76bcf83b5d415f60c3594", "sticker": null, "text": "Anyone with a java code to build a calculator using string gui", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": null, "datetime": "2024-02-09T20:40:15+00:00" }, { "message_id": "6776347e76a1661d13107c8f1eccf6aa0c10a753d3ae08cd842cbfca5b43a353", "sticker": null, "text": "Did you check github?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "dee67435a576bd4f3e2b964a155a416bfa61e45a60f76bcf83b5d415f60c3594", "datetime": "2024-02-09T20:57:55+00:00" }, { "message_id": "7a37b8bc3ce522adc3e919a3df7cbdd66ab8a6d0a443d9169325f994a05737b6", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "dee67435a576bd4f3e2b964a155a416bfa61e45a60f76bcf83b5d415f60c3594", "datetime": "2024-02-10T01:20:26+00:00" }, { "message_id": "7942ca5d60b9bce67bf89340952d7785d5f1c0d8aa401ffc4185094265c5e825", "sticker": null, "text": "It is used but through transcompilers which generate assembly code", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "c67bb4ffc9a96004c3700bb2fc2ff1cb5c9c02ff3155fb2ef5bd47fc4df66975", "datetime": "2024-02-10T05:44:57+00:00" }, { "message_id": "1ccef50e991558b5dc7e99f348f10b04096726a6ce627e8d28201e86c9c9c1e5", "sticker": null, "text": "Do you convert C++ code to assembly?\n\n\nI am learning C++. I am looking for coding for hardware or chips.", "from_id": "4182aa4006b9ca9f4d81187aebbf3e808ec557314d03e59b3cf3d402531bec8b", "reply_to": "7942ca5d60b9bce67bf89340952d7785d5f1c0d8aa401ffc4185094265c5e825", "datetime": "2024-02-10T13:47:22+00:00" }, { "message_id": "064449e57627e42eaba3ddcacbe47d1de0c09353e7d41c31ee31a2dd6cb3703e", "sticker": null, "text": "Compiler will do it for you", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "1ccef50e991558b5dc7e99f348f10b04096726a6ce627e8d28201e86c9c9c1e5", "datetime": "2024-02-10T14:01:06+00:00" }, { "message_id": "410389d9018bfe1d8e25f288e0881929e06eafe9d23c35e194526f04fe3d043c", "sticker": null, "text": "Let me check", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": "6776347e76a1661d13107c8f1eccf6aa0c10a753d3ae08cd842cbfca5b43a353", "datetime": "2024-02-10T15:17:11+00:00" }, { "message_id": "3aa8fc14b1255ef6fc0a274583f3e2e9585068c99fd0265b6d1add0cab213212", "sticker": null, "text": "Please help me", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": "7a37b8bc3ce522adc3e919a3df7cbdd66ab8a6d0a443d9169325f994a05737b6", "datetime": "2024-02-10T15:17:19+00:00" }, { "message_id": "4c603b2ab61f9d2733cc76b53b3d8d4b8a0f9127f7e1cdb8c6c90d359f095c9f", "sticker": null, "text": "Could someone advise a python chat ?", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-02-10T17:10:24+00:00" }, { "message_id": "4888715eb707d6bd9d4e4005031350fdbbb4564e1c9e85dbfdd0505d7c5b0c5a", "sticker": null, "text": "Hello . I understand, thank you very much for your help.", "from_id": "4182aa4006b9ca9f4d81187aebbf3e808ec557314d03e59b3cf3d402531bec8b", "reply_to": "064449e57627e42eaba3ddcacbe47d1de0c09353e7d41c31ee31a2dd6cb3703e", "datetime": "2024-02-10T19:35:15+00:00" }, { "message_id": "b4620625743d98493c6ecedad0d4971a072af8a019e17665b9ff19a47899b8f8", "sticker": null, "text": "That's so easy.", "from_id": "ad5d17e495be8adf1d1071ff1ba50c08de0b757d302b196fe62802f2385fd775", "reply_to": "dee67435a576bd4f3e2b964a155a416bfa61e45a60f76bcf83b5d415f60c3594", "datetime": "2024-02-11T02:39:45+00:00" }, { "message_id": "8b09615f5394189dcd69d5344828d050746e8ca7d7ff169a4af53df08edd0859", "sticker": null, "text": "Ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "064449e57627e42eaba3ddcacbe47d1de0c09353e7d41c31ee31a2dd6cb3703e", "datetime": "2024-02-11T04:21:15+00:00" }, { "message_id": "f2f7ee0be6c8fe7378d8bca76c9858841b6224e5cc899d0e4fe7528070df583d", "sticker": null, "text": "Okay I have written a code in Java I’m just finding it hard to make it an exe", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-11T11:47:56+00:00" }, { "message_id": "98ef1cfd98029f6caceb339095c23cf5a0d07cde6ac9cbd6a71a9b635a4e5781", "sticker": null, "text": "Or even a jar file", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-11T11:48:02+00:00" }, { "message_id": "aea7c461e1c5a8aca7adb6e51561fe8311d21a03112a1bac22aedc730892d1ac", "sticker": null, "text": "Changed it into a jar file but for some reason its not running", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-11T11:48:31+00:00" }, { "message_id": "ac1f45a6a227abe4cf90e1147c39979619af491f8dbcbda230ff731e6a5a3b32", "sticker": null, "text": "When I click on it nothing happens", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-11T11:48:42+00:00" }, { "message_id": "0b695035e07b200d7a3d5444a949ec114cefd7ad2d4daabcc26054dda953e496", "sticker": null, "text": "Can anyone help please", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-11T11:50:41+00:00" }, { "message_id": "5b78d277ad4371a6d5b9a438359bc442d053a645cc5918e054f84acca2dfabf9", "sticker": null, "text": "which building u use? maven or gradle", "from_id": "18ec4aaabc9200a5f6b509a90963ae516104f0ddbe47edc6fd9fb46371d0cd51", "reply_to": "0b695035e07b200d7a3d5444a949ec114cefd7ad2d4daabcc26054dda953e496", "datetime": "2024-02-11T11:52:05+00:00" }, { "message_id": "6ebb49f76c50ec4c6510234706622c7e738905a4fa08e8597ffd4f5557509cee", "sticker": null, "text": "I used vs code then I changed it into a jar in the terminal", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": "5b78d277ad4371a6d5b9a438359bc442d053a645cc5918e054f84acca2dfabf9", "datetime": "2024-02-11T11:52:43+00:00" }, { "message_id": "05b6882388d743919c44460237846013cf08d67527fd1e6c0707fef6d8797f91", "sticker": null, "text": "Added main class to the manifest.txt still nothing", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-11T11:53:08+00:00" }, { "message_id": "6e0edeab6eb7747d9688cfe49b5b2860818981970486d6f4e0a02250b1186ab1", "sticker": null, "text": "use maven builder for this, he have some ui", "from_id": "18ec4aaabc9200a5f6b509a90963ae516104f0ddbe47edc6fd9fb46371d0cd51", "reply_to": "6ebb49f76c50ec4c6510234706622c7e738905a4fa08e8597ffd4f5557509cee", "datetime": "2024-02-11T11:54:48+00:00" }, { "message_id": "960b1570721b5521e64b0a80892f3d27f1e78ff624449a76b60a9cacac7a08ba", "sticker": null, "text": "Okay thanks I just looked it up I’ll try it and get back to you 👍", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": "6e0edeab6eb7747d9688cfe49b5b2860818981970486d6f4e0a02250b1186ab1", "datetime": "2024-02-11T11:55:43+00:00" }, { "message_id": "b0cba10041b91592e37360e90d6741d130e29fb8d90cd4556da3fbdf8ac3a145", "sticker": null, "text": "Help", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": "b4620625743d98493c6ecedad0d4971a072af8a019e17665b9ff19a47899b8f8", "datetime": "2024-02-12T17:27:05+00:00" }, { "message_id": "dcae2d53cf6cefee1ab481997918190115fa1f32e67505cbbfc5f93425790b6a", "sticker": null, "text": "Yes what can I do for you?", "from_id": "ad5d17e495be8adf1d1071ff1ba50c08de0b757d302b196fe62802f2385fd775", "reply_to": "b0cba10041b91592e37360e90d6741d130e29fb8d90cd4556da3fbdf8ac3a145", "datetime": "2024-02-12T20:07:07+00:00" }, { "message_id": "1d899fff9663dd0466f28f58ccab14111601f00bacc878d7d4c60fbd0c1941f4", "sticker": null, "text": "Guys is there anyone or their friend who is good in python and ML ? \n\nNeed a python script for a requirement, which will have ML...", "from_id": "b5ccccbadf900ce250cfc3d7c5c10d3479e374ec4caf16ee867124f05ac3f6d8", "reply_to": null, "datetime": "2024-02-13T04:47:39+00:00" }, { "message_id": "cc1acbaf6f5fb59b6b288e40bbc8d997b68f23ceca2ba241fcea9072f957150d", "sticker": null, "text": "Are you using some ML model or creating a new one? If using then its relatively straightforward", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "1d899fff9663dd0466f28f58ccab14111601f00bacc878d7d4c60fbd0c1941f4", "datetime": "2024-02-13T05:37:09+00:00" }, { "message_id": "446d3e24e01966fd07415d5a05b615ed0bbc5c18f67c419b37fc68263600c3a5", "sticker": null, "text": "Not using,\nneed a new model according to requirements. I tried with chat gpt but couldn't succeed", "from_id": "b5ccccbadf900ce250cfc3d7c5c10d3479e374ec4caf16ee867124f05ac3f6d8", "reply_to": "cc1acbaf6f5fb59b6b288e40bbc8d997b68f23ceca2ba241fcea9072f957150d", "datetime": "2024-02-13T09:38:27+00:00" }, { "message_id": "a5a9ff350a0552335fc6efcb79dc1127ed9bbb8c133953e56aebe0b967677814", "sticker": null, "text": "Do you have the java code", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": "dcae2d53cf6cefee1ab481997918190115fa1f32e67505cbbfc5f93425790b6a", "datetime": "2024-02-13T18:03:03+00:00" }, { "message_id": "6488dc78e168c9245f23dc2877cf87c08c31aeb3c44195e25b01e7ef28d8a263", "sticker": null, "text": "What kind of Java code do you want", "from_id": "9b1b9306e814e5201de872f27d1aac021ffa9c3658b34b48cabd18f7c07f21aa", "reply_to": null, "datetime": "2024-02-13T22:27:42+00:00" }, { "message_id": "c8c4f674cba20fec3358c1635a5411b37e9b55309a50f36834cedec71c73f2ff", "sticker": null, "text": "What code you want?", "from_id": "ad5d17e495be8adf1d1071ff1ba50c08de0b757d302b196fe62802f2385fd775", "reply_to": "a5a9ff350a0552335fc6efcb79dc1127ed9bbb8c133953e56aebe0b967677814", "datetime": "2024-02-14T03:06:50+00:00" }, { "message_id": "86570e3e4ab327ee69e5d2903860e015dacaa97dd48a3382c3801168ecbd4502", "sticker": null, "text": "A calculator with numbers constants like pi and e and also working trigonometric functions.It also must use all principles of OOP Java", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": "c8c4f674cba20fec3358c1635a5411b37e9b55309a50f36834cedec71c73f2ff", "datetime": "2024-02-14T19:44:41+00:00" }, { "message_id": "32655edcba333886f574eafbeb86732ab37ac2b9b5abe9e1f6f8d90a94d17010", "sticker": null, "text": "It will use packages java string as gui API and java.lang.maths as math api", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": null, "datetime": "2024-02-14T19:45:15+00:00" }, { "message_id": "7676b5fb058e6b16e6a1e340813677327da88e32a7e0e261dd575dd02303ebd8", "sticker": null, "text": "import javax.swing.*;\nimport java.awt.*;\nimport java.awt.event.ActionEvent;\nimport java.awt.event.ActionListener;\n\npublic class StringCalculatorGUI extends JFrame implements ActionListener {\n private JTextField textField;\n private JButton[] buttons;\n private String[] buttonLabels = {\n \"7\", \"8\", \"9\", \"/\",\n \"4\", \"5\", \"6\", \"*\",\n \"1\", \"2\", \"3\", \"-\",\n \"0\", \".\", \"=\", \"+\"\n };\n\n public StringCalculatorGUI() {\n setTitle(\"String Calculator\");\n setSize(300, 300);\n setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);\n setLayout(new BorderLayout());\n\n textField = new JTextField();\n add(textField, BorderLayout.NORTH);\n\n JPanel buttonPanel = new JPanel();\n buttonPanel.setLayout(new GridLayout(4, 4, 5, 5));\n\n buttons = new JButton[buttonLabels.length];\n for (int i = 0; i < buttonLabels.length; i++) {\n buttons[i] = new JButton(buttonLabels[i]);\n buttons[i].addActionListener(this);\n buttonPanel.add(buttons[i]);\n }\n\n add(buttonPanel, BorderLayout.CENTER);\n\n setVisible(true);\n }\n\n public void actionPerformed(ActionEvent e) {\n String command = e.getActionCommand();\n if (command.equals(\"=\")) {\n String expression = textField.getText();\n try {\n double result = evaluateExpression(expression);\n textField.setText(Double.toString(result));\n } catch (IllegalArgumentException ex) {\n textField.setText(\"Error\");\n }\n } else {\n textField.setText(textField.getText() + command);\n }\n }\n\n public double evaluateExpression(String expression) {\n // Add your expression evaluation logic here\n // You can reuse the evaluateExpression method from the previous code snippet\n // or implement a new evaluation method suited for GUI interaction.\n // This method should return the result of the expression.\n return 0.0; // Dummy return statement, replace it with your logic\n }\n\n public static void main(String[] args) {\n SwingUtilities.invokeLater(() -> new StringCalculatorGUI());\n }\n}", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "32655edcba333886f574eafbeb86732ab37ac2b9b5abe9e1f6f8d90a94d17010", "datetime": "2024-02-14T19:56:52+00:00" }, { "message_id": "f4387bd341c6e683551b3b57444f15ed662f5aaaabec40e3c16aef294921ffb5", "sticker": null, "text": "AI generated code. Modify as you need.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-02-14T19:57:12+00:00" }, { "message_id": "05c69142e234f20ea6a679c8abf92b20f1670dbeee2c226f5b0b9a41121fabdf", "sticker": null, "text": "Thanks", "from_id": "09e36a18bf19284e5bff072ab16b8ebda7b9cb2f58162e15fdb05b758ed5a814", "reply_to": "7676b5fb058e6b16e6a1e340813677327da88e32a7e0e261dd575dd02303ebd8", "datetime": "2024-02-14T20:00:27+00:00" }, { "message_id": "0f9c0a0f4d5cc2ad13c6e62823caa4af344d7d0daee2604bc976fb8a0690657b", "sticker": null, "text": "Hello", "from_id": "281c898ac94991875aca3832230bb17f944992eaf9a358c0d65d67bd5fe36628", "reply_to": null, "datetime": "2024-02-14T20:55:34+00:00" }, { "message_id": "c6d3b9fd40d56ddadd0e8729a65071f1cfd689c43c0049464aac9844c8151808", "sticker": null, "text": "👋", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "0f9c0a0f4d5cc2ad13c6e62823caa4af344d7d0daee2604bc976fb8a0690657b", "datetime": "2024-02-14T22:47:33+00:00" }, { "message_id": "1ae0a9e1f5c51df54ca5e1ad80bf01cc20bd779376a85ec02ddb083fd8cb870f", "sticker": null, "text": "sent u already in personal", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "86570e3e4ab327ee69e5d2903860e015dacaa97dd48a3382c3801168ecbd4502", "datetime": "2024-02-15T01:51:15+00:00" }, { "message_id": "f23dc04d8d5bc29dc8c2aad11baae9a5953e1c7b59ae9a77bb872184bc6e99c3", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2024-02-15T12:41:59+00:00" }, { "message_id": "d04d75c3079555b95afaff3a93cc1a7295d26c714a6fb22e7003140bc24e5020", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": "05c69142e234f20ea6a679c8abf92b20f1670dbeee2c226f5b0b9a41121fabdf", "datetime": "2024-02-15T15:17:50+00:00" }, { "message_id": "ef88edd7f159b2e975de9ff381e27ea3a4e3dd55844586e13360cdde226c3442", "sticker": null, "text": null, "from_id": "7834c8e56c932cad59b0f3e70118a7cfdf861a5ed621290a01095047610938c2", "reply_to": null, "datetime": "2024-02-15T23:59:57+00:00" }, { "message_id": "5f82f0bcdcf030b26d1219d8e7b46269bb9d39c251b5ea031528256dc6095f3e", "sticker": null, "text": "Hi guys", "from_id": "167a471d8d7c4c0a9f3ca2067d74c8c195cfbb9cbbb4662488c04c420920e68c", "reply_to": null, "datetime": "2024-02-17T07:30:51+00:00" }, { "message_id": "de3ae6fa836036c387faa8035f764c681b6cc7a3f01dcd4f57192efe827b72f7", "sticker": null, "text": "I'm new here", "from_id": "167a471d8d7c4c0a9f3ca2067d74c8c195cfbb9cbbb4662488c04c420920e68c", "reply_to": null, "datetime": "2024-02-17T07:30:57+00:00" }, { "message_id": "1ef4f40f120451e1e5ee2cd8354e73833def4855b89b5e2745c622805e82062a", "sticker": null, "text": "✋", "from_id": "167a471d8d7c4c0a9f3ca2067d74c8c195cfbb9cbbb4662488c04c420920e68c", "reply_to": null, "datetime": "2024-02-17T07:33:07+00:00" }, { "message_id": "15fd69fe4781f7e7851b7e92e1bbad69110c89b9b2c90b4507d27f78381b621c", "sticker": null, "text": "I need a Java project I can work on", "from_id": "167a471d8d7c4c0a9f3ca2067d74c8c195cfbb9cbbb4662488c04c420920e68c", "reply_to": null, "datetime": "2024-02-17T07:33:25+00:00" }, { "message_id": "60feb4d6311a5cc95e2c61941858d339987c87e01d7a90505d1f139088bbc80d", "sticker": null, "text": "Anyone here to help?", "from_id": "167a471d8d7c4c0a9f3ca2067d74c8c195cfbb9cbbb4662488c04c420920e68c", "reply_to": null, "datetime": "2024-02-17T10:17:20+00:00" }, { "message_id": "bb1e88db5bbea7f8a995794bec2659426559187fc8c95352ec828c9df8386e1c", "sticker": null, "text": "I need Java code", "from_id": "167a471d8d7c4c0a9f3ca2067d74c8c195cfbb9cbbb4662488c04c420920e68c", "reply_to": null, "datetime": "2024-02-17T10:20:34+00:00" }, { "message_id": "76d308a907a56a8b796430e6880c4492daf9ab9945c8d8f828df32006dc372bc", "sticker": null, "text": "Few Minutes to go for the Live Session TODAY\n\nCore Java & Full Stack JAVA @ 6:00 PM\nby Mr. Kishan\n\nDemo Link: zoom.us/j/83343645817\n-\nNaresh i Technologies", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2024-02-19T12:18:36+00:00" }, { "message_id": "7967fc5ea6d4b65b92a798f193f6000a6d77d8a3056ce7c31ef5d375a7fefd0c", "sticker": null, "text": "What is role of full stack java developer can anybody tell me", "from_id": "5a47816f258440d3ec848ed5bc8bda32bd74c96d632b8a5a72b42735ee32c9b2", "reply_to": null, "datetime": "2024-02-19T16:35:51+00:00" }, { "message_id": "db05187bda69a7a57951f1b937b76fc04197acedb89b28d8c61d2df1d95c0683", "sticker": null, "text": "Do Google and get instant response", "from_id": "a781684e9cc3c9b541a41da5cf00817072ba2cc21521b28f5f3a27193780d5cf", "reply_to": "7967fc5ea6d4b65b92a798f193f6000a6d77d8a3056ce7c31ef5d375a7fefd0c", "datetime": "2024-02-19T16:38:00+00:00" }, { "message_id": "e616ffb449819510c321c8ffb03f1b6b45a1780e0623a6943310cff739f9ded7", "sticker": null, "text": "Guys looking for support on Java Spring boot \n\nKindly DM me \n\nMust have 7-9Y exp \n\nThanks \n\nGuys looking for support on Java Spring boot \n\nKindly DM me \n\nMust have 7-9Y exp \n\nThanks \n\nGuys looking for support on Java Spring boot \n\nKindly DM me \n\nMust have 7-9Y exp \n\nThanks \n\n\nGuys looking for support on Java Spring boot \n\nKindly DM me \n\nMust have 7-9Y exp \n\nThanks", "from_id": "bf18c21de9c7151847009ea62f5044780f6bc382fd160693c1273bd8a8597e5a", "reply_to": null, "datetime": "2024-02-20T13:14:52+00:00" }, { "message_id": "d5b91088c98b7ea26b92d453bdbb757a832f48e82a59e80c0db51cdc5f9a72a5", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c9216857a0a98bdcf661bbed946f9653b1d1d75b81ff368900eb3f89093c5973", "reply_to": null, "datetime": "2024-02-21T05:28:20+00:00" }, { "message_id": "3d01196d59339273d535c791da36fd312e85337b085b0e8ea5c2a9a49c539968", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "f9d69d2bba00c604b7ba608e277e181815ba6800d3cbfbacb991c3aa985d9b5e", "reply_to": null, "datetime": "2024-02-22T06:14:26+00:00" }, { "message_id": "b8bc2fb76e92e61b3e6ddf4c3b369dc9037bd48f75471f4697f91224a1d966d2", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "9136e4db132b705c588bc3842306c4640e8b032ba33b241e5719e8975786c55e", "reply_to": null, "datetime": "2024-02-22T15:28:11+00:00" }, { "message_id": "802cf68f17ad449fcbeac417e0e3c5d5027c0a5ac81dfdcdb45b8cf6f083db1c", "sticker": null, "text": "how do ask my questions, if my messages keeps being deleted ?", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": null, "datetime": "2024-02-24T15:36:35+00:00" }, { "message_id": "7eebf61f3d610145a6cc91b04d76d3cd9fd9137fcf2d7bee786a0b9c6077ec16", "sticker": null, "text": "does anyone knows how to solve this problem \n\n\" Caused by: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES) \"?", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": null, "datetime": "2024-02-24T15:37:13+00:00" }, { "message_id": "8596056a78302740c7b6712ef334d73d1c403f4fe966c15b8dc5192f2dfbe2ff", "sticker": null, "text": "if it is okay to share knowledge, i could share screenshots of it. Web Application.", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": null, "datetime": "2024-02-24T15:38:11+00:00" }, { "message_id": "753b57a90e95c56f555adba026903cc6c2083675699438fd505af618352cccc6", "sticker": null, "text": "U-Sticker detects this as offensive text.", "from_id": "d312c73513f09eef697032464ee6debfffa4b208fd197f5e1b4c42a08c96ecf8", "reply_to": "8596056a78302740c7b6712ef334d73d1c403f4fe966c15b8dc5192f2dfbe2ff", "datetime": "2024-02-24T15:48:08+00:00" }, { "message_id": "2f3dd3357cc94e48d307af96b73d376978485daed514472eef5c9776e0b916f7", "sticker": null, "text": "22", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": "753b57a90e95c56f555adba026903cc6c2083675699438fd505af618352cccc6", "datetime": "2024-02-24T15:48:19+00:00" }, { "message_id": "d2798014bde2433eef57c18bfcd2b2ea8a5047ddf511947c4612305775336ad6", "sticker": null, "text": "university?", "from_id": "d312c73513f09eef697032464ee6debfffa4b208fd197f5e1b4c42a08c96ecf8", "reply_to": null, "datetime": "2024-02-24T15:48:33+00:00" }, { "message_id": "2b68fb573d6a15188ce7b298053f15ccb3ab084c45b0d64f722812dac5538de6", "sticker": null, "text": "if you study in college", "from_id": "d312c73513f09eef697032464ee6debfffa4b208fd197f5e1b4c42a08c96ecf8", "reply_to": "2f3dd3357cc94e48d307af96b73d376978485daed514472eef5c9776e0b916f7", "datetime": "2024-02-24T15:49:01+00:00" }, { "message_id": "c6d4fd981e002d5824dcacf85efe82e1d318a8c80f1f4bc34718b9a03389a166", "sticker": null, "text": "No one is good enough using spring boot !!!!", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": "2b68fb573d6a15188ce7b298053f15ccb3ab084c45b0d64f722812dac5538de6", "datetime": "2024-02-24T15:49:35+00:00" }, { "message_id": "9b3cdaa1b3a8284665b3b7199b7ef75a12f88b86700d27456058fb12df83daf1", "sticker": null, "text": "They only play video games😂", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": null, "datetime": "2024-02-24T15:49:49+00:00" }, { "message_id": "4684cc7caf647430cf59aee5de22ba67384786a7a02cdfc42f2ead67bf4dfab0", "sticker": null, "text": "it just a simple question", "from_id": "d312c73513f09eef697032464ee6debfffa4b208fd197f5e1b4c42a08c96ecf8", "reply_to": null, "datetime": "2024-02-24T15:49:56+00:00" }, { "message_id": "8debb78ae4d69f3b4e9487786bf71bd52ce8968c0389e812ee4b463a46b90be3", "sticker": null, "text": "your mysql password", "from_id": "d312c73513f09eef697032464ee6debfffa4b208fd197f5e1b4c42a08c96ecf8", "reply_to": null, "datetime": "2024-02-24T15:50:05+00:00" }, { "message_id": "905ec40f97171664fd408a2f2e5adad68a00ce375fde94292ad0392f84e1e64c", "sticker": null, "text": "is incorrect", "from_id": "d312c73513f09eef697032464ee6debfffa4b208fd197f5e1b4c42a08c96ecf8", "reply_to": null, "datetime": "2024-02-24T15:50:30+00:00" }, { "message_id": "e74b1e59a23e7273243acd70b7a2c7474337617f7aaa7aa552591bd61fdcd7f7", "sticker": null, "text": "I don't think so,I've set the same password.", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": null, "datetime": "2024-02-24T15:51:30+00:00" }, { "message_id": "9fe7a376bf3699455d77ff8cac16c7fa6ed99a497b780b352667c8c28360790a", "sticker": null, "text": "screenshots", "from_id": "d312c73513f09eef697032464ee6debfffa4b208fd197f5e1b4c42a08c96ecf8", "reply_to": null, "datetime": "2024-02-24T15:52:05+00:00" }, { "message_id": "93da4fc6b0769305004500b05d4dce9dc2eedd49d0651b2d73f839611bbd98bb", "sticker": null, "text": "Dm", "from_id": "a8a345d862e572e07c123e479625a86035627bfcbdbed8e692f0e78f8651f5c1", "reply_to": null, "datetime": "2024-02-24T15:52:24+00:00" }, { "message_id": "f89be2c0326b46db003d6ede570711a0af4ed091c3d789fcf38d7128b3ba6a8d", "sticker": null, "text": "Are you using mysql 8 or latest?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-02-24T20:02:51+00:00" }, { "message_id": "c3faaaf91cd22b747e23013ccc99297a16a9eb8c75ac1cedcfe1b6be6e53c1a4", "sticker": null, "text": "Hey", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "39ed933182d63126b38a4c9a0513f17ede4412ed5ee49b12c6b83d1eb6adf8ab", "datetime": "2024-02-24T20:30:49+00:00" }, { "message_id": "22a296e2aa15c74a394fa4013270fa65b362aa14d2477394914391b28bb411bd", "sticker": null, "text": "it's not a signal, you don't need to write your number :)", "from_id": "ca1d15604470136d023652440cf709a2b3221f279f7ee66efb9a93d237fdc750", "reply_to": "39ed933182d63126b38a4c9a0513f17ede4412ed5ee49b12c6b83d1eb6adf8ab", "datetime": "2024-02-24T21:09:38+00:00" }, { "message_id": "bb5fc8e7f8384792ff8283cb66c659f8f76bc3b3d1d63fa6f4b5842960b0f1ad", "sticker": null, "text": "Link expired dude", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "d1d520dba883a0b4e1fb7373846b1d91533ca2c926514234c6402f6df51fce6b", "datetime": "2024-02-27T20:03:23+00:00" }, { "message_id": "a3205e169096f6faff177fc9f6b87be541c6a7ba8be6abeb875ad50363e9bd6c", "sticker": null, "text": "🎯 Java expert proficient in front-end (HTML/CSS/JS) & back-end (Java/Spring Boot/Hibernate) web development.\n\n📌Naresh i Technologies\n\n🔴 Classroom & Online Training at KPHB Branch 🔴\n\n👉Attend a Free Demo On Full Stack Java Developer by Mr. Hari Krishna\n📅Demo On: 6th March @ 5:00 PM (IST)\n👉Hands-on-Learning - Lab sessions\n👉Self-paced Learning Materials\n👉Interview Preparation Skills\n \n🚀 Full-stack Java entails utilizing Java for both front-end (HTML, CSS, JavaScript) and 🌈 back-end (Java, frameworks like Spring Boot) development, including database interactions, security implementation, and deployment on servers or in the cloud.", "from_id": "4ed1f0508a4463ee08cc990f54683ced8be6a222cc485d3cef92e52c65572e7a", "reply_to": null, "datetime": "2024-02-29T09:55:43+00:00" }, { "message_id": "7ed204d197ec9bdc0f9bdbb503dd5f6727f80d75c5a71651a5609c39ada24402", "sticker": null, "text": "Hmm since that day i haven't been able to create an exe out of the code i wrote till now", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": "a3205e169096f6faff177fc9f6b87be541c6a7ba8be6abeb875ad50363e9bd6c", "datetime": "2024-02-29T20:25:56+00:00" }, { "message_id": "3cc76e967f11d222dc237936467c0961fd37a644c5ecf28a020454e616a1408b", "sticker": null, "text": "please who can help me i have a code i wrote in vscode but i haven't been able to successfully Create a standalone exe that i can run", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-29T20:27:19+00:00" }, { "message_id": "a44d5c9ee60bcf42a83cdd833b3a2a91abb2c31c04878fc2e9b61a2d3c33a197", "sticker": null, "text": "Please can anyone help 🙏🙏🙏😐", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-02-29T20:28:09+00:00" }, { "message_id": "5976c67c8bf3777a4618b204340e89415b5bd700696ad63e8c3791679d19f564", "sticker": null, "text": "hello", "from_id": "738359c31c59bf9bc8ecffdd198bfc55fe18f0e97591744e5bf9a0168f664402", "reply_to": null, "datetime": "2024-03-01T08:58:01+00:00" }, { "message_id": "eda5cecfa67e8b9b99626f8b344e795b749d991b2ff44f2adb7553ea911e910b", "sticker": null, "text": "can anyone explain me in Detail - Matrix in Java \n\" Given a square matrix of N x N. Print diagonal elements from\ntop left to bottom right.\nExpected time complexity O(N), not O(N^2\"", "from_id": "738359c31c59bf9bc8ecffdd198bfc55fe18f0e97591744e5bf9a0168f664402", "reply_to": null, "datetime": "2024-03-01T08:59:41+00:00" }, { "message_id": "4c214fbb0b73bc7fba84a1f33c38c4245272f713dd515d761d1190adf307b80b", "sticker": null, "text": "Hello, is it normal practice in a Java Spring project to test a website using Python Selenium? So far, from the minuses, I know that there is only compatibility with maven, gradle and other builders. And also reduced speed due to the world language Python. Lack of ability to use the SpringBootTest, Test annotation. And the big advantages are the speed of writing scripts for testing due to the simplicity of the language, the good “friendship” of Python with Selenium, and the language’s specialization for writing macros.", "from_id": "8b3ddeb6962f5d4eb937c7cd35871e4bf83833518bd65d4ace59ce7e74faea0e", "reply_to": null, "datetime": "2024-03-01T18:03:36+00:00" }, { "message_id": "93a3fdd8d90cff0f21e9e7285a7a4418330d03db88101215a49334e501dd0e20", "sticker": null, "text": "W chat", "from_id": "4457428a145efc7fd16a1970136a72568c4fcc1de32e53913ecc20b842749e29", "reply_to": null, "datetime": "2024-03-02T09:30:07+00:00" }, { "message_id": "077c856b2a77a981a6ce6c0cee71f12d5f7ae1208ea71a74ebd7d52f98e36ce4", "sticker": null, "text": "hi", "from_id": "fd15038b143b156cd741e642f9fca7bb5daa7927c9f582add08164a872914ca1", "reply_to": null, "datetime": "2024-03-04T11:20:38+00:00" }, { "message_id": "1080c00b28ab9e1a136e7fea8c82b03b04805dd824bec6d5c7e7f9b8e2f15272", "sticker": null, "text": "Hi", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "077c856b2a77a981a6ce6c0cee71f12d5f7ae1208ea71a74ebd7d52f98e36ce4", "datetime": "2024-03-04T12:35:43+00:00" }, { "message_id": "efb75fe86a91ad8d6a43b238770070f49a69213ad1d186844837256a41578825", "sticker": null, "text": "hi", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": null, "datetime": "2024-03-04T14:14:42+00:00" }, { "message_id": "312867adfb72c198c4fd3cfc515d439199dd61652f852942c6bbc7a326ff7824", "sticker": null, "text": "wanna ask", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": null, "datetime": "2024-03-04T14:14:47+00:00" }, { "message_id": "decc33efbe52607637aab3444ade524f9d8646b7d9692b77f21688be2df32f15", "sticker": null, "text": "function (_0x2321ca, _0x5ce140) {\n const _0x434295 = _0x2321ca();", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": null, "datetime": "2024-03-04T14:14:49+00:00" }, { "message_id": "4a8024241d788b6110b24fda626dd62017e44bc62d84d3e809e0714aa542f5f5", "sticker": null, "text": "if like this how to encode?", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": null, "datetime": "2024-03-04T14:14:56+00:00" }, { "message_id": "0a82ce854cc9dc68d97325dec0ab8c1ec9bc2b8d5ad6c212a7fb55c3d35f36cb", "sticker": null, "text": "Is this Javascript?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "decc33efbe52607637aab3444ade524f9d8646b7d9692b77f21688be2df32f15", "datetime": "2024-03-07T05:22:20+00:00" }, { "message_id": "1f502f77c780bb438110c83adbb2028db47483e12b2fc02219936b135822cec7", "sticker": null, "text": "Try searching reverse obfuscation tool", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2024-03-07T05:22:55+00:00" }, { "message_id": "5ab939225654bf22e1256c488ed8a3604e3c52638c225e5816957e3fdd20293f", "sticker": null, "text": "Yes java scrip. Ok thanks", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": null, "datetime": "2024-03-07T05:26:24+00:00" }, { "message_id": "12bd1304b2b2040bb58a50f4043b16e611e5069d7cf9c8db4805218f7434b320", "sticker": null, "text": "No problem", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "5ab939225654bf22e1256c488ed8a3604e3c52638c225e5816957e3fdd20293f", "datetime": "2024-03-07T07:05:12+00:00" }, { "message_id": "eb323705c788f1d110a5409fb0e76a9de1bb3a70b4e88f23c2600a990d664a11", "sticker": null, "text": "Is there any work opportunity?", "from_id": "8f5312ce78a995b87d57904f569fc5297a5800747919481ebba4b541c4b3e61c", "reply_to": null, "datetime": "2024-03-08T10:46:44+00:00" }, { "message_id": "3128578dd7b21d07fb08c2870de46345806675c5b6cfa547909e63031442f6c3", "sticker": null, "text": "Still not slove. Doffrent encrypt i think.", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": "12bd1304b2b2040bb58a50f4043b16e611e5069d7cf9c8db4805218f7434b320", "datetime": "2024-03-08T18:36:06+00:00" }, { "message_id": "80c8985d4826289ef4f01f26bc5581e86dd79bfc3497ac2023f4f7a4ee7d5a4a", "sticker": null, "text": "Probably, I'm not sure what kind of encryption is that", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "3128578dd7b21d07fb08c2870de46345806675c5b6cfa547909e63031442f6c3", "datetime": "2024-03-09T00:14:05+00:00" }, { "message_id": "5032a480767078299977c61fe0c8b7b23685d6bc8b727168e052229bd99300b2", "sticker": null, "text": "Try using AI tools to detect what kind of encryption first", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2024-03-09T00:14:18+00:00" }, { "message_id": "1a262bcf7aec775748151f2e99dfac984e1bbceaafb23228060362c99bd454dd", "sticker": null, "text": "can u tell me what ai tools that i can use?", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": "5032a480767078299977c61fe0c8b7b23685d6bc8b727168e052229bd99300b2", "datetime": "2024-03-09T03:30:46+00:00" }, { "message_id": "c09bf7b256abf649ce4d84807670707b9767ac72c81c4a3a626f41c65c4948a2", "sticker": null, "text": "ChatGPT, Claude 2, Poe are the ones i use sometimes", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "1a262bcf7aec775748151f2e99dfac984e1bbceaafb23228060362c99bd454dd", "datetime": "2024-03-09T03:58:01+00:00" }, { "message_id": "9066b50b5afa78d9781c82438ea048b000f45df9fd6b007b2e34b13bf0c58384", "sticker": null, "text": "Is there remote work opportunity?", "from_id": "8f5312ce78a995b87d57904f569fc5297a5800747919481ebba4b541c4b3e61c", "reply_to": null, "datetime": "2024-03-09T13:57:19+00:00" }, { "message_id": "092977c724919df607d21ef7e0ce4c5a24ab1ee7912f100897c0bb0b4ede7cc5", "sticker": null, "text": "me too", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": "9066b50b5afa78d9781c82438ea048b000f45df9fd6b007b2e34b13bf0c58384", "datetime": "2024-03-11T16:12:22+00:00" }, { "message_id": "b62f54dc0f16833f8bd1d203fd67832e4b057384dc2707ff9c69a3c73fd6b9ca", "sticker": null, "text": "do you have free GPT4?", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": "c09bf7b256abf649ce4d84807670707b9767ac72c81c4a3a626f41c65c4948a2", "datetime": "2024-03-11T16:13:15+00:00" }, { "message_id": "d0c66856fb12edcccbd03a85e3f813ec4a1f58539d3d280fbe72937453e33318", "sticker": null, "text": "No", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "b62f54dc0f16833f8bd1d203fd67832e4b057384dc2707ff9c69a3c73fd6b9ca", "datetime": "2024-03-12T03:54:31+00:00" }, { "message_id": "90a0dc511b038efbedd5857b197e34de86eb822f67cfc27ecf3e77769b4d9c3d", "sticker": null, "text": "12", "from_id": "acdc6d5ba660b05c64ebe17962155c6974be4dfa8cb8df6e7cf24ae806ac72cc", "reply_to": null, "datetime": "2024-03-12T08:50:40+00:00" }, { "message_id": "4345fd8220b83f2d3e0f08bf1128e1de9dcf96ff782bb716c4c64021bfd9be4b", "sticker": null, "text": "Can you please send more notes for java for beginners please guys 👏", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": null, "datetime": "2024-03-12T09:09:51+00:00" }, { "message_id": "ae6e7e7c42f8f64298a0eff15009e7a3c5ad18c7b74e80d30cfda359539d3c6a", "sticker": null, "text": "guys, please tell me what's the reason of learning Java instead of other programming languages?", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": null, "datetime": "2024-03-12T09:30:55+00:00" }, { "message_id": "aa49e90cdc445503009d7dcd64c59645fc20806c3e0d7bf876a0c790154425b9", "sticker": null, "text": "Why did you decide to learn a programming language?\n\nIf it's for financial reasons, find out which language is currently in high demand and well-paid.\n\nIf it's for other reasons, identify which language best suits your needs.", "from_id": "c1e429f352bb06992b8abb408236398f476ae2b41250d4739d48ccef973446f0", "reply_to": "ae6e7e7c42f8f64298a0eff15009e7a3c5ad18c7b74e80d30cfda359539d3c6a", "datetime": "2024-03-12T12:08:34+00:00" }, { "message_id": "6c0158bed832bd307e143293669bf0c9a3fc84402dcde8cc0b7b9b51b0c7c31d", "sticker": null, "text": "Java is also in market right now for many things", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "ae6e7e7c42f8f64298a0eff15009e7a3c5ad18c7b74e80d30cfda359539d3c6a", "datetime": "2024-03-12T12:28:39+00:00" }, { "message_id": "06028554ca5c724eae5f6ff00daa2d9a062ec19fb6e6d4889a15c4f0eeac3310", "sticker": null, "text": "I know Java. I wanna teach it. I want to persuade people to learn Java and so that they buy my course. Many people think that Java is dying", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "aa49e90cdc445503009d7dcd64c59645fc20806c3e0d7bf876a0c790154425b9", "datetime": "2024-03-12T12:34:09+00:00" }, { "message_id": "2e90486e3660067fe1e7127b116e9e043011cb882d798092fcddcdc3260f3afb", "sticker": null, "text": "It can't die cause java is deeply involved in the modern day coding and development of different things", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "06028554ca5c724eae5f6ff00daa2d9a062ec19fb6e6d4889a15c4f0eeac3310", "datetime": "2024-03-12T12:37:08+00:00" }, { "message_id": "7e89d56c9efd74d1a5f55fe19c1fb061dc657c41cee5eb0f13a93f63d4681543", "sticker": null, "text": "Java is downing", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:33:04+00:00" }, { "message_id": "aae24c799a2228e9c3870fd1b5d1f5c1f9ea14c714c28596235f7b00bbd15fd6", "sticker": null, "text": "Guys like how?", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "7e89d56c9efd74d1a5f55fe19c1fb061dc657c41cee5eb0f13a93f63d4681543", "datetime": "2024-03-12T13:34:06+00:00" }, { "message_id": "923f49cc94543422b37e07a9f908842bc5271602e583efd8851724f300b0aa3a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:35:38+00:00" }, { "message_id": "6ef9bb14e8e01868a77c2a725b17596fa481498de2e467bee45b4ade6345ba18", "sticker": null, "text": "It was the old king", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:36:28+00:00" }, { "message_id": "d35b7ea1cb4f78dcd0c6c91ecc027ef07719ced5accf3140ebc47a270793976a", "sticker": null, "text": "I had to fill my stomach with java", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:37:33+00:00" }, { "message_id": "bdf661d5961b5a5e097c1023275c5f120a2f31fdeac83866aced919373511dbc", "sticker": null, "text": "so hard", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:38:08+00:00" }, { "message_id": "c64554293c3bf2fa77e02640ea53551741110892c76707989d191c7a7b1edf26", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:39:48+00:00" }, { "message_id": "aab0c6bb52d160342fe314463bab5cadee495c5d619fb0f6480349a2330a4827", "sticker": null, "text": "I don't know what the future holds, and I'm unemployed", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:41:14+00:00" }, { "message_id": "d4f43d1a60eb9234b2f31298255ee85301aad4ee92d83f4c3e39b2a2f2fa964b", "sticker": null, "text": "Do you know java?", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "aab0c6bb52d160342fe314463bab5cadee495c5d619fb0f6480349a2330a4827", "datetime": "2024-03-12T13:49:13+00:00" }, { "message_id": "ae5280fe0868329169411768d23f51d4d9d0e5b0ea4bdaadf717b75ed303e545", "sticker": null, "text": "I've done some projects", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:52:05+00:00" }, { "message_id": "fc5c226375751e6857774c1f8d9e9be631d81e06dc9b2ecc43511706b51e3db3", "sticker": null, "text": "I always feel that there are too many skills to learn", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:54:11+00:00" }, { "message_id": "30cfd5817e95d8d2234352ccfd4334b627bf964ef5463103865c6ac05b0cd3d0", "sticker": null, "text": "I am considering whether to learn front-end framework, do full stack development, anyone can give some advice?", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:55:36+00:00" }, { "message_id": "933b5dbda09b9453cfc89c33413a56c4d296c7131d75040861eb8a3285509721", "sticker": null, "text": "Where are u from?", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "30cfd5817e95d8d2234352ccfd4334b627bf964ef5463103865c6ac05b0cd3d0", "datetime": "2024-03-12T13:56:53+00:00" }, { "message_id": "3c4daba099c1e0ca8b69eb4d36eb85f2f233f155ef8474a22c36458abb243213", "sticker": null, "text": "I am now in China, there are too many people around me to learn Java, the competition is too fierce", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T13:59:08+00:00" }, { "message_id": "49573a4ef7b6dc86f74615ad9f0e1b650d697daa073dc35df652c4ac108d9029", "sticker": null, "text": "The interview always asks for something inside the frame, and I also need to recite it", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T14:00:36+00:00" }, { "message_id": "520f652d9e9fcd66d2a9359e53e603700714530c9539bfbf1808d0fcb756e0b3", "sticker": null, "text": "I don't know what you usually ask in an interview.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T14:01:19+00:00" }, { "message_id": "7d664094616791395cbae75d3ea133493910790f60dc19755076b2a82e463d6f", "sticker": null, "text": "Are you Arab", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": "933b5dbda09b9453cfc89c33413a56c4d296c7131d75040861eb8a3285509721", "datetime": "2024-03-12T14:07:48+00:00" }, { "message_id": "e1b6059707c21e5338966667c771770ae710ae5c8d7ff6d733632919581ace44", "sticker": null, "text": "لا حبیبی 😂", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "7d664094616791395cbae75d3ea133493910790f60dc19755076b2a82e463d6f", "datetime": "2024-03-12T14:51:31+00:00" }, { "message_id": "f8eb650ea6882fa28e67dc1935e730875730f006a9dafcd70f447cdf28285c51", "sticker": null, "text": "I'm Iranian and muslim", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "7d664094616791395cbae75d3ea133493910790f60dc19755076b2a82e463d6f", "datetime": "2024-03-12T14:52:12+00:00" }, { "message_id": "dffd8bc19391c5a56ada006946f1c30fe3e0279aa6f240a0f1470ee118418cc7", "sticker": null, "text": "My bio is a verse of quran", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": null, "datetime": "2024-03-12T14:52:26+00:00" }, { "message_id": "fb21d09a34f757dc59babd9d6903b8516f71931e26904617315a97b5edbac9d7", "sticker": null, "text": "That's interesting, because Java is not popular in my country. One thing to note is that Java is a rather difficult language and it's not easy to master. So, if you work hard and master it, you will be ahead of others. I'm speaking generally and hope that it is also true for China.", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "3c4daba099c1e0ca8b69eb4d36eb85f2f233f155ef8474a22c36458abb243213", "datetime": "2024-03-12T14:55:07+00:00" }, { "message_id": "376651589bd9c4d9ddadcf951a078908b5976d7cf0f9807e2b40b50fcf61bcec", "sticker": null, "text": "I personally really like this language, but it doesn't have many good job opportunities in Iran.", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": null, "datetime": "2024-03-12T14:56:16+00:00" }, { "message_id": "52ddb960ba2abc950d7ee938af23e1c612b85cec69861120a050a86a6feacead", "sticker": null, "text": "Probably because of geography, each place has its own popular programming language", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-12T15:07:53+00:00" }, { "message_id": "8b34e6b2b43f0f5d302b47f0776a8c95de754108b1afa3343db1d0ff73fe4dd3", "sticker": null, "text": "Mostly is to be equipped with the new up dates on programing plus most importantly don't stop learning data is change\n\nAlso master something new in programming that is on the market that is.", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "c64554293c3bf2fa77e02640ea53551741110892c76707989d191c7a7b1edf26", "datetime": "2024-03-12T15:43:30+00:00" }, { "message_id": "f8bacad0601e9b2a0ebfeca70659628746e1dcee4d0b8b7095440614049c58cf", "sticker": null, "text": "Where are u from?", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "8b34e6b2b43f0f5d302b47f0776a8c95de754108b1afa3343db1d0ff73fe4dd3", "datetime": "2024-03-12T15:47:11+00:00" }, { "message_id": "2c5c5ccf6fecdd1e98ea5f9665661359990b32ccce0b1164e777d12c6120c10d", "sticker": null, "text": "Malawi", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "f8bacad0601e9b2a0ebfeca70659628746e1dcee4d0b8b7095440614049c58cf", "datetime": "2024-03-12T15:52:58+00:00" }, { "message_id": "e1d37571ff3922fbac3aef83c2341b2790753a2f88ff7ddd0cbbe6cbd914ad9c", "sticker": null, "text": "And you", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "f8bacad0601e9b2a0ebfeca70659628746e1dcee4d0b8b7095440614049c58cf", "datetime": "2024-03-12T15:53:14+00:00" }, { "message_id": "7abb1bccfacf06e6bdf61daf11ec1a759724e9ed79bf6b657c9a7c5ecde2699b", "sticker": null, "text": "Good, didn't heard it before🤔", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "2c5c5ccf6fecdd1e98ea5f9665661359990b32ccce0b1164e777d12c6120c10d", "datetime": "2024-03-12T16:04:29+00:00" }, { "message_id": "05e98e70bad06769f4700f24543e9660921897bf7ef4d10e52ce61d8f3b2558a", "sticker": null, "text": "Iran, as I said earlier.", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "e1d37571ff3922fbac3aef83c2341b2790753a2f88ff7ddd0cbbe6cbd914ad9c", "datetime": "2024-03-12T16:04:41+00:00" }, { "message_id": "a99879648c9d5866b42c096a5cdb63425eaf72c6441c05592a64aa41076e0558", "sticker": null, "text": "Are u a fan of roosters?", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "2c5c5ccf6fecdd1e98ea5f9665661359990b32ccce0b1164e777d12c6120c10d", "datetime": "2024-03-12T16:05:11+00:00" }, { "message_id": "da941575d74a60b32d0366eb517f1efb45113911fe8493705818dcf2828ec38d", "sticker": null, "text": "It's in Africa", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "7abb1bccfacf06e6bdf61daf11ec1a759724e9ed79bf6b657c9a7c5ecde2699b", "datetime": "2024-03-12T16:05:17+00:00" }, { "message_id": "0baa875f1afc1800f5fab1d11edf26d9cc792b7a59513efa4691513041945f9e", "sticker": null, "text": "Yeah if they are the same that I know that is 😂", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "a99879648c9d5866b42c096a5cdb63425eaf72c6441c05592a64aa41076e0558", "datetime": "2024-03-12T16:07:14+00:00" }, { "message_id": "d6ea948a98aa35aef5f022c92b0160c87b1a90904a1d286cc9ad6d1bfcdd7ea9", "sticker": null, "text": "Interesting to be a fan of france team as an african.", "from_id": "68da237454f0a462890f4278c6570e589c2e475b13843d5b52ceb7086b97778d", "reply_to": "0baa875f1afc1800f5fab1d11edf26d9cc792b7a59513efa4691513041945f9e", "datetime": "2024-03-12T16:08:05+00:00" }, { "message_id": "7af03571086cb24cc147398088b62056badb8aecca2d10bb36f04f56ac43f763", "sticker": null, "text": "Yeah I support it", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "d6ea948a98aa35aef5f022c92b0160c87b1a90904a1d286cc9ad6d1bfcdd7ea9", "datetime": "2024-03-12T16:09:15+00:00" }, { "message_id": "b4bac9984bdb325da4a01728cddd5d63152da824be9977fd99567c03ce6c04b8", "sticker": null, "text": "U-Sticker detects this as offensive text.", "from_id": "d4413f6b6070a6117ffddc38b848534df2cb2e24f4a8d73ac27788b5865ac5e2", "reply_to": "923f49cc94543422b37e07a9f908842bc5271602e583efd8851724f300b0aa3a", "datetime": "2024-03-12T17:51:13+00:00" }, { "message_id": "c24ffb3e1f46ebf5621dbea7855d2ea4fa4bd4aa7523431be53fefe8874683b3", "sticker": null, "text": "It's better to look on stackoverflow survey", "from_id": "d4413f6b6070a6117ffddc38b848534df2cb2e24f4a8d73ac27788b5865ac5e2", "reply_to": null, "datetime": "2024-03-12T17:54:18+00:00" }, { "message_id": "e36d31d579c9a2ab05256d38494e9daa37f60bfcd6986ac60ab4e6473720b582", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "4ed1f0508a4463ee08cc990f54683ced8be6a222cc485d3cef92e52c65572e7a", "reply_to": null, "datetime": "2024-03-13T05:22:00+00:00" }, { "message_id": "3cbaa49e506ac611d1bed0d16b547fd55a785d01812a0eb2be3adde058ea5d49", "sticker": null, "text": "Hi everyone. I have a simple question: based on OOP paradigm and SOLID principles, is it okay for a concrete class (a class that can be instanced) to extends from another concrete class? Something along like:\n\nPublic class Car { }\nPublic class ElectricCar extends Car { }\n\nThe reason why ElectricCar class extends Car class is because they have the same attributes. But at the same time ElectricCars has it's own unique attributes.\n\nEven though it's doable, but is it okay though?", "from_id": "8705af78e5f40e704f472992a0e64c3fc118925436f7c16aeccff1c1c69de7c7", "reply_to": null, "datetime": "2024-03-13T06:58:38+00:00" }, { "message_id": "fd732c7f005f71124266b00c6e45c2a73dffb9b2c5807f7c9cfd31ed567161fb", "sticker": null, "text": "Better to use polymorphism only for behavior and not for sharing only attributes.", "from_id": "d4413f6b6070a6117ffddc38b848534df2cb2e24f4a8d73ac27788b5865ac5e2", "reply_to": "3cbaa49e506ac611d1bed0d16b547fd55a785d01812a0eb2be3adde058ea5d49", "datetime": "2024-03-13T11:04:22+00:00" }, { "message_id": "060252069bedcd77ce47eb33a24a22911e84ace6beba5450ee89aa8fa8216b67", "sticker": null, "text": "sure", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": "3cbaa49e506ac611d1bed0d16b547fd55a785d01812a0eb2be3adde058ea5d49", "datetime": "2024-03-13T17:20:03+00:00" }, { "message_id": "5d07ce35e3effe9bb5bc7a89baebff1f3a47f2af0d75ec50518a45feb3e80047", "sticker": null, "text": "Does Anyone have a group for solving java doubts.??", "from_id": "cca7d82af86fb91e55aa4c71c52bf1d70a9653f7f4601e5fed6c050a63d3e83c", "reply_to": null, "datetime": "2024-03-13T18:45:54+00:00" }, { "message_id": "8a59eb2f965706e90e3478ed817bcd49eb7bae0aeeb55660ac0727210bbc47da", "sticker": null, "text": "This is a good place to ask questions about Java.", "from_id": "5a7b3948a2f7d0b4d8dc6ab3950cdfce58a638e72fe4ce2dacf6120fc3083675", "reply_to": "5d07ce35e3effe9bb5bc7a89baebff1f3a47f2af0d75ec50518a45feb3e80047", "datetime": "2024-03-14T00:52:45+00:00" }, { "message_id": "3a069652776db32c8d8396690a55003c19167b4762110fb90e46493e3a54d2d7", "sticker": null, "text": "any one have latest spring boot tutorial playlist", "from_id": "cb426445fa081f95ecb68d0df3eb63b2a47eebb34a071d20801a3a193ac154ef", "reply_to": null, "datetime": "2024-03-14T10:11:16+00:00" }, { "message_id": "aac010001709eec12b08b81155e9328e4744aeee1560ef8d0bbe3714b7ae05af", "sticker": null, "text": "3", "from_id": "cb426445fa081f95ecb68d0df3eb63b2a47eebb34a071d20801a3a193ac154ef", "reply_to": null, "datetime": "2024-03-14T10:11:44+00:00" }, { "message_id": "9c4bd78008f5c78c6815bf972ae460b5d67d3e7c13c9b9a74bf4a7d8a968a414", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "f9d69d2bba00c604b7ba608e277e181815ba6800d3cbfbacb991c3aa985d9b5e", "reply_to": null, "datetime": "2024-03-15T04:28:14+00:00" }, { "message_id": "fdd86cbb23158e7e4190d798a6d68c9d2e6ff39e105f64a06fc4d51985f22c95", "sticker": null, "text": "ez", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": null, "datetime": "2024-03-15T11:58:59+00:00" }, { "message_id": "ec51be95cc91085e27f7ea16e3a6cf7d28a0db79047baa75c369c553ea5d789e", "sticker": null, "text": "hi guys", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": null, "datetime": "2024-03-15T11:59:06+00:00" }, { "message_id": "99c5c77e714c84370a7ff8d271ddd3f638051ad433e7cc131986cba1f3ecae1a", "sticker": null, "text": "i have a question, do you know any open source projects where i can participate and get some real experience of java programming", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": null, "datetime": "2024-03-15T12:00:07+00:00" }, { "message_id": "e4e1901bb137599d23fcd42948d78e1b2d920e0d29636feb62aac3347701057a", "sticker": null, "text": "thank you", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": null, "datetime": "2024-03-15T12:01:13+00:00" }, { "message_id": "ba7dfccb7d4a825ac30040a5a3e5a4b2d93906b797b015f8b9ab39769b8c4635", "sticker": null, "text": "what do you mean to start with github, im just newbie. To upload there my projects?", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": null, "datetime": "2024-03-15T12:04:29+00:00" }, { "message_id": "a9e212004862a8b4f63d5ffe84bc5f108cbdd3d60ac6b660796157990b443cd4", "sticker": null, "text": "Hello y'all, I just want to ask a question, I'm a college student right now and I'm have a question about my capstone/research, can I use HTML/CSS/JAVASCRIPT and SQL languages in demand Forecasting", "from_id": "393dbdef9ea3994a906836c7ea5eeaecef1db2440cc67892102b5023f160a97d", "reply_to": null, "datetime": "2024-03-15T15:18:18+00:00" }, { "message_id": "e697aa60f00ef17ed1c11f188df33ba05f109db6cf3b27f4c504e67a9f180061", "sticker": null, "text": "Thank so much for the answer in advance", "from_id": "393dbdef9ea3994a906836c7ea5eeaecef1db2440cc67892102b5023f160a97d", "reply_to": null, "datetime": "2024-03-15T15:18:40+00:00" }, { "message_id": "b2dc27eaa38f8117d65d3ed5b7685db8cae77f7dd9c995ad9b0e2a2b4f56a058", "sticker": null, "text": "Because based of my research phyton is usually used for demand Forecasting", "from_id": "393dbdef9ea3994a906836c7ea5eeaecef1db2440cc67892102b5023f160a97d", "reply_to": null, "datetime": "2024-03-15T15:19:09+00:00" }, { "message_id": "f6d1b38d2df16a10938c7c2057919a40c3437bcfdc2ed87619f4930ed1b8f28c", "sticker": null, "text": "Please someone", "from_id": "393dbdef9ea3994a906836c7ea5eeaecef1db2440cc67892102b5023f160a97d", "reply_to": null, "datetime": "2024-03-15T15:23:54+00:00" }, { "message_id": "a8ce3b52741e62a4824769087bfb64c3183cabb6ad623b157569de8b8352d6b7", "sticker": null, "text": "You can use language but Python has the most support because of many ready to use libraries", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "a9e212004862a8b4f63d5ffe84bc5f108cbdd3d60ac6b660796157990b443cd4", "datetime": "2024-03-15T17:47:58+00:00" }, { "message_id": "983717e70a4ee86386f9fb5ed21111007d16b987bc9d32a1eac780869e4c8f29", "sticker": null, "text": "😑", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "a6ebdfe6ceba81b1ecfa052f73f484e6ab9493d83ddb11a61a2bdf1a095d10ea", "datetime": "2024-03-17T23:08:57+00:00" }, { "message_id": "695a6acb49d1212824cc6bc864edad36f934e095e2b3678393c23d7d61a5aa56", "sticker": null, "text": "Hi y'all, I have question. I am creating an Android application project where one of the features is that it can display live streaming results from an IP camera. I have got the IP address. But I can't display the results to my Android application yet. Does anyone have a reference for building it?Please help me . Thank you in advance 🙏🏼", "from_id": "9373c65ffc6de4f43eb06ab384195c4f1c12dd213a21da5b386d766c51aed0ed", "reply_to": null, "datetime": "2024-03-19T04:23:52+00:00" }, { "message_id": "becc0af73fb02b81cac794a243c88d533149dc3b59e37e73e22dc4983dcb2c83", "sticker": null, "text": "Have you tried FrameGrabber", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": "695a6acb49d1212824cc6bc864edad36f934e095e2b3678393c23d7d61a5aa56", "datetime": "2024-03-19T06:49:12+00:00" }, { "message_id": "6b6e8839114f279a31c2e0fdb554e028aa01a2d0e6a85d6b07cdce696aec7dfb", "sticker": null, "text": "Hello everyone, I desperately need help in Java, could anyone assist me?", "from_id": "30f52868685b5a8e55db9b5bbfd06fe82566881b7e022fd9312f2a82250b0bb3", "reply_to": null, "datetime": "2024-03-19T16:00:44+00:00" }, { "message_id": "4e5f830fb11faaa6e907de422faa283a8b0a96c221bcda60d1e7c363ef9fd0ce", "sticker": null, "text": "Can I contact you privately later? It's a delicate thing", "from_id": "30f52868685b5a8e55db9b5bbfd06fe82566881b7e022fd9312f2a82250b0bb3", "reply_to": "3f95fd49d03687db30b73d4f583084c6c7b297fcb3b59da06cf530f3b2733c8f", "datetime": "2024-03-19T16:19:12+00:00" }, { "message_id": "b941a2862cd91d4afee1dfddd1fbd8c56d3590cb3fa83c3abe5b676674a5997d", "sticker": null, "text": "Hi I am balaji MZC....so...Java..side join better or not", "from_id": "1221e4c15563aed6f990931a4e06adc050202dcfd16845f28dfc472e4b1cbe6d", "reply_to": null, "datetime": "2024-03-19T18:04:02+00:00" }, { "message_id": "9320a53f3249c4e4a0a9c7fafc1219cbee6be1d293ba85514d5325e3a8a6de75", "sticker": null, "text": "(this is purely my opinion) Honestly I haven't used Devin(I didn't get access to it yet) , but from what I have heard abt it. It's pretty good and is capable of taking your jobs.. But not entirely cause engineers will still be required to operate on that stuff.", "from_id": "dfe1e92d435a7648440e7e68301491a2a0603bb59eb8828c5440b29f34dbf01b", "reply_to": "a32a988a1161ef2c808fa2d5c6b27707baf97d0cf8a8f2fc558a002620f01b44", "datetime": "2024-03-20T00:28:12+00:00" }, { "message_id": "5b1ffb722e2883060c9b112460e2899f1c344e3efeddc56dfdd10779435a95f9", "sticker": null, "text": "Can you share your opinion here I'm interested. Honestly my opinion is speculative as I haven't used Devin yet.", "from_id": "dfe1e92d435a7648440e7e68301491a2a0603bb59eb8828c5440b29f34dbf01b", "reply_to": "4e5f830fb11faaa6e907de422faa283a8b0a96c221bcda60d1e7c363ef9fd0ce", "datetime": "2024-03-20T00:28:56+00:00" }, { "message_id": "40adcc34922b35ea2a55265931c7b0b4ca2521db6bed7c19d156450cd5b2a700", "sticker": null, "text": "Can it be reached with a UDP socket?", "from_id": "9373c65ffc6de4f43eb06ab384195c4f1c12dd213a21da5b386d766c51aed0ed", "reply_to": "becc0af73fb02b81cac794a243c88d533149dc3b59e37e73e22dc4983dcb2c83", "datetime": "2024-03-20T09:33:24+00:00" }, { "message_id": "714afb4a0b5d8340e97e4e10eb896b4a9db2f4545412ef52fd0eaad29edba116", "sticker": null, "text": "what is your query?", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "6b6e8839114f279a31c2e0fdb554e028aa01a2d0e6a85d6b07cdce696aec7dfb", "datetime": "2024-03-20T11:50:54+00:00" }, { "message_id": "570c8ed6c51ae07c3842eec9f6b2cd5cd3ad4edc6d0ea40176f4a387363f142d", "sticker": null, "text": "Can I contact you privately?", "from_id": "30f52868685b5a8e55db9b5bbfd06fe82566881b7e022fd9312f2a82250b0bb3", "reply_to": "714afb4a0b5d8340e97e4e10eb896b4a9db2f4545412ef52fd0eaad29edba116", "datetime": "2024-03-20T11:51:27+00:00" }, { "message_id": "ec1c83cb6b74e02368ea670e0e7e1f84fbaec5f738b60c9681f29f7dbff25bff", "sticker": null, "text": "yes, np", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": null, "datetime": "2024-03-20T11:54:05+00:00" }, { "message_id": "5865788de4d37e3a4a56e20335e8abe0b4cf3023fcacf6d2c4d6e0589ede7853", "sticker": null, "text": "Who’s here do python programming?", "from_id": "4232b394563b6074a530b7774fbcbf2c89dbd1c0a1d113624293064497161b0b", "reply_to": null, "datetime": "2024-03-20T13:02:04+00:00" }, { "message_id": "b26f25acbd7ffa841dcec31f1e4b9f22865b8f382d0ff653c39af7071ceee25a", "sticker": null, "text": "what's your query?", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "5865788de4d37e3a4a56e20335e8abe0b4cf3023fcacf6d2c4d6e0589ede7853", "datetime": "2024-03-20T14:57:31+00:00" }, { "message_id": "255b948d4825c8c928313ba5d0834f96f64e9037d5cfd6f2049174979e7e446d", "sticker": null, "text": "I want to build OSS locally, can anyone recommend an open source framework? Thank you", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-20T18:12:44+00:00" }, { "message_id": "b97a4e1a829462540ff1a988ab28f9ef334aad51dc92768d29a1ccb678a84af7", "sticker": null, "text": "Which kind of support?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "47364aba11fc077bf3140e78fd5b87b61e209c83fb9ccf9686ab8efca31e94bf", "datetime": "2024-03-20T19:20:20+00:00" }, { "message_id": "d64726856d2e6d3c56a1787be0de967cc95f21a768d344867e5d298ecc123a5f", "sticker": null, "text": "Operations Support System ?", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "255b948d4825c8c928313ba5d0834f96f64e9037d5cfd6f2049174979e7e446d", "datetime": "2024-03-21T04:14:03+00:00" }, { "message_id": "7e64c6cefed87cfb51abcce0652393ef20aca6b9c6c06b2505e6e4693e029412", "sticker": null, "text": "Can i send you a dm?", "from_id": "4232b394563b6074a530b7774fbcbf2c89dbd1c0a1d113624293064497161b0b", "reply_to": "b26f25acbd7ffa841dcec31f1e4b9f22865b8f382d0ff653c39af7071ceee25a", "datetime": "2024-03-21T07:25:07+00:00" }, { "message_id": "894314be5452527a5de524012d7e5a0bbb858fbc437d8b6af6c87998dbcb993f", "sticker": null, "text": "Where can i solve java doubts?", "from_id": "cca7d82af86fb91e55aa4c71c52bf1d70a9653f7f4601e5fed6c050a63d3e83c", "reply_to": null, "datetime": "2024-03-21T08:40:10+00:00" }, { "message_id": "9bb7856943d96a29216c6a4295805347d3913c2584ecaa562c6aaf0ccabc9f66", "sticker": null, "text": "I want to write unit test to increase code coverage for a method which does webclient call, how can I do it? Mocking is becoming complex as I need to know exactly what is returned by each method, Any better way to do it?", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": null, "datetime": "2024-03-21T09:12:59+00:00" }, { "message_id": "cd12aa143376a1285f3e804f4cc3685184500dc97591b8a3e06b4ef351728bc8", "sticker": null, "text": "yes, sure", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "7e64c6cefed87cfb51abcce0652393ef20aca6b9c6c06b2505e6e4693e029412", "datetime": "2024-03-21T09:22:48+00:00" }, { "message_id": "1dca50902c849f69f7da8b1b2a2adade100315da95cd72338a311b0ee37e28ba", "sticker": null, "text": "I already sent a dm you", "from_id": "4232b394563b6074a530b7774fbcbf2c89dbd1c0a1d113624293064497161b0b", "reply_to": "cd12aa143376a1285f3e804f4cc3685184500dc97591b8a3e06b4ef351728bc8", "datetime": "2024-03-21T09:23:29+00:00" }, { "message_id": "3f8a126c2223d3a9ced16f5a0f9c601c2107181e65a655adad09d8dd536bcd4c", "sticker": null, "text": "If you want to write a *UNIT* test, then you should mock it. Because weblient is nothing but a collaborator for your code like any other collaborator.\n\nAnd moreover, it doesn't have that huge number of variations like DB interactions have. So it makes sense to write unit tests for the code that uses webclient. Unlike DB related code.\n\nWhat exactly is complex in mocking the webclient?", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "9bb7856943d96a29216c6a4295805347d3913c2584ecaa562c6aaf0ccabc9f66", "datetime": "2024-03-21T09:49:12+00:00" }, { "message_id": "f25697652f57f58fe9fdf1f4bdac93249b5fb092e957bc15eea7ecb9859086d9", "sticker": null, "text": "Personally, I recommend you the first approach ^^^. Just write simple unit tests first.\n\nThere are two more options, though. \n1) if you're using spring-boot (which I assume by \"webclient\"), then you can try MockMvc. Just google for something like \"spring boot test mockmvc\". In this case you'll end with frankenstein tests, which are neither unit, nor full integration ones. Personally, I don't recommend you to follow this path. Because you'll end up testing half-mocked system.\n\n2) Write proper integration tests where the FULL application is running, and REAL webclient is injected, and REAL http calls are made. In this case, you'll need to mock not your code, but rather http calls *receiver*. I.e. your test will be like\n - spin up special http mock server app on some port XYZ\n - set up mocks on this http server like\n - - when server app receives GET \"/my-rest-target/user/123\"\n - - then return \"{name: John, age: 30}\"\n - configure URL for that webclient in your app under test to be pointing to localhost:XYZ\nIn this case, this will be a proper integration test which is worth time spending on, and it will invoke the FULL path in your code, not just partially mocked stuff.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "9bb7856943d96a29216c6a4295805347d3913c2584ecaa562c6aaf0ccabc9f66", "datetime": "2024-03-21T09:58:07+00:00" }, { "message_id": "e4b4c5157219b645b3199149c5e07e6bbbb78df0e3fe55f50b0b7c71c08911c8", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2024-03-21T10:04:37+00:00" }, { "message_id": "2bc11f6c4787ed29220eb31294c1d92b10dbfb0f154c7d72a9325e8b0bc262c0", "sticker": null, "text": "Using testcontainers for DBs makes sure that DB code is talking to the same DB of the same version as in prod.\nThe most stupid thing I see in many many tutorials - is to use H2 DB for integration testing. What's the point to test how your queries and transactions run against H2 if in prod you're using mysql?", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2024-03-21T10:09:20+00:00" }, { "message_id": "c55bbc292ea0d5ab602c8ebd9f4a66fd84d969c54ac8ef21fe739449500a176a", "sticker": null, "text": "Similar garbage stuff I saw is kafka mocks and mongodb mocks.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2024-03-21T10:12:02+00:00" }, { "message_id": "b0805985268964e45d78f7e4bc54a9831a4e62c80e38c5e73558c5b19cc4071c", "sticker": null, "text": "Object Storage Service", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": "d64726856d2e6d3c56a1787be0de967cc95f21a768d344867e5d298ecc123a5f", "datetime": "2024-03-21T11:47:23+00:00" }, { "message_id": "03c80f29c34522b7c92c9ef36b4880dfa1c6926649e569bae107953de0379338", "sticker": null, "text": "why not use a document database like MongoDB, convert object to json & store", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "b0805985268964e45d78f7e4bc54a9831a4e62c80e38c5e73558c5b19cc4071c", "datetime": "2024-03-22T07:36:33+00:00" }, { "message_id": "214d4c7f4c14705ef5f83eff1a08a167864796fb93a9bd078e5a77e07a9ecc95", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": null, "datetime": "2024-03-22T07:38:24+00:00" }, { "message_id": "db72ce540c2bc8f241046dd9c11a68e04a52b91d09da58e35563d69acc198a07", "sticker": null, "text": "👍", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "f25697652f57f58fe9fdf1f4bdac93249b5fb092e957bc15eea7ecb9859086d9", "datetime": "2024-03-22T20:12:08+00:00" }, { "message_id": "d0c3af495295eea2d5894f76e9eb8d45db8f2744cb48b7e0f7d1dc4a4a6729e2", "sticker": null, "text": "Do anyone know how to hack back into your gmail account that got hacked?", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": null, "datetime": "2024-03-22T20:43:56+00:00" }, { "message_id": "22c68994038526c9752449ee3d26189954f78e05adca99dce31ea73c72009508", "sticker": null, "text": "Is using MongoDB a good solution? I need to return the URL of the resource so that I can call it in the browser.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": "03c80f29c34522b7c92c9ef36b4880dfa1c6926649e569bae107953de0379338", "datetime": "2024-03-23T03:30:24+00:00" }, { "message_id": "3e393b6b218ed3f59661c7917b11916f463e6dc41a49e98609d6dd1f72acb9c2", "sticker": null, "text": "hi, I am newcomer from C/C++ to Java and I want ask question: how could I see documentation in Java. In C/C++, we use man 3 command to see the all properties of functions on Linux. for example, if I want see all information about `printf()` function, I write : `man 3 printf` to see all about it. Is there something like that in Java?", "from_id": "a14ea28d2a754a98c2f0abba5e36794f1b7f4ff9f6eadc318205d08dd7041051", "reply_to": null, "datetime": "2024-03-23T03:42:49+00:00" }, { "message_id": "c8111108807d63a5fa2d6b3ffe7f9b502f42e5570aca266ad7735934786fdbab", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-23T03:48:04+00:00" }, { "message_id": "670db02fa4406433118583b2b6c18411f412b36528ac40fb7e36b924f1f19352", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-23T03:50:55+00:00" }, { "message_id": "fc5e5ed945b5af363fa91ff1cdbc0e3064d84cfc1467a43f7cf5e2735ca43df4", "sticker": null, "text": "thanks", "from_id": "a14ea28d2a754a98c2f0abba5e36794f1b7f4ff9f6eadc318205d08dd7041051", "reply_to": null, "datetime": "2024-03-23T04:05:13+00:00" }, { "message_id": "b4cbc676c980675bbe43d33af0e17e050ed2b492fe828e07b30d67cb96a38dcd", "sticker": null, "text": "You'd need to have some business logic in Java to deserialize the JSON object and create URL for it", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "22c68994038526c9752449ee3d26189954f78e05adca99dce31ea73c72009508", "datetime": "2024-03-23T06:30:00+00:00" }, { "message_id": "f08e4e5cad9816f5aa3df7dfe9febb66b00484ae760e6750ccd94df5a2dd460f", "sticker": null, "text": "Hello guys", "from_id": "231b216a95fa85e2f40806476dd39335c7698f78705bc7d06e05de7c0c538196", "reply_to": null, "datetime": "2024-03-23T09:01:21+00:00" }, { "message_id": "3bf66b2bb0d97af75ad32d64bf14e370711ceb7935b2b56fbeae0052d1da6397", "sticker": null, "text": "My name is Ruslan", "from_id": "231b216a95fa85e2f40806476dd39335c7698f78705bc7d06e05de7c0c538196", "reply_to": null, "datetime": "2024-03-23T09:01:41+00:00" }, { "message_id": "2816091fc761b98b10f8333bfd35e8b405a6ed983d03a023686008566c0bdd15", "sticker": null, "text": "Try to build a web service in Java and JSP. It's a nice fun. 😅", "from_id": "d4413f6b6070a6117ffddc38b848534df2cb2e24f4a8d73ac27788b5865ac5e2", "reply_to": "5e451bedd7dadadf2c7e28f0abe37d50a6cf803af1d908d343c1f0bc37ea2cb1", "datetime": "2024-03-23T15:56:23+00:00" }, { "message_id": "17c9277324fcffb995f6a6eedf36e153c68c1568280f372462bcc265e86c6dc5", "sticker": null, "text": "No one wants to use jsp😂", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": "2816091fc761b98b10f8333bfd35e8b405a6ed983d03a023686008566c0bdd15", "datetime": "2024-03-23T18:39:40+00:00" }, { "message_id": "c1d9b8ef6be6db618578441fa92e1f90e1fe058aed25bbfe401095ae1ec16aee", "sticker": null, "text": "He was talking to a scammer telling ppl to contact them about a fun time", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "17c9277324fcffb995f6a6eedf36e153c68c1568280f372462bcc265e86c6dc5", "datetime": "2024-03-23T19:10:37+00:00" }, { "message_id": "128febb2ce52f735a6c9ec1367b79e5d4b58158e100836230dd7a06a4a59bb24", "sticker": null, "text": "JSP as the name suggests is for display content, ideally Servlets or EJB should be used for Webservice", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "2816091fc761b98b10f8333bfd35e8b405a6ed983d03a023686008566c0bdd15", "datetime": "2024-03-24T06:53:27+00:00" }, { "message_id": "ba3ac19596a8c18682e3672c85d49a5abac70e1065d047e181d996b21494824a", "sticker": null, "text": "hi just wanna ask if i write a code can i encrypt my scrip to like this 0x81076e??", "from_id": "0a834137488e7962be8b5ccf4edced90a22c8c03ca5740c6fe41fe90e1e61fcc", "reply_to": null, "datetime": "2024-03-24T18:48:44+00:00" }, { "message_id": "a59f6dab1b8d439acce58b2a3dde8180d86a44eff33ebb403d3a9178f5c0fdf4", "sticker": null, "text": "public class Main {\n public static void main(String[] args) {\n String script = \"encrypt my script\";\n System.out.println(stringToHex(script));\n }\n\n public static String stringToHex(String str) {\n char[] chars = str.toCharArray();\n StringBuilder hex = new StringBuilder();\n for (char ch : chars) {\n hex.append(Integer.toHexString((int) ch));\n }\n return hex.toString();\n }\n}", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": "ba3ac19596a8c18682e3672c85d49a5abac70e1065d047e181d996b21494824a", "datetime": "2024-03-25T03:14:34+00:00" }, { "message_id": "bda3b5c006fb536d0f2adbcc857fc670203fdbaeeba05364a7f714d87e5d366a", "sticker": null, "text": "Java compiler will anyway generate non readable code", "from_id": "0c730c1b9b1751e49696392a68480416395986b5ae2cf7a1cac24dcf5fa09fbb", "reply_to": "ba3ac19596a8c18682e3672c85d49a5abac70e1065d047e181d996b21494824a", "datetime": "2024-03-25T13:44:53+00:00" }, { "message_id": "742a76409031dcc2c45ed15cbfe82a72587de1d2142f47ee3ec5259efbd7c8fc", "sticker": null, "text": "Sir use Linkedin or some trusted job hunting apps not like this", "from_id": "bf330e05bfe485afe443936070700290cafae64585c3c8fc71e6cc55b9aee2a8", "reply_to": "532fa7eb27476a3c2047a8a477dce20a8252bc04e06c8bcac70be5a4b88875dc", "datetime": "2024-03-25T16:32:30+00:00" }, { "message_id": "2b6e388d55a232fdd55e81ee7b4feabd002c4c8dbd7dfed7dee555fbf70d6469", "sticker": null, "text": "He is just trying to scam, ban him", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": "742a76409031dcc2c45ed15cbfe82a72587de1d2142f47ee3ec5259efbd7c8fc", "datetime": "2024-03-25T16:50:51+00:00" }, { "message_id": "221306bcc5721d33b2ee220cb42b62af113204f8b9d549204f4d1952674a0afc", "sticker": null, "text": "learn about it", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2024-03-28T05:48:12+00:00" }, { "message_id": "bda55087e80555c9f77a59a606ed9e8e1248f29b369008e685614662918f8a03", "sticker": null, "text": "Java died ?2024", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2024-03-28T13:38:05+00:00" }, { "message_id": "ad5ee7a8062b957709da7b5cd4cafbb14841a202c1fbb9f43f5e06173ac788bd", "sticker": null, "text": "He can alors learn Algorithms with Leetcode or Codingames", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "62f783642dba3e52be8cbc56c7d8628a25b50fbeb8d04e43ea6ffae4cda08ee3", "datetime": "2024-03-28T13:55:51+00:00" }, { "message_id": "3e766a8e0f62a3381f458ae1dc4ed73925c5ff4ebe3909d4918ce8d850c32119", "sticker": null, "text": "DSA makes me getting frustated day by day", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T16:57:38+00:00" }, { "message_id": "9bd271cd13e854be73878381bedd334b36cb458185be8a6a961b246b262304ba", "sticker": null, "text": "anyone feel the same?", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:04:05+00:00" }, { "message_id": "f1cd23592596c770d23c090b9949752e6e117507062f4ded45c7b9cc18d0bdcf", "sticker": null, "text": "What's DSA?", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:05:18+00:00" }, { "message_id": "27f7aeee3899d9b6ffe3824a90a36782319a2fbbe69c077d30b933f080a3ddc8", "sticker": null, "text": "**Data Structures and Algorithms**😂", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:09:29+00:00" }, { "message_id": "db4bd2a956a1eb9765c81e51b0aeda79306e822bc87b5c0700815e4f4e8179c5", "sticker": null, "text": "so hard", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:10:04+00:00" }, { "message_id": "33b862fea98644a877e33fbc36c922c858e9ffcea8a13dbfeb1667e7ddb4bf72", "sticker": null, "text": "Yes buddy", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:10:08+00:00" }, { "message_id": "96875b716a6ef85458b548f4a885041165d1da970beba539f04e0be5e0423c42", "sticker": null, "text": "I dont know , what to do", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:10:21+00:00" }, { "message_id": "7ea0cd480c469352bf826a4459cbdc205ce93d991cc96c831b8f18fccfc9d06d", "sticker": null, "text": "I gave up", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:11:05+00:00" }, { "message_id": "d99795b504e8b295dbf1b28859fd7fe63db3e693d64c72c7d389d867787a1d3f", "sticker": null, "text": "So, now what you are preparing for?", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:17:00+00:00" }, { "message_id": "e2f17d5097ea5ec2c61564f59fcec6d4bb9852c83bed54342ce4917069164b94", "sticker": null, "text": "looking for a job", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:18:19+00:00" }, { "message_id": "2606b6f5887978d312bc62f4a0bb59aa575bc100241829d734367ab4c19ac3bc", "sticker": null, "text": "No so hard it's will serve", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "db4bd2a956a1eb9765c81e51b0aeda79306e822bc87b5c0700815e4f4e8179c5", "datetime": "2024-03-28T17:18:37+00:00" }, { "message_id": "65d71279d2cbd7120d1e02a5c51209e85c87f58d2731654a17cf2f75012b60d8", "sticker": null, "text": "Not much patience", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:19:34+00:00" }, { "message_id": "4c9eb9984f00ca917e886732280cd616bfa3658145d02540f54ec13d3e676d37", "sticker": null, "text": "Just learning basics. It's important to make good software", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "65d71279d2cbd7120d1e02a5c51209e85c87f58d2731654a17cf2f75012b60d8", "datetime": "2024-03-28T17:20:13+00:00" }, { "message_id": "3e1668565065422b8477dcaaeba0b36f6c98b9c9ab82e414983374a829756c1a", "sticker": null, "text": "I am looking for a job in full stack", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:20:35+00:00" }, { "message_id": "90aab987034fa5ad484cf64db9da263b6e9e6eb891b1875d535673778ce33605", "sticker": null, "text": "And many company seek for Developer who master DSA", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": null, "datetime": "2024-03-28T17:20:41+00:00" }, { "message_id": "39ab64ee37a8bc62dd8cce3ab6ccab3d6705290d626dbb49d6962a999a7b6ce4", "sticker": null, "text": "angular, java tech", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:20:41+00:00" }, { "message_id": "1bd6da17b2f6875097544b6e944ae3af5e0e41ec2f44199266dc41cfc3cecc4d", "sticker": null, "text": "Even for Full Stack job", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "39ab64ee37a8bc62dd8cce3ab6ccab3d6705290d626dbb49d6962a999a7b6ce4", "datetime": "2024-03-28T17:20:52+00:00" }, { "message_id": "d640d338254617d25d424e50c6fa1d2d7382c3d90c16a0bfe8e8355cde1c1b9a", "sticker": null, "text": "Yes. I am trying daily bro", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:21:03+00:00" }, { "message_id": "deb35edd9ed179ed11216a8344df51aa5b26ded431dfc473af0f20bd392d1fc7", "sticker": null, "text": "there are many pre defined algorithm , which we have to rememebr", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:21:24+00:00" }, { "message_id": "475103884f9e80bcd654deffbcc5941c987f4f9e496471c0d903a0b05b57d972", "sticker": null, "text": "basics are fine", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:21:31+00:00" }, { "message_id": "1973facd230cf04720101b52a50cbb6acf0a826a53e5491a12b4cde0ee2d5de5", "sticker": null, "text": "use vue,react", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:21:38+00:00" }, { "message_id": "07a807c72761799ce2b30687424fa7b0bcae05e426aed89484ae9e174293a685", "sticker": null, "text": "but, remembering where to use, which algo is confusing", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:21:49+00:00" }, { "message_id": "7d0c11b6235a051b2c69d4d3619efe0802716b9292b669dfa276dc92aedb4ba7", "sticker": null, "text": "evening after reading the questions, sometimes, i forget my birth palce", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:22:17+00:00" }, { "message_id": "d1de2b12bf51725ee690cfe41a6e7ab08993423323482f22a2bfeb06ac7f5117", "sticker": null, "text": "Is it more important to use a framework or an algorithm?", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:23:28+00:00" }, { "message_id": "d1e62b11a74ad07fdbff35c766b8ce3a8ba19e15db507c82377ed7eb966c377b", "sticker": null, "text": "Dépend on context", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "d1de2b12bf51725ee690cfe41a6e7ab08993423323482f22a2bfeb06ac7f5117", "datetime": "2024-03-28T17:23:54+00:00" }, { "message_id": "2b17e7e5ac93e4bfd172eabc3823e9e9707931d4a2a66023669afcb5565e6c13", "sticker": null, "text": "Just learning basics understand and framework an make a project", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": null, "datetime": "2024-03-28T17:24:26+00:00" }, { "message_id": "e1bfd1ba78963d29453856a4f594c33bc3cf059cb356269c3c99fa631f99364c", "sticker": null, "text": "I made 3 project. but, yet in interview, the questions are very new. I guess, there are few areas which I have to deep dive in", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:26:13+00:00" }, { "message_id": "94ae7f78dd34a7b80d39b81633dae01b57d63f005a7a178dde569fffaafb3930", "sticker": null, "text": "it is like a sea. I am confused ,how to go in a structured path", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:27:28+00:00" }, { "message_id": "e3ead68c48c58ad6a6e7972f0c7cc8bf5cd49ebc4ae200e8ba5d52487df7c0ad", "sticker": null, "text": "The job I'm looking for here requires knowledge of microservices, how to handle distributed transactions, the implementation principles of springboot, and how to ensure high availability and high consistency of the system. I'm really tired.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:28:27+00:00" }, { "message_id": "9d3844de44c9f8e6f8c6cc025c5e227429bfe10af39c4e6c7caa2cc62e7d4c0c", "sticker": null, "text": "Dude, I already covered all those, and built a project on that", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:30:17+00:00" }, { "message_id": "947cf1a0dec3f7b750a606c0e56bfa1984ceef6a23394dde7c8a5c21464b3a75", "sticker": null, "text": "The company I went to interview at today had a group of people competing for the position. It was terrible.", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:31:14+00:00" }, { "message_id": "ea7729251e9e4e3f9373ade6f8e5bf46651c8e4fc96f4ebe00c062ff6566e8fa", "sticker": null, "text": "India right?", "from_id": "f2ba0cd2a717b54e3ad3be18141945693c06a8266da57aab2e0402834738de3c", "reply_to": null, "datetime": "2024-03-28T17:32:16+00:00" }, { "message_id": "27cff2988b7893f775adf4a7c26ebf027eab2f01099f047fdeb3268b1a9eb649", "sticker": null, "text": "East Asia", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-28T17:32:49+00:00" }, { "message_id": "9e449d46b6ee70d648ebb419ba7cf7919666396807ff3dd851c4755e7de77dae", "sticker": null, "text": "Can anyone recommend a book or two for learning python?", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-03-29T03:56:57+00:00" }, { "message_id": "b1883dd25bb4e87e11874ce09715a21923a1b1d2a821e4e20f9e68d59d39ad13", "sticker": null, "text": "Hello", "from_id": "2d2fdd19c2a01b38fd6337dc1632019cb70e5fd35c095ae662ebe48779216622", "reply_to": null, "datetime": "2024-03-29T04:47:49+00:00" }, { "message_id": "87e014ba49095bbb3dc66a5c9e82aa2320f93328f5ee7a8dea6311d57a05534f", "sticker": null, "text": "Anyone have any project ideas on advanced java ?", "from_id": "2d2fdd19c2a01b38fd6337dc1632019cb70e5fd35c095ae662ebe48779216622", "reply_to": null, "datetime": "2024-03-29T04:48:04+00:00" }, { "message_id": "2f1a2c58baf31435a4680a24a194a4acb0edec2240e34175939cc4bc32efd00c", "sticker": null, "text": "sure", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2024-03-29T04:52:47+00:00" }, { "message_id": "c9207bee5f2471ee10f8349ffa96dacaa81913dabf3b09b797738333f724ba0c", "sticker": null, "text": "Recently,i'm thinking about how to improve my code skills", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2024-03-29T04:55:05+00:00" }, { "message_id": "6156e5e313733efa89322adca9e1df7df4288a1affda63462ce2627e6e82922b", "sticker": null, "text": "What do you mean😐", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "bda55087e80555c9f77a59a606ed9e8e1248f29b369008e685614662918f8a03", "datetime": "2024-03-29T05:56:13+00:00" }, { "message_id": "6f04d05ca2bcb44ae509118709a369e9ce6830d4ffafca40183b9ed965aed83d", "sticker": null, "text": "No", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "bda55087e80555c9f77a59a606ed9e8e1248f29b369008e685614662918f8a03", "datetime": "2024-03-29T06:36:16+00:00" }, { "message_id": "cfb789f892fdf2a45ab1bc1f046932df431a7708165393e0f13fab2c9267c0eb", "sticker": null, "text": "Make ERP system,\nFor reference use the apache OpenERP system", "from_id": "e0fb60904e776558252bf49774a0ea2ffbdff69f1d30edbffbd5a147fe70b066", "reply_to": "87e014ba49095bbb3dc66a5c9e82aa2320f93328f5ee7a8dea6311d57a05534f", "datetime": "2024-03-29T06:37:45+00:00" }, { "message_id": "01d34ff5434a8e92fc73f17c124dcb03a792673868c5e5f730a5a8cabdb2510c", "sticker": null, "text": "Java is the immortal programming language 😂", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "bda55087e80555c9f77a59a606ed9e8e1248f29b369008e685614662918f8a03", "datetime": "2024-03-29T07:10:46+00:00" }, { "message_id": "e3dbb6e26285ee838a5caed8825ebbaa386ede7eed2270abb5b46349cf6c02ee", "sticker": null, "text": "Any java student learning in Univeristy !", "from_id": "526142672f60b92b768b5704ed1d37774fa57eb8658c9ee4caceb3c855ef6a24", "reply_to": null, "datetime": "2024-03-29T11:06:30+00:00" }, { "message_id": "4118588321a8c0cd5029c3e65fa42d512d6800577e965ab1b7b35c8b47550366", "sticker": null, "text": "i am looking for someone to learn and solve coding problems with me\n\nmainly recursion and 2d arrays\ni am not new to these, just practicing and looking for a team mate to practice with me", "from_id": "526142672f60b92b768b5704ed1d37774fa57eb8658c9ee4caceb3c855ef6a24", "reply_to": null, "datetime": "2024-03-29T11:07:01+00:00" }, { "message_id": "433d789217ec0555c52c68485706bdc02da1dac1081ee1ee110c690742fc865d", "sticker": null, "text": "Yes me, am a student who wants the same thing 🤚", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "4118588321a8c0cd5029c3e65fa42d512d6800577e965ab1b7b35c8b47550366", "datetime": "2024-03-29T14:04:25+00:00" }, { "message_id": "7f1675d2f22eea6c603c2b30afc1d17f830b11aeccb08da9043f6e7a5f2b4c72", "sticker": null, "text": "Thanks bro👍", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": "01d34ff5434a8e92fc73f17c124dcb03a792673868c5e5f730a5a8cabdb2510c", "datetime": "2024-03-31T12:30:06+00:00" }, { "message_id": "2435702b7acb26205a30b75cfd0343c7b4bc2c32b5ed403b3246d3ae93445473", "sticker": null, "text": "Anyone joining natraj project batch", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": null, "datetime": "2024-04-01T01:32:27+00:00" }, { "message_id": "0726b2ec492c363904f6bfc79ad001cbf925f0d72fbc9b173ebe81339e24269e", "sticker": null, "text": "DM me", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "73fe3665b8139c1392d2b3120c912fc325e68e106c73f60f5bcb624f733e8d4c", "datetime": "2024-04-01T02:52:52+00:00" }, { "message_id": "45561d75ed02c66a759c17aea987cc334755ee0d7cdffb08be0f8a1ba869de2d", "sticker": "773947703670341666/5463312500613189786.gif", "text": "", "from_id": "7527286c4b1ab76134c11b413d3b6b549badae5a9c3cee6a596c242e0e5a7795", "reply_to": null, "datetime": "2024-04-01T18:24:16+00:00" }, { "message_id": "adcd4242f0061d140cf23353b83d172e4682cd5f05d7c009e83b7821a81f0908", "sticker": null, "text": "Hi. I am interested in remote jobs.", "from_id": "7527286c4b1ab76134c11b413d3b6b549badae5a9c3cee6a596c242e0e5a7795", "reply_to": null, "datetime": "2024-04-01T18:24:55+00:00" }, { "message_id": "72e460af96f8397060e1f4618f65a5453e67c1dede06d29e1cbb495155b69782", "sticker": null, "text": "Which is the best way to get Junior jobs?", "from_id": "7527286c4b1ab76134c11b413d3b6b549badae5a9c3cee6a596c242e0e5a7795", "reply_to": null, "datetime": "2024-04-01T18:25:36+00:00" }, { "message_id": "ad2fa9ed7639fddc0a0db7673049d871a432fbca26b4df9991a1f024e8efb50b", "sticker": null, "text": "Linkedin or anything like that?", "from_id": "7527286c4b1ab76134c11b413d3b6b549badae5a9c3cee6a596c242e0e5a7795", "reply_to": null, "datetime": "2024-04-01T18:26:16+00:00" }, { "message_id": "79aa754cc408b88951779215b9dbfb7f00067ccc95df74de6d36ed692952082d", "sticker": null, "text": "I'm in Brazil 🇧🇷. \nThanks in advance.", "from_id": "7527286c4b1ab76134c11b413d3b6b549badae5a9c3cee6a596c242e0e5a7795", "reply_to": null, "datetime": "2024-04-01T18:27:10+00:00" }, { "message_id": "23a6fb3cd6bd86013133ae67829ed21f610401f61bcec34da6d366ce65a8fe26", "sticker": null, "text": "@#USER", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "f1de5c20f74bc7924146d181f645052b4b1a853288ff52fbd2bf586675053c56", "datetime": "2024-04-01T19:19:37+00:00" }, { "message_id": "3f1655b93b3d9b54e79d012f3ae9aac43b169af3a88ac32046662e2c763c1fd4", "sticker": null, "text": "It's hard for Junior Devs to get remote jobs. But if you want to start a career as a Freelancer, you can get gigs on Fiverr platform", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "79aa754cc408b88951779215b9dbfb7f00067ccc95df74de6d36ed692952082d", "datetime": "2024-04-01T19:20:52+00:00" }, { "message_id": "dd74fdec79332411854b4d42f45bbf0012e7a0398b0adfefcb775aa0481f3710", "sticker": null, "text": "Thanks man. \nI'm appreciate it!", "from_id": "7527286c4b1ab76134c11b413d3b6b549badae5a9c3cee6a596c242e0e5a7795", "reply_to": "3f1655b93b3d9b54e79d012f3ae9aac43b169af3a88ac32046662e2c763c1fd4", "datetime": "2024-04-01T19:32:19+00:00" }, { "message_id": "c2f2e54bf1565d4d6502270bbd0e63690737d79fd5f431107282af8d6ece73cf", "sticker": null, "text": "No problem bro", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "dd74fdec79332411854b4d42f45bbf0012e7a0398b0adfefcb775aa0481f3710", "datetime": "2024-04-01T19:33:55+00:00" }, { "message_id": "bca3b77c4bad7c2787965701b228e3e635c16e4176c0a6342dfaf74f66bae7cb", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "db1aad0fedd77c5170194ba24a594a1380b8e924989aba30716efc0404249846", "reply_to": null, "datetime": "2024-04-02T05:12:00+00:00" }, { "message_id": "2b23112abe85563a64c33e443852e4d2ee1bb823eb8c720fb45541aaae1bcdae", "sticker": null, "text": "Hello guys\n\nI'm building a frontend project that works with documents already existing on database. But I want to add a feature to render this document on the frontend when they are clicked on individually, regardless of their extension (docx, xlsx, pdf etc.)\n\nPlease if you've done something like this before and have an idea of how you can help me, please help", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-04-04T22:48:24+00:00" }, { "message_id": "16066e84629232c796fa2555af94a3e52156e85c85d86105c756460fd9455be2", "sticker": null, "text": "For look for apache libraries for the same.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "2b23112abe85563a64c33e443852e4d2ee1bb823eb8c720fb45541aaae1bcdae", "datetime": "2024-04-05T05:04:54+00:00" }, { "message_id": "d6792ee6e6c96c1fe5285d304e8fdc817eddc299a81bc4999f21f84f76799438", "sticker": null, "text": "Docx files u should allow to download not edit. If you want to allow for view can use google libs too", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-04-05T05:07:48+00:00" }, { "message_id": "f288aab7b2342166a555a4f66560c0784dc29cc59b5686d2840915d2ce455485", "sticker": null, "text": "Thanks", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "16066e84629232c796fa2555af94a3e52156e85c85d86105c756460fd9455be2", "datetime": "2024-04-05T07:16:53+00:00" }, { "message_id": "841d147a8311bc7ce83ef7322924f03ae5a9c88606f5ba2acf0253322e481ce0", "sticker": null, "text": "Oh I see, this makes sense", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "d6792ee6e6c96c1fe5285d304e8fdc817eddc299a81bc4999f21f84f76799438", "datetime": "2024-04-05T07:17:02+00:00" }, { "message_id": "6daf6452667bb009e3447b26671b67a6e1df9e7b58d79ed96cdec59472629ba5", "sticker": null, "text": "Cannot resolve symbol 'DataSource' Could not autowire. No beans of 'DataSource' type found. 'JdbcUserDetailsManager(javax.sql.DataSource)' in 'org.springframework.security.provisioning.JdbcUserDetailsManager' cannot be applied to '(DataSource)'", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-04-11T23:28:59+00:00" }, { "message_id": "972f0cc1ba3d55fbf93af3672a82929ddfb26ba4e39a520378c97796bda1c602", "sticker": null, "text": "someone please help me debug. I can't send picture unfortunately", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-04-11T23:29:15+00:00" }, { "message_id": "e0c169bd8f6163645c1ca5689434c1af8ab5c7c291d2162e4f6f8deac2113e14", "sticker": null, "text": "Have u created database connector bean ?", "from_id": "e829f3ab34dec1c6125a829156dd22f637038ccd0c7289cee53ecdddf75994e1", "reply_to": "6daf6452667bb009e3447b26671b67a6e1df9e7b58d79ed96cdec59472629ba5", "datetime": "2024-04-12T01:08:05+00:00" }, { "message_id": "161ed493d6a946f5a5fff84ec36c6e419fa8a315c37f7e20c1f44c11963e0eab", "sticker": null, "text": "I was following a video, and I didn't exactly what they did.\n\nHow do I create a dB connector bean?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "e0c169bd8f6163645c1ca5689434c1af8ab5c7c291d2162e4f6f8deac2113e14", "datetime": "2024-04-12T06:42:35+00:00" }, { "message_id": "a24896b2887f3537695dc7f688fa4736b2b26c9b04c7bf5b8834f9fd3326a839", "sticker": null, "text": "Hello guys Iam creating banner and Flyer design if anyone need DM me I can create first one design for free each customer", "from_id": "fb018c19a29a8d48d98a73226481bcbe476e309533d4c1e5faad6dca1285e8ae", "reply_to": null, "datetime": "2024-04-13T05:25:55+00:00" }, { "message_id": "2d1471883588e887533699ba812e58040232f3889b8315f2c0071ed17bb6689c", "sticker": null, "text": "Hi everybody,\nI am Fran, a Java open source developer\n\nI would like to get ideas of applications to be programmed, as I am exhausting the ideas of projects that might be useful for my own use.\n\nMy latest pending project, is to program a dual application, a Java desktop and an Android application, whose aim is to share the clipboard between a computer and the mobile phone, via wifi\n\nBut I guess that in a few weeks (or may be in a few months), the application will be finished\n\nAnd this was my latest project idea ...\nAnd ...\nFor a personal election, I would like not to stop programming as many hours as I can\n\nBut ... I do not have more ideas !\nDoes anybody be able to shed a light to my way??\n\nAny ideas for applications that you consider that might be useful ?\n\nMay be a collaboration is possible, if you feel like this ...\n\nIf not, ideas are welcome, as a brainstorming from which I eventually will be able to pick one or some of them (giving credits, of course)", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-04-14T08:52:45+00:00" }, { "message_id": "44d7b5e39a5d33d26384291d7fdce023a7c1bf20a7f6084ae48fe445d4868a62", "sticker": null, "text": "Hello, I'm making a Stock Exange application for dekstop and Android, you could do the same", "from_id": "4f3bdda75ffe03b75296795d9f5333911101104579db990e9ed121f4ad0b54eb", "reply_to": "2d1471883588e887533699ba812e58040232f3889b8315f2c0071ed17bb6689c", "datetime": "2024-04-14T08:58:21+00:00" }, { "message_id": "2b6356adbf3d5fa7844394035afdbc664dd1d7e37f4618bdc621be7375ea18a8", "sticker": null, "text": "\"Stock Exange\" ? what does it mean ?", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-04-14T08:59:07+00:00" }, { "message_id": "fa4487bc771985f5b3405f774be3435c67451e008a00e1902d58fcf191bf7873", "sticker": null, "text": "ahh (Google-translator)", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-04-14T09:02:40+00:00" }, { "message_id": "4eb228e8174256a8f5f6cff430891f11aed4a53170316e58f48047d1b4632a5a", "sticker": null, "text": "Sorry, Stock Exange is not my cup of tea ...\n\nI am looking for something that let me grow technically or by discovering (new) interesting libraries that might be useful in the future for other uses, as I am developing the application\n\nAs it could be an application that calls an OCR or an image-recognizer in a server via API (libraries that should be open-source, and that I may put in a server, for being used by my applications).\nThis way, would allow an interesting mixture of resources that might be in different languages.\n\nIf it is a mobile application, to use speech recognition might be interesting , may be in combination with an interface with some generative AI, for helping the application, ... \n\nI am looking for something like this ...", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-04-14T09:16:37+00:00" }, { "message_id": "d5964ed11f29814d6fc98b9d29532a80e8e0184f8b4d57c508484378f2b31484", "sticker": null, "text": "Hi Has anyone used Feign client to make HTTP/2 requests?", "from_id": "d47df1f856dd7ae455441c0b5ad13cb39d6e8e355ad81be29687b516f088530d", "reply_to": null, "datetime": "2024-04-15T07:30:59+00:00" }, { "message_id": "d0081dc341f41dbdbb74f40ed30af9f51fb53392fdedbd2a10020b9cbf945101", "sticker": null, "text": "dm me if you need someone to make you a website, a mobile app, telegram bot, automation bot or any other thing!!!", "from_id": "64bcc0ea557fa522e6c0388ec31a8dda32d34f7926b1bdb8b6702c74e374a0e9", "reply_to": null, "datetime": "2024-04-16T17:54:11+00:00" }, { "message_id": "92b743abd35fc00bd38d482d14032a4449db22da11d4de95cdc854241b175d93", "sticker": null, "text": "#USER_ID English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "f9e614b99b422efdd64c1f42d438d131518ce350c871468e1b7a52b87f7342f7", "datetime": "2024-04-17T15:46:54+00:00" }, { "message_id": "f28f5429f988166e989e4efc850ef9f86b4fdb6616a497ff1b90ee0fa94e682b", "sticker": null, "text": "hames", "from_id": "26ef8260844c4616f04505915f9f666d247dcd5ac096d2e75d027094feccd236", "reply_to": null, "datetime": "2024-04-18T08:47:11+00:00" }, { "message_id": "f3f839e9b3c9d29756a79108dc59df54c46a009f541a48b91d5fde1535e728e8", "sticker": null, "text": "Hii everyone,\nI'm a full stack app developer\nHaving 4y+ exp\n\n*Any project please let me know !!*\nTech stack\nFor native - kotlin/getpack composed \nHybrid - Flutter dart\nAlso workd on MERN Stack and PHP laravel ( *1y+ experience in web*)", "from_id": "cdf119fd57acc9d6053e4b9ab8c4502a068d70781d4aff6d61dd44181170164d", "reply_to": null, "datetime": "2024-04-18T09:07:03+00:00" }, { "message_id": "6f19d946472efd10d1ba4a63d6ffa03299e45b80c60da7d02915661428d5d97d", "sticker": null, "text": "Hi guys", "from_id": "8907f6d653d55c1e23eb2b3c9cd5fc37f86336c980335c8e55a038005c659896", "reply_to": null, "datetime": "2024-04-18T18:47:29+00:00" }, { "message_id": "f1dddc7b98c34d2100dc94d7e733feb9476273369d6488b0982cc073b3d3061f", "sticker": null, "text": "I am a computer science student and I want to learn java", "from_id": "8907f6d653d55c1e23eb2b3c9cd5fc37f86336c980335c8e55a038005c659896", "reply_to": null, "datetime": "2024-04-18T18:48:08+00:00" }, { "message_id": "1ff964a3af08030f80ba6baac17681f67a87fd38b5017081aef0a3b3fb63f904", "sticker": null, "text": "I know the basics of OOP and it's syntax in java", "from_id": "8907f6d653d55c1e23eb2b3c9cd5fc37f86336c980335c8e55a038005c659896", "reply_to": null, "datetime": "2024-04-18T18:48:47+00:00" }, { "message_id": "8a10cac76fffdf624486584cc7813c3823a8687628d9927fed2ffb08e734e730", "sticker": null, "text": "but I am only a beginner and I need some advices", "from_id": "8907f6d653d55c1e23eb2b3c9cd5fc37f86336c980335c8e55a038005c659896", "reply_to": null, "datetime": "2024-04-18T18:49:08+00:00" }, { "message_id": "615c3f2e9fe866ec066435d55a5f984e2ed5583fe0f41977cef3ba19d204e212", "sticker": null, "text": "one of the projects I made is a simple calculator that I made with JAVA GUI", "from_id": "8907f6d653d55c1e23eb2b3c9cd5fc37f86336c980335c8e55a038005c659896", "reply_to": null, "datetime": "2024-04-18T18:52:36+00:00" }, { "message_id": "f61cb64b8811cf130bd313b1f9bd6e5052de025dba4c5fdb6a49b67e59bfe8e1", "sticker": null, "text": "Practice and theory 75%, 25%\n\nIf you have reached a good level, look at java generics, functional programming since java 8, streams, since java 8, and designing patterens would be also interesting", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-04-18T20:37:11+00:00" }, { "message_id": "49481d1f17d217a00adc6d9654b9570f6189cb92a959d3bc405cc3bd4e065249", "sticker": null, "text": "Thank you", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "f61cb64b8811cf130bd313b1f9bd6e5052de025dba4c5fdb6a49b67e59bfe8e1", "datetime": "2024-04-19T10:55:36+00:00" }, { "message_id": "490cc38825e6601bd782460518d299631d74ba900ba835ab5fd715a392b22d48", "sticker": null, "text": "build real projects using crash courses, like I mean building apis that work", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "615c3f2e9fe866ec066435d55a5f984e2ed5583fe0f41977cef3ba19d204e212", "datetime": "2024-04-19T14:00:53+00:00" }, { "message_id": "57a39bd61bd4b17f5f100e3f0c2bb779c28b73d24aef0f3f9b7a50c2ec4f3e49", "sticker": null, "text": "Do you have any suggestions ?", "from_id": "8907f6d653d55c1e23eb2b3c9cd5fc37f86336c980335c8e55a038005c659896", "reply_to": "490cc38825e6601bd782460518d299631d74ba900ba835ab5fd715a392b22d48", "datetime": "2024-04-19T14:01:30+00:00" }, { "message_id": "b27e826dbcfac7d024796015e65dc18f6a13ea4230f72c9c9a141b1675ce591d", "sticker": null, "text": "To be honest, if you can break down a project to implementing basic functional APIs like login authentication, CRUD functionality of an entity, security and roles, logout feature, filtering an table based on a result and so on. You can start from here. Knowledge you gain from these would help you solve bigger problems .", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-04-19T14:07:03+00:00" }, { "message_id": "f09733e297439f522036ff7f1869e889b40cb11b50f2b00f085733eacb9f4ef6", "sticker": null, "text": "thank you \nI will start with projects like this", "from_id": "8907f6d653d55c1e23eb2b3c9cd5fc37f86336c980335c8e55a038005c659896", "reply_to": "b27e826dbcfac7d024796015e65dc18f6a13ea4230f72c9c9a141b1675ce591d", "datetime": "2024-04-19T14:12:54+00:00" }, { "message_id": "fa7abb4e90af07681d7939a97879534e0bdf5572b051e79551a8c90e7921f67a", "sticker": null, "text": "Can you define babel?", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-04-24T08:40:24+00:00" }, { "message_id": "1284935b9e967ea638ccd2393e7b50831cbe4be71d5fe1db9cbad1718bcd6bec", "sticker": null, "text": "Hi everyone", "from_id": "5150cff3f67fa536206d8c0b61370a86ae91cf1f584f1400b02a3b9ff1728ac1", "reply_to": null, "datetime": "2024-04-24T15:41:15+00:00" }, { "message_id": "dec58ab7d7f9fb6bd366cea633274ef3632f8eaa823bf811c14bed255d60e339", "sticker": null, "text": "Hello", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": null, "datetime": "2024-04-24T16:51:49+00:00" }, { "message_id": "d24d9ba473a48b7ec061d55f2996b5e18ba987e747c673f08b2c1b1b80f3e755", "sticker": null, "text": "I am not a English native, nearly cant know what the question", "from_id": "4d1a7b7db7bb2dafdb235a3b8f33231bda7c6d65288721108a28090ab90afa0c", "reply_to": null, "datetime": "2024-04-30T05:36:03+00:00" }, { "message_id": "2cf98642968776fcde04c9c9b0fbc3843459a65af449497a38ae79261c4f09d4", "sticker": null, "text": "I found there is very few remote jobs for Java developer", "from_id": "4d1a7b7db7bb2dafdb235a3b8f33231bda7c6d65288721108a28090ab90afa0c", "reply_to": null, "datetime": "2024-04-30T05:36:50+00:00" }, { "message_id": "ec158d4fb8ea1141ac9e27e6bfad285400952c9333df6ce0815e10ebc148cafb", "sticker": null, "text": "Why front end developers found remote jobs much easier", "from_id": "4d1a7b7db7bb2dafdb235a3b8f33231bda7c6d65288721108a28090ab90afa0c", "reply_to": null, "datetime": "2024-04-30T05:37:35+00:00" }, { "message_id": "141a0a401f118bf12da63a2ca8802afae26d245b5bb9435b308f0e04a99ef683", "sticker": null, "text": "Hi Anyone, can someone guide for java 11 certification", "from_id": "12a019e90b3c644623be92bbbe03e1259d007d429ab39a4ee98348d33edeaec9", "reply_to": null, "datetime": "2024-05-02T03:01:23+00:00" }, { "message_id": "1a15f675ca413cecfa4cda5e98e7844b17cba026184bf8e2db07749aecba890b", "sticker": null, "text": "Can anyone share dumps if available", "from_id": "12a019e90b3c644623be92bbbe03e1259d007d429ab39a4ee98348d33edeaec9", "reply_to": null, "datetime": "2024-05-02T03:02:50+00:00" }, { "message_id": "f88b24e6f5dba6327133288bf0c6421f6a63fd651db92ab49f5523b0ce7aa53b", "sticker": null, "text": "I think you should be learning to Spring framework in parallel", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "1ff964a3af08030f80ba6baac17681f67a87fd38b5017081aef0a3b3fb63f904", "datetime": "2024-05-02T22:00:13+00:00" }, { "message_id": "b4bff6b825748fbfe06303d94a63fb0ec5f73e5b5aea879fbe1d14442933f757", "sticker": null, "text": "I have 2 years experience java spring boot", "from_id": "17aa7c5e1eccba69076eeb12141a360a1e9377f44662c5fd346c373408771d84", "reply_to": null, "datetime": "2024-05-03T05:20:15+00:00" }, { "message_id": "70e999b51a311dcb3791fca4a1fe3f72939c0d14065782296b386a9de2c8c992", "sticker": null, "text": "Wow", "from_id": "f1f537301c71ff1cc109fbd7973fa1f2c0208374e77470af5aee19e967823b54", "reply_to": null, "datetime": "2024-05-03T09:29:35+00:00" }, { "message_id": "9f51e52882e0622626cd388b0a40abb64c1424fedb8a716dcee09b20add3a948", "sticker": null, "text": "Yes it feel the same actually \n\nR u a working professional or student?", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "3e766a8e0f62a3381f458ae1dc4ed73925c5ff4ebe3909d4918ce8d850c32119", "datetime": "2024-05-03T19:38:56+00:00" }, { "message_id": "af78a1288d446c4b5e6dcb0bf33017e4d790bc10c4f9422e45cabb67ccbbcf62", "sticker": null, "text": "Great keep practicing questions in leet code", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "615c3f2e9fe866ec066435d55a5f984e2ed5583fe0f41977cef3ba19d204e212", "datetime": "2024-05-03T19:39:26+00:00" }, { "message_id": "f20d66e8bf474a573f6f6a98b0e61b4595d30a307506442f21829ace2fb26da8", "sticker": null, "text": "How to setup Java environment for 32bit Android....???", "from_id": "163aaa725994d2e2ea88f0d99ccdcca8689fecde2c7aa6c6f79b961267e4b68f", "reply_to": null, "datetime": "2024-05-04T16:20:05+00:00" }, { "message_id": "57f8e69440f425b76cf1e7f766962229883fcf19a112ab850737eefff7e310aa", "sticker": null, "text": "Guys tell me soon....i got no time :(", "from_id": "163aaa725994d2e2ea88f0d99ccdcca8689fecde2c7aa6c6f79b961267e4b68f", "reply_to": "f20d66e8bf474a573f6f6a98b0e61b4595d30a307506442f21829ace2fb26da8", "datetime": "2024-05-04T16:23:21+00:00" }, { "message_id": "07d3fb00c8b6ad9937ff08c27d495d2549ca006974093e18e314741061f17b36", "sticker": null, "text": "i have first java source code and run it. but error with this message:\nError: A JNI error has occurred, please check your installation and try again\nException in thread \"main\" java.lang.UnsupportedClassVersionError: DataCleanup has been compiled by a more recent version of the Java Runtime (class file version 62.0), this version of the Java Runtime only recognizes class file versions up to 52.0.\ni write code in Sublime, with ubuntu machine.", "from_id": "b3ecd9204c5e16d8e44a20493bc22d94b5d97a43e56202dfb19d59535770b4c6", "reply_to": null, "datetime": "2024-05-05T01:35:57+00:00" }, { "message_id": "91fe165cdfac6bb177fc7186567ecbffa2df2c4bd6fb97612c96dd7af3269f55", "sticker": null, "text": "who can deal with this bot?", "from_id": "4d1a7b7db7bb2dafdb235a3b8f33231bda7c6d65288721108a28090ab90afa0c", "reply_to": null, "datetime": "2024-05-06T15:43:55+00:00" }, { "message_id": "87e134fd64f918edc684566578b9f1ba15909dcdc73c524e28b2170d6ff7760c", "sticker": null, "text": "Anybody want to learn spring framework in Telugu", "from_id": "a781684e9cc3c9b541a41da5cf00817072ba2cc21521b28f5f3a27193780d5cf", "reply_to": null, "datetime": "2024-05-06T17:22:15+00:00" }, { "message_id": "591eecd8558757760f2949e8ecf0ba8dae78654c74513f0c4fa510b06383af5d", "sticker": null, "text": "Okay", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": null, "datetime": "2024-05-06T17:27:30+00:00" }, { "message_id": "3e55fa4e040b06ccf8409dc795d799d30888c0e20d7d5c141cacac5c8b5fff61", "sticker": null, "text": "I guess that your jre in outdated", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": "07d3fb00c8b6ad9937ff08c27d495d2549ca006974093e18e314741061f17b36", "datetime": "2024-05-06T20:18:16+00:00" }, { "message_id": "44bfaabf4f667accb549e43a86b6533e93784ee8eacb138f4ae7b0325934d987", "sticker": null, "text": "Show your first java code please. And what IDE are you use? i think you could be clean and recompile the project", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "07d3fb00c8b6ad9937ff08c27d495d2549ca006974093e18e314741061f17b36", "datetime": "2024-05-06T21:10:07+00:00" }, { "message_id": "e5aa8d1466e2d4cf6330d07403558a30e60f6bf012f406259912259faadbe71c", "sticker": null, "text": "Too many Java workers, bros", "from_id": "4d1a7b7db7bb2dafdb235a3b8f33231bda7c6d65288721108a28090ab90afa0c", "reply_to": null, "datetime": "2024-05-07T01:53:38+00:00" }, { "message_id": "5cafb1e97cf1fbd3b35e9defede73a9ecdd9e7dda434c7772a2c868a774dc70d", "sticker": null, "text": "Hello guys, would like to ask if AOP concept is very important?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-05-07T15:24:57+00:00" }, { "message_id": "16a4da443f4bd83b74c78d0ea20622596b252e961462199fb9da4f370af83d3c", "sticker": null, "text": "How many java installations you have on your machine? First installation is the one you set yourself and second is one that IDE includes by default. Your project compiled by yourself installation. But your project is running by default version.", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "07d3fb00c8b6ad9937ff08c27d495d2549ca006974093e18e314741061f17b36", "datetime": "2024-05-07T21:16:37+00:00" }, { "message_id": "114f553c516ed890851d40a9ec9637953401cb41a750b0339afb52706bb1b85e", "sticker": null, "text": "Good day everyone one", "from_id": "d66e07b818e7eac9c8236c796929f773bd1f9bb53ff802482b44b298950abbaa", "reply_to": null, "datetime": "2024-05-08T13:18:20+00:00" }, { "message_id": "97a407e64e53883d18b5dba53fee70460a76701c2409866a4dd714cef8e47b78", "sticker": null, "text": "Hello", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": null, "datetime": "2024-05-08T14:47:13+00:00" }, { "message_id": "aeb5efffb0409af586e38e80972a40391178630f24da5c1eda61680a3e56e436", "sticker": null, "text": "@#USER\n public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {\n return http\n .csrf()\n .disable()\n .authorizeHttpRequests()\n .requestMatchers(\"/authenticate\", \"/sign-up\", \"/order/**\")\n .permitAll()\n .and()\n .authorizeHttpRequests()\n .requestMatchers(\"/api/**\")\n .authenticated()\n .and()\n .sessionManagement()\n .sessionCreationPolicy(SessionCreationPolicy.STATELESS)\n .and()\n .addFilterBefore(authFilter, UsernamePasswordAuthenticationFilter.class)\n .build();\n }", "from_id": "373607ceba2af3299625aa75448e9697d1cb626e83be682b95a708d0aed61cce", "reply_to": null, "datetime": "2024-05-08T15:37:44+00:00" }, { "message_id": "5bf76d4641d63cecfbc13132ac052409960756314427a47c130c22a40ea77fb2", "sticker": null, "text": "how to fix csrf() deprecated", "from_id": "373607ceba2af3299625aa75448e9697d1cb626e83be682b95a708d0aed61cce", "reply_to": null, "datetime": "2024-05-08T15:37:57+00:00" }, { "message_id": "bd026d902cebdf218b132c22e089a6925860557eed6593ab89813b32f366c307", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8312bb3caecb6c1b10e8f140094542ef90c4104d6bc9742d2c7681b2adb1275e", "reply_to": "aeb5efffb0409af586e38e80972a40391178630f24da5c1eda61680a3e56e436", "datetime": "2024-05-08T15:53:57+00:00" }, { "message_id": "54be5635964c99b279272ba15c9b64090c5e21f870e3b295d401c240a117ba8b", "sticker": null, "text": "object oriented program vs object oriented paradigm Is same or different?", "from_id": "d641492a9540afe62780b2972a1b7808e04b8e0c86b1f4670d671409f2b63738", "reply_to": null, "datetime": "2024-05-09T03:33:58+00:00" }, { "message_id": "9684e871316a5858c9c004c0338df84f920eb84835b54e4e68ad540f5d54763e", "sticker": null, "text": "I have a problem with a .DLL file. A small one. Does anyone know?\nI ask", "from_id": "52bad329f7694efff52a191a49345d258440e78aa50f68b01d18b40d8223a946", "reply_to": null, "datetime": "2024-05-09T09:15:06+00:00" }, { "message_id": "2b54eb77ade72087501bfd6088f931cf91966d1c19e138612efcbfad59f1ad1d", "sticker": null, "text": "hey guys", "from_id": "3069b176e2cf4da4736a45ed3c5b503d05edfe9382e11f41a6ad12e83317441b", "reply_to": null, "datetime": "2024-05-10T07:09:56+00:00" }, { "message_id": "5e48975e2a7d1d7b4a4796506687aaee4b4bd0ead93ae9dd9b94cafaf0e27de7", "sticker": null, "text": "here is java tricky question let's solve", "from_id": "3069b176e2cf4da4736a45ed3c5b503d05edfe9382e11f41a6ad12e83317441b", "reply_to": null, "datetime": "2024-05-10T07:10:08+00:00" }, { "message_id": "d20a733ace41147b1b4d0764e94c0e05353c321435c67e55347e18cbf4fc2199", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "3069b176e2cf4da4736a45ed3c5b503d05edfe9382e11f41a6ad12e83317441b", "reply_to": null, "datetime": "2024-05-10T07:10:29+00:00" }, { "message_id": "0e9b89f8d8f8509e88257cb1e1f76ceab3a53167074661656756e2632d64080f", "sticker": null, "text": "Hi , I am full stack developer with 4 years of experience if any one need any kind of coding help , projects , you can contact me. Thanks.", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": null, "datetime": "2024-05-10T13:47:09+00:00" }, { "message_id": "beca9f155e5212ae8b1cc6a2c26c1dfa4bbc0ad0c39ca10cd506f7d9d62cb15e", "sticker": null, "text": "For", "from_id": "ac1b5c34fe24d21974599a8ab0fa8746b671c8bd384616db377a6211ee6a5168", "reply_to": null, "datetime": "2024-05-11T12:40:30+00:00" }, { "message_id": "1bd68d6b07b84d879ba5e3569d77a7241442406fefef46d892eb75de847c91b2", "sticker": null, "text": "Easy question it also came in my college exam", "from_id": "8bda6f8d8d3735af01a80285e3dfd83b4228165dc403276f07f80214fbd42201", "reply_to": "d20a733ace41147b1b4d0764e94c0e05353c321435c67e55347e18cbf4fc2199", "datetime": "2024-05-13T16:50:49+00:00" }, { "message_id": "1b25aa05a384f6dd58e25078876b3f706d743341af38350c6a7497bbc93aba6d", "sticker": null, "text": "I'm learning Java in school and I'm seriously considering switching from writing my APIs using Node JS to using Spring Boot, good idea?", "from_id": "e179313ae711fa8f0ac032238c1b7615e13dd4fe068656dd91e94064307051eb", "reply_to": null, "datetime": "2024-05-18T10:19:10+00:00" }, { "message_id": "a32c60bfc5215570d3e1e2ee2233ef04bef0584aed8628fce3dfa8bd1862ffa5", "sticker": null, "text": "nice choice easy and fast(spring boot)", "from_id": "3d9774da1b6df5f0202cc8ee408086ad252e3d48008c3fe22f03daa2b3b42d47", "reply_to": "1b25aa05a384f6dd58e25078876b3f706d743341af38350c6a7497bbc93aba6d", "datetime": "2024-05-18T22:02:31+00:00" }, { "message_id": "3d333e1869a6fa25aff30969c9068c06dfbd9ccb5b1edd1658201c083480e393", "sticker": null, "text": "I'm pretty used to having cloud providers to host my node apis for me easily - Same case for Springboot?", "from_id": "e179313ae711fa8f0ac032238c1b7615e13dd4fe068656dd91e94064307051eb", "reply_to": "a32c60bfc5215570d3e1e2ee2233ef04bef0584aed8628fce3dfa8bd1862ffa5", "datetime": "2024-05-18T23:05:25+00:00" }, { "message_id": "a4719498b8656b127a0a38fe36e79224e5b6b2f5da8541755ae04e5fcd104bcf", "sticker": null, "text": "Definitely", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "3d333e1869a6fa25aff30969c9068c06dfbd9ccb5b1edd1658201c083480e393", "datetime": "2024-05-18T23:11:17+00:00" }, { "message_id": "fb494fa4d83e434bf5064d49f53001e8acf2da625718328f218a21d599979f36", "sticker": null, "text": "Do you have an example of a platform that's easy to start with for noobs?", "from_id": "e179313ae711fa8f0ac032238c1b7615e13dd4fe068656dd91e94064307051eb", "reply_to": "a4719498b8656b127a0a38fe36e79224e5b6b2f5da8541755ae04e5fcd104bcf", "datetime": "2024-05-18T23:13:06+00:00" }, { "message_id": "99ce623940b708141f9f519e0b2e2f8cedbb62335db4fa96b25b917c33e76ad4", "sticker": null, "text": "Yes", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "fb494fa4d83e434bf5064d49f53001e8acf2da625718328f218a21d599979f36", "datetime": "2024-05-18T23:21:36+00:00" }, { "message_id": "e3982b4e360e8d328e2b94eaa5ee3aeebc578f90b82e2d34b7a69c99fcb627da", "sticker": null, "text": "Hi guys", "from_id": "fccbc6ce102f5bd7b7980ccb0b47ade2a5efcf270f497b45dcfbc56f0323f235", "reply_to": null, "datetime": "2024-05-21T07:58:53+00:00" }, { "message_id": "ba5209ea02f9194eabdc8fff88ddb84e4af174409056eb61fcb370a9477817d0", "sticker": null, "text": "Hie 🤚", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": null, "datetime": "2024-05-21T08:06:13+00:00" }, { "message_id": "cdc41850bfead171efcf640e976b883de079b44e1860f4d870615a89383389d3", "sticker": null, "text": "Where are you from", "from_id": "fccbc6ce102f5bd7b7980ccb0b47ade2a5efcf270f497b45dcfbc56f0323f235", "reply_to": null, "datetime": "2024-05-21T08:47:25+00:00" }, { "message_id": "076d5412860f8a6a5f7fee8e7ac351b5489164d88dbe9be827fccdb91d9db13a", "sticker": null, "text": "hey :)", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-05-21T13:00:03+00:00" }, { "message_id": "823bb51e1de24d3cc73286a039d9309f9a7bdc5e0da0b23c600034283bff13ab", "sticker": null, "text": "Malawi in Africa and you", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "cdc41850bfead171efcf640e976b883de079b44e1860f4d870615a89383389d3", "datetime": "2024-05-21T13:05:15+00:00" }, { "message_id": "fe4d51fa652d53c7db56113bfaee4622d02b26538a54aa22b5ba01b69c540c05", "sticker": null, "text": "Jammu and Kashmir", "from_id": "fccbc6ce102f5bd7b7980ccb0b47ade2a5efcf270f497b45dcfbc56f0323f235", "reply_to": null, "datetime": "2024-05-22T05:07:57+00:00" }, { "message_id": "84f2e587bd04d268f35db88b245499de578b16f1a7ffcc19fe968e3052b7cdae", "sticker": null, "text": "Alright", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "fe4d51fa652d53c7db56113bfaee4622d02b26538a54aa22b5ba01b69c540c05", "datetime": "2024-05-22T06:30:15+00:00" }, { "message_id": "67d04a4208675d86c18d7f24daa33c7fa732fb676bd1e15cf30c0d4fa48b43d0", "sticker": null, "text": "Can I hire a Java programmer to help me with a project?", "from_id": "a170d34292f5eff392309848a0d9eb9a8b0369272edd67afebb2ee006c29b7f8", "reply_to": null, "datetime": "2024-05-22T15:55:36+00:00" }, { "message_id": "cf5a3fab50f2be403eeda1f69eb750de6c3ffab858064f541cddc8bc7c95e544", "sticker": null, "text": "yes , i am", "from_id": "e1cc55a06510e25daf2c27b00119fa06d484171b13b94e4e0255cb4d57fb4164", "reply_to": "67d04a4208675d86c18d7f24daa33c7fa732fb676bd1e15cf30c0d4fa48b43d0", "datetime": "2024-05-22T16:08:49+00:00" }, { "message_id": "10dc4dc5f3a6b5c1459ab716fa2def973fb9c78fcf8cf027fafbbf24993df585", "sticker": null, "text": "Yes you can hire a Java programmer", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "67d04a4208675d86c18d7f24daa33c7fa732fb676bd1e15cf30c0d4fa48b43d0", "datetime": "2024-05-22T16:44:08+00:00" }, { "message_id": "c6852fd85866c1954bcad2807736b1674fa5abea520962677b7503b72c8c5db0", "sticker": null, "text": "What r ur requirements?", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": "67d04a4208675d86c18d7f24daa33c7fa732fb676bd1e15cf30c0d4fa48b43d0", "datetime": "2024-05-22T18:36:24+00:00" }, { "message_id": "c763c214b4aa6814b57c7955c756b7034ffbb6cc75168af6cf05272a4bae19d0", "sticker": null, "text": "Can anyone suggest any good book for Spring Boot", "from_id": "7df16754b8eeffc681bdf86a5d3c6a708ed20946572b0d08f06dba614ba6a1aa", "reply_to": null, "datetime": "2024-05-23T17:25:30+00:00" }, { "message_id": "dc5d3e277b0d5c7d7ffbf0b17a1c3d7eccb268cdb3ac2c36ef2a2676831b5a78", "sticker": null, "text": "Which cover spring security as well", "from_id": "7df16754b8eeffc681bdf86a5d3c6a708ed20946572b0d08f06dba614ba6a1aa", "reply_to": null, "datetime": "2024-05-23T17:25:45+00:00" }, { "message_id": "4f7052aa608d73eeb54227b966ee8bfc7f1b9efe8d93d6e2eaa50bf00691a36a", "sticker": null, "text": "Kindly asking for any websites or information of where can I study bootstrap in a good way or better similar to W3School but better.\n\nApologies for inconvenience and appreciate your help", "from_id": "bb673bbd587974c08ceab1385710d8702c5d545f838f40b8e178eba00a4ba74e", "reply_to": null, "datetime": "2024-05-23T19:37:42+00:00" }, { "message_id": "bfa11c548b09c6a1632e1f95929bf5e34eab475f9cf4eebfb24fddf74200f2e8", "sticker": null, "text": "yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "67d04a4208675d86c18d7f24daa33c7fa732fb676bd1e15cf30c0d4fa48b43d0", "datetime": "2024-05-23T21:54:51+00:00" }, { "message_id": "95608b9139f0b2b83c30d32d14e57ea7986c9d92a7deb80f3531239b8e0a0a1b", "sticker": null, "text": "hello", "from_id": "42e1d21508aa5ec6745a5871a727519d40d5f392386f6996b762ad5c26b863dd", "reply_to": null, "datetime": "2024-05-23T22:24:39+00:00" }, { "message_id": "0a43983643a79a0bedd46a0a18061e47234453433d5ecee2cd456cc66531d6fa", "sticker": null, "text": "i need help for 1 assaigment can you help?", "from_id": "42e1d21508aa5ec6745a5871a727519d40d5f392386f6996b762ad5c26b863dd", "reply_to": null, "datetime": "2024-05-23T22:25:22+00:00" }, { "message_id": "dee4a1e222a1aa07b303b069f665686c121385beb5bba83fde4c61a3de6be07d", "sticker": null, "text": "What do you need ?", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-05-23T22:37:26+00:00" }, { "message_id": "648c5c7088afacbf80eb2ea4dd5cd4ffa9c0f076672fb57b7c45e74557a70195", "sticker": null, "text": "The second assignment is devoted to converting the first assignment from a console-based program\nto a GUI-based Java program (10%). The following text repeats the instructions of the first\nassignment:\nThe program should implement the Student class (studentID, name, surname, email) and the Course\nclass (courseID, title, description, day, lectures periods), as well as the Timetable class and the Main\nclass that executes the program.\nThe program should work as follows.\n1. The program asks the user to enter the name of the students’ text file that loads sample\nstudents, where each line includes student values separated by tabs.\n2. The program then asks the user to enter the name of the courses’ text file that loads sample\ncourses, where each line includes course values separated by tabs.\n3. The user then searches for a student by studentID. If found then the next step is to add 6\ncourses to the student. If not, it asks the user to search again.\n4. The user adds the 6 courses to the student’s timetable.\n5. The user prints the student’s timetable.\n6. The user exits the program by typing “exit”.\nSee Screenshot below on how the UI Window should look like:", "from_id": "42e1d21508aa5ec6745a5871a727519d40d5f392386f6996b762ad5c26b863dd", "reply_to": null, "datetime": "2024-05-23T22:41:28+00:00" }, { "message_id": "fd8f9c03bdd717a175383750dbc88cf55ab6b25545d20c8a1d2be20db1bd07e0", "sticker": null, "text": "can i send pic?", "from_id": "42e1d21508aa5ec6745a5871a727519d40d5f392386f6996b762ad5c26b863dd", "reply_to": null, "datetime": "2024-05-23T22:42:46+00:00" }, { "message_id": "289688d773ff37739794fa1a473fe9018d02e734fa8d9569e99faf14a1949ca9", "sticker": null, "text": "Yep", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": "fd8f9c03bdd717a175383750dbc88cf55ab6b25545d20c8a1d2be20db1bd07e0", "datetime": "2024-05-23T22:47:54+00:00" }, { "message_id": "7c8912072a87de87ce18f08923c1460dfb55b4fab2ccfa02eeafca9d978f46fe", "sticker": null, "text": "Send me then", "from_id": "e54c79b110a58ef1b97a3bd1a723f47226239b753eace294a8a6971562f4f239", "reply_to": null, "datetime": "2024-05-23T22:50:01+00:00" }, { "message_id": "26223497c3b825553b5a05e8cba7e4cc2490d002072e58b93c79c85677c051e1", "sticker": null, "text": "yes", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "67d04a4208675d86c18d7f24daa33c7fa732fb676bd1e15cf30c0d4fa48b43d0", "datetime": "2024-05-24T19:50:13+00:00" }, { "message_id": "eac5b99a155a2f762a8289d5404a5be5ee8596405337aeeccfe2a43bb0df31a4", "sticker": null, "text": "sure", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "0a43983643a79a0bedd46a0a18061e47234453433d5ecee2cd456cc66531d6fa", "datetime": "2024-05-24T19:50:37+00:00" }, { "message_id": "6fb3392732fd80e88701beb8189cc3d025d461ec2bee2c8d260badb73ea09025", "sticker": null, "text": "Can anyone please share me springboot pdf", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2024-05-24T20:28:37+00:00" }, { "message_id": "1b61b9c8b5c718ce5dbfe2737eb22feed71ed8af36ff88226b89d3567719e7a8", "sticker": null, "text": "+1", "from_id": "7df16754b8eeffc681bdf86a5d3c6a708ed20946572b0d08f06dba614ba6a1aa", "reply_to": "6fb3392732fd80e88701beb8189cc3d025d461ec2bee2c8d260badb73ea09025", "datetime": "2024-05-24T21:16:40+00:00" }, { "message_id": "c6f6997c233c9ff230fb5b8604940cb819e8ad646c89702fd5f979ad7c49f31e", "sticker": null, "text": "Please share naresh it or durgasoft springboot notes", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2024-05-24T21:18:39+00:00" }, { "message_id": "538c16a1d48e0c51b7b810e9cfa375770d36c3dbb9dc40a8518948a92c0617c4", "sticker": null, "text": "Hiii Anyone have project report in Java for sample???", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2024-05-25T14:46:23+00:00" }, { "message_id": "25efa2f57ac11562f7a725e81fc67020e1b04a4d7fba247a272fd9f9ac11b804", "sticker": null, "text": "Connected", "from_id": "7df16754b8eeffc681bdf86a5d3c6a708ed20946572b0d08f06dba614ba6a1aa", "reply_to": "9fc58eb6a9e1738964467b6ee7f239cb527dbe59ddba8bb4b4d0dbedc65be2f4", "datetime": "2024-05-26T15:27:31+00:00" }, { "message_id": "e2b89dd8a17d6c83c81632427ba8ca77f11fbfebf819a65ee7d3981de371424c", "sticker": null, "text": "Total messages: 136685", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-05-28T02:14:50+00:00" }, { "message_id": "27bad67b13366f234395d1d908e82b3acee534630aadd6c2e366246fd51c355a", "sticker": null, "text": "Connected", "from_id": "6c58f56f76d643e67b0c47d28e5a72f91bc793f9f6e996a97425ae1956c2b0ff", "reply_to": "9fc58eb6a9e1738964467b6ee7f239cb527dbe59ddba8bb4b4d0dbedc65be2f4", "datetime": "2024-05-28T09:29:10+00:00" }, { "message_id": "c81a6caef64840ba38527e2ba56fbae0bbe04a4ff0e87c5b4491591d6c14ec64", "sticker": null, "text": "Connected", "from_id": "1c548956246d7376e1d76a3e3d5d7560b5b6abdd792d018e6087bc4990d171f5", "reply_to": "9fc58eb6a9e1738964467b6ee7f239cb527dbe59ddba8bb4b4d0dbedc65be2f4", "datetime": "2024-05-28T10:04:29+00:00" }, { "message_id": "b706653de9130e63d8a76dc8f30508deb140c63a9a41c307837d270ba8c361d2", "sticker": null, "text": "Were are you people connecting really?? 😅", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": null, "datetime": "2024-05-28T10:07:51+00:00" }, { "message_id": "8bad74f125ad612c12c54e63e2264d289020e570145ddbb5b630f2d10501eafc", "sticker": null, "text": "i need a developer for a spring boot/database managment project", "from_id": "a170d34292f5eff392309848a0d9eb9a8b0369272edd67afebb2ee006c29b7f8", "reply_to": null, "datetime": "2024-05-28T21:38:00+00:00" }, { "message_id": "910a3e98a2a57825782ec0572bede83313cd7502ae0957a1f0fa217bcfa5aa3b", "sticker": null, "text": "hi i can help", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "8bad74f125ad612c12c54e63e2264d289020e570145ddbb5b630f2d10501eafc", "datetime": "2024-05-29T04:45:19+00:00" }, { "message_id": "0dc870679d7ab7a688e709646237d6b2768451f4c9ab70227093fbb8fe1e23ac", "sticker": null, "text": "James#:hi", "from_id": "a8559de5d8e852ebdf4428df5bd2c4122e34e286bb21c266a5e76079ccb182d8", "reply_to": null, "datetime": "2024-05-29T12:58:09+00:00" }, { "message_id": "fa2c57f3b80266b9f4bca381d98ef6d49c5e1d7fbc863d1a0c9bff2c9e22821f", "sticker": null, "text": "hi", "from_id": "a8559de5d8e852ebdf4428df5bd2c4122e34e286bb21c266a5e76079ccb182d8", "reply_to": null, "datetime": "2024-06-03T12:36:14+00:00" }, { "message_id": "f1a2731f99ba1e0d0f5b6a87051cee5910965ab3d38be8880be2b558d9451b4c", "sticker": null, "text": "Hi", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "fa2c57f3b80266b9f4bca381d98ef6d49c5e1d7fbc863d1a0c9bff2c9e22821f", "datetime": "2024-06-03T12:48:23+00:00" }, { "message_id": "c2330919a622344b799f11bb0b225b321f7f15caf23e8d4c234a66425d7e11b0", "sticker": null, "text": "Hey guys, I want learn Java, and actually im learn about control structures, Does anyone want to make a call via meet, and study together?", "from_id": "cbeb8ee9d09e78ebd1270253a66c398ba1711b5fa5a08e2fc787e01cc857508d", "reply_to": null, "datetime": "2024-06-05T14:19:44+00:00" }, { "message_id": "cded5fbfb2af7b41edf461944df8c7d49822839fac3262179f5ef93928303d15", "sticker": null, "text": "Hi bro", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "c2330919a622344b799f11bb0b225b321f7f15caf23e8d4c234a66425d7e11b0", "datetime": "2024-06-06T02:01:51+00:00" }, { "message_id": "f21b05cb8a691cf325e24e2d9d06b1c343353dcbd015b0166e9af5c1b10b10a9", "sticker": null, "text": "Do u use WhatsApp?", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": null, "datetime": "2024-06-06T02:01:58+00:00" }, { "message_id": "56058444aff94f9724536345f4171f32383b3a053c15797f95e76dfb412186e3", "sticker": null, "text": "Total messages: 136949", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-06-06T18:56:37+00:00" }, { "message_id": "616ab8b772175c4f335ef6618527c2d03023b4f28a2bbbc823ab135e1c89b8c4", "sticker": null, "text": "Hi", "from_id": "78ccbb768ecfe6895b8dbee4cec6cefaf0fcd0f24cd735885195094c70d39239", "reply_to": null, "datetime": "2024-06-07T11:18:09+00:00" }, { "message_id": "ec1a57cf976872eacd73a6d860f218179149a987c4f80b43f443336471de8aec", "sticker": null, "text": "Yaa", "from_id": "cbeb8ee9d09e78ebd1270253a66c398ba1711b5fa5a08e2fc787e01cc857508d", "reply_to": "f21b05cb8a691cf325e24e2d9d06b1c343353dcbd015b0166e9af5c1b10b10a9", "datetime": "2024-06-07T16:39:53+00:00" }, { "message_id": "1f5ab9fb00a19def61e23a546e241e319b634a974a8a07b86ff327b0db06a53d", "sticker": null, "text": "Tell me on dm", "from_id": "cbeb8ee9d09e78ebd1270253a66c398ba1711b5fa5a08e2fc787e01cc857508d", "reply_to": null, "datetime": "2024-06-07T16:40:05+00:00" }, { "message_id": "ab15205b6202465c5802e9ba97769996174578c1e7be5196ceecc5289523c8c1", "sticker": null, "text": "Hi,\nI'm learning backend development in Java and looking for a study mate to discuss doubts and stay consistent.", "from_id": "e01458bbd3dcac7b614621d05069b1de1fe809c8a0a992e2e427f4c68a0606f8", "reply_to": null, "datetime": "2024-06-07T16:56:52+00:00" }, { "message_id": "bd7e208495173b2c81a652783180b7bd224304d3fd33960a47432c71547e55a8", "sticker": null, "text": "Plz dm", "from_id": "e01458bbd3dcac7b614621d05069b1de1fe809c8a0a992e2e427f4c68a0606f8", "reply_to": null, "datetime": "2024-06-07T16:57:10+00:00" }, { "message_id": "2e3f7a149eaaa9fe90074eaaa20616766f30e7a27fbbf784bb1acee40f97d0da", "sticker": null, "text": "I want to learn java?", "from_id": "e66af63977bed53122809e332b6b6e5cc90561811b7939d0d0c63b3a43270d62", "reply_to": null, "datetime": "2024-06-08T09:16:13+00:00" }, { "message_id": "181f1f6eb73243b2c185f787eb74595c847ae9c8222d3e1748857e0bfa10e19f", "sticker": null, "text": "let me know if u need any kind of help", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "2e3f7a149eaaa9fe90074eaaa20616766f30e7a27fbbf784bb1acee40f97d0da", "datetime": "2024-06-08T10:51:50+00:00" }, { "message_id": "bf18c70c833e68b33c29287a069913c87a3248f414aebeddee965dc3c4b8f65c", "sticker": null, "text": "Are you beginning?", "from_id": "cbeb8ee9d09e78ebd1270253a66c398ba1711b5fa5a08e2fc787e01cc857508d", "reply_to": "2e3f7a149eaaa9fe90074eaaa20616766f30e7a27fbbf784bb1acee40f97d0da", "datetime": "2024-06-08T11:54:18+00:00" }, { "message_id": "201d6b251130823a7762ffb6f6bc3865a864e32a4b22b62589cf994c1a87a8a8", "sticker": null, "text": "I am good at c and cpp, but most of the people say java is most of the time required for tech industry and its most popular among all complied languages", "from_id": "23c3bcedfd86a9ee874f4c4aa9a590e8aedf49a9693765f1348e2934e6f42cf8", "reply_to": null, "datetime": "2024-06-08T12:29:16+00:00" }, { "message_id": "44e7ab42c82a7231bf1ac1e6c504057aaafe01a4d67922f7f93b6435849a93cb", "sticker": null, "text": "What should i do? I am thinking to stick with c++ and python only", "from_id": "23c3bcedfd86a9ee874f4c4aa9a590e8aedf49a9693765f1348e2934e6f42cf8", "reply_to": null, "datetime": "2024-06-08T12:29:51+00:00" }, { "message_id": "2bd51b35cbf713d3798e86a2a69f3ab49f1516a2d59491e9a94e3a47da89dd24", "sticker": null, "text": "As for my backend , I can use Javascript and python. C++ for my core CLI programming.", "from_id": "23c3bcedfd86a9ee874f4c4aa9a590e8aedf49a9693765f1348e2934e6f42cf8", "reply_to": null, "datetime": "2024-06-08T12:30:35+00:00" }, { "message_id": "c049f196ef36a5706b80df78803ec49d197352f45703d6d5974251a5986833f0", "sticker": null, "text": "Is it a good decision? If any professional is there, please recommend. Thank you", "from_id": "23c3bcedfd86a9ee874f4c4aa9a590e8aedf49a9693765f1348e2934e6f42cf8", "reply_to": null, "datetime": "2024-06-08T12:30:59+00:00" }, { "message_id": "6b7e9c06cb11021b11cd9add37133d4f01e9c0c27b9537c15171fafeecbbdf0a", "sticker": null, "text": "Total messages: 137062", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-06-09T16:49:16+00:00" }, { "message_id": "b3aaa62c426e3602b9613a0b3286af6081a29aac7b9ac98f8bfbaa716668cb85", "sticker": null, "text": "Hey guys\nI am a blogger\nAnd I upload tech, programming and such related content\nI have uploaded a number of BEGINNERS BASIC JAVA PROGRAMS\nIf you want to have a look\nJust dm me, I'll provide you all free of cost. And you can also suggest me what you want.", "from_id": "9c25afcee67305f928cb550c84a10f61cbbf114ced94fcff00774c7d590fea09", "reply_to": null, "datetime": "2024-06-09T16:52:55+00:00" }, { "message_id": "f1082ad5deeb28dfbd6d39badafd9dbc94bc4eccdb4a5a1cdeec8b266c413bc2", "sticker": null, "text": "Yes", "from_id": "e66af63977bed53122809e332b6b6e5cc90561811b7939d0d0c63b3a43270d62", "reply_to": "bf18c70c833e68b33c29287a069913c87a3248f414aebeddee965dc3c4b8f65c", "datetime": "2024-06-10T06:10:16+00:00" }, { "message_id": "00e1d21c061b7ca482177c6dde4efdd9a5f343d1c63257e0a57ff350a4b59bf6", "sticker": null, "text": "Guys I have a problem... I try to understand the Comparator and Comparable and the difference ... any good explanation? 🫣", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": null, "datetime": "2024-06-10T22:32:06+00:00" }, { "message_id": "346e1e3a977b79b7473ec4e8551f19f21c16ca739810b98cad9015f3f71610a4", "sticker": null, "text": "Comparable for internal comparison logic\n\nComparator generic way to compare objects - or kind of utility to compare objects", "from_id": "e829f3ab34dec1c6125a829156dd22f637038ccd0c7289cee53ecdddf75994e1", "reply_to": "00e1d21c061b7ca482177c6dde4efdd9a5f343d1c63257e0a57ff350a4b59bf6", "datetime": "2024-06-11T03:21:01+00:00" }, { "message_id": "ad654e07431ef69cea375780bde9fdcdd15be7b95c4c78c191ee6be0d8939616", "sticker": null, "text": "Anything else ? 😅", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": "346e1e3a977b79b7473ec4e8551f19f21c16ca739810b98cad9015f3f71610a4", "datetime": "2024-06-11T12:02:00+00:00" }, { "message_id": "2e1300373fe7e66c59120c5a40c0c04a45346ad13b1fa9c2945bdf6c1f1f7c5a", "sticker": null, "text": "Can anybody explain me recursion in simple words with example", "from_id": "fde2bd401e3f6be3f0ec33adfd696377bbb295062509b00b53d8f6227fc74128", "reply_to": null, "datetime": "2024-06-11T14:53:47+00:00" }, { "message_id": "faa964de40788d8b8cae8f6459559e2a2d317e43d332710e89ddc22f9c589bec", "sticker": null, "text": "İn simple words, recursion is when a method calls itself to solve a problem. More simple, when function that keeps asking itself the same question until it finds the answer.", "from_id": "7a2c67faa7908b4fa28c6b04bd8452892b1d5f2c5d5771901d55df169095984a", "reply_to": "2e1300373fe7e66c59120c5a40c0c04a45346ad13b1fa9c2945bdf6c1f1f7c5a", "datetime": "2024-06-11T17:52:11+00:00" }, { "message_id": "be90238f3a79c6f41b2ca34298d929a5d485aa3aabe82df8c3a8ed5d5c7e90d0", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-06-11T19:45:22+00:00" }, { "message_id": "721872733136813234e3836b4e365a9fc88fbfcc2904addf54cd4465b69eb08a", "sticker": null, "text": "let me know what you think", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-06-11T19:45:36+00:00" }, { "message_id": "e35c6f27a2f90ca8c2acf9fe1908c821bf2f25a825ffce0cbf0926fccd4fbd45", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "51c5d48c74aaf4908d7f84e94e0225fad6e15cdb465eea85f740a97457d611f6", "reply_to": null, "datetime": "2024-06-12T13:06:37+00:00" }, { "message_id": "150cce3e5634dfec50ca473e644d919e85b6342e139e1e4007bdf6439da6b5bc", "sticker": null, "text": "Total messages: 137208", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-06-12T19:30:58+00:00" }, { "message_id": "297a97b03c6ff248a631e0c25f7442fecae0b4a0839975cc56a90f6cd403b6bd", "sticker": null, "text": "Hi", "from_id": "0a27228beab1ca1665f93dea417b2c664ff5effa55925ccf0743e59d17c01552", "reply_to": null, "datetime": "2024-06-12T19:54:42+00:00" }, { "message_id": "7a9154ec86bb9cc57b931862c872f3e042d5be0d88f1c39cdef501e7a1303294", "sticker": null, "text": "Do you know any resources those I can learn Java professional?", "from_id": "0a27228beab1ca1665f93dea417b2c664ff5effa55925ccf0743e59d17c01552", "reply_to": null, "datetime": "2024-06-12T19:58:00+00:00" }, { "message_id": "d11764b2d3a1f108524c035a1cb509ebd540e8938f4760dd73bc726b681dfffc", "sticker": "U-Sticker detects this as offensive image.", "text": "", "from_id": "4d69886e3198c90a8552142f8c5019805e940c4b274533a0950bdb0374b13f15", "reply_to": null, "datetime": "2024-06-13T05:11:40+00:00" }, { "message_id": "66921f78bc78ac4dc4056a330bc8fd8c85d1df6add83d870ea933c4d6b99c042", "sticker": null, "text": "@#USER can we or someone or me create a channel for daily or weekly java learning class ? For example every saturday or something via voice chat or something ? 🤓", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": null, "datetime": "2024-06-13T19:06:26+00:00" }, { "message_id": "b5bb449b0faeffc0f6688a7de1ecfb6908f8285b3023715c825b7931c87599d0", "sticker": null, "text": "guys, like if u agree", "from_id": "72aa7ac2160f6a5d4fd9cfd4593729a09cf974db6d85a780e06321177a1f7843", "reply_to": "66921f78bc78ac4dc4056a330bc8fd8c85d1df6add83d870ea933c4d6b99c042", "datetime": "2024-06-14T06:39:13+00:00" }, { "message_id": "c124c09b43b9e31f92533e5874381f52030a86934413cf79285e3af42d111e08", "sticker": null, "text": "That's incomplete. Basically in recursion you have two different aspects \n1) Base case - Imagine it's like a starting step (1st step). This is exactly where your recursion stops to prevent the below recursive case from going into infinite recursion.\n2) Recursive case - The part of the function that calls itself with smaller and simpler input.\n\nRemember while solving problems using recursion always find the base case and recursive case. \n\nFor example if you want to reverse a string using recursion then think of base case like if len(string) ==0 or 1 then you have nothing to reverse (it's either an empty string or a string with 1 character - \"A\", \"B\" etc and the reverse here is nothing but the string itself)\n\nNow think of recursive case - Take the first character of string and reverse the rest of the string recursively and append the first character at the end. \n\nExample \"Java\" \nIn your first call of recursive function it would be \"ava\" + \"J\"\nSecond call will be \"va\" + \"a\"\nThird recursive call will be \"a\" + v\nNow in fourth call we reached base case as \"a\" is where string's length is 1. \nNow combine these we get \"avaJ\"", "from_id": "7df16754b8eeffc681bdf86a5d3c6a708ed20946572b0d08f06dba614ba6a1aa", "reply_to": "faa964de40788d8b8cae8f6459559e2a2d317e43d332710e89ddc22f9c589bec", "datetime": "2024-06-14T14:36:21+00:00" }, { "message_id": "fcaf65d6030fd2b57918b5575273808637d507e910322761b279f21513a5bf83", "sticker": null, "text": "Recursion is the process when program call itself one or more item to perform certain operation", "from_id": "e829f3ab34dec1c6125a829156dd22f637038ccd0c7289cee53ecdddf75994e1", "reply_to": "2e1300373fe7e66c59120c5a40c0c04a45346ad13b1fa9c2945bdf6c1f1f7c5a", "datetime": "2024-06-15T03:19:13+00:00" }, { "message_id": "1cb965831592f1ae13e5f0e49f314c0d39b78840bb73a68333a212626a3184a8", "sticker": null, "text": "Which language should I learn first as I am from non tech background and don't know anything about programming", "from_id": "fde2bd401e3f6be3f0ec33adfd696377bbb295062509b00b53d8f6227fc74128", "reply_to": null, "datetime": "2024-06-15T16:54:51+00:00" }, { "message_id": "bf90ced5e7731b29235ed566df3b99a14e9e14687a98caf8b0789554ab90d005", "sticker": null, "text": "So should I create one? 😇 text with #addme so I cann add you guys!!! 🤗", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": "b5bb449b0faeffc0f6688a7de1ecfb6908f8285b3023715c825b7931c87599d0", "datetime": "2024-06-15T17:49:22+00:00" }, { "message_id": "15d730e98619f3dd63c727fccc531222053347d527900843d104ba968b4b7c90", "sticker": null, "text": "It's based on your end goal. But if you're still confused and want to learn programming the easy way I would strongly recommend Python language it's one of the easiest language with its simple syntax.", "from_id": "7df16754b8eeffc681bdf86a5d3c6a708ed20946572b0d08f06dba614ba6a1aa", "reply_to": "1cb965831592f1ae13e5f0e49f314c0d39b78840bb73a68333a212626a3184a8", "datetime": "2024-06-15T21:53:43+00:00" }, { "message_id": "7f78aadce4455852fbcc6acbe0ac0e6abe6636d33d35f0b21116df76f225df8b", "sticker": null, "text": "Get a course on udemy", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "1cb965831592f1ae13e5f0e49f314c0d39b78840bb73a68333a212626a3184a8", "datetime": "2024-06-16T01:10:39+00:00" }, { "message_id": "22509099c6ac3027d8d3da8bcd184752147ee48afb547a86e3e8735aab43e8cd", "sticker": null, "text": "This would help", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-06-16T01:10:44+00:00" }, { "message_id": "480a8c8ab1830dd5d0f7413c94b6c1464f950aaea93af4e43c492301b4620c50", "sticker": null, "text": "Guys if you need a well designed web sites or dashboards hit me up, I will deliver as fast as possible, very comfortable with crud and mernstack. a trial will convince you", "from_id": "cbd66e9e6be4fb4f30de142d87906a2bb3cf9ccd5d81adbc3ca0b55b6b92ed1a", "reply_to": null, "datetime": "2024-06-16T06:32:00+00:00" }, { "message_id": "5c21215720567f0460476c1bc005b26b789787144c0bf1cfb4fb41f8764f66f2", "sticker": null, "text": "11", "from_id": "f56da784644d707c4ed24f5f2f6fe8677107eb5a3876116c8a92b6f0ef0e4b0a", "reply_to": null, "datetime": "2024-06-17T06:18:40+00:00" }, { "message_id": "ade7755bfeea193625bd94f0dfaff6c393fdfe4cf1abecdd46f14455cf9e7536", "sticker": null, "text": "Hi , \n\nDoes anyone have Head First Java 3rd Edition PDF ?", "from_id": "55526d1a37e0e59079920545ea1667d413c5556b02a4c07a834b97af8945cc61", "reply_to": null, "datetime": "2024-06-18T06:24:16+00:00" }, { "message_id": "83d12cb2a948cc18cce063f96a2b3e3714e8a110788acf93238b6cb42239f7ea", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "51c5d48c74aaf4908d7f84e94e0225fad6e15cdb465eea85f740a97457d611f6", "reply_to": null, "datetime": "2024-06-18T11:20:54+00:00" }, { "message_id": "bcbbbaa13e4dac8ffd79ff4764ccbd8a9206ae83781807412b3635235dd6a689", "sticker": null, "text": "Anyone here learning DSA ?", "from_id": "1b10efe276d82dbb2ecba0bea2be702646bf442296fdcae73f37e67716f4e038", "reply_to": null, "datetime": "2024-06-18T12:55:56+00:00" }, { "message_id": "589b657a0620844e429aa0494af9cd670b50fe3e575483c64945c53bb67f3cbe", "sticker": null, "text": "Yess", "from_id": "858cadeb9a52c8024b5267299f18f2f189b2cdb65c124f6bcdf041594ac6f353", "reply_to": "bcbbbaa13e4dac8ffd79ff4764ccbd8a9206ae83781807412b3635235dd6a689", "datetime": "2024-06-18T13:05:59+00:00" }, { "message_id": "0d2cc1e092a0fd43688a05ab9e2a22eee1ba2d4a43ce616bedd0e83bf8098fea", "sticker": null, "text": "Dm me", "from_id": "1b10efe276d82dbb2ecba0bea2be702646bf442296fdcae73f37e67716f4e038", "reply_to": "589b657a0620844e429aa0494af9cd670b50fe3e575483c64945c53bb67f3cbe", "datetime": "2024-06-18T13:06:55+00:00" }, { "message_id": "a752109bf2da0359fb971e83ea637c74a6f0f24ebed0012b80dc725e23e10f0c", "sticker": null, "text": "And dev and designer here?\nWe need you! Send dm for details 🙏🏻\n(C++/JS/TS)", "from_id": "284a15b423f76da08aa2a16adc9a3c8b8d5eeb9c632e93699de6ca9e4c418714", "reply_to": null, "datetime": "2024-06-18T13:35:36+00:00" }, { "message_id": "5be64213e2ade443880ebbeb9160d352186c93d76f19bc3ac8fd3947a78a1eef", "sticker": null, "text": "hlo, can anyone help me with a java program?\ni want to create a program to show SJF scheduling algorithm but i cant come up with how to sort the arrivaltime array and burst time array in order such that it properly calculates completion time and TAT & WT", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": null, "datetime": "2024-06-18T17:27:15+00:00" }, { "message_id": "1945e2288247c2a52307ce532c5c724f73e7f9c760aa48729ec8b5952c9f71b4", "sticker": null, "text": "arrivaltime array can be sorted through swapping two elements but how do i arrange the list such that the processes order according to burst time but at the same time it calculates the arrival of process", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": "5be64213e2ade443880ebbeb9160d352186c93d76f19bc3ac8fd3947a78a1eef", "datetime": "2024-06-18T17:29:53+00:00" }, { "message_id": "681d702c5d38fda0a741956955d836e9074906da9ee99efdf2771be55f9c473a", "sticker": null, "text": "idk if this makes sense", "from_id": "623f4057147ef3635acbb1478a3aa135d561a24a5d69037be61f262bac03d75e", "reply_to": null, "datetime": "2024-06-18T17:30:16+00:00" }, { "message_id": "5a28c0d58908d11d58c44710acec7b11c1e0af2102beb43f7ab218ee1e5f109b", "sticker": null, "text": null, "from_id": "8163d1b507e77c876c468b13a0b1ca6f294200d5c24453be54693216925b3e00", "reply_to": null, "datetime": "2024-06-20T12:35:52+00:00" }, { "message_id": "090b93dc99e60bd2ccd033e994f4a33088cc756e4263e7f097383ea93a24d42e", "sticker": null, "text": null, "from_id": "368c96b4daaf13547aaa1a6a2af7015f6f17ba39ad50fa606fac12b42bf7f9bf", "reply_to": null, "datetime": "2024-06-20T14:10:00+00:00" }, { "message_id": "edb2c6908d0ef70ea48de2d6804bd9c16dbf303b01e0f3a867496b2b59d9b257", "sticker": null, "text": "Ping me if anyone need support on Java and Angular tasks", "from_id": "8163d1b507e77c876c468b13a0b1ca6f294200d5c24453be54693216925b3e00", "reply_to": null, "datetime": "2024-06-20T15:16:59+00:00" }, { "message_id": "2da3c7daed4d0b3022956883a9b17fa09572f5aadc5a4273bcb2e6ebcbb9bb76", "sticker": null, "text": "can i get some test code from you guys who had done a test", "from_id": "e1cc55a06510e25daf2c27b00119fa06d484171b13b94e4e0255cb4d57fb4164", "reply_to": null, "datetime": "2024-06-20T15:34:15+00:00" }, { "message_id": "319cb62d2993f220009a681eb3337ab55a0a02afd3afc189db502c1d4cc247be", "sticker": null, "text": "Function for prime number", "from_id": "0604801b2459cbe3c5503ac70bbc2d4582206c171c16875e6973f13155695d63", "reply_to": null, "datetime": "2024-06-22T07:12:28+00:00" }, { "message_id": "a57afc1956b1bc6e4462bcee9c502e1bb4c9e8a346af47e6049f962b1ba4afd3", "sticker": null, "text": "Text me for voice chat learning java", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": null, "datetime": "2024-06-22T11:23:21+00:00" }, { "message_id": "10c48e7095629efaa024ced8c1adab99cf8ba2be8ecebe9cd40089d0ff8911ca", "sticker": null, "text": "Java class together", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": null, "datetime": "2024-06-22T11:23:33+00:00" }, { "message_id": "8250640215acb8c0e57acf502241fae233ed9c1e342aed089c8e9f6352171df7", "sticker": null, "text": "Tomorrow?", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": null, "datetime": "2024-06-22T11:23:37+00:00" }, { "message_id": "d43301ebee798eea3b8fbc2e90dcc07e2bf8573bee0961e6722c42d59a99379e", "sticker": null, "text": "what time?", "from_id": "e1cc55a06510e25daf2c27b00119fa06d484171b13b94e4e0255cb4d57fb4164", "reply_to": "10c48e7095629efaa024ced8c1adab99cf8ba2be8ecebe9cd40089d0ff8911ca", "datetime": "2024-06-22T13:54:07+00:00" }, { "message_id": "67675e87f34988bebb61ff8f586f44de2423200d291daf89a5932639057b7fe7", "sticker": null, "text": "I dont know yet 😅 but there is a survey on channel you chan choose", "from_id": "863bf7b22e012d1673593d07f20441797e344f9bb32cff0c6204c0c342775209", "reply_to": "d43301ebee798eea3b8fbc2e90dcc07e2bf8573bee0961e6722c42d59a99379e", "datetime": "2024-06-22T14:09:56+00:00" }, { "message_id": "a32eb28cbb3808b374ae3325c4b9b7b36eac10f01853f8a693688a15b2670f3a", "sticker": null, "text": "I guess\nprivate boolean prime(int n){\n for (int i = 0; i < Math.sqrt(n); i++){\n if (n % i == 0) return false;\n }\n return true;\n}", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": "319cb62d2993f220009a681eb3337ab55a0a02afd3afc189db502c1d4cc247be", "datetime": "2024-06-22T21:15:27+00:00" }, { "message_id": "72bd5490f7c26183383dbf0c4a29224a312a1856b3e9cfe8aa5b9413906c8a1d", "sticker": null, "text": "And dev and designer here?\nWe need you! Send dm for details 🙏🏻\n(C++/JS/TS)", "from_id": "284a15b423f76da08aa2a16adc9a3c8b8d5eeb9c632e93699de6ca9e4c418714", "reply_to": null, "datetime": "2024-06-23T12:36:16+00:00" }, { "message_id": "a3315fb806041e733f36cac2186b0460ff1c29c46fddaa3cfc8301e27bde7f26", "sticker": null, "text": "Hi. Im 3 years experienced software developer. Im seeking for guidance in two things\n1. Currently my ctc 650000lpa, I'm really looking job for around 13 14lpa. I heard in product based company I get these desired salary. Could you please help me out in approaching startups or product based startups which can pay well. \n2. Technical part I can mange well. But coming to dsa \nI have prepared arrays, greedy two pointer subarray, basic strings, linkedlist, sorting algorithm binary and linear search\n\nAny suggestions, can anyone please help me with this.", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2024-06-23T14:53:32+00:00" }, { "message_id": "9eac68cecdd8c91105a30e1a89c35901e98335b0bb7549ac47139882c356f02e", "sticker": null, "text": "Try in naukari", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "a3315fb806041e733f36cac2186b0460ff1c29c46fddaa3cfc8301e27bde7f26", "datetime": "2024-06-23T15:10:58+00:00" }, { "message_id": "3347517aa9c2f3a610084ea582ec06ab30e2f3f42ac4c60d85dd909340a1a7c3", "sticker": null, "text": "Try in naukari", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "a3315fb806041e733f36cac2186b0460ff1c29c46fddaa3cfc8301e27bde7f26", "datetime": "2024-06-23T15:14:17+00:00" }, { "message_id": "9d045920375d32ea0fb46d94c54e66de5209b94ed416f89e7ee91482dfe95877", "sticker": null, "text": "Add all you have with a little bit of creativity and start your own job/startup/future/etc...", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "a3315fb806041e733f36cac2186b0460ff1c29c46fddaa3cfc8301e27bde7f26", "datetime": "2024-06-23T16:06:18+00:00" }, { "message_id": "bc68164bab7e1fe67604b0725fd775f028391be5f0658ce53699a1d14c58c129", "sticker": null, "text": "Don't wait for someone to tell you do this and don't do that.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": null, "datetime": "2024-06-23T16:07:23+00:00" }, { "message_id": "177748909982a0a2433271da76c29267ce0b4322333f041be33a26829c951760", "sticker": null, "text": "12", "from_id": "f102513636884ff216c7dcca688e4a1bf4c03efc74f91fbbd1ad8b0f571501ca", "reply_to": null, "datetime": "2024-06-23T18:15:31+00:00" }, { "message_id": "309e3e5fe3665e0d5a8708dea0f1a74361414dd965389de7820cfc937aae1419", "sticker": null, "text": "Can someone help me with a Java spring boot project docker", "from_id": "a170d34292f5eff392309848a0d9eb9a8b0369272edd67afebb2ee006c29b7f8", "reply_to": null, "datetime": "2024-06-24T21:58:21+00:00" }, { "message_id": "ab1809fef4f7b08c79916c1f3b0ad58c486f9051d54e7d9bddf90debfbb5234e", "sticker": null, "text": "I’m looking for a JS programmer for a telegram game. Please dm me if your available", "from_id": "67ac7df3532f592f09fcbb28613d5135e8216aa3837525ff9a518da92d8adc84", "reply_to": null, "datetime": "2024-06-26T00:02:36+00:00" }, { "message_id": "22668e644ffbf3113485d92517057d77f2acf0d210978ec860628410bab40767", "sticker": null, "text": "Im using a ABC dto and which contains an account number and i need to get the corresponding card number based on the account number. \n\nNote: im not having card number in my ABC dto. \n\nBut i have card number in some other Dto (DEF) \n\nAny suggestions?", "from_id": "fa41a15353c3410482fd3b74a881d183f9b35c60e7ee7ae56fbf42e1c2de0ef9", "reply_to": null, "datetime": "2024-06-29T21:16:53+00:00" }, { "message_id": "55a1b2a255426f88f42bba9adf8857eac990a5aa861c8015dedb89cad40eb2f3", "sticker": null, "text": "Can't understand bri", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "22668e644ffbf3113485d92517057d77f2acf0d210978ec860628410bab40767", "datetime": "2024-06-30T06:00:59+00:00" }, { "message_id": "563228027e32fd4e83118bb65c3a84c761f7c5c03036a1bfc7a3d2fe97185a8a", "sticker": null, "text": "If there is a relationship between them", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "22668e644ffbf3113485d92517057d77f2acf0d210978ec860628410bab40767", "datetime": "2024-06-30T06:02:40+00:00" }, { "message_id": "f795c7960abfbfcd2be172db25d3a77ecdf800d20200f693a0cc61ab3dee1c30", "sticker": null, "text": "For free certification courses link...DM me..", "from_id": "3360f5a48f98cc77d39d43881a841c27e0a9baba480caca7d07bd36d0fae1f27", "reply_to": null, "datetime": "2024-06-30T09:11:33+00:00" }, { "message_id": "af104057c135503ec9339cb3f1f609f9bec41acfeced523f956af9ac61b428be", "sticker": null, "text": "Wow, too much of Chinese", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-06-30T14:11:19+00:00" }, { "message_id": "28b194b69274e1e378c1d8f4e391475faf2ef7de593492d7665f36fa0f7446d7", "sticker": null, "text": "Can y'all switch to English", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-06-30T14:11:30+00:00" }, { "message_id": "7e533f2435974cfe22345e44e78159f844299f573583cac2f98b5d303d565682", "sticker": null, "text": "Thank you 😁", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "28b194b69274e1e378c1d8f4e391475faf2ef7de593492d7665f36fa0f7446d7", "datetime": "2024-06-30T14:14:50+00:00" }, { "message_id": "682ffd90e123547f688bcef42dcd5d2da6dd71b34ad61cdf324b34458f3b68e9", "sticker": null, "text": "What language is This", "from_id": "2278c2959a7a50680cca0bf6f3f9c7e671d66f2d69d7e070b9faf5825eafd6a8", "reply_to": "14423add2a440068b9bc396d37d63c29da32c3b93987c89e73517386409e291e", "datetime": "2024-07-01T03:18:10+00:00" }, { "message_id": "0694e73c3015a65aa5823f682f8c3966f85b7885ff538a0b2038b2cba69cc435", "sticker": null, "text": "Chinese", "from_id": "6832c03649ff50dfe3b3ddcf20b409abd70892bcd140b687bce34b6e9d9b8384", "reply_to": "682ffd90e123547f688bcef42dcd5d2da6dd71b34ad61cdf324b34458f3b68e9", "datetime": "2024-07-01T03:21:32+00:00" }, { "message_id": "afe8b1432ae5d0e5925b9f10148c7c3674b0a44c65d0079fe0ada48605328d83", "sticker": null, "text": "Hello", "from_id": "d4893713d1c16b4ced0964410e3c1c7180d3d519bfac9e14c4230767f7d3323b", "reply_to": null, "datetime": "2024-07-02T13:29:05+00:00" }, { "message_id": "7203896f0eb2692e932e6443953be01c50193deb9eb92b525dc45c1eb6f4a936", "sticker": null, "text": "Did you find good docker options?", "from_id": "e179313ae711fa8f0ac032238c1b7615e13dd4fe068656dd91e94064307051eb", "reply_to": "309e3e5fe3665e0d5a8708dea0f1a74361414dd965389de7820cfc937aae1419", "datetime": "2024-07-02T13:29:20+00:00" }, { "message_id": "9e4c32dab44c74ea319d113162c8d3a583a2208bd001eb5657dfc469827ab09d", "sticker": null, "text": "Hello, so I am writing a chrome extension synchronizing two websites type stuff, so I open the first website in normal tabs mode and try to open the second website incognito mode, but income doesn't work, I'm using kiwi browser on android.", "from_id": "d4893713d1c16b4ced0964410e3c1c7180d3d519bfac9e14c4230767f7d3323b", "reply_to": null, "datetime": "2024-07-02T13:30:04+00:00" }, { "message_id": "990048862b834a909624dd843b7c8a3643db35df4ae8cb5f565605ac3e42b6c5", "sticker": null, "text": "Any helpful input/feedback?", "from_id": "d4893713d1c16b4ced0964410e3c1c7180d3d519bfac9e14c4230767f7d3323b", "reply_to": null, "datetime": "2024-07-02T13:30:28+00:00" }, { "message_id": "c6c192eaced74160f86027362856475f20d750ead6f3b4d5cc0400d3d0ba1a13", "sticker": null, "text": "And dev and designer here?\nWe need you! Send dm for details 🙏🏻\n(C++/JS/TS)", "from_id": "284a15b423f76da08aa2a16adc9a3c8b8d5eeb9c632e93699de6ca9e4c418714", "reply_to": null, "datetime": "2024-07-04T08:54:05+00:00" }, { "message_id": "4ba5ab2a13768402a6e5432734c2fed56567ff67f1c39b5151003b1c60b0f4fc", "sticker": null, "text": "Guys i am an entry level full stack developer where can I find the challenge for my project and show case like in Git.", "from_id": "2278c2959a7a50680cca0bf6f3f9c7e671d66f2d69d7e070b9faf5825eafd6a8", "reply_to": null, "datetime": "2024-07-04T10:38:55+00:00" }, { "message_id": "88860cd2aec18e21ad81ea1b6684b075fa2933999bf9716aa5ab87fab1c1e360", "sticker": null, "text": "you could possibly try writing some simple things like todo list trackers or simple 'twitter clone'.", "from_id": "494ef62e77f5afbe124c3c12956adae8119a472dc4da7332e17a336c8b0cc1b9", "reply_to": "4ba5ab2a13768402a6e5432734c2fed56567ff67f1c39b5151003b1c60b0f4fc", "datetime": "2024-07-04T11:34:59+00:00" }, { "message_id": "e36680130007c37d55e576e946ef20d0f5ff5cdfdb80fd5ccc7c2a9b7382b766", "sticker": null, "text": "13", "from_id": "c701dedeb0f128e0f4e1d992d8c2ac57a2b99aeb4dfc641515ba212b73a89a25", "reply_to": null, "datetime": "2024-07-04T14:17:03+00:00" }, { "message_id": "7fc9dbfebb874c7fe34e96b109dfdd13a595e51f43aa7cbc21784862a6b1257c", "sticker": null, "text": "@#USER Thank you so much", "from_id": "2278c2959a7a50680cca0bf6f3f9c7e671d66f2d69d7e070b9faf5825eafd6a8", "reply_to": "88860cd2aec18e21ad81ea1b6684b075fa2933999bf9716aa5ab87fab1c1e360", "datetime": "2024-07-04T14:23:10+00:00" }, { "message_id": "cca91931ea3ba1348df9dc00a08047086c731f19526b2d76ae36f1068610ae3e", "sticker": null, "text": "And dev and designer here?\nWe need you! Send dm for details 🙏🏻\n(C++/JS/TS)", "from_id": "284a15b423f76da08aa2a16adc9a3c8b8d5eeb9c632e93699de6ca9e4c418714", "reply_to": null, "datetime": "2024-07-05T11:56:24+00:00" }, { "message_id": "7edb956d673f9f0e7ff0cfecf15e96fd1234a94837fd3c656d44b8d71fdd919d", "sticker": null, "text": "geeks for geeks java course", "from_id": "2a5105321b22cccbd0e032fc9e1922213ea672b1c0aa941285e421fb3e5ae702", "reply_to": null, "datetime": "2024-07-07T09:24:02+00:00" }, { "message_id": "6e39cd8c81b6733c758d156e62d74a3a83ef22e3358b66c965f5f56ad2b15ed2", "sticker": null, "text": "Do u have it or are you looking for?", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "7edb956d673f9f0e7ff0cfecf15e96fd1234a94837fd3c656d44b8d71fdd919d", "datetime": "2024-07-07T12:47:39+00:00" }, { "message_id": "560908a85b29e6cc211565dcb51eada402a09158886592ec6a2c77091a5e6035", "sticker": null, "text": "Yes", "from_id": "0b60d76d168a14021361ad7c9ba7571c6f105f3f4085282633590dc8bde93e81", "reply_to": "ebc7029cd7470520d0d22ac4ff9739e34964d5a58ceeede3aec9321591ecbcdc", "datetime": "2024-07-07T12:47:57+00:00" }, { "message_id": "d4284d26c0831b79d242c3ad05fb4cf8dcccae3136bc682b3da5bcf043fc9567", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "51c5d48c74aaf4908d7f84e94e0225fad6e15cdb465eea85f740a97457d611f6", "reply_to": null, "datetime": "2024-07-08T12:49:29+00:00" }, { "message_id": "f12f278cf1d1ebdd633d7f7a2c0d7ee364026efbf28176182e2b5110cd2b311d", "sticker": null, "text": "Who is in need of a backend engineer skilled in Java, springBoot, Go and .Net?", "from_id": "51ee693edcfaa28d4cd3370681b8600bea4b120dde6fa08a927eb0431b37d067", "reply_to": null, "datetime": "2024-07-08T12:53:54+00:00" }, { "message_id": "23d82cf165581e26f7ef95c05d4c19cd14292f4f611ebd6b6a97820bd4c215e0", "sticker": null, "text": "Java backend", "from_id": "8823b10f234d1f6337a43462dd85d80fc2dfacc71ca8c3cf4f260172751ace1d", "reply_to": "f12f278cf1d1ebdd633d7f7a2c0d7ee364026efbf28176182e2b5110cd2b311d", "datetime": "2024-07-08T14:08:28+00:00" }, { "message_id": "d9a0eee951babf1923716115d10e5da7023642a857587551ac9a9ecae682da83", "sticker": null, "text": "do you need java developer?", "from_id": "51ee693edcfaa28d4cd3370681b8600bea4b120dde6fa08a927eb0431b37d067", "reply_to": "23d82cf165581e26f7ef95c05d4c19cd14292f4f611ebd6b6a97820bd4c215e0", "datetime": "2024-07-08T14:12:20+00:00" }, { "message_id": "51a4acb5e79f04baf7f7061c5170e1446f2d31696e8425f9f6bad55036be8977", "sticker": null, "text": "No actually I am also a java developer", "from_id": "8823b10f234d1f6337a43462dd85d80fc2dfacc71ca8c3cf4f260172751ace1d", "reply_to": "d9a0eee951babf1923716115d10e5da7023642a857587551ac9a9ecae682da83", "datetime": "2024-07-08T14:13:35+00:00" }, { "message_id": "fdbe5bd380332d0bc5a6a1dc595006f9b2c937b2bf036d48c296863e47173340", "sticker": null, "text": "I need a job 😭😭😭", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": null, "datetime": "2024-07-08T15:57:38+00:00" }, { "message_id": "3f02822727c46ddc07a4d774024e0a9aa6b39abacdab3855bd38a890583dadd2", "sticker": null, "text": "How to begain java development?", "from_id": "bb983e4825dd817587d4a93408e2c9cc0ab291bcbe1e72e3322af88bb99c988d", "reply_to": null, "datetime": "2024-07-08T20:20:13+00:00" }, { "message_id": "30aea6193862db81d74afea03651982cfeab4a002675bf44e5eb15f1ee52d82a", "sticker": null, "text": "Anybody interested in brushing up skills in DS and Algo in Java ?", "from_id": "6425e7fe9066232cf165e8eaddcdc433bc681f7fc15dcd3e2bc820c5811f3766", "reply_to": null, "datetime": "2024-07-08T22:10:13+00:00" }, { "message_id": "a7851633d0b79dee2c0e9c340ab612fc3e86752f6ecc8988eae4438cfca4cee0", "sticker": null, "text": "I’m looking for someone interested to learn and discuss.", "from_id": "6425e7fe9066232cf165e8eaddcdc433bc681f7fc15dcd3e2bc820c5811f3766", "reply_to": "30aea6193862db81d74afea03651982cfeab4a002675bf44e5eb15f1ee52d82a", "datetime": "2024-07-09T08:46:40+00:00" }, { "message_id": "e25b38e1e0387a243b8f411d7a7cd3eadab993d6b769655f7d665e580b4ec070", "sticker": null, "text": "I’m not able to get your language. English please! 😅", "from_id": "6425e7fe9066232cf165e8eaddcdc433bc681f7fc15dcd3e2bc820c5811f3766", "reply_to": null, "datetime": "2024-07-09T08:52:02+00:00" }, { "message_id": "ddff4bfaa230b9bfb3c6920cb06c31adf481681c35b607fa20cfaade467419a6", "sticker": null, "text": null, "from_id": "daa2fd2ff1a36ef96c0a138cf9a2f4f0a98c2eae4a2a91ae342590ab611ddf01", "reply_to": null, "datetime": "2024-07-09T10:09:06+00:00" }, { "message_id": "d30c064a92ec8b0f6c2adb3bdaa8c498279e2a5f334c7d4f4c8968276ace730e", "sticker": null, "text": "**__who needs a developer?__**", "from_id": "51ee693edcfaa28d4cd3370681b8600bea4b120dde6fa08a927eb0431b37d067", "reply_to": null, "datetime": "2024-07-10T17:37:03+00:00" }, { "message_id": "715bf9f24f79b34a5e8fb41f7e4af2ce6ee28aa0aa5535a472831a725381f9d2", "sticker": null, "text": "Hey guys\nPlease what's a good alternative to mysql workbench for java springboot development", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-07-10T20:31:41+00:00" }, { "message_id": "d132db6b4540278c3ba91b0c0ed745cead3bb540c25608262d11811cdbed16fc", "sticker": null, "text": "Why is this group racist toward chinese??", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": null, "datetime": "2024-07-10T22:41:09+00:00" }, { "message_id": "e8d0b28cb0a53df434cfae731b3d6adc8a5e02398917a3bf1af8a0858f1583f1", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "d132db6b4540278c3ba91b0c0ed745cead3bb540c25608262d11811cdbed16fc", "datetime": "2024-07-10T22:55:08+00:00" }, { "message_id": "427c1c27c6283058c4c01cbc7e17a62bdae4f8e63a4ffa552dc43686c70269cc", "sticker": null, "text": "It’s not racism. First, this is an English-only group. Repeat offenders speaking another language will get banned. Second, there are a lot of spam accounts that join everyday, flooding this group with messages in Chinese and directing people to some Visa scam. The bot helps me by deleting those messages immediately.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "d132db6b4540278c3ba91b0c0ed745cead3bb540c25608262d11811cdbed16fc", "datetime": "2024-07-11T00:51:54+00:00" }, { "message_id": "d6cf2cf0b2c44bacbf82e613c8a62bce6a2518fc653299daab29bac2dd663519", "sticker": null, "text": "If you are learning and aren’t limited in what you can use, PostgreSQL was pretty quick and easy to setup and use. Also DBeaver seems decent but I haven’t used it as much. You can use many different dbs with DBeaver", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "715bf9f24f79b34a5e8fb41f7e4af2ce6ee28aa0aa5535a472831a725381f9d2", "datetime": "2024-07-11T01:00:19+00:00" }, { "message_id": "f947792a33804ac219ad16c2927df69b5b3d0fcd3c262126ea4c8276aaf331d6", "sticker": null, "text": "Thank you", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "d6cf2cf0b2c44bacbf82e613c8a62bce6a2518fc653299daab29bac2dd663519", "datetime": "2024-07-11T06:52:14+00:00" }, { "message_id": "597d5468c84d954822e0bc3c3a9357472f6d9c658aab11665fcbd876ef72cbc8", "sticker": null, "text": "Hi Folks , if anybody need any kind of coding/project help, we will help I got a team of experienced developers. Thanks.", "from_id": "400f4784aef8543a8f87e21b8cad45fc6ad27fe1e6f3ac1743f22e4b4287c1fa", "reply_to": null, "datetime": "2024-07-11T08:33:36+00:00" }, { "message_id": "e277d323c107f9cbb7358221b0f66b500e7ad4c1a27225ae1fe58f4a173bb96e", "sticker": null, "text": "hey can someone help me in this code .. M prime no. find out krne k liye code kr raha tha code to work kr raha h but ddkho jaise is video m h ye problem aa rhi h .. m jitna bada no. likhu utni jyada lines likhi aa rhi h n is prime no. how to fix it can anyone help me ..?", "from_id": "6920d18862b8ef521134beeab502f72d602d11326405852cdecc40827544f088", "reply_to": null, "datetime": "2024-07-11T09:18:57+00:00" }, { "message_id": "709f246cb1893296d919d6d18d9dac2eaceb74f8514e57e16c6c9b83905b32df", "sticker": null, "text": "Dnsnsn", "from_id": "400e3653bfdd5988071d4926172594e5d1f75e0c6cd75d293670bc88d9a70f14", "reply_to": null, "datetime": "2024-07-11T11:19:26+00:00" }, { "message_id": "d17ddee5677ca45cf781bdbce3228085ec0a0bd7c9ebd053f62534078ca97080", "sticker": null, "text": "Looking", "from_id": "2a5105321b22cccbd0e032fc9e1922213ea672b1c0aa941285e421fb3e5ae702", "reply_to": "6e39cd8c81b6733c758d156e62d74a3a83ef22e3358b66c965f5f56ad2b15ed2", "datetime": "2024-07-11T15:24:49+00:00" }, { "message_id": "04d03a3a49101a4f72150cd64fe79bedadaa9dfc3dceeb980cb57253d792546e", "sticker": null, "text": "Can u plzz send some sources ... like video course og java programming beginners", "from_id": "2a5105321b22cccbd0e032fc9e1922213ea672b1c0aa941285e421fb3e5ae702", "reply_to": "ebc7029cd7470520d0d22ac4ff9739e34964d5a58ceeede3aec9321591ecbcdc", "datetime": "2024-07-11T15:25:19+00:00" }, { "message_id": "f0a2cb69a4a76852fea7b747dc09d1a24b8cfde910abfbbff0907e0cfb24b2c0", "sticker": null, "text": "i want learn java / .net is it free / paid?", "from_id": "e1cc55a06510e25daf2c27b00119fa06d484171b13b94e4e0255cb4d57fb4164", "reply_to": "6ec90830d19549175a6854a82876f0675eeab3a8944cbe7e11ea6e26a10865b6", "datetime": "2024-07-12T04:37:26+00:00" }, { "message_id": "81dd9aac3e42a74fbca261ca0859b303a63a546fccf711332cbd4fce94171cb6", "sticker": null, "text": "You can learn on YouTube", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "f0a2cb69a4a76852fea7b747dc09d1a24b8cfde910abfbbff0907e0cfb24b2c0", "datetime": "2024-07-12T06:35:02+00:00" }, { "message_id": "d73a93781ce66d63949f927c30d16935a4d82a255b63bf37e8fbbeed0e7039b7", "sticker": null, "text": "Advisably learning project based would help you better", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-07-12T06:35:18+00:00" }, { "message_id": "0f0750ec1365dfd4e51417723223a776fabc4a2a81a94a70b6c1e3cee27b65e4", "sticker": null, "text": "In c++?", "from_id": "23c3bcedfd86a9ee874f4c4aa9a590e8aedf49a9693765f1348e2934e6f42cf8", "reply_to": "30aea6193862db81d74afea03651982cfeab4a002675bf44e5eb15f1ee52d82a", "datetime": "2024-07-12T18:57:25+00:00" }, { "message_id": "0b516adf799f9601f29d41f358770705af26473bcd6ea7ce9b5443f41d626b31", "sticker": null, "text": "Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.\n2024-07-13T23:03:15.260+01:00 ERROR 10348 --- [cruddemo] [ main] o.s.b.d.LoggingFailureAnalysisReporter : \n\n***************************\nAPPLICATION FAILED TO START\n***************************\n\nDescription:\n\nParameter 0 of constructor in com.example.cruddemo.service.EmployeeServiceImpl required a bean of type 'com.example.cruddemo.dao.EmployeeDAO' that could not be found.\n\n\nAction:\n\nConsider defining a bean of type 'com.example.cruddemo.dao.EmployeeDAO' in your configuration.\n\n\nProcess finished with exit code 1", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-07-13T22:06:31+00:00" }, { "message_id": "8b75bcf2486c42864d0508273edcfee404b43f8940569861f5fc6513b457d073", "sticker": null, "text": "please help me debug", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "0b516adf799f9601f29d41f358770705af26473bcd6ea7ce9b5443f41d626b31", "datetime": "2024-07-13T22:06:42+00:00" }, { "message_id": "10db3d0cb555414015ad6ae10c09077eeabae61f040e0c0dd095fb5e527c5497", "sticker": null, "text": "hello, everyone, somone does know how should document function specification in java while i do not have any header file as we have usuaaly in C?", "from_id": "d9321386619f5a0685fbb31557fbd156679e91ed143d3e2683f2c8c2e0e65531", "reply_to": null, "datetime": "2024-07-14T15:59:13+00:00" }, { "message_id": "ab2ddb22e5973a42a2f11f626d2462d33dcabaebb8bd2f33918019cbd0ff097a", "sticker": null, "text": "Look for \"your.class\" java docs at a searcher", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-07-14T16:57:59+00:00" }, { "message_id": "484f3da6ec70342c8a44a937d95e56053b5d92adef2b9736889abcfc7f989568", "sticker": null, "text": "Any php developers?", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": null, "datetime": "2024-07-14T17:16:44+00:00" }, { "message_id": "55f83d41b04c94f3113dfbceaeb519432962464f03e0979eed8a2611c551519f", "sticker": null, "text": "I have 12 years of experience in php.", "from_id": "3377e06c82ffcb0e0ce9f0ee9c28916b0d4db31859862941c2fb0a8197697ec2", "reply_to": "484f3da6ec70342c8a44a937d95e56053b5d92adef2b9736889abcfc7f989568", "datetime": "2024-07-14T17:17:22+00:00" }, { "message_id": "64786ebeae6d4c58100542b78657755feaf07e27edae577ea44627184623e413", "sticker": null, "text": "Check your EmployeeDAO class. Is it defined correctly", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "0b516adf799f9601f29d41f358770705af26473bcd6ea7ce9b5443f41d626b31", "datetime": "2024-07-14T17:17:30+00:00" }, { "message_id": "97289a545908dacbd2bcded829d27f2a56d7d84779074909f34b61011fdbcfd8", "sticker": null, "text": "Thanks\nI realized I didn't add the repository annotation to it 😭😭", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "64786ebeae6d4c58100542b78657755feaf07e27edae577ea44627184623e413", "datetime": "2024-07-14T17:21:41+00:00" }, { "message_id": "6d39c2b9328bcd573567cf6c5afe566e5180bb40855703bbb19f49e3efa29b47", "sticker": null, "text": "Hello. What providers are there to integrate a one-time password or phone number authenticator except Firebase into an app that can work around the world? Or are there API's that get current user's phone number?", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2024-07-15T11:33:34+00:00" }, { "message_id": "4992fe69281bde599875ec845fd423ff1a8317199439005c8910d49b1777b42a", "sticker": null, "text": "Yes", "from_id": "e9bbac941ae754ef7df2687ee45f09c47118ba068ae4e3fed483c24b9fa72c11", "reply_to": null, "datetime": "2024-07-15T11:35:43+00:00" }, { "message_id": "8299f73d4d7de818b0e8fea6eedde2710c166239b09aedaee29722ae287d0430", "sticker": null, "text": "How can I use java to create app", "from_id": "e9bbac941ae754ef7df2687ee45f09c47118ba068ae4e3fed483c24b9fa72c11", "reply_to": null, "datetime": "2024-07-19T03:06:31+00:00" }, { "message_id": "8a05ef3c5de32e596b52395c6d79750acb70166445bceb4036faa49fb4aaf74f", "sticker": null, "text": "If you are a Java programmer rookie, please DM let’s learn together, I am looking for a learning partner 1Month straight 2hours a day", "from_id": "a32a9239f315c00d211d0a77a599a779ff146b812136a29b9715ca32e4e26254", "reply_to": null, "datetime": "2024-07-20T14:48:07+00:00" }, { "message_id": "1843368a4a45e45cf4c39e40c5327f9270eb322cf14c1f2c92a19dfc3894f675", "sticker": null, "text": "Done", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "8a05ef3c5de32e596b52395c6d79750acb70166445bceb4036faa49fb4aaf74f", "datetime": "2024-07-20T14:55:20+00:00" }, { "message_id": "267e8e2b9e022a31fea656d564b60f8e1af3792fe21acf7268c316c52f77bcab", "sticker": null, "text": "You mean ?", "from_id": "a32a9239f315c00d211d0a77a599a779ff146b812136a29b9715ca32e4e26254", "reply_to": "1843368a4a45e45cf4c39e40c5327f9270eb322cf14c1f2c92a19dfc3894f675", "datetime": "2024-07-20T14:55:56+00:00" }, { "message_id": "5a6fc59a49fa404ae4480328d0fe8a9819fde46938bbdb3b32bc737c1e3afa90", "sticker": null, "text": "Ok for me", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "267e8e2b9e022a31fea656d564b60f8e1af3792fe21acf7268c316c52f77bcab", "datetime": "2024-07-20T14:56:14+00:00" }, { "message_id": "ce7e9488414ba0eca4b3fcaf98abec328358d55d314a544f9a829cb45a232e57", "sticker": null, "text": "Alright you are from where ?", "from_id": "a32a9239f315c00d211d0a77a599a779ff146b812136a29b9715ca32e4e26254", "reply_to": null, "datetime": "2024-07-20T14:56:33+00:00" }, { "message_id": "eaa7b8a59da1f40cb586ed3f48dba2f469f7e03e9fd58830d8d3cf6b735bcb48", "sticker": null, "text": "Dm me", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "ce7e9488414ba0eca4b3fcaf98abec328358d55d314a544f9a829cb45a232e57", "datetime": "2024-07-20T14:56:43+00:00" }, { "message_id": "a89ce8e40ffa0042c7b423ddcb88aa58220f2f9aa3126023475c11530a178d3e", "sticker": null, "text": "Message not delivered", "from_id": "a32a9239f315c00d211d0a77a599a779ff146b812136a29b9715ca32e4e26254", "reply_to": null, "datetime": "2024-07-20T14:58:01+00:00" }, { "message_id": "28a9be146690ea1a8fd34c2c39d256080f57ae89d5dbd3954a0cfe3043ee4a47", "sticker": null, "text": "Please DM", "from_id": "a32a9239f315c00d211d0a77a599a779ff146b812136a29b9715ca32e4e26254", "reply_to": null, "datetime": "2024-07-20T14:58:14+00:00" }, { "message_id": "fd1f8470ed1b1509e0852cd49c072d8bd49d678cbe5ce8106e5c985e66480782", "sticker": null, "text": "Hello", "from_id": "9694335c6bc771c45616874fd4fae80a176243dd3b07bc639e2b956678f03886", "reply_to": null, "datetime": "2024-07-22T14:27:01+00:00" }, { "message_id": "36ac25c46c50eab7c1edb38a773cc62ffbc65cabcfb73fc704084a363c0140bd", "sticker": null, "text": "Hello 👋", "from_id": "d62f05820ab1531444826716c25d125944da6461f0df829e891523d2f3852e92", "reply_to": null, "datetime": "2024-07-22T18:37:02+00:00" }, { "message_id": "40a34375ae8ba2192846986cd2c9576057dbeac062fb365a291250900730210b", "sticker": null, "text": "Hello", "from_id": "cbd9d8bf0e7ccf0ca5df6cc76c25ec53fd0d6d0ad25bfe09a6dde475bb57ebb2", "reply_to": null, "datetime": "2024-07-23T12:05:26+00:00" }, { "message_id": "fb2ad538a5dd76bedaa6dfaf3d7bf5901eb584be4529ba77aed7168cab0eba8b", "sticker": null, "text": "Hellow guiysss", "from_id": "ff3ba71c5670820384cc7c91de34452b34a1223dd2e5a3eb8a5775e66b13495f", "reply_to": null, "datetime": "2024-07-23T18:05:14+00:00" }, { "message_id": "d26411a8533d92669783d33cd55b5d9ddf92e0ca2bd78340399e25e335cef7dc", "sticker": null, "text": "hellow people", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-07-24T10:14:17+00:00" }, { "message_id": "11a9b6e03fcf04a620b79afb15d1e2001a1aeafc675f09cbecbbca6e2e20ed1d", "sticker": null, "text": "Total messages:139352", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-07-25T20:59:43+00:00" }, { "message_id": "ee60e7503bcdcef69471d2ec730cc08182f502eb8d5bc04addcc7e445f2e24a6", "sticker": null, "text": "12", "from_id": "ff3ba71c5670820384cc7c91de34452b34a1223dd2e5a3eb8a5775e66b13495f", "reply_to": "151b342eb4e74bd8c13a8f833b25105db6893daecf85db6f099c8618fa1b584f", "datetime": "2024-07-26T17:57:31+00:00" }, { "message_id": "613f8787f18292b85dc42794229c00de6a8191dfdedf25d39b98b1ea25a8106d", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-07-29T21:50:16+00:00" }, { "message_id": "003a604424ce1e5aa892489521f3a4fce4042d65777ba34d916155ceac7e994b", "sticker": null, "text": "Like?", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "7f24c682ed143f04f85464aec8fa6444af2b1874bcbbe1922eaac5de952ed5a5", "datetime": "2024-07-30T07:28:48+00:00" }, { "message_id": "f2622d8ba8a9f89eba779b52f3b02bd0f68455619d2e4513d23b7bb29e58a564", "sticker": null, "text": "Play", "from_id": "9042e4d801663a022fed3b5b04fae139e25903c1eef27d3c4bc17acba20e8aeb", "reply_to": null, "datetime": "2024-08-01T10:58:03+00:00" }, { "message_id": "445d8cc4f98020da6599b1c761994fceffdfb0d0d42b9ad9e8739d14097acd95", "sticker": null, "text": "Where can I find spring cloud learning materials?", "from_id": "82da4a433c662abb8736e09829f8f7006958d766107cd94c522dd6f3cf5e4385", "reply_to": null, "datetime": "2024-08-01T12:09:43+00:00" }, { "message_id": "4ef3b9f2a42e4cdc6d82afedc865e55989cceaf86c1117787799734380d976ee", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2f87b9b708afa2640cc82e55e26974f213f50805936ba53c506d818b97d408a3", "reply_to": null, "datetime": "2024-08-01T16:44:52+00:00" }, { "message_id": "9619fca76063541d3b668f28e041c359c448371a0ca7e77c2fd0c3b225594538", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2f87b9b708afa2640cc82e55e26974f213f50805936ba53c506d818b97d408a3", "reply_to": null, "datetime": "2024-08-01T16:45:21+00:00" }, { "message_id": "b8a292eb4cf504ef7febafc07295f8835e5795eb352210064b549a9e9a1be7d4", "sticker": null, "text": "hello everyone, i'm a junior from China, and i love java very much, nice to join this groups.", "from_id": "744bcbf99d5b33b39c9422174ae7d9554828d6b2bd0c6964b618cc986dcadf99", "reply_to": null, "datetime": "2024-08-02T05:41:44+00:00" }, { "message_id": "ecb1b31bfd7c0a58d23d7e94074608191c3bde3aaf11e0363e9908375cb745df", "sticker": null, "text": "You're welcome", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "b8a292eb4cf504ef7febafc07295f8835e5795eb352210064b549a9e9a1be7d4", "datetime": "2024-08-02T05:52:04+00:00" }, { "message_id": "ad30b34cf71dba19d7b4f08b5b896c0ad8d56a1a8c31204358242cf32930a8e9", "sticker": null, "text": "why can't contain Chinese language", "from_id": "744bcbf99d5b33b39c9422174ae7d9554828d6b2bd0c6964b618cc986dcadf99", "reply_to": null, "datetime": "2024-08-02T10:19:27+00:00" }, { "message_id": "f09fce70c152ebe686124c740663d175e07e92feb9890a64d6f5b4ca1a09dfc3", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "ad30b34cf71dba19d7b4f08b5b896c0ad8d56a1a8c31204358242cf32930a8e9", "datetime": "2024-08-02T18:02:53+00:00" }, { "message_id": "3244278e36fd755fcf19019510a70e805bb47abd132419fcac28b96c0b444bc6", "sticker": null, "text": "@#USER no advertising please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "afc156676ec01f920577762a70a11f489c4b4524e4414dc6d896affb47bad83a", "datetime": "2024-08-02T18:03:45+00:00" }, { "message_id": "4b8059ad2bc20344e141cf8878e2d0f543723ae7481f4ef7ad97a08af7028259", "sticker": null, "text": "I like these", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "613f8787f18292b85dc42794229c00de6a8191dfdedf25d39b98b1ea25a8106d", "datetime": "2024-08-02T21:58:49+00:00" }, { "message_id": "2d0c634d97d6eb343632e4023daf5ebcb9cc2d181081253dc3012d0725117278", "sticker": null, "text": "Any java developer who is looking for new job.\nCan we connect as I am also looking for new job.", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": null, "datetime": "2024-08-03T11:59:52+00:00" }, { "message_id": "6dbf53c34cfcbff474ca36e8232f11020adaf58e44f06cfc8da885a5522fa964", "sticker": null, "text": "Who has built a full stack java spring boot project here?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-08-03T12:53:59+00:00" }, { "message_id": "163e5fe3e273d2b83021ca9334eef2fc7c46d8a9a86f117014c326f12b24cdd6", "sticker": null, "text": "Without thymeleaf", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "6dbf53c34cfcbff474ca36e8232f11020adaf58e44f06cfc8da885a5522fa964", "datetime": "2024-08-03T12:54:27+00:00" }, { "message_id": "949def2350784d0ab07f96a8d863aba284192a6490161f188b46c2f8e0e3c591", "sticker": null, "text": "Hello Everyone Iam New in this Java Chat Group", "from_id": "b5502abbcd7d8cd03a80bab5a2e32e8278027eb15d1e2565af65d2f04f4bd030", "reply_to": null, "datetime": "2024-08-03T12:58:06+00:00" }, { "message_id": "20eda332ed47b291b812e1841eee7f1486e1092e9b352fe1ae1c769bc962c4d5", "sticker": null, "text": "Now iam studying Java Language in my college so , What should I do to get good grip on this language", "from_id": "b5502abbcd7d8cd03a80bab5a2e32e8278027eb15d1e2565af65d2f04f4bd030", "reply_to": null, "datetime": "2024-08-03T13:02:41+00:00" }, { "message_id": "fbccb4f03c54213b12e84e2c04106723bebf7f3682739ec06ab050fee11764f7", "sticker": null, "text": "Learn springboot", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "20eda332ed47b291b812e1841eee7f1486e1092e9b352fe1ae1c769bc962c4d5", "datetime": "2024-08-03T13:38:31+00:00" }, { "message_id": "a3d8b5586f71b1b04ab41fd8552f53538c21b9fbe615174aa2eb63b3b9a328d5", "sticker": null, "text": "why Chinese remove?", "from_id": "7bff613aa33f54632f54115efec7eddb11f00fa7c468bef5cd4d270b0efbee32", "reply_to": null, "datetime": "2024-08-03T13:49:40+00:00" }, { "message_id": "f720d9c2d6872109d73e0ca08854a666351d1c50f4756d8c823b216bef890be7", "sticker": null, "text": "i want a remote job", "from_id": "744bcbf99d5b33b39c9422174ae7d9554828d6b2bd0c6964b618cc986dcadf99", "reply_to": null, "datetime": "2024-08-03T14:28:02+00:00" }, { "message_id": "8c662fb1a18e0cdd8122b73c99158bb8d1c570ed31e6f117e79681fa3d17da14", "sticker": null, "text": "I'm a sophomore", "from_id": "744bcbf99d5b33b39c9422174ae7d9554828d6b2bd0c6964b618cc986dcadf99", "reply_to": null, "datetime": "2024-08-03T14:31:12+00:00" }, { "message_id": "4ef29c2412eff7d4b8756bf08a5c49274b9528ac6a73e1c0e12bf83f72a5b993", "sticker": null, "text": "I am proficient in Spring Boot and Spring Cloud", "from_id": "744bcbf99d5b33b39c9422174ae7d9554828d6b2bd0c6964b618cc986dcadf99", "reply_to": null, "datetime": "2024-08-03T14:31:22+00:00" }, { "message_id": "fecdda63b3e85e060d16ecedc3aeedfd5ff4cc5f4375eb3e806a32f0f110fcc3", "sticker": null, "text": "who has a personal project that used stripe payment gateway api?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-08-03T23:53:01+00:00" }, { "message_id": "6da80b3e619ba86e3b360653141f6132d0342730ee0570f22467a2fdba2fa4d2", "sticker": null, "text": "Anyone interested in learning React who already knows Node can be taught React by me. In return, you can teach me Node.", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2024-08-04T09:20:10+00:00" }, { "message_id": "0808addad8757e4ff3dfc5f2673a5823d9ce6a7c35d4d4c74ab4bd2114d043ff", "sticker": null, "text": "Hi guys. I'm a beginner in programming. I'm learning Java. Do urll guys have any resources and recommendations of learning Java. Thank you so much", "from_id": "aa1e2e3bf1ecb7730e17d3d790937b6cba7dd369228d92872ea7247a48c7ea2d", "reply_to": null, "datetime": "2024-08-04T18:57:25+00:00" }, { "message_id": "67653bc4ce59cd430934151837f9e59b92561658931ac462698b943dd933b415", "sticker": null, "text": "Me", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "6dbf53c34cfcbff474ca36e8232f11020adaf58e44f06cfc8da885a5522fa964", "datetime": "2024-08-05T03:11:52+00:00" }, { "message_id": "b4821f207fcf7b2acce3052ecfb80058953c870fb820d1923544caebcb88a600", "sticker": null, "text": "In China, you can find a lot of free java tutorials", "from_id": "744bcbf99d5b33b39c9422174ae7d9554828d6b2bd0c6964b618cc986dcadf99", "reply_to": "0808addad8757e4ff3dfc5f2673a5823d9ce6a7c35d4d4c74ab4bd2114d043ff", "datetime": "2024-08-05T03:12:38+00:00" }, { "message_id": "448a54df64cbc2a8ae3dba01e3c7fec9b174802ac20e1894db38ce37ffd3c977", "sticker": null, "text": "Bro I'm from south africa 🇿🇦", "from_id": "aa1e2e3bf1ecb7730e17d3d790937b6cba7dd369228d92872ea7247a48c7ea2d", "reply_to": null, "datetime": "2024-08-05T05:30:33+00:00" }, { "message_id": "a8532a0af80c65b402db00e7db535e22c891306b1182f298d125423391a9acba", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2f87b9b708afa2640cc82e55e26974f213f50805936ba53c506d818b97d408a3", "reply_to": null, "datetime": "2024-08-05T14:13:29+00:00" }, { "message_id": "b6f03d2b2f8e4b5711612b4b466992559a1dcdee2cc3d831ec993d4935d7e1f7", "sticker": null, "text": "please any WhatsApp api for java", "from_id": "30e15c476fbd749308aca890fc06f6e72f35568dd632c186f8de68397b1582cb", "reply_to": null, "datetime": "2024-08-05T16:00:55+00:00" }, { "message_id": "4928b2a1adfbb1dc4d7bdac20f6d5e03114b7638b5ff1131f38c7e675bc9a8bb", "sticker": null, "text": "Farely exam preparation code in java collection", "from_id": "a0a2c2ba66e1103fae836473beb16def3965b4599cf7c97701b4e429b60ca8f8", "reply_to": null, "datetime": "2024-08-05T17:56:54+00:00" }, { "message_id": "b30af45bc73e56d85f02212d3fe4df0370e09bbcda4f4340469b99cf897b278c", "sticker": null, "text": "Hi guys any one knows which best way to create a ratelimit for each ip i don't want to make it global", "from_id": "72de5b492edcbdab7880831506bf0f14bb7477477fdab390d898de1fbf87c196", "reply_to": null, "datetime": "2024-08-05T19:35:43+00:00" }, { "message_id": "b40e1350f4b874a48c3be66f35e3b76974593802a3ab8c8010178170bf77695d", "sticker": null, "text": "10", "from_id": "48965e13c173f37532ff9b8c2a80cc78f789788f73887a73b28bccdedf6a185d", "reply_to": null, "datetime": "2024-08-06T06:44:14+00:00" }, { "message_id": "e1bce5fb580c306d162055a73a709182de7709fd97d71f8d4cd1b750700e57e0", "sticker": null, "text": "Hello devs, please help\nI'm trying to start a new project with Gradle but getting error of timeout when I try to run ./gradlew build.......having issue with downloading the Gradle distribution. Please what can I do to solve this", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2024-08-06T09:22:58+00:00" }, { "message_id": "32f51c876752976a88e71c0c09371775bd23a69d030ed21fb12d2116b0bc5b41", "sticker": null, "text": "Hi", "from_id": "f7233a53fde5a8c6b48a41664af75dab444edc06de502a6324331849d657b635", "reply_to": null, "datetime": "2024-08-06T11:14:51+00:00" }, { "message_id": "5a4a5fb22f19d97d643d4c055b62685f968f0f0769ca7a95abd092e160a819df", "sticker": null, "text": "Hello", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": "32f51c876752976a88e71c0c09371775bd23a69d030ed21fb12d2116b0bc5b41", "datetime": "2024-08-06T11:28:19+00:00" }, { "message_id": "34921a4ca99944486cf71ffeedadd56fcd4b03c9052fc2d299117f59565d4440", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7a61a14d7a8eb869a33c43c1a09ea605a47c7b14a9f601596fcaa66dce382e40", "reply_to": null, "datetime": "2024-08-06T13:35:07+00:00" }, { "message_id": "a0e13f092e1e2ba6e06d0dec11d47b8e1bfee3b5d6801880437bca34afc9d529", "sticker": null, "text": "Hi Everyone !!", "from_id": "ce4674047ef51c9be70fca29223f99e93b591c4f7222dc9cade5cd61647da3d7", "reply_to": null, "datetime": "2024-08-06T15:02:13+00:00" }, { "message_id": "c62ffc5397fc8f4f2620ef682e04529d098cd8a44cb115e259c8f6defef4c3e8", "sticker": null, "text": "Do anyone got Java programming Bootcamp course from ZTM ?", "from_id": "ce4674047ef51c9be70fca29223f99e93b591c4f7222dc9cade5cd61647da3d7", "reply_to": null, "datetime": "2024-08-06T15:02:39+00:00" }, { "message_id": "b6f119e0fec8cea3d1ee50b2bd193bf5d6995b092b9605fd1db4aeaf8b7f0718", "sticker": null, "text": "Hi", "from_id": "43b27f6472d1513e28e015255b0131dec80ad50671888a8f7577f356e0c84748", "reply_to": null, "datetime": "2024-08-06T16:37:24+00:00" }, { "message_id": "47204d8c136d833d5f54a235aee74b32bdd347d23aedeedc2a191174e0850a45", "sticker": null, "text": "Can someone with Java Spring Boot expertise assist me?", "from_id": "43b27f6472d1513e28e015255b0131dec80ad50671888a8f7577f356e0c84748", "reply_to": null, "datetime": "2024-08-06T16:38:33+00:00" }, { "message_id": "ce4b4fa66fce567f44096a65c7c23b3b8dac9e89a4f2afe9120cf7ecae40a8a5", "sticker": null, "text": "Yes", "from_id": "528f3d001b2357e1e32ee7a39c10ac6a1ecf8a2ff2373610c57d7c0468d63482", "reply_to": "47204d8c136d833d5f54a235aee74b32bdd347d23aedeedc2a191174e0850a45", "datetime": "2024-08-06T17:06:59+00:00" }, { "message_id": "2e6ffd8e99289907128bf4baadb97f031974497d69f5ec3d8cd49e7963207ca2", "sticker": null, "text": "What's the problem", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "47204d8c136d833d5f54a235aee74b32bdd347d23aedeedc2a191174e0850a45", "datetime": "2024-08-06T19:07:51+00:00" }, { "message_id": "ff9f05dbf8732163fcb7e6aca06bb2d69d0f13c714bd270d6a9eaa629cb864a7", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "51c5d48c74aaf4908d7f84e94e0225fad6e15cdb465eea85f740a97457d611f6", "reply_to": null, "datetime": "2024-08-07T07:27:59+00:00" }, { "message_id": "0b2f66b1516ae1311c0c5479a8d16383290c58eb3a921c4336ce8ad6e1e878e5", "sticker": null, "text": "Is it on English?😊", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "e277d323c107f9cbb7358221b0f66b500e7ad4c1a27225ae1fe58f4a173bb96e", "datetime": "2024-08-08T21:10:41+00:00" }, { "message_id": "9b8bfa82abef0e99f366c066295f1fa73322e4e67ade54a77a2b16fb4d9aef86", "sticker": null, "text": "Send the link to code.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "e277d323c107f9cbb7358221b0f66b500e7ad4c1a27225ae1fe58f4a173bb96e", "datetime": "2024-08-08T22:17:02+00:00" }, { "message_id": "978be7b711fc47b86e4a9bc02d1a7301c078d3e4a6079a2140dac8dc467c9058", "sticker": null, "text": "Hi", "from_id": "d6b0c96ac01586e33e4b52c89330c30b2840616e0faa3e130974ad667455aae0", "reply_to": null, "datetime": "2024-08-09T01:40:59+00:00" }, { "message_id": "75eb24f82e15588a0d36cb9ec301c3c3e4d65a81764d041747bc21d74f057d28", "sticker": null, "text": "Yes", "from_id": "544b11e18bebfa5e99dfab4e322c1b6115b151d270bb7018dd1fe2feac6998a6", "reply_to": "fecdda63b3e85e060d16ecedc3aeedfd5ff4cc5f4375eb3e806a32f0f110fcc3", "datetime": "2024-08-09T11:35:37+00:00" }, { "message_id": "8c75a9caf68bf332df5bf3714dcfd4e9d1b5088b42f0cffec88ee78df3670977", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "b6dc95cd4754a82917dd798a81d9320264eace7b23c89b1c202676f19345b76b", "reply_to": null, "datetime": "2024-08-10T07:43:48+00:00" }, { "message_id": "9a6c73c8c69f3402c80eddc008b00f8315856ca77b1a448e67338121e1611855", "sticker": null, "text": "Anyone have simple and easy Project ideas for minor project with ppt and source code ?", "from_id": "a95301ba527c68c2c842b745cec85b16643211ca87074ed4504978befaf0824d", "reply_to": null, "datetime": "2024-08-10T08:53:42+00:00" }, { "message_id": "6311efda9a42de24baf7128ef6ea673c3c61ca3c0b064d3acc7798a60b57be50", "sticker": null, "text": "Sure Hit Me Up", "from_id": "07b423e485cc66d4a2dc6c357e9df696f64bdfdf052e12e59d4aaa181c4e5f73", "reply_to": "47204d8c136d833d5f54a235aee74b32bdd347d23aedeedc2a191174e0850a45", "datetime": "2024-08-10T14:20:20+00:00" }, { "message_id": "33601222d92b5628e7863d9ca1a93c22b3cd52af47354e0ec7b6b45e5fd6944a", "sticker": null, "text": "Learn Spring Boot seriously ?How explain", "from_id": "07b423e485cc66d4a2dc6c357e9df696f64bdfdf052e12e59d4aaa181c4e5f73", "reply_to": "fbccb4f03c54213b12e84e2c04106723bebf7f3682739ec06ab050fee11764f7", "datetime": "2024-08-10T14:21:36+00:00" }, { "message_id": "eeee5fdf976d979e5601af3c25b4882e7eed33dcf121c543defe8864b0648f0c", "sticker": null, "text": "Learn more about the JVM itself and after try learning more of Lambda Expression ,Java Collections API ,then after learn Jakarta EE then Spring - Spring Boot", "from_id": "07b423e485cc66d4a2dc6c357e9df696f64bdfdf052e12e59d4aaa181c4e5f73", "reply_to": "20eda332ed47b291b812e1841eee7f1486e1092e9b352fe1ae1c769bc962c4d5", "datetime": "2024-08-10T14:23:42+00:00" }, { "message_id": "bdc85affdbfd6f8ca446518e968187dfd2cf240074719496a27b6c59c6e64018", "sticker": null, "text": "Trying learning Junit (Testing),Data Structures/Algorithms or better start learning problem solving like Competitive Programming you will learn more about the language and Jakarta Specifications", "from_id": "07b423e485cc66d4a2dc6c357e9df696f64bdfdf052e12e59d4aaa181c4e5f73", "reply_to": "20eda332ed47b291b812e1841eee7f1486e1092e9b352fe1ae1c769bc962c4d5", "datetime": "2024-08-10T14:25:32+00:00" }, { "message_id": "242014caa5cd68a23ef52be9e71bcfb235cd074bf7eefc48f430ac478bdd70fa", "sticker": null, "text": "Looking for study partner", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": null, "datetime": "2024-08-10T15:47:05+00:00" }, { "message_id": "a9fa6cad20e69a84e539ffd67d3b2941723fe985c03b847f519e0c36694a813c", "sticker": null, "text": "Sure Message me", "from_id": "07b423e485cc66d4a2dc6c357e9df696f64bdfdf052e12e59d4aaa181c4e5f73", "reply_to": "242014caa5cd68a23ef52be9e71bcfb235cd074bf7eefc48f430ac478bdd70fa", "datetime": "2024-08-10T19:59:39+00:00" }, { "message_id": "d04b8ae2b007804254bc78420db0488a1dcdd75d2ddcf870a2463ef7343e9086", "sticker": null, "text": "Can u message me?", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": "a9fa6cad20e69a84e539ffd67d3b2941723fe985c03b847f519e0c36694a813c", "datetime": "2024-08-10T20:01:50+00:00" }, { "message_id": "19c304e2597ee3fa0aeefed2725c06919f3a3d37aca34b44a509fa3895cb1628", "sticker": null, "text": "Total messages:140579", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-08-11T08:55:46+00:00" }, { "message_id": "5ae3000ab02b5c09a71ba4a295b381477c87315200f20ba5c745d8ba6dae8156", "sticker": null, "text": "hi all,\n\nI have made some videos on design patterns in java and spring boot. I have tried my best to explain the concepts in the simplest form with real life examples... please watch, like and subscribe to our channel... if you have any suggestions/queries please comment..\n\n\nuTube channel name: codehigh", "from_id": "a634e1168aebbbe67c1c537f27b2527a8c32cd381993cc6189a6fbc418bff13e", "reply_to": null, "datetime": "2024-08-11T17:05:36+00:00" }, { "message_id": "cad2c77e6753e31c788580a102ccf0077796491efb1102b5d0f31da26baba7a9", "sticker": null, "text": "wrong place buddy", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": "033cdd24a9040581f4f771780b966b67b5bf8afdb5f32906864fae6ff462531c", "datetime": "2024-08-11T19:15:50+00:00" }, { "message_id": "c025a8edb5adf22353377a174f9f462c46f99c7e441fc18594f923a2043b8983", "sticker": null, "text": "Hi guys any one here use webflux in spring boot", "from_id": "72de5b492edcbdab7880831506bf0f14bb7477477fdab390d898de1fbf87c196", "reply_to": null, "datetime": "2024-08-12T13:56:12+00:00" }, { "message_id": "719c08c390df664c3639cd0638e99a8c949f7f3ef18e440960aecbc7298d98f9", "sticker": null, "text": "I want to ask about a thing", "from_id": "72de5b492edcbdab7880831506bf0f14bb7477477fdab390d898de1fbf87c196", "reply_to": null, "datetime": "2024-08-12T13:56:28+00:00" }, { "message_id": "196ef5b1368afc86b315aae6f90b2298e4c07274bdf9f19b54c9aa8237c06309", "sticker": null, "text": "You can use java to create app in all it's diversity👏", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "8299f73d4d7de818b0e8fea6eedde2710c166239b09aedaee29722ae287d0430", "datetime": "2024-08-12T21:14:45+00:00" }, { "message_id": "3b2dfef58c2461e1bdf9a3e2616b031f5e2bb8cf67d32a83e2a7fd678c99f30d", "sticker": null, "text": "Who can speak in Chinese", "from_id": "777a6bc875981237471479af4a9b335c0f0964ce31e115ce7e40f41a09c1169c", "reply_to": null, "datetime": "2024-08-13T05:07:45+00:00" }, { "message_id": "9e04b74d4aeb3d393bf9786b87797a54ea9f292279fa39650c5652a144dfe643", "sticker": null, "text": "Hi all,\nAre there any classmates who have also been laid off and are currently looking for jobs..", "from_id": "d2384c2e54ab6b42a228db54f7cc6757899cba56d6da9795f529bd3d09cebd01", "reply_to": null, "datetime": "2024-08-13T07:53:43+00:00" }, { "message_id": "266e4077e5b1ff7d9d2f3f76274dcc9ac3e537df0a1efad3fc1b38842e63ed87", "sticker": null, "text": "nihao", "from_id": "d2384c2e54ab6b42a228db54f7cc6757899cba56d6da9795f529bd3d09cebd01", "reply_to": "3b2dfef58c2461e1bdf9a3e2616b031f5e2bb8cf67d32a83e2a7fd678c99f30d", "datetime": "2024-08-13T07:57:48+00:00" }, { "message_id": "e39eaf7fea149094dbed4c0b1983ded91dd8e0c82a7f31154eecbe01b7010dce", "sticker": null, "text": "The anti Chinese bot is in tears now", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": "266e4077e5b1ff7d9d2f3f76274dcc9ac3e537df0a1efad3fc1b38842e63ed87", "datetime": "2024-08-13T07:59:29+00:00" }, { "message_id": "1ff36dae445a08f47237d0fd3c0af396870c966e70dc14e42c7dc19a58fcf594", "sticker": null, "text": "Can't robots recognize pinyin?", "from_id": "d2384c2e54ab6b42a228db54f7cc6757899cba56d6da9795f529bd3d09cebd01", "reply_to": "e39eaf7fea149094dbed4c0b1983ded91dd8e0c82a7f31154eecbe01b7010dce", "datetime": "2024-08-13T08:02:09+00:00" }, { "message_id": "d783462b2824e7d76e01740b46be01253c0631c5c5b723a95319bb3c4dec5513", "sticker": null, "text": "I dont know", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-08-13T08:02:24+00:00" }, { "message_id": "e0ae09b94b8e4ffe661dbeb2fc2e755db791db915e121aef8406a59f0a5952c8", "sticker": null, "text": "The main meaning of \"你好\" (nǐ hǎo) in Chinese is \"hello.\" It's a common greeting used to say hi to someone. If you have more questions about its usage or context, feel free to ask!\n\nThis is the answer given by gpt", "from_id": "d2384c2e54ab6b42a228db54f7cc6757899cba56d6da9795f529bd3d09cebd01", "reply_to": null, "datetime": "2024-08-13T08:04:46+00:00" }, { "message_id": "b5cb472cdcb38ce847c899394a58e5be4a64e74b24455bb3ec2853ec4500c4d0", "sticker": null, "text": "where are you from?", "from_id": "d2384c2e54ab6b42a228db54f7cc6757899cba56d6da9795f529bd3d09cebd01", "reply_to": "d783462b2824e7d76e01740b46be01253c0631c5c5b723a95319bb3c4dec5513", "datetime": "2024-08-13T08:07:23+00:00" }, { "message_id": "72b10b59725a666a6f805205fd6dc8967b16ff5838b715ebf92f59f70e3ff9b9", "sticker": null, "text": "Romania", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-08-13T08:07:31+00:00" }, { "message_id": "acf7f2300467949bcb200925d9880b0f0b97c843a158f0d3e3acd7f4d49c42ff", "sticker": null, "text": "Hello, friend", "from_id": "d2384c2e54ab6b42a228db54f7cc6757899cba56d6da9795f529bd3d09cebd01", "reply_to": null, "datetime": "2024-08-13T08:08:29+00:00" }, { "message_id": "6f38ce054e5a0fcbd476952270ca4999be839ef506cfd67ef864b0c2be1ce43c", "sticker": null, "text": "Hi", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-08-13T08:09:24+00:00" }, { "message_id": "6d7781df750c0df3ece9e26c5ebd4628c42db2a5cd57bcd7217341516ab47d81", "sticker": null, "text": "Are you recruiting for yourself or are you recruiting for someone else", "from_id": "777a6bc875981237471479af4a9b335c0f0964ce31e115ce7e40f41a09c1169c", "reply_to": "acf7f2300467949bcb200925d9880b0f0b97c843a158f0d3e3acd7f4d49c42ff", "datetime": "2024-08-13T11:00:35+00:00" }, { "message_id": "19d4aed3d7df4f296c01dcc73497c958014a424a49c4c91f308f07047385fda7", "sticker": null, "text": "Myself.", "from_id": "d2384c2e54ab6b42a228db54f7cc6757899cba56d6da9795f529bd3d09cebd01", "reply_to": "6d7781df750c0df3ece9e26c5ebd4628c42db2a5cd57bcd7217341516ab47d81", "datetime": "2024-08-13T13:16:59+00:00" }, { "message_id": "099827b105584ae761d7870f7c22a5f6ab0b8d3a1873eebd318f50024d7e92f0", "sticker": null, "text": "The point of the bot is to remove messages from the Chinese spammers/scammers", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "1ff36dae445a08f47237d0fd3c0af396870c966e70dc14e42c7dc19a58fcf594", "datetime": "2024-08-13T17:03:30+00:00" }, { "message_id": "86b1a33ff149e2f8a566f3bb6a1293d3710f91b352eaaba11054fc3aed69dc98", "sticker": null, "text": "What to do? Where do job applicants need to work", "from_id": "777a6bc875981237471479af4a9b335c0f0964ce31e115ce7e40f41a09c1169c", "reply_to": null, "datetime": "2024-08-14T04:25:28+00:00" }, { "message_id": "e1c78b8a4338c7a38ab0406e2c9d6bc24494c762f5180808ad1e57f818dbccf2", "sticker": null, "text": "?", "from_id": "777a6bc875981237471479af4a9b335c0f0964ce31e115ce7e40f41a09c1169c", "reply_to": "19d4aed3d7df4f296c01dcc73497c958014a424a49c4c91f308f07047385fda7", "datetime": "2024-08-14T04:26:06+00:00" }, { "message_id": "fd2441434537265a44cc204a354d6d413c91a3505645635d9d467c34523146ae", "sticker": null, "text": "Hi, can someone please share java 8 coding questions from experience in attending interviews", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2024-08-14T21:17:02+00:00" }, { "message_id": "199de7aa621e88c0ef505e0dbf960ccd0ed248dad1603789c07ef37cacb7b078", "sticker": null, "text": "Can u please give me project idea based on java", "from_id": "b7fc2714d92189da0cb0e88c4bff5bd4102e017eb4ca6d52c5eccb454399de1a", "reply_to": null, "datetime": "2024-08-16T07:38:21+00:00" }, { "message_id": "50b75a6b5045fe3d24514d79f393a680d0f1e1746251114b38cc5fe99c42fa3a", "sticker": null, "text": "Build an e-commerce website application", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "199de7aa621e88c0ef505e0dbf960ccd0ed248dad1603789c07ef37cacb7b078", "datetime": "2024-08-16T18:45:20+00:00" }, { "message_id": "ada07226fa63a839c326ecbaa47b430fefbbcde9b8e15e99602aab0e55e8805e", "sticker": null, "text": "Try making a social media app", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "199de7aa621e88c0ef505e0dbf960ccd0ed248dad1603789c07ef37cacb7b078", "datetime": "2024-08-16T18:51:14+00:00" }, { "message_id": "f57b1b7b8e88788798ec72cd44493ff0e59ce504a7ffc2bbb110bb769a509565", "sticker": null, "text": "I made one and it brings out the best out of you", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": null, "datetime": "2024-08-16T18:51:36+00:00" }, { "message_id": "df50e0fdfeeb258e3cee6f316222b262307df7db5abc146a9c6a98005c454662", "sticker": null, "text": "Nice\nWhat language did you do this?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "ada07226fa63a839c326ecbaa47b430fefbbcde9b8e15e99602aab0e55e8805e", "datetime": "2024-08-16T19:12:51+00:00" }, { "message_id": "882a0abbeb53a7d3b6aadc717e31f9b174fe583dd2a3441e085ee3e2d91b8020", "sticker": null, "text": "C# - ASP.NET\nTypescript- Angular", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "df50e0fdfeeb258e3cee6f316222b262307df7db5abc146a9c6a98005c454662", "datetime": "2024-08-16T19:13:36+00:00" }, { "message_id": "8cada80547b1d6d7508e8fa757873f634272100dfb7b8f65482c3d870d70b322", "sticker": null, "text": "Oh I see", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "882a0abbeb53a7d3b6aadc717e31f9b174fe583dd2a3441e085ee3e2d91b8020", "datetime": "2024-08-16T19:14:30+00:00" }, { "message_id": "8e76518d832e73752adaced9d6b68ab72e924b275102319d025b16ff63d63f3a", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "df50e0fdfeeb258e3cee6f316222b262307df7db5abc146a9c6a98005c454662", "datetime": "2024-08-16T19:14:34+00:00" }, { "message_id": "c61aa5921104235c95684ff79e07cde37b528b65834dbfdb82b7e43d1c2c5e37", "sticker": null, "text": "Wish it was Java", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-08-16T19:14:41+00:00" }, { "message_id": "95169da51a0a5d5993dc39a8b268c98f0fdaaafcb9baae1ad90a57e52a582678", "sticker": null, "text": "Not mobile friendly", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": null, "datetime": "2024-08-16T19:14:47+00:00" }, { "message_id": "6898681fc543ff56ba84f07c307cf2ee8ad9e7e5678631a69219b4580adab428", "sticker": null, "text": "I honestly hate java lol", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "c61aa5921104235c95684ff79e07cde37b528b65834dbfdb82b7e43d1c2c5e37", "datetime": "2024-08-16T19:15:04+00:00" }, { "message_id": "8b7c80724f16cd42c726c316b87d0b1000b068c8b2fe5d833e35c0c3e586851a", "sticker": null, "text": "Haha, hope you know you're in a java group", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "6898681fc543ff56ba84f07c307cf2ee8ad9e7e5678631a69219b4580adab428", "datetime": "2024-08-16T19:15:28+00:00" }, { "message_id": "9a85705ebe8a01739e3fc0e83e9d059dfef989c816a7a5964e890be6348d5d3f", "sticker": null, "text": "I used to love it\nIt was my first programming language \nBut after using C# at university \nThen, using Kotlin later on i really dont see a reason to use Java anymore", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": null, "datetime": "2024-08-16T19:15:42+00:00" }, { "message_id": "ae40beae2ce324a951bfbb70add9c77a2a98acac273cdfc2e1e6787d60a565d1", "sticker": null, "text": "Tried Kotlin?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "95169da51a0a5d5993dc39a8b268c98f0fdaaafcb9baae1ad90a57e52a582678", "datetime": "2024-08-16T19:15:44+00:00" }, { "message_id": "667e317f1bf74129dba10ba66fa5455b016e89609fbfdad480c60ecd408a6445", "sticker": null, "text": "Hmm, that's nice and interesting", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "9a85705ebe8a01739e3fc0e83e9d059dfef989c816a7a5964e890be6348d5d3f", "datetime": "2024-08-16T19:16:06+00:00" }, { "message_id": "a382c6e086ef66c31d9e4c21e59781ccb3ed57196804cf5e48d5106836dc8068", "sticker": null, "text": "Yeah it one of my favorites", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "ae40beae2ce324a951bfbb70add9c77a2a98acac273cdfc2e1e6787d60a565d1", "datetime": "2024-08-16T19:16:35+00:00" }, { "message_id": "2be6f3787cabee260a0d47b702ae94887c9440621380701391b826bff5669dc1", "sticker": null, "text": "Hi everyone, I wanted to ask if you have ever had any experience with integrating AI services into web apps? I'd like to experiment, but I'm a bit held back by the pricing plans, I can't figure out if for example, with OpenAI there is a free plan to use their API, or do you always have to pay. And possibly if there are free solutions for a maximum of 10 requests per minute, with prompts for a few tokens. Mainly regarding chat and TTS and STT services. Thanks", "from_id": "4d63df3461efbe6bbce9fbaeef9cf7a93cdac87aaae5b207fca8381ee3ca20f6", "reply_to": null, "datetime": "2024-08-17T05:54:49+00:00" }, { "message_id": "e3112a6a5d7caaed3c794cde4805c2b9c6fb3fe2ab9d80b6b3dbfefebaf7518a", "sticker": null, "text": "3D engine from scratch", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": "199de7aa621e88c0ef505e0dbf960ccd0ed248dad1603789c07ef37cacb7b078", "datetime": "2024-08-17T19:54:09+00:00" }, { "message_id": "5e2f06eeba88cde592c16bb86d5898064130a5895abd2d3408f967ab3546b69c", "sticker": null, "text": "And do it in a CLI as well", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": "e3112a6a5d7caaed3c794cde4805c2b9c6fb3fe2ab9d80b6b3dbfefebaf7518a", "datetime": "2024-08-17T20:02:31+00:00" }, { "message_id": "acead36ba51ba36377ec324be9556370e5f29847060f3b20bcc29ca284b2ec19", "sticker": null, "text": "Or make an LLM from scratch, that's what I'm doing rn", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-08-17T20:03:01+00:00" }, { "message_id": "cd0fdc3bc79ae95817ca8fc38a4f0797fc7f941d97b412a7602f4125239ccf4b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": "5e2f06eeba88cde592c16bb86d5898064130a5895abd2d3408f967ab3546b69c", "datetime": "2024-08-17T20:03:14+00:00" }, { "message_id": "3099371e70252dd6877a04ba0388dc8d6cb93b5a633f3f3ee4f038be145911a4", "sticker": null, "text": "Damn", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-08-17T20:03:34+00:00" }, { "message_id": "53d463709680a0a629574246b3e5271f6b42396574a3f74862a4c02cd8a28335", "sticker": null, "text": "But of course using a graphic framework is better", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-08-17T20:03:37+00:00" }, { "message_id": "29a8988c8f0aa24f8677934cd0cf4602c1f7ebe9c630ad685ed8fbfb9e69ce03", "sticker": null, "text": "Make a GPT in just java", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-08-17T20:03:55+00:00" }, { "message_id": "a8be6f828275602b47913f2b6faa74a634e024753ef9a8d0c6d5310d229d961e", "sticker": null, "text": "And overall it is really a nice project to work on. You learn many new things including also some math stuff", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-08-17T20:04:14+00:00" }, { "message_id": "2ae4c8c233152c5a16c76a89eb736db6875c4d82a3746aef754c2ea99173d9e7", "sticker": null, "text": "Hello I am junior Java programmer", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-08-18T12:20:33+00:00" }, { "message_id": "ea6dc6e02048cf482541a719c0bd63314c714aad96add5f40b157ab569ef9e05", "sticker": null, "text": "10", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-08-18T18:13:59+00:00" }, { "message_id": "a2ba6087a0e9336de16a562ea97e77943755242085256d2419192c65ec145168", "sticker": null, "text": "10", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-08-18T18:14:14+00:00" }, { "message_id": "061f02fee40063698cc7005c6d5ff0061a5499f70f6e57e43a3f06cf91eac2df", "sticker": null, "text": "We live in a big world, i think that Java have a good place from all programming languages especially on backend side.", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "9a85705ebe8a01739e3fc0e83e9d059dfef989c816a7a5964e890be6348d5d3f", "datetime": "2024-08-18T21:12:00+00:00" }, { "message_id": "bfd176691eb3222ce3b04ae4ef0132828a12abba34dcaaca7ddde15befc77198", "sticker": null, "text": "I prefer kotlin on the backend\nThe java ecosystem is amazing but Kotlin is the best way to use it imo", "from_id": "bd6cbbaadad1d7d30cdb69a9cd50014d79a52bab43515cfdda67728162d3d0e2", "reply_to": "061f02fee40063698cc7005c6d5ff0061a5499f70f6e57e43a3f06cf91eac2df", "datetime": "2024-08-18T21:24:51+00:00" }, { "message_id": "3c16beaa50ffff3af0091aaa958dd3a5d58e0effc5dfd24e994cbe963aeba937", "sticker": null, "text": "In javafx webview, I am using javavannector for communicating Java and html. It works well. But when I include Tailwind cdn or any other cdn, the Java connector fails to communicate. What is the issue", "from_id": "8c7247d39d54971ead8cd8b95c8c4d5a7e3e84e47cdfb24eda4d47de05ca01d7", "reply_to": null, "datetime": "2024-08-20T02:38:43+00:00" }, { "message_id": "93b640dacb166ce0843ca2b37cd7e5f833e79203de8e609b1b1ce9e678cc939e", "sticker": null, "text": "14", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-08-20T13:37:29+00:00" }, { "message_id": "a9aa044ff4f1d5d37d0000ae4b050b0eccce11f65662169b158740aa915f967d", "sticker": null, "text": "I am a web designer and developer also having 4 years of experience . Those who want to design the website dm me \nI AM NOT HIRING THE DEVELOOER", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2024-08-20T15:29:21+00:00" }, { "message_id": "27e592fb4dd34c8efaf7ad3c61b69bee6708b3f6b47e48518d5e59a66d8a82ee", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-08-20T19:05:57+00:00" }, { "message_id": "41eadf40f6e2303df40046290b632515db52c7cb027016e5edf44c1e63826457", "sticker": null, "text": "GMTK game jam 2024 for those who don't know", "from_id": "2d121e24ec455713f91ff581e61dfd4ebe43ea3256bfb05fe9a86a6bb560fa33", "reply_to": null, "datetime": "2024-08-20T19:06:11+00:00" }, { "message_id": "2bd89b5549619eb19244405447c3bfc65c5a791cd2cc85e3346577e0ee46ceb8", "sticker": null, "text": "Noted", "from_id": "71d2adb423961fe54352d85daa04a469b9fba773377df74208852735a8b0a521", "reply_to": "5ae3000ab02b5c09a71ba4a295b381477c87315200f20ba5c745d8ba6dae8156", "datetime": "2024-08-22T05:09:54+00:00" }, { "message_id": "3d5e5d927e89b7c344e407a0a9b0475e4d0238d1360bc455f4fabdf51860ae00", "sticker": null, "text": "Is it a front end or back end dev you need?", "from_id": "e1a74d30dce46cdfd20e385bdaf82d88276aa0e6a61c1aee5573630e48c41f7f", "reply_to": "a9aa044ff4f1d5d37d0000ae4b050b0eccce11f65662169b158740aa915f967d", "datetime": "2024-08-22T14:14:54+00:00" }, { "message_id": "a4229ca5b5c9cb5a76b60b5302176c86f444050e43c2949811e363819880aa61", "sticker": null, "text": "You’re going to have to show the logs", "from_id": "e1a74d30dce46cdfd20e385bdaf82d88276aa0e6a61c1aee5573630e48c41f7f", "reply_to": "3c16beaa50ffff3af0091aaa958dd3a5d58e0effc5dfd24e994cbe963aeba937", "datetime": "2024-08-22T14:15:20+00:00" }, { "message_id": "7c8ce9980b9460ba3a82ffcb2d71a9cb8e5fc23e036a3add459e2d098fc1cb8b", "sticker": null, "text": "is anyone having 3years of experience in java backend?", "from_id": "6b74a9ea1d770897004dd603f64fb4d492780b9c86157170035e2a38f645008a", "reply_to": null, "datetime": "2024-08-23T04:40:45+00:00" }, { "message_id": "e6fe3c1b472694f686f54b0827e601b361dc6bb8368c042fff2b36ba89cb2c35", "sticker": null, "text": "hey guys", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-08-23T21:53:56+00:00" }, { "message_id": "21ee3180edb8f5e90b9cfedb9786d46bee18f51dad3cda6178de585d07aee772", "sticker": null, "text": "currently running an ecommerce project. When I test APIs with swagger I notice some extra endpoints I don't want It's a java springboot prject. And these are the form of the endpoints I dont want ==> {category-entity-controller\nproduct-entity-controller\nproduct-search-controller\nproduct-property-reference-controller\nprofile-controller}", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-08-23T21:55:26+00:00" }, { "message_id": "2f3599131f701a5354da4422b3fc4ba579c6ce702b2c5d8ba9e0094511912a49", "sticker": null, "text": "I didn't specify them In my controller but yet they appeared. I only want endpoints specified in my controller to appear on my swagger ui. How do I fix this problem please?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "21ee3180edb8f5e90b9cfedb9786d46bee18f51dad3cda6178de585d07aee772", "datetime": "2024-08-23T21:56:34+00:00" }, { "message_id": "5782fb44e73651617b1081ee77c7cd03b9732a8d4998f271df1801efd5ca83dc", "sticker": null, "text": "Anyone can send frequently asked interview questions and answers pdf", "from_id": "b7fc2714d92189da0cb0e88c4bff5bd4102e017eb4ca6d52c5eccb454399de1a", "reply_to": null, "datetime": "2024-08-25T06:30:40+00:00" }, { "message_id": "32ad5793284f0f39347b54c15f62109c39ecb4a7411cbd7537e25e08a1b8d9f7", "sticker": null, "text": "Hello", "from_id": "83270472c2c1ebf0bb16de36f4f3336fbdd38b3936efceeac6343c3fb471486c", "reply_to": null, "datetime": "2024-08-25T19:44:21+00:00" }, { "message_id": "bafe4de9dc3a7fcfa15fa1f2debea75563d5e2401c3495e1e7235e223b7490c3", "sticker": null, "text": "I have completed learning java programming language.\nWhen I checked online the next thing which I should learn is jdbc , jsp/servlets \nAre there any good video resources for them", "from_id": "83270472c2c1ebf0bb16de36f4f3336fbdd38b3936efceeac6343c3fb471486c", "reply_to": null, "datetime": "2024-08-25T19:44:56+00:00" }, { "message_id": "a3f5bce23ac86afebe6c1a7dd7f3e2233c5be3aa16fd5340b1cc0a807aeecf9d", "sticker": null, "text": "How to get Java developer in gujarat", "from_id": "f9b0ec94f09e24298b44fceea111a7703cfa6d6f8e13ae6c64f55827ef570862", "reply_to": null, "datetime": "2024-08-26T02:02:18+00:00" }, { "message_id": "ca0cbd83e44183a272f006805ddf80f12b7b52cd7c5392cbccb378f494d0f413", "sticker": null, "text": "Hello Java Devs 😁\n\nPlease I need a suggestion on how I can host my springboot application for free?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-08-26T06:44:11+00:00" }, { "message_id": "91af0683aebdc644c19a15d53d1faaee7019efc17d114e741b13a64128634ce9", "sticker": null, "text": "Aws/azure/google/oci", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "ca0cbd83e44183a272f006805ddf80f12b7b52cd7c5392cbccb378f494d0f413", "datetime": "2024-08-26T07:10:04+00:00" }, { "message_id": "89740cfb14212a14d81f842004616da1e54472f6ee5076dc094de108541ba174", "sticker": null, "text": "Or at your own computer.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:10:15+00:00" }, { "message_id": "15bafdfe9945a3d00fd39b8e7d67631791c2802135251c4ae50173eaa5c9f7c4", "sticker": null, "text": "Do some port forwarding in ur router and use ip address to reach it", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:10:36+00:00" }, { "message_id": "f3e8edceed4446aeb2f69e3959cc2763184cdacbf401481a10160424d467187d", "sticker": null, "text": "Aws springboot deployment for free? I'm surprised 😲", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "91af0683aebdc644c19a15d53d1faaee7019efc17d114e741b13a64128634ce9", "datetime": "2024-08-26T07:12:47+00:00" }, { "message_id": "ee9550f5a87758abed6734be4848ca7b41f49a5bc64ace8ee15b14a102221719", "sticker": null, "text": "There's a free tier", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:13:12+00:00" }, { "message_id": "b6273178bba4915b86acd969d71faf517698af68b9c1360016ea22d372c2445b", "sticker": null, "text": "Please can you help with an article or YouTube video that could help me with this", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "15bafdfe9945a3d00fd39b8e7d67631791c2802135251c4ae50173eaa5c9f7c4", "datetime": "2024-08-26T07:13:25+00:00" }, { "message_id": "bbe000bd4c5f1441ee150292ff87ca3527a95334db179761a67d4f3784d59c74", "sticker": null, "text": "Ll send tomorrow", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:13:37+00:00" }, { "message_id": "314d6a68fbeef102fd4443659752b83dbff9dabdd756f219a8ddc62f9810e94f", "sticker": null, "text": "12am", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:13:54+00:00" }, { "message_id": "e01993adee0e62e2263f75e979b89bec55edab69088e29a935d58802e5341713", "sticker": null, "text": "What kind of router you are using?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:14:37+00:00" }, { "message_id": "5026dfb8880f26d35617397d06bb50b9ef5594dfc124c3e0a7586931b04d2e3f", "sticker": null, "text": "Search Google on that", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:14:47+00:00" }, { "message_id": "2744fd177363e980364a61f5ad6581cf783ed35aa6f28df4e3fc93892e7ded00", "sticker": null, "text": "Use a weird port like 6847 for your application and use that to forward ur request to your application", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-08-26T07:15:26+00:00" }, { "message_id": "5221ada03c6a95e2d9bde794a603ca8c3a91fdf02c0da6745ddea7f86ad4ae8f", "sticker": "5936090092396352356.png", "text": "", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "bbe000bd4c5f1441ee150292ff87ca3527a95334db179761a67d4f3784d59c74", "datetime": "2024-08-26T07:18:48+00:00" }, { "message_id": "c99dceb5cb4fda3cabc72ee3a8c923bde0a7e5d46d9a29327a919e754df8a99a", "sticker": null, "text": "Okay I would", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "5026dfb8880f26d35617397d06bb50b9ef5594dfc124c3e0a7586931b04d2e3f", "datetime": "2024-08-26T07:19:06+00:00" }, { "message_id": "c04261ea858da434b568b99e2f08b67679c268d29ad4fb4d3d6d937e03a656b7", "sticker": null, "text": "Crazy stuff Uno, I'll do that", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "2744fd177363e980364a61f5ad6581cf783ed35aa6f28df4e3fc93892e7ded00", "datetime": "2024-08-26T07:19:19+00:00" }, { "message_id": "8916fbd9f3098fdf97846d9e7dcf1a88d6b404c8ee720b78318c0b69130933b8", "sticker": null, "text": "Hello", "from_id": "a8623e35149471538c782fbc3e69546bd4a4d7cf3f9fa902e955164624132d9d", "reply_to": null, "datetime": "2024-08-26T08:47:05+00:00" }, { "message_id": "efffa54d31da0da513d1d0e9fb3a58dd0f9760b17614a3e4ad74d4e9f890c7ff", "sticker": null, "text": "I am a web designer and developer with 4 years of experience. If you're looking for someone to design a website, software, admin panel, or similar projects, feel free to reach out to me directly. Please note that I am not hiring developers; I am offering my design and development services.", "from_id": "5ff04b426b12962a1e04282b20535ec635c6f9882d4101bd99bace6a905e6479", "reply_to": null, "datetime": "2024-08-26T19:43:38+00:00" }, { "message_id": "6c708f1cae88eddba6b3db62735d518770fac2915d94ca4ed84a9d3c0348262e", "sticker": null, "text": "Hello guys", "from_id": "0a275495c5b86027132236bb61db8c08ca9b9997f1124e3516bdc7ccfb078f82", "reply_to": null, "datetime": "2024-08-27T11:58:49+00:00" }, { "message_id": "9ba52fccdce0dfd94cbc4eca53dfbcb84b90a4185b2fae560faec2d394857155", "sticker": null, "text": "If anybody wants the HTML/CSS/JavaScript full course then contact me", "from_id": "0a275495c5b86027132236bb61db8c08ca9b9997f1124e3516bdc7ccfb078f82", "reply_to": null, "datetime": "2024-08-27T11:59:43+00:00" }, { "message_id": "261830b6cde1ca3c1a611d5132cada274b102626d2f5f62c83bb2cbf897ae2cb", "sticker": null, "text": "Cont. No:8010138844", "from_id": "0a275495c5b86027132236bb61db8c08ca9b9997f1124e3516bdc7ccfb078f82", "reply_to": null, "datetime": "2024-08-27T12:00:00+00:00" }, { "message_id": "6b9f36fea1041ad92d0aae14fcd9fb374dd4c2cf9388884b93b12e9bc44ebbfd", "sticker": null, "text": "Total messages:141334", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-08-27T13:07:28+00:00" }, { "message_id": "84557e1080dafa89226cd76f383f410639c86e57dc46ba31b50d68718ff4d3b3", "sticker": null, "text": "If you need beginner-level Python projects or ones to add to your resume, feel free to reach out!", "from_id": "d7cc9057543bc2b7f6130c39d410ae71cc8aa8744bd1f6b44f3a74aac7c388b2", "reply_to": null, "datetime": "2024-08-27T20:54:18+00:00" }, { "message_id": "2b96406fa08227966fe9103c56a02856629b4190214b79340194835db3da6ab0", "sticker": null, "text": "How to crack Java interview", "from_id": "f9b0ec94f09e24298b44fceea111a7703cfa6d6f8e13ae6c64f55827ef570862", "reply_to": null, "datetime": "2024-08-28T02:10:08+00:00" }, { "message_id": "041c7a9c33d739996b2b63af5889f4ff6e6a06b663c25dc1a3d218019d3a9f98", "sticker": null, "text": "😂😂😂", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": "2b96406fa08227966fe9103c56a02856629b4190214b79340194835db3da6ab0", "datetime": "2024-08-28T10:51:30+00:00" }, { "message_id": "95669eb547aeed2f72bc80fb5e2001fda822e5f25d6bbe2be128aaa2e00a926c", "sticker": null, "text": "Write\" java interview\" in glass and crack it", "from_id": "63fbe4e71d3c37302c4912ec93ef68435cbbd5e553ff7f94293dfde9351f7756", "reply_to": "2b96406fa08227966fe9103c56a02856629b4190214b79340194835db3da6ab0", "datetime": "2024-08-28T10:54:16+00:00" }, { "message_id": "028b43e40350b9522de45daf0ed3a4634acd41043d86d0a8f1a8f2610b398c92", "sticker": null, "text": "Only a joke", "from_id": "63fbe4e71d3c37302c4912ec93ef68435cbbd5e553ff7f94293dfde9351f7756", "reply_to": null, "datetime": "2024-08-28T10:54:28+00:00" }, { "message_id": "289219a8efada548bca1f89a50f845ace306801c2cfda107ad50c67e8a9c1b0e", "sticker": null, "text": "Anu udemy course to learn spring boot?", "from_id": "83270472c2c1ebf0bb16de36f4f3336fbdd38b3936efceeac6343c3fb471486c", "reply_to": null, "datetime": "2024-08-28T13:10:47+00:00" }, { "message_id": "0731bf4eb8d6c49ed0221ff89de98b31a345a7ad7c95a334780ba28c7f153a5b", "sticker": null, "text": "If you need beginner-level Python projects or ones to add to your resume, feel free to reach out!", "from_id": "62f7795d74c48bfec3c9d00e78138b70873f53a2cdf2220646428bd2345e0c8b", "reply_to": null, "datetime": "2024-08-29T05:54:22+00:00" }, { "message_id": "1fca392342d185237ca200649b907342fd330042ce0c547b35f9c807224f261d", "sticker": null, "text": "Anyone into video editing? I need help", "from_id": "0c12ce2356582242799d813d432d5be421633c3942155c2009baf767bc3796ac", "reply_to": null, "datetime": "2024-08-29T07:46:25+00:00" }, { "message_id": "d6bf827309f79392c0f0400bc89d6739bd2de1063c813cabb1c3cbe7a5cad55d", "sticker": null, "text": "Yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "5782fb44e73651617b1081ee77c7cd03b9732a8d4998f271df1801efd5ca83dc", "datetime": "2024-08-30T02:59:12+00:00" }, { "message_id": "a9c8a77cea12316277dcdd4f19ae9f0bb1fa990d25219a54d79a03d03c3bab53", "sticker": null, "text": "Any yt channel to learn core Java", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-01T17:58:05+00:00" }, { "message_id": "cb4229892faeb1576e3efa52bc9f0b9d89f6123fc38faa197c94a6b4d7cc30c1", "sticker": null, "text": "Hello", "from_id": "e9b492f1207bad8887ffee28b505a9d26e339e352248ed593a172536d25cc51a", "reply_to": null, "datetime": "2024-09-01T18:13:37+00:00" }, { "message_id": "0b4d15064b782e64bf39010f6d42f0c748599101817dc2dec4596e09f26594f5", "sticker": null, "text": "Check your Dm please", "from_id": "0c12ce2356582242799d813d432d5be421633c3942155c2009baf767bc3796ac", "reply_to": "d6bf827309f79392c0f0400bc89d6739bd2de1063c813cabb1c3cbe7a5cad55d", "datetime": "2024-09-02T01:24:25+00:00" }, { "message_id": "9642d774ff718d7b80fc714486c9a11667b4080907063e305d9cfbf0c786859f", "sticker": null, "text": "..", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": "a9c8a77cea12316277dcdd4f19ae9f0bb1fa990d25219a54d79a03d03c3bab53", "datetime": "2024-09-02T04:31:25+00:00" }, { "message_id": "6e62d7412043a2c6554c7b38bdb84754fd8f5e9e5f5819ac629dc4de7c229923", "sticker": null, "text": "I am looking for a java freelancer, frontend tech is a plus.\nPlease dm me if you are interested..", "from_id": "8e4d76fc8dd7bd27c52c68727683c82e861b103ca08807021420124f436630ac", "reply_to": null, "datetime": "2024-09-02T07:20:38+00:00" }, { "message_id": "52cd57089ca396ded2b42d648d6c031b0c823ec3d6065b29b54ebf95eb9ccbe2", "sticker": null, "text": "Total messages:141462", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-09-02T10:50:40+00:00" }, { "message_id": "445330e1f58a7b99d8ce989e3ee4e17efa1cf0a9fa9c15f5bf2b49dfe8e1d93e", "sticker": null, "text": "Me also I also want guidance about spring boot", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-09-03T18:33:37+00:00" }, { "message_id": "ad360b8e10950d06053902aa1a844fa961f5a2dbce5b296d762678571e264431", "sticker": null, "text": "👍", "from_id": "7013edd17eeb7e5607bce18469ce011d9bd4fd41b401eed31fd4b3129013d028", "reply_to": "445330e1f58a7b99d8ce989e3ee4e17efa1cf0a9fa9c15f5bf2b49dfe8e1d93e", "datetime": "2024-09-03T18:36:55+00:00" }, { "message_id": "1553a7a8fda31a5b4e49537fdc2069b7145450655d7b185ca69cc00f5431d33e", "sticker": null, "text": "😁", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-09-03T18:38:18+00:00" }, { "message_id": "2f38885af564c2f82da0d4b105dbc6c44dc18859d527bbb2f11163b11fedf201", "sticker": null, "text": "Yes", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "6e62d7412043a2c6554c7b38bdb84754fd8f5e9e5f5819ac629dc4de7c229923", "datetime": "2024-09-05T03:18:19+00:00" }, { "message_id": "7b98cd197f831065b9580eda3a9e62270987466b09e74d5063d3d89df94b5a30", "sticker": null, "text": "If anyone knows programming, database and server, please dm me 🙏\nI am making a team for programmers and reverse engineers 🙏", "from_id": "6bbf4730a4bb1ae7834f5f49b88f0567d7f101dbf688f1115d701b3de3dcc4ad", "reply_to": null, "datetime": "2024-09-05T07:13:14+00:00" }, { "message_id": "f9ae0037181d7dcbda3392d4a110a2cace8f993e5bee88845dda7ab6d6dbde73", "sticker": null, "text": "For what.?", "from_id": "bb81bdf3d44c7816411d4d6090d1af2746852c71df57fa03c46b875fed6d2cf1", "reply_to": "7b98cd197f831065b9580eda3a9e62270987466b09e74d5063d3d89df94b5a30", "datetime": "2024-09-05T07:18:11+00:00" }, { "message_id": "de9e86e468f667586756f61870ec7fb0d642dc3c09afc9cc66e196e02ffea03b", "sticker": null, "text": "Reverse engineering/cracking", "from_id": "6bbf4730a4bb1ae7834f5f49b88f0567d7f101dbf688f1115d701b3de3dcc4ad", "reply_to": "f9ae0037181d7dcbda3392d4a110a2cace8f993e5bee88845dda7ab6d6dbde73", "datetime": "2024-09-05T07:51:15+00:00" }, { "message_id": "805a1eeee5a8bf0d8430d0bd1cd48c53ab8f47e50fecdde99225c1e6a2354827", "sticker": null, "text": "?", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "7b98cd197f831065b9580eda3a9e62270987466b09e74d5063d3d89df94b5a30", "datetime": "2024-09-05T07:53:07+00:00" }, { "message_id": "eb44bd6cb29dd66ff3ede06784961d93e9aff28bff0af3ee0b501e0cbe4de9ef", "sticker": null, "text": "Hey guys i want to learn location tracking on map by java as soon as possible so kindly give roadmap for that!!", "from_id": "16cd904c7dd6a339f4f9c78f91b47dabc83bf7a6f97e48f1475ebc38c1194ab5", "reply_to": null, "datetime": "2024-09-05T08:23:49+00:00" }, { "message_id": "20c31c25be490e297a0b06ba3b1e62433cbfceab1cb81f8a93cfd826a7ac8e42", "sticker": null, "text": "Hello 👋\n@#USER This is my channel where I share coding knowledge in a TL;DR format. Check it out!", "from_id": "f59603213a408eeb5f24c37fb7894ce69d137c18cb8df04201da00538873e99c", "reply_to": null, "datetime": "2024-09-05T18:53:50+00:00" }, { "message_id": "9f2c3efb3bb46331767721a044283ec8ceb4590394fa1036b93494c6701df888", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7a61a14d7a8eb869a33c43c1a09ea605a47c7b14a9f601596fcaa66dce382e40", "reply_to": null, "datetime": "2024-09-05T18:53:56+00:00" }, { "message_id": "2396810b0082448645fb3f6fc264cb96700fa9a3b876a47a9cd387ebad92bf35", "sticker": null, "text": "Can someone help me with vs code", "from_id": "a40429a325c8d1f25a4ef37c9cce422b67b09febe21e2e7b0c3964074a77a737", "reply_to": null, "datetime": "2024-09-06T08:36:15+00:00" }, { "message_id": "db6c85cb3fffc37ef9917e79d6525ad37f21c86004bb70e0a0b686796519b16a", "sticker": null, "text": "Code is not running", "from_id": "a40429a325c8d1f25a4ef37c9cce422b67b09febe21e2e7b0c3964074a77a737", "reply_to": null, "datetime": "2024-09-06T08:36:26+00:00" }, { "message_id": "a5e4355ba9b7bb1b98a24c73a0514203277f4e9f2f18d2cea8e284e74faed7ec", "sticker": null, "text": "It saying select debug configuration", "from_id": "a40429a325c8d1f25a4ef37c9cce422b67b09febe21e2e7b0c3964074a77a737", "reply_to": null, "datetime": "2024-09-06T08:37:13+00:00" }, { "message_id": "3066259e4a10355090dc15b6ae61440818b231f271766df8b9df4e666fc8cdad", "sticker": null, "text": "Yes", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-06T08:55:58+00:00" }, { "message_id": "e08d5e4cebe1417ebd050d959294a8f05dc621e3ae4fd9b0378099e89b1c55a9", "sticker": null, "text": "I can", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-06T08:56:11+00:00" }, { "message_id": "1006316c97cd53f71a6dc7a6fa277545e26982949626226ecc9f2773e9e50971", "sticker": null, "text": "12", "from_id": "8eebb72a988af27cbe1e98bed7f083806dc018e5a0a967a7984db002fd1fda45", "reply_to": null, "datetime": "2024-09-07T09:07:11+00:00" }, { "message_id": "87323cae5b229b86d8f340efad0f47c10ce1746191a1c24f2bbc08b056323b72", "sticker": null, "text": "Hello", "from_id": "d3c79aea1b4526de2ea724e2357de54d8c15f2d4001b77c4ccec404e79249030", "reply_to": null, "datetime": "2024-09-07T15:51:38+00:00" }, { "message_id": "289cc1881dff5d722775a2802cd628533da8d75b57bd8297abfe6aaf000e3fee", "sticker": null, "text": "hi", "from_id": "d56293389c3d1d25f384f9155e58e77eb7cf272de51fec7c9f861cee81472696", "reply_to": null, "datetime": "2024-09-08T00:13:00+00:00" }, { "message_id": "804c5d43c9515af4ab0090cfa4841d3256ae7ef8b731c807affb45acd54f89fd", "sticker": null, "text": "Is anyone use Android studio", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-08T11:02:21+00:00" }, { "message_id": "c0c5e5b2b491c0e9a2460bfce76843895dbee86cdaef36bd9006b40919002e9c", "sticker": null, "text": "??", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-08T11:02:32+00:00" }, { "message_id": "7ab81bf70ff5fdcdeb01d95250d989495875cb06c76039cd64b4f0f5c70444fd", "sticker": null, "text": "Is anyone use NetBeans", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-08T13:32:16+00:00" }, { "message_id": "48dd7369c6c07eb1dfd8f68e9cf0243c710335c94fb59b351e79c6ac960d27ed", "sticker": null, "text": "Hello Mobile Developers!\n\nI'm a motion designer specializing in animation videos for mobile applications. Recently, I had the opportunity to create an animation video for EliHR [Microsoft], showcasing their mobile app interface and features, using Adobe After Effects.\n\nIf you're looking to elevate your app presentations or need engaging animations to bring your UI/UX designs to life, feel free to reach out! I'd be happy to collaborate and help showcase your app in the best possible light.\n\nLooking forward to working with some of you soon!\n\nDm: @#USER", "from_id": "8eebb72a988af27cbe1e98bed7f083806dc018e5a0a967a7984db002fd1fda45", "reply_to": null, "datetime": "2024-09-08T14:58:09+00:00" }, { "message_id": "25f4229e9e8d4538ab83fb421a160e0b28370d672dba6f3b2cc7f38399b4a7aa", "sticker": null, "text": "17", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-09-08T14:59:05+00:00" }, { "message_id": "95c28f70547302000953a88eeff46a36890b369a3833bf4f87a75b09fbd24050", "sticker": null, "text": "The perfect age", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-09-08T19:34:52+00:00" }, { "message_id": "9a41f066f874b19892ee7df5b4b70beaefeda283c368da326e5e42a6279590c6", "sticker": null, "text": "Is anyone have java interview question and answer", "from_id": "5d96dbf1e1f26a9c69981e18961972f89575fcf79f7f097376693f2a4919ef0e", "reply_to": null, "datetime": "2024-09-09T05:59:34+00:00" }, { "message_id": "7bb82bc2bbaac52058ea0db364cc8663e6f7fa49b5d99b14673414739b7157f8", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8eebb72a988af27cbe1e98bed7f083806dc018e5a0a967a7984db002fd1fda45", "reply_to": null, "datetime": "2024-09-09T10:02:40+00:00" }, { "message_id": "6c39a0a65f2058044ebe58677075446588b57d78c653a42666fbb61be101e06e", "sticker": null, "text": "Yes", "from_id": "135139ec1b18f6144349d4ef719e43eb4d3710abd7cd4dbdd22ebf5832b495a7", "reply_to": "7ab81bf70ff5fdcdeb01d95250d989495875cb06c76039cd64b4f0f5c70444fd", "datetime": "2024-09-09T11:27:28+00:00" }, { "message_id": "8af6141f52aff5323af7de5f5494247df56c2ff340934102040fc45257595b02", "sticker": null, "text": "What is the purpose of this group nobday is sharing anything informative no one is helping..", "from_id": "5d96dbf1e1f26a9c69981e18961972f89575fcf79f7f097376693f2a4919ef0e", "reply_to": null, "datetime": "2024-09-09T12:34:46+00:00" }, { "message_id": "07cd21b6e84e928901229fc0b4447ceb0eccbccbe4c3d7184395719a16a19efb", "sticker": null, "text": "Java is big buddy. You need to be specific company and position", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "9a41f066f874b19892ee7df5b4b70beaefeda283c368da326e5e42a6279590c6", "datetime": "2024-09-09T18:45:31+00:00" }, { "message_id": "a312d2e5704f7e72ebb415185e61f34b9a486a7bc446168c7c6e84602375b5cb", "sticker": null, "text": "Jave The Complete Reference 13th Edition\n\nDoes anyone have this book?", "from_id": "10750bbfabc99e666e0309657d554197a2ec5cc1586fcabf84212bef5ae932be", "reply_to": null, "datetime": "2024-09-09T20:05:44+00:00" }, { "message_id": "88d917fe4f8f596aa8e7b1b7758b6fe7baffab8f0519667beb7bddc705db6e1b", "sticker": null, "text": "Yes", "from_id": "07b423e485cc66d4a2dc6c357e9df696f64bdfdf052e12e59d4aaa181c4e5f73", "reply_to": "7ab81bf70ff5fdcdeb01d95250d989495875cb06c76039cd64b4f0f5c70444fd", "datetime": "2024-09-11T06:56:59+00:00" }, { "message_id": "4f57b8dcad0640b41d38ef3c46f8a271902c8c4be9e381a737586512fd19c410", "sticker": null, "text": "Yes", "from_id": "07b423e485cc66d4a2dc6c357e9df696f64bdfdf052e12e59d4aaa181c4e5f73", "reply_to": "a312d2e5704f7e72ebb415185e61f34b9a486a7bc446168c7c6e84602375b5cb", "datetime": "2024-09-11T06:58:00+00:00" }, { "message_id": "b3919c30b274eca03bb5897125313029b40e4fa57f12172e1eac8cf61e83653a", "sticker": null, "text": "No", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-11T07:45:32+00:00" }, { "message_id": "e40fbb5420456a1161f67b765f0dca2f7dd06a0e33d71c2cda15aa0e9659b3e2", "sticker": null, "text": "Can you share it?", "from_id": "10750bbfabc99e666e0309657d554197a2ec5cc1586fcabf84212bef5ae932be", "reply_to": "4f57b8dcad0640b41d38ef3c46f8a271902c8c4be9e381a737586512fd19c410", "datetime": "2024-09-11T08:29:59+00:00" }, { "message_id": "1af14aded70e0a39f28762a1b8ab062152a7f893bc53e6c9b491f8398b23357e", "sticker": null, "text": "Anyone cognizant first round completed", "from_id": "cc3984b16a081fe7d1b1071fbead3699145b4822c7abb8a83192e3d73cce9e90", "reply_to": null, "datetime": "2024-09-11T13:51:52+00:00" }, { "message_id": "e91cec641d6172a4fa0d6c6762a48d192d26f0e451c2f22bf179e6bdea3a6a27", "sticker": null, "text": "this is Java, not python", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": "8290e800b36c1b2e0c4d8d57a75a56e25be104becc5191a2f550ed1a0e591a81", "datetime": "2024-09-11T14:36:14+00:00" }, { "message_id": "96f3e4469c62e8a922559ccce6be3da53a67ab8eec785e19e26d39398ef83990", "sticker": null, "text": "Maybe someone is interested in learning Python", "from_id": "d7cc9057543bc2b7f6130c39d410ae71cc8aa8744bd1f6b44f3a74aac7c388b2", "reply_to": null, "datetime": "2024-09-11T14:36:40+00:00" }, { "message_id": "660165f6e8b2e77c8c7561dee6d8f14421510f846ba993d98aabb1cebb636b59", "sticker": null, "text": "wrong place to advertise", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-09-11T14:36:50+00:00" }, { "message_id": "c5afe3c4ef05a407dcf6b2653d3fa46f830f503587918ad0fb232a8e99c03da6", "sticker": null, "text": "Ok sorry", "from_id": "d7cc9057543bc2b7f6130c39d410ae71cc8aa8744bd1f6b44f3a74aac7c388b2", "reply_to": null, "datetime": "2024-09-11T14:36:59+00:00" }, { "message_id": "73fbcac13571e4dcf0ac59da1b10c16ae3d9f467cf16e60c69d8f753c46fe817", "sticker": null, "text": "👍", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": null, "datetime": "2024-09-11T14:37:04+00:00" }, { "message_id": "bbeb209e3c810e8a1e7b2d3f7624a9914c4c98d05e26fb36f9bcf2a131bf9c03", "sticker": null, "text": "hello, i try to running the file day001 but i don't see in the result why ? Can you help me ?", "from_id": "0f4cd3a9f73d703f57d014cfe296854ea6620cfe998e9e443801c3c436470f1f", "reply_to": null, "datetime": "2024-09-11T14:48:42+00:00" }, { "message_id": "9fb394cd44158a75b760c18c4d39123d0369c583a83159191253733724476a3e", "sticker": null, "text": "package com.thegreatapi.ahundreddaysofjava.day001;\n\nimport static org.assertj.core.api.Assertions.*;\n\nimport java.security.SecureRandom;\n\nimport org.junit.jupiter.api.Test;\n\nclass Day001Test {\n\n public static final SecureRandom SECURE_RANDOM = new SecureRandom();\n\n private static int generateRandomNumberBetween(int minimum, int maximum) {\n return SECURE_RANDOM.nextInt(maximum - minimum) + minimum;\n }\n\n @#USER\n void randomNumberBetween() {\n var minimum = 100;\n var maximum = 1000;\n\n int randomNumber = generateRandomNumberBetween(minimum, maximum);\n\n assertThat(randomNumber).isBetween(minimum, maximum);\n }\n}\n\npublic class MainApp {\n public static void main(String[] args) {\n int minimum = 100;\n int maximum = 1000;\n\n int randomNumber = Day001Test.generateRandomNumberBetween(minimum, maximum);\n\n System.out.println(\"Random number between \" + minimum + \" and \" + maximum +\n \": \" + randomNumber);\n }\n}", "from_id": "0f4cd3a9f73d703f57d014cfe296854ea6620cfe998e9e443801c3c436470f1f", "reply_to": null, "datetime": "2024-09-11T14:49:59+00:00" }, { "message_id": "99a9dc0db5924d90babe4f9f102602b7cebb2be3fae8dcb39b32c4e39ae560da", "sticker": null, "text": "Hi", "from_id": "f124af6122e082c6d9417783fb214113f75ac2a3edce9cc6a486dc48dedcce45", "reply_to": null, "datetime": "2024-09-12T01:52:52+00:00" }, { "message_id": "b14aa78c9629be054b73416176aed23f406554f75e7766e1591bfa4525b22bcd", "sticker": null, "text": "I am umar from Nigeria Nice to meet you my friends", "from_id": "f124af6122e082c6d9417783fb214113f75ac2a3edce9cc6a486dc48dedcce45", "reply_to": null, "datetime": "2024-09-12T01:53:21+00:00" }, { "message_id": "9b2b3912ff127cf218696088841a242a09a6c39b5b8ed91615ea71876d490dcd", "sticker": null, "text": "Nice to meet you umar", "from_id": "d7a6891f2592ecf58a411d71bb47149f48ba9a7ae41d025bda42cb3445ce846b", "reply_to": null, "datetime": "2024-09-12T06:11:25+00:00" }, { "message_id": "21aff5c0dd9f272ae335410d4af100c0dcd1988a3e5027fd186a509369f494e5", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "0f4cd3a9f73d703f57d014cfe296854ea6620cfe998e9e443801c3c436470f1f", "reply_to": null, "datetime": "2024-09-13T13:35:56+00:00" }, { "message_id": "2d34ce733d021cf5f6cd39693be9394dec3bd8a5ce4249cfe1d9c442a0392871", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "0f4cd3a9f73d703f57d014cfe296854ea6620cfe998e9e443801c3c436470f1f", "reply_to": null, "datetime": "2024-09-13T13:37:23+00:00" }, { "message_id": "ff47202c436b7e58e6362620c45a432bd595a32cd606fb3e6205510306566870", "sticker": null, "text": "I will be starting live Python classes, with timings from **9-10 PM IST** on **Monday, Wednesday, and Friday (MWF)**.\nA **FREE demo class is scheduled for today at 9 PM IST**.\nIf you're interested, contact: **+91 ****7905112734** and don’t miss out on this opportunity!", "from_id": "d7cc9057543bc2b7f6130c39d410ae71cc8aa8744bd1f6b44f3a74aac7c388b2", "reply_to": null, "datetime": "2024-09-15T10:00:48+00:00" }, { "message_id": "bf3be3d23d421e3017fc53d04669b7fbfd76cacd9fbb59c9b4bbf8f103e76251", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "faf0c1fa358e3925416bb3333adea40a1acfcd67261e660d2ddb9282d86b8319", "reply_to": null, "datetime": "2024-09-15T16:29:13+00:00" }, { "message_id": "8486fd6b2c0916b8c52bd3a464b3a36ff3cbe283771d51341d0d86f9f5bdaf91", "sticker": null, "text": "Hi friends", "from_id": "6b007d15ce0a485f35ebf49014208ba7db12ecf72426a0cc9e5cb197d4ac1762", "reply_to": null, "datetime": "2024-09-15T20:34:44+00:00" }, { "message_id": "6def0fc38c80af6bc4f1083c494a804b30e5617e70d955f8948339fe173271e6", "sticker": null, "text": "Hii", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-15T20:40:19+00:00" }, { "message_id": "00f0d55ebf119395d3c808b68a155de5cc7be41089339bf46e2067e06d645898", "sticker": null, "text": "hiiii", "from_id": "78a1707c5f0f8e0dd30164b2fb8c59a9070a7781fec20e20b963e149ed068c69", "reply_to": null, "datetime": "2024-09-16T12:43:35+00:00" }, { "message_id": "91c7cceba602d3a5439869bbec4becdcb132ff624c9bcc277a792dc24b93c526", "sticker": null, "text": "hi", "from_id": "b105f361a7a5acefa2a3f90712ece39dc298355f58052b88f5af8ec85f434016", "reply_to": null, "datetime": "2024-09-18T05:43:41+00:00" }, { "message_id": "c15b9568ced6780acd566396fcac52bd2ef33decc9bebef2521e819982771431", "sticker": null, "text": "Can anyone help me automate a worksheet here", "from_id": "11eafd00a58f03f237b570c968fe74704601a99ffdd33f82c3a122dd9cef4c30", "reply_to": null, "datetime": "2024-09-18T21:17:23+00:00" }, { "message_id": "eb401b272792e8d98023930b707df9654e4ad693e5730576996b68e143be29a1", "sticker": null, "text": "Dm me if you can or reply here", "from_id": "11eafd00a58f03f237b570c968fe74704601a99ffdd33f82c3a122dd9cef4c30", "reply_to": null, "datetime": "2024-09-18T21:17:35+00:00" }, { "message_id": "2719f2e8014beb2e28830803cd6641556d384f756e2978dc843b52bca6226d49", "sticker": null, "text": "Hi", "from_id": "2f551246bffdcec7e99ceef26355e6a6eb82c31a2ab9b96324bf2711f09653d7", "reply_to": null, "datetime": "2024-09-19T10:52:00+00:00" }, { "message_id": "910a8abbf10dec1fad0513086c426c98c3e2b35386fafb758621fbf7247b8e8c", "sticker": null, "text": "Hye", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-19T12:37:29+00:00" }, { "message_id": "ed7bd64649e38cd61884082e27d828e25f0b3c3cdf77832700ebda8f3f2af4f9", "sticker": null, "text": "What kind of worksheet? And what's the process like? I might not be able to use java, but python should work out", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "c15b9568ced6780acd566396fcac52bd2ef33decc9bebef2521e819982771431", "datetime": "2024-09-19T14:44:37+00:00" }, { "message_id": "034b7ed588ed20c955c49d1319b39dad0eb5415f553943289f955e3d1ecc98a7", "sticker": null, "text": "Someone else already did it for me but i would save your number incase of next time", "from_id": "11eafd00a58f03f237b570c968fe74704601a99ffdd33f82c3a122dd9cef4c30", "reply_to": "ed7bd64649e38cd61884082e27d828e25f0b3c3cdf77832700ebda8f3f2af4f9", "datetime": "2024-09-19T15:32:48+00:00" }, { "message_id": "1ce3f99d43e085535dc5eb347fb287941d426896860bdacb8baf3431d52bfca8", "sticker": null, "text": "Hi", "from_id": "78a1707c5f0f8e0dd30164b2fb8c59a9070a7781fec20e20b963e149ed068c69", "reply_to": null, "datetime": "2024-09-19T16:05:28+00:00" }, { "message_id": "0b52e3015a8691d7edcc34456c12307dbd959fb36d1795d57c5216320e025fb6", "sticker": null, "text": "anyone knows a php and/or flask chat here?", "from_id": "78a1707c5f0f8e0dd30164b2fb8c59a9070a7781fec20e20b963e149ed068c69", "reply_to": null, "datetime": "2024-09-19T16:06:00+00:00" }, { "message_id": "d3e4d8badda4ea3038e4f5443475182743c65f26d9d24215e965a5bc28110656", "sticker": null, "text": "Anyone use SQL plus", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-21T07:33:52+00:00" }, { "message_id": "9370768a58299fe7180f0a730857fc13b391eea367424a85e7d0f6c1508f81e7", "sticker": null, "text": "Dicom to stl converter\nKey deliverables \nDicom file upload interface \nRest api for file upload\nDicom to stl conversion service\nStl visualization\nReact js and java spring boot\n\nCan anyone do this paid project for me.", "from_id": "97a19f7865589dddb6c5158209972d98481c5de76fd40e76141f86489d0aebf9", "reply_to": null, "datetime": "2024-09-21T16:34:38+00:00" }, { "message_id": "65aabd497ca197feed49e4e5c505d504681850c3475b2b461800660fc6f7aa4a", "sticker": null, "text": "Is this even English?", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "9370768a58299fe7180f0a730857fc13b391eea367424a85e7d0f6c1508f81e7", "datetime": "2024-09-21T17:25:18+00:00" }, { "message_id": "204373407604b95dc307ed99476e6757f1abc64f43fb021c8319b7016044d2c7", "sticker": null, "text": "What do you think", "from_id": "97a19f7865589dddb6c5158209972d98481c5de76fd40e76141f86489d0aebf9", "reply_to": "65aabd497ca197feed49e4e5c505d504681850c3475b2b461800660fc6f7aa4a", "datetime": "2024-09-21T17:28:32+00:00" }, { "message_id": "c6b3254f69be21cc077086e2765c9f3f6a62de9a184bf9a79fbf1a64ec39f22b", "sticker": null, "text": "Poor description.\nThe description is shittier than shit itself.\nIt should be expanded to introduce some specifics. So whoever start coding this would probably ask you 1000+ questions. Which is not that bad. But the description I think can be more specific and more text but presise and clear, structural and so on 😄", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-21T17:28:36+00:00" }, { "message_id": "eef57eee942cd2fa1fadd705e7f70efe004b6eff1574cfc3019b23224f67eaee", "sticker": null, "text": "Ohh i see😅.", "from_id": "97a19f7865589dddb6c5158209972d98481c5de76fd40e76141f86489d0aebf9", "reply_to": null, "datetime": "2024-09-21T17:29:20+00:00" }, { "message_id": "55c355563becafb84b9a3457f92b76290ccb4ad83c3e2ff8db6f97d8fc72fe46", "sticker": null, "text": "And yeah. Maybe AI can help generate some structural description. So you communicate with AI and you both came to consensus. The output of your communication with AI is clear approved by you sir description of what you need", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-21T17:34:44+00:00" }, { "message_id": "1a57d2592d98d32c7f98e8b2b3985e4f84290adb526944a62f0a6142fd33535d", "sticker": null, "text": "And then upwork / fiverr / even this chat or other site is platform to post your job. I think you'll get more chances to find programmer wanted to code for money. It's just my thoughts", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-21T17:36:09+00:00" }, { "message_id": "d1dd7a2d9585ed8718186e2e7124bbcec07bcea4b16f93e11c72bc5a4cd1d5fc", "sticker": null, "text": "Okay. Edgar thank you", "from_id": "97a19f7865589dddb6c5158209972d98481c5de76fd40e76141f86489d0aebf9", "reply_to": null, "datetime": "2024-09-21T17:37:06+00:00" }, { "message_id": "37d48faa1483c368ab306d53c35cc99aae8e76f65ea225310ab79b82709db4fb", "sticker": null, "text": "BTW, i am not a programmer. I am a statistician. I am just helping my friend to do this project.\n\nThank you for this suggestion", "from_id": "97a19f7865589dddb6c5158209972d98481c5de76fd40e76141f86489d0aebf9", "reply_to": "1a57d2592d98d32c7f98e8b2b3985e4f84290adb526944a62f0a6142fd33535d", "datetime": "2024-09-21T17:39:17+00:00" }, { "message_id": "f648befc19cf628e299aac89ab13f41ce2d269f8d368f4ea93583de33f0aa494", "sticker": null, "text": "So it's like the friend's university assignment?", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "37d48faa1483c368ab306d53c35cc99aae8e76f65ea225310ab79b82709db4fb", "datetime": "2024-09-21T17:42:19+00:00" }, { "message_id": "cc4b78a08fc0de5f9d6f00bae989da0dece3acb496824388252226c4e45c78ac", "sticker": null, "text": "Yes. University project", "from_id": "97a19f7865589dddb6c5158209972d98481c5de76fd40e76141f86489d0aebf9", "reply_to": "f648befc19cf628e299aac89ab13f41ce2d269f8d368f4ea93583de33f0aa494", "datetime": "2024-09-21T17:44:29+00:00" }, { "message_id": "46e12b92c30a559e7476198179293abd4269744ff3b540e0b47f016e65781b9d", "sticker": null, "text": "Oh, I would ask a university teacher a lot of questions just to make sure what the teacher expects. And only then started coding.\nNo sense making 9999 hard steps if one goes the wrong direction", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-21T17:47:55+00:00" }, { "message_id": "082ed453fc5098af80ffaee954eab9707ece5957a1ecc39d4e2a3f8e96b41823", "sticker": null, "text": "Yeah maybe generated more meaningful task description and gave it to the teacher for approval. And when aporoved, started actual coding (in the process also maybe asking teacher). This way both the student and the teacher are on the same page 😃", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-21T17:55:32+00:00" }, { "message_id": "09cf0c8a8a3b6a58a8230e22a182a9a7b9881123707b0e45fd07cf0e2e4034f7", "sticker": null, "text": "draw quadrilateral\njoin BD\nequation parallel_line AB CD\nequation parallel_line AD BC\ncompute\ncompute", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": null, "datetime": "2024-09-22T04:58:05+00:00" }, { "message_id": "c2f1a1ef81ddfe6b68bf6c020596314726b8622de0022cef5479d356db80eff3", "sticker": null, "text": "input this to my geometry software and it will derive all the properties of a parallelogram.", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": "09cf0c8a8a3b6a58a8230e22a182a9a7b9881123707b0e45fd07cf0e2e4034f7", "datetime": "2024-09-22T04:58:48+00:00" }, { "message_id": "9b35f073e97ec423ffec08e4dc6db274f573ff2395f326c0c3b14701be4b0747", "sticker": null, "text": "angle(ABC)+angle(BCD)+angle(BAD)+angle(ADC)=360\n-angle(ABC)+angle(CBD)+angle(ABD)=0\n-angle(ADC)+angle(BDC)+angle(ADB)=0\nangle(BAD)+angle(ABD)+angle(ADB)=180\nangle(BCD)+angle(CBD)+angle(BDC)=180\n-angle(BDC)+angle(ABD)=0\nangle(CBD)-angle(ADB)=0\nangle(ABC)-angle(ADC)=0\nangle(BCD)-angle(BAD)=0\nangle(BDC)-angle(ABD)=0\nline(BC)-line(AD)=0\n-line(AB)+line(CD)=0\nparallel(line(AB),line(CD))\ncongruent(triangle(CBD),triangle(ADB))\nparallel(line(AD),line(BC))", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": null, "datetime": "2024-09-22T05:01:29+00:00" }, { "message_id": "8ccf2f6e947422e5c517d8684f08757cbe6d664181fd536866aaf7b56d944e53", "sticker": null, "text": "you aren't even a programmer", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": "46e12b92c30a559e7476198179293abd4269744ff3b540e0b47f016e65781b9d", "datetime": "2024-09-22T05:01:58+00:00" }, { "message_id": "f5ab74e12f97646b401e10b2573cea527ffdf6c61df363d15cdac59e9238236e", "sticker": null, "text": "Prove it", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "8ccf2f6e947422e5c517d8684f08757cbe6d664181fd536866aaf7b56d944e53", "datetime": "2024-09-22T05:03:14+00:00" }, { "message_id": "65d0079375f5f8159054c6dbbed1fa227a0b93c32af1b322127cd1b1ac3786f1", "sticker": null, "text": "no problem if you aren't one. doesn't mean you have to be policing someone's message if its a bit unclear.", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": null, "datetime": "2024-09-22T05:04:30+00:00" }, { "message_id": "d76ac4b6476f838a5d36cb1457b5cf06ef0854f30b9317d7d8f53c979f6801dc", "sticker": null, "text": "I am a programmer. I create docs and write code for money", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "65d0079375f5f8159054c6dbbed1fa227a0b93c32af1b322127cd1b1ac3786f1", "datetime": "2024-09-22T05:06:58+00:00" }, { "message_id": "a7d5b0c9de0a8dceec50b271237dc8484f535c893336c7dba5c1a21e1d59f800", "sticker": null, "text": "Do u know what compile time metaprogramming code generation is?", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "8ccf2f6e947422e5c517d8684f08757cbe6d664181fd536866aaf7b56d944e53", "datetime": "2024-09-22T05:08:31+00:00" }, { "message_id": "f57109f1ee77f67bd1a812124c80f79de56d97b806b0e4174f6a85b27dcb1b3d", "sticker": null, "text": "Oh my bro is googling", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-22T05:09:40+00:00" }, { "message_id": "90f81c48565c3c7312e1e5f01e8ea4a963d1f7af833fdecfec231fa69921bef8", "sticker": null, "text": "your notion of a programmer who does it for learning various programming languages like learning python java and the nuisances of it. learning the big words. and learning how to make money from programming. isn't going to work in real world. and mostly importantly the stating that the archetype of programming is a guy like you. is unacceptable.", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": "d76ac4b6476f838a5d36cb1457b5cf06ef0854f30b9317d7d8f53c979f6801dc", "datetime": "2024-09-22T05:13:35+00:00" }, { "message_id": "0bee58f20b601db3ae0ac7f46c8e291a4ed60a397054abc128490d7d3ec4e413", "sticker": null, "text": "What are u even talking about😂😂😂", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-22T05:17:30+00:00" }, { "message_id": "cbecdf28be2bf26fe2e7771ef1b597179726b935dae532dce1ab6044ac581d7b", "sticker": null, "text": "Are u a programmer?", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "90f81c48565c3c7312e1e5f01e8ea4a963d1f7af833fdecfec231fa69921bef8", "datetime": "2024-09-22T05:18:34+00:00" }, { "message_id": "c5b6974decdabf3a8d30924ec025730395c728a5b5c977aafdcd11e9bbf18c52", "sticker": null, "text": "i have built chess playing softwares, worked with 3d computer graphics. and made that geometry software i shown to you.\nso, yes, i am a programmer.\nbut i am offended by how you presented yourself :(", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": "cbecdf28be2bf26fe2e7771ef1b597179726b935dae532dce1ab6044ac581d7b", "datetime": "2024-09-22T05:20:06+00:00" }, { "message_id": "423ed0da72225d0328373fa4a6f6745c2810758cfd1fcd69c211da9879095858", "sticker": null, "text": "😂😂😂 good bye.", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": "0bee58f20b601db3ae0ac7f46c8e291a4ed60a397054abc128490d7d3ec4e413", "datetime": "2024-09-22T05:20:52+00:00" }, { "message_id": "219a7b4e2b9840100a3db696d0f8251a19ea06f072263cad4aa11aca2469755c", "sticker": null, "text": "Clearly state why u think I'm not a programmer", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-22T05:21:20+00:00" }, { "message_id": "7bdd5c8fcf0454a84cf75d081f256af2e291712f64ef6312bb750aea75dd69fa", "sticker": null, "text": "focus more on programming logic. not on learning various programming languages. that's how a REAL programmer is like.", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": null, "datetime": "2024-09-22T05:22:21+00:00" }, { "message_id": "1007dc2537e1cadc329db5ce93c0507bf0077760bdeaeda6bce0f04ee1bb0904", "sticker": null, "text": "Lol. Are u even aware that this is just how u treat who is a real programmer. It is nothing to do with real world concepts. There is no thing as \"real programmer\" in the world. Its just how you treat it in your head. So you created some world in your head and labeled things paticular way in your head. Why would someone accept your thinking?", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-22T05:23:39+00:00" }, { "message_id": "411eb581ab31ef8c8605ca13e61038a5b9fa648f5ae981d9cb393768beac61bf", "sticker": null, "text": "Thank you for a piece of advice. I learned how to solve 450 leetcode problems. Passed numerous cloud certifications. Working with top companies. And you state i am a fake programmer 😂😂😂. Thank you for making my day funny", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "7bdd5c8fcf0454a84cf75d081f256af2e291712f64ef6312bb750aea75dd69fa", "datetime": "2024-09-22T05:28:53+00:00" }, { "message_id": "278746104443c92a12e0145cf928efef07546204460532472e49d8507eb41a33", "sticker": null, "text": "And yeah. Focusing just on one language makes one stagnating. Thats why i focus on java, scala 3, kotlin and rust", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-22T05:30:25+00:00" }, { "message_id": "6b22ee923b2334639b4a219d487485a3225972e32bed79d36417e2c8d1bd90ce", "sticker": null, "text": "How do you think what \"composition over inheritance\" is all about? Oh bro", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "7bdd5c8fcf0454a84cf75d081f256af2e291712f64ef6312bb750aea75dd69fa", "datetime": "2024-09-22T05:31:04+00:00" }, { "message_id": "0ea68101aeb3b4d6d32f8e5ee817b1b144f98360326102d532bfe5968bfc915b", "sticker": null, "text": "laters. but brother i will prove i am the real programmer only. and win the programming culture wars. i am already having an edge 😂", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": null, "datetime": "2024-09-22T05:54:35+00:00" }, { "message_id": "80159a4244f7bd146d31f461a7f9752d4cf0622e6678f16de4a3fc5d1b4d5147", "sticker": null, "text": "Ok, but let's make ChatGPT new model (as a third side) choose the winner 😁", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-22T05:56:53+00:00" }, { "message_id": "a6cf612e050957f6464c4d4d2d7d281f0cf3b262f3c8d77e18f617ea33d6a7c8", "sticker": null, "text": "fine. i am okay with that. only if chatgpt is able to arrive here for the judgement.", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": null, "datetime": "2024-09-22T05:57:46+00:00" }, { "message_id": "4fb2a39f81b0f4f52956455e33713eb04a92123b60efd21e3d6a76608ddd865e", "sticker": null, "text": "Yes, things like math, logic, algorithms and data structures, problem solving skills (of real business) are **some** of lots of tons of technical fundamental things. There is no doubt", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-22T06:03:57+00:00" }, { "message_id": "bf6ef8efbdb46dbd71bc2fb22dbe7b9f43d2c7b8db1efc27506f0a8612f02b88", "sticker": null, "text": "this is my whole career. working with math, logic, algorithms and data structures.", "from_id": "a824dd396244b5c6e56bc1b96778b3aa6d63b61ffe45d03dac67f8402c687b19", "reply_to": null, "datetime": "2024-09-22T06:05:05+00:00" }, { "message_id": "611627407f3afae624c6232c21b933ad9fbcffd034a08830024cbfb8022e1f9d", "sticker": null, "text": "So u are a uni student?", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": "bf6ef8efbdb46dbd71bc2fb22dbe7b9f43d2c7b8db1efc27506f0a8612f02b88", "datetime": "2024-09-23T05:23:33+00:00" }, { "message_id": "4f82428ca8c929991afd2cf2a67b821c1ccf66ba59d9de3d8003350bc6d241db", "sticker": null, "text": "Yes", "from_id": "0eb2fd4efec18c14175889e6c74441bc9360f184ad44eb76b2d880b1749a1fac", "reply_to": null, "datetime": "2024-09-24T11:04:43+00:00" }, { "message_id": "2d40e05429b2f097229402ac6215da7f29b28bfcde41319e0ce68364a3ac83f8", "sticker": null, "text": "Can someone help us to solve a quadratic equation using java", "from_id": "f124af6122e082c6d9417783fb214113f75ac2a3edce9cc6a486dc48dedcce45", "reply_to": null, "datetime": "2024-09-25T11:23:08+00:00" }, { "message_id": "4a8e83d5c883b522a08f7f6eadba50f02fbeddf8101d8ae82c34673fd2f784f7", "sticker": null, "text": "Please who can help me to replace his brain with my brain", "from_id": "f124af6122e082c6d9417783fb214113f75ac2a3edce9cc6a486dc48dedcce45", "reply_to": null, "datetime": "2024-09-25T12:07:07+00:00" }, { "message_id": "131059dba796f60242df5966c557b0f68f4e46d6eb88cc157248f72f8caaee64", "sticker": null, "text": "Anybody use NetBeans", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-26T14:26:42+00:00" }, { "message_id": "8a4fc08d938adcb43740288352a19e1ddf32905a9d87b23f762733a8feb0d934", "sticker": null, "text": "Yes", "from_id": "c975bbaf030c9982b9e132b6a0a2935d0a190bf519a18be52c41aa5730f50aa4", "reply_to": "131059dba796f60242df5966c557b0f68f4e46d6eb88cc157248f72f8caaee64", "datetime": "2024-09-26T18:37:02+00:00" }, { "message_id": "05708530939fa6692e4a01d1217c92cc74725e47495844e30bfaab53b5ed2e2b", "sticker": null, "text": "Lol. This group is deader than dead itself", "from_id": "129f46da8e9d206e5f51f0968def708c5345cea9c9d46f8bbfb9f4ea34f4bc7f", "reply_to": null, "datetime": "2024-09-26T22:25:04+00:00" }, { "message_id": "14f73e84e2781b1b16de9abdf2699f50e0ac3d145200fb7f2f88187045cda8d3", "sticker": null, "text": "Hlo everyone", "from_id": "8a633efbdc0b49212873fbdb12b6adcb9301e7b0a052bcb9d18d7c96afc94c91", "reply_to": null, "datetime": "2024-09-27T06:15:02+00:00" }, { "message_id": "d9704c6e1cac4d28676c3fb250cf22ac7f7120bc7b32e718962e319883d69fdc", "sticker": null, "text": "Good morning", "from_id": "8a633efbdc0b49212873fbdb12b6adcb9301e7b0a052bcb9d18d7c96afc94c91", "reply_to": null, "datetime": "2024-09-27T06:15:11+00:00" }, { "message_id": "03b0287d1fb92138a38b6b503113fc9b490a3f8f2ec073140ca64fa37ecdbeee", "sticker": null, "text": "Is Anyone in this group is Interested in knowing about Java script role in Web Development", "from_id": "8a633efbdc0b49212873fbdb12b6adcb9301e7b0a052bcb9d18d7c96afc94c91", "reply_to": null, "datetime": "2024-09-27T06:26:00+00:00" }, { "message_id": "2d2b6a4d1e9f8a616071e9206209ac1f50b194998262437d826e14ee28014834", "sticker": null, "text": "Yes", "from_id": "c9ac5a32aea96353181b7b215f83c62a3e0a6346065d4533f8f504862333d3d5", "reply_to": "03b0287d1fb92138a38b6b503113fc9b490a3f8f2ec073140ca64fa37ecdbeee", "datetime": "2024-09-28T03:14:15+00:00" }, { "message_id": "cbcbbd11b17ce2a5240e664991b4a4ce62be518a3d2a20e3ff5580f0a8ce8f40", "sticker": null, "text": "Hi", "from_id": "248249d7b9d97e8d9aac9fbdc9a2a0bfe61d9e66d9f2e84b235e2cdbaee803e0", "reply_to": null, "datetime": "2024-09-28T06:11:46+00:00" }, { "message_id": "a88d99d8fd639234406c3754ba2de72245693843feee21b7b8ec15eaf19acf4b", "sticker": null, "text": "Hi I am new in programming but I know basic html and css \nI want to learn either Java or python and currently looking for some advice and friend that I can learn things from 🙂", "from_id": "fde2bd401e3f6be3f0ec33adfd696377bbb295062509b00b53d8f6227fc74128", "reply_to": null, "datetime": "2024-09-29T09:02:13+00:00" }, { "message_id": "61e6d0037db1f36387618cb764e780cf3b2784151407bae6e82d12c0b5751cb1", "sticker": null, "text": "java is a compiled language \nit's much harder than python \nbut if you learn java\nAny Scripting language like python will be very easy", "from_id": "2ab643d656f82d23c84d7bde81557c3403da6f115f5369feaabb4732d13ad701", "reply_to": "a88d99d8fd639234406c3754ba2de72245693843feee21b7b8ec15eaf19acf4b", "datetime": "2024-09-29T12:01:23+00:00" }, { "message_id": "498b98343e4be3b505e9eeb3cd27e693639120dcec7450c56b5014564b9230c4", "sticker": null, "text": "Anybody can share ppt on core Java", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-29T18:41:27+00:00" }, { "message_id": "d261d103a8edce785a0491269733c474a69233119339bb772e4a1a24760150ab", "sticker": null, "text": "I don't have any pp or pdf in English", "from_id": "2ab643d656f82d23c84d7bde81557c3403da6f115f5369feaabb4732d13ad701", "reply_to": "498b98343e4be3b505e9eeb3cd27e693639120dcec7450c56b5014564b9230c4", "datetime": "2024-09-29T18:43:10+00:00" }, { "message_id": "43fd7c83f49ff1b9f932f89b50368bc176fd6532c8ed4607b11a3ff3a240bf7f", "sticker": null, "text": "You have any project", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-29T18:44:05+00:00" }, { "message_id": "98d0a9f905068f8086049fe48dbd764c568fe83683b2922ee8744fe0aebe4fc7", "sticker": null, "text": "On core Java", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-29T18:44:16+00:00" }, { "message_id": "a7d3949a9456ac99e2e96e334e6a152829a39d9199134f94c8cc7c700a961e67", "sticker": null, "text": "but I think I know some good full course videos on YouTube", "from_id": "2ab643d656f82d23c84d7bde81557c3403da6f115f5369feaabb4732d13ad701", "reply_to": null, "datetime": "2024-09-29T18:45:00+00:00" }, { "message_id": "ce31a1789d688a9ef2608a6ee24029c4019e80ccebc28c7b0f11ef622ee08b18", "sticker": null, "text": "I don't need any course", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-29T18:46:15+00:00" }, { "message_id": "cc5f2622af9ad2b2381f693833603dcc13e84b052278f7b89029e7a4f4ee5032", "sticker": null, "text": "I want only project bcz I want to submit on tomorrow", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-09-29T18:46:45+00:00" }, { "message_id": "c1703d00c02bf30e4552a63e989f60d0dd757ca16ae38058abd049ae105634af", "sticker": null, "text": "Does anyone have inventory management system application?", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": null, "datetime": "2024-09-29T18:47:12+00:00" }, { "message_id": "4eea0d14da5f3bf5dc716099d5c8130181c9dc00cf31680438dd23ab44041890", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8a633efbdc0b49212873fbdb12b6adcb9301e7b0a052bcb9d18d7c96afc94c91", "reply_to": "2d2b6a4d1e9f8a616071e9206209ac1f50b194998262437d826e14ee28014834", "datetime": "2024-09-29T19:18:48+00:00" }, { "message_id": "e4f11712981dbece3c81b35a82f958dea0738c8942e65fa18857a950bf057973", "sticker": null, "text": "Hi shreyas .. Yes I have", "from_id": "d7cc9057543bc2b7f6130c39d410ae71cc8aa8744bd1f6b44f3a74aac7c388b2", "reply_to": "c1703d00c02bf30e4552a63e989f60d0dd757ca16ae38058abd049ae105634af", "datetime": "2024-09-29T19:20:05+00:00" }, { "message_id": "d95395867ebd498dcb90afc910f201e008a2d17554bdfc627bf08d8681ec8ea8", "sticker": null, "text": "Ping me I will show you the output", "from_id": "d7cc9057543bc2b7f6130c39d410ae71cc8aa8744bd1f6b44f3a74aac7c388b2", "reply_to": null, "datetime": "2024-09-29T19:20:28+00:00" }, { "message_id": "a954caac7059dd7521d4933e003516c27a8d45a93a223670edfb18ed904eec45", "sticker": null, "text": "Anyone with a Content Management System (for research data)?", "from_id": "78a1707c5f0f8e0dd30164b2fb8c59a9070a7781fec20e20b963e149ed068c69", "reply_to": null, "datetime": "2024-09-29T19:20:54+00:00" }, { "message_id": "ad826d20c41a1fe4da7273687db4343e1475729b90667323dd055af06983ea31", "sticker": null, "text": "Anyone working on Java Spring boot ?", "from_id": "344ef4ce0e2ab7d81231bd1182de0b4a94f21fc250139779d85d71ce3bb83cb3", "reply_to": null, "datetime": "2024-09-30T09:45:27+00:00" }, { "message_id": "6e08c6b2689d9f14c4127c9a927855142a419ee4a0fa32f625dca2eb09ae878e", "sticker": null, "text": "Dead chat !", "from_id": "344ef4ce0e2ab7d81231bd1182de0b4a94f21fc250139779d85d71ce3bb83cb3", "reply_to": null, "datetime": "2024-09-30T10:14:35+00:00" }, { "message_id": "531762ca2831d7bfec81ecb49df2c264bd16ffc236159dec539f173d5a9eae9a", "sticker": null, "text": "Python or Ajgar??\n\nAnyway its a Java channel bro..", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "4262cf57fd28ceab1891bb66bcbba65f04baa574151097d2504e31365d8f51dd", "datetime": "2024-09-30T14:17:58+00:00" }, { "message_id": "70cbe0aa3d6ef6c5e3299bcf4ee38a1eb10545796935b5ddf739b8aa67e4614e", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8a633efbdc0b49212873fbdb12b6adcb9301e7b0a052bcb9d18d7c96afc94c91", "reply_to": null, "datetime": "2024-10-01T05:33:43+00:00" }, { "message_id": "0e048d22d96a71d8ca20e468446223d804507e41cc62a8fd80cb8457576224f5", "sticker": null, "text": "Yes", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "ad826d20c41a1fe4da7273687db4343e1475729b90667323dd055af06983ea31", "datetime": "2024-10-01T08:52:34+00:00" }, { "message_id": "f4b7779fcbeeee332daef0d261899176c9b1f6dbceba195d2e6dcb746c2faa4d", "sticker": null, "text": "can anyone help me to just create a java programm using recursive technique to check the entered number is prime or not .\nplease tell", "from_id": "63fbe4e71d3c37302c4912ec93ef68435cbbd5e553ff7f94293dfde9351f7756", "reply_to": null, "datetime": "2024-10-02T16:14:45+00:00" }, { "message_id": "f7e856ad2333cf415380a01eec0b47369af78d38f5e3455757641e9243eba0ca", "sticker": null, "text": "public class PrimeCheck {\n\n // Function to check if a number is prime recursively\n public static boolean isPrime(int num, int divisor) {\n // Base case: If divisor reaches 1, the number is prime\n if (divisor == 1) {\n return true;\n }\n // If number is divisible by current divisor, it's not prime\n if (num % divisor == 0) {\n return false;\n }\n // Recursive case: check with the next lower divisor\n return isPrime(num, divisor - 1);\n }\n\n // Helper function to initiate recursive check\n public static boolean isPrime(int num) {\n // Prime numbers are greater than 1\n if (num <= 1) {\n return false;\n }\n return isPrime(num, num - 1);\n }\n\n public static void main(String[] args) {\n int number = 29; // Change this value to test with other numbers\n \n if (isPrime(number)) {\n System.out.println(number + \" is a prime number.\");\n } else {\n System.out.println(number + \" is not a prime number.\");\n }\n }\n}", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "f4b7779fcbeeee332daef0d261899176c9b1f6dbceba195d2e6dcb746c2faa4d", "datetime": "2024-10-02T19:25:46+00:00" }, { "message_id": "6f4935bf1b1897e29ca27290414400c1ffea2105919f969adee2e1283109bc96", "sticker": null, "text": "Next time try using chatgpt", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "f4b7779fcbeeee332daef0d261899176c9b1f6dbceba195d2e6dcb746c2faa4d", "datetime": "2024-10-02T19:26:33+00:00" }, { "message_id": "d45f8a2d14e85a3477470867520ee90ea9ae63daf920aacb4c833553f7f31ab3", "sticker": null, "text": "Ashis your work rate like Ngolo Kante 🔥", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "f7e856ad2333cf415380a01eec0b47369af78d38f5e3455757641e9243eba0ca", "datetime": "2024-10-02T19:27:06+00:00" }, { "message_id": "c991d06905740f2d40f1feba139cf42720511cbcf4a89204b59a5e45bc47f9e0", "sticker": null, "text": "What you think i used??", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-10-02T19:28:55+00:00" }, { "message_id": "28ce74107398a27faee49c2ffde4e70c08b08026ea6a123384f872539d76891c", "sticker": null, "text": "I don't code for prime anymore..", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-10-02T19:29:10+00:00" }, { "message_id": "4be7e7b4e92124025f5b88bc006dacf5dd170d82a0d2a6c395264d8da8c1fd64", "sticker": null, "text": "Lol, I'm referring to your general contribution to this platform", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "c991d06905740f2d40f1feba139cf42720511cbcf4a89204b59a5e45bc47f9e0", "datetime": "2024-10-02T19:41:45+00:00" }, { "message_id": "e993a22a518d69a110cfc88e47c4f7db097e7871b345e1572bcfa4e3c8dba4b1", "sticker": null, "text": "Ikr, I def know you used some sort of ai", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "28ce74107398a27faee49c2ffde4e70c08b08026ea6a123384f872539d76891c", "datetime": "2024-10-02T19:42:03+00:00" }, { "message_id": "ed25fa1a1a2600a786d28d2009c956d5d9c7a3c12644d6650a5d507f3aecdf3d", "sticker": null, "text": "Can anyone tell me best java DSA course", "from_id": "9c3292e262d56021f854f545d6026a2c57c68a3f0606631f002b72952b9ebb34", "reply_to": null, "datetime": "2024-10-04T17:39:56+00:00" }, { "message_id": "37f6f7309825c7f5d197da1e374c1e4337d3194c9314ecd8dc059625180da6ca", "sticker": null, "text": "Anyone need iOS or Android application free", "from_id": "7e8476624e6eeb91437edff0a44d62b1a86e439b0805fb76c9c24d698da115ba", "reply_to": null, "datetime": "2024-10-05T19:11:44+00:00" }, { "message_id": "b29530ceeaa965823f26edd3cd52346f10d8d9be93f5540b1d4c56d632604368", "sticker": null, "text": "Come to Iran. No one pays for such stuff.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "37f6f7309825c7f5d197da1e374c1e4337d3194c9314ecd8dc059625180da6ca", "datetime": "2024-10-05T19:19:53+00:00" }, { "message_id": "e855144bdecf75d814931753c11cff3f8c6bead8b0a03fbd2d68f941d9122f3a", "sticker": null, "text": "Lol, you want him to be bombed 😳", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "b29530ceeaa965823f26edd3cd52346f10d8d9be93f5540b1d4c56d632604368", "datetime": "2024-10-05T20:06:07+00:00" }, { "message_id": "fcaaddf0576cf0c58021bb5917a3bbc20e2e9a6084bee442e47730ae7d2d31ec", "sticker": null, "text": "By whom?\n😂\ndon't believe such stuff.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "e855144bdecf75d814931753c11cff3f8c6bead8b0a03fbd2d68f941d9122f3a", "datetime": "2024-10-05T20:13:23+00:00" }, { "message_id": "fb84c255719cdc4e4fb8cfd0b481d6da048e91ae77c77261edfc035fd5dcb79b", "sticker": null, "text": "Okay Mr Soldier😂😂😂", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "fcaaddf0576cf0c58021bb5917a3bbc20e2e9a6084bee442e47730ae7d2d31ec", "datetime": "2024-10-05T20:23:13+00:00" }, { "message_id": "13b3a6812ef2522b38a322e21fc1ae3631749d06e6eaa5673e41c28f5440b9f3", "sticker": null, "text": "Let him come. We need more soldiers 😂(Keep this between us btw )", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "fb84c255719cdc4e4fb8cfd0b481d6da048e91ae77c77261edfc035fd5dcb79b", "datetime": "2024-10-05T20:23:59+00:00" }, { "message_id": "6757ad6e5ad7536db444b373fbb9e94d729d8968fef3ef4feea01955355374e3", "sticker": null, "text": "dadash 😂", "from_id": "2ab643d656f82d23c84d7bde81557c3403da6f115f5369feaabb4732d13ad701", "reply_to": "b29530ceeaa965823f26edd3cd52346f10d8d9be93f5540b1d4c56d632604368", "datetime": "2024-10-05T20:27:57+00:00" }, { "message_id": "9acb69538d1498950e460f918503ccaa2ac2d1565d93c81657ddf2c6e78ff225", "sticker": null, "text": "", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "6757ad6e5ad7536db444b373fbb9e94d729d8968fef3ef4feea01955355374e3", "datetime": "2024-10-05T20:28:52+00:00" }, { "message_id": "daf4c59350fe946b70a4ef2c4c1b4b07f1d9ccc5cfa43401a9385181bfba9465", "sticker": null, "text": "hi", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2024-10-06T13:07:06+00:00" }, { "message_id": "5270f8f5e7ac126595756c6a63373d7285da3002ec3396d314fe5fcbc0c5b23d", "sticker": null, "text": "Hello", "from_id": "9c3292e262d56021f854f545d6026a2c57c68a3f0606631f002b72952b9ebb34", "reply_to": null, "datetime": "2024-10-06T13:12:56+00:00" }, { "message_id": "538ac9741310febdbde73116c139404e33e7fb82129ebed8947f47faf064c9c8", "sticker": null, "text": "Yez", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": "37f6f7309825c7f5d197da1e374c1e4337d3194c9314ecd8dc059625180da6ca", "datetime": "2024-10-06T13:29:56+00:00" }, { "message_id": "6dce26aecd13b5f30d71947d7e7bc39a698eeda490bfa61635d8f3105066fcbb", "sticker": null, "text": "anyone knowes app for windows", "from_id": "9beeb91c2d47ad3b9e2010cdd23c6a8e494b5aa57a72acc1eec820d9b0d8b589", "reply_to": null, "datetime": "2024-10-08T11:18:16+00:00" }, { "message_id": "fcf6b11a9132811733d26fcb6ba4127bb5327e3ea722ae63eb3d12f420f8f78d", "sticker": null, "text": "where to download", "from_id": "9beeb91c2d47ad3b9e2010cdd23c6a8e494b5aa57a72acc1eec820d9b0d8b589", "reply_to": null, "datetime": "2024-10-08T11:18:27+00:00" }, { "message_id": "21270f7d0b7d8ecee4b7391a591c0c731aeaacbd57c47b1ea12b3ce344c13801", "sticker": null, "text": "Hi why the chat is dead not active, I'm interested in developing GUI based application for windows or Linux 🤧 with good UI without using JS based UI framework is there any way I can able to create best UI only by using Java alone ? Any frameworks available please someone gives the tips and steps I learn basic java I don't have interest in DSA solvings I want to learn by building project especially GUI", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": null, "datetime": "2024-10-08T12:51:13+00:00" }, { "message_id": "d5842abab6070ace697aad2816b3fca88ecec683f8caa2a2bf2167967079f4d3", "sticker": null, "text": "SWING", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "21270f7d0b7d8ecee4b7391a591c0c731aeaacbd57c47b1ea12b3ce344c13801", "datetime": "2024-10-08T13:00:23+00:00" }, { "message_id": "6c17f76ce6bd188dfd3a3c3f7a5c8a4363d754fcad04be8cba3fa1ad4276f9b2", "sticker": null, "text": "But it's not a good idea to break an egg with a hammer or to kill a fly with RPG", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "21270f7d0b7d8ecee4b7391a591c0c731aeaacbd57c47b1ea12b3ce344c13801", "datetime": "2024-10-08T13:01:56+00:00" }, { "message_id": "005088d4688bb0cf09eb9281c8f306d5bd48d24ab95af6f6c9aca280f60040ae", "sticker": null, "text": "Swing 🤧 feels hard", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "d5842abab6070ace697aad2816b3fca88ecec683f8caa2a2bf2167967079f4d3", "datetime": "2024-10-08T13:04:45+00:00" }, { "message_id": "73998832ddf60ef334139a97a7ac9008e03a3a8deb8fc4eb414b4a340479fdef", "sticker": null, "text": "Any java frameworks to easily design UI ?", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": null, "datetime": "2024-10-08T13:05:08+00:00" }, { "message_id": "4d3c25cc3100379dcca5b123926cc54ff3c353383a60efcbf830433a8672cc17", "sticker": null, "text": "Java FX", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "73998832ddf60ef334139a97a7ac9008e03a3a8deb8fc4eb414b4a340479fdef", "datetime": "2024-10-08T13:06:03+00:00" }, { "message_id": "8d357dfe2f22ab7ef034bc135972ddc11977da0a4d9f5aad088c413467d5e03a", "sticker": null, "text": "I think it'd hard to create stunning UI like react results with swing", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "d5842abab6070ace697aad2816b3fca88ecec683f8caa2a2bf2167967079f4d3", "datetime": "2024-10-08T13:06:13+00:00" }, { "message_id": "8a1021157c349de9a3d3e10966c39a07e7633d0b5509d038e0d67984ed7222f4", "sticker": null, "text": "HTML, CSS for designing\n\n\nAnd JS for utilizing.\nThat's what I do", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "8d357dfe2f22ab7ef034bc135972ddc11977da0a4d9f5aad088c413467d5e03a", "datetime": "2024-10-08T13:07:35+00:00" }, { "message_id": "968b0217e8e0b2b85a0f772d4af67f396f3a1bbbe07325f206de97c956bba5bc", "sticker": null, "text": "Wait we can develop GUI using html css ? I thought that's only for web page frontend", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "8a1021157c349de9a3d3e10966c39a07e7633d0b5509d038e0d67984ed7222f4", "datetime": "2024-10-08T13:08:42+00:00" }, { "message_id": "d91b0c5ddc9926afeaa9590a53155730c0a857d0a8ac9e67174c4729abec73b1", "sticker": null, "text": "First, give it a try, play with it a little, then \"think\".", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "8d357dfe2f22ab7ef034bc135972ddc11977da0a4d9f5aad088c413467d5e03a", "datetime": "2024-10-08T13:08:55+00:00" }, { "message_id": "e780aee73c3783e22cf7e08a89d8b3beb4171bbf548712181626efdf7b5e0307", "sticker": null, "text": "Hmm okay thanks 👍", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "d91b0c5ddc9926afeaa9590a53155730c0a857d0a8ac9e67174c4729abec73b1", "datetime": "2024-10-08T13:09:17+00:00" }, { "message_id": "26d61baa76f987faaa1ae01c29302dabea697fdd8440ebe57e14635d38699bc2", "sticker": null, "text": "If it's a part of your project.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "968b0217e8e0b2b85a0f772d4af67f396f3a1bbbe07325f206de97c956bba5bc", "datetime": "2024-10-08T13:09:22+00:00" }, { "message_id": "7dc6f0c38374104128f25d9f1c833b62f2f9ac210addf4bc32703eb84e668fe5", "sticker": null, "text": "Good luck 👍🏼", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "e780aee73c3783e22cf7e08a89d8b3beb4171bbf548712181626efdf7b5e0307", "datetime": "2024-10-08T13:09:40+00:00" }, { "message_id": "56b0e7dfc58d38c28fae735910bfc5442879dea91be0a1353cdf903676e82b9e", "sticker": null, "text": "And I've done it once with\nBorland JBuilder X.\nThat was awsome", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "21270f7d0b7d8ecee4b7391a591c0c731aeaacbd57c47b1ea12b3ce344c13801", "datetime": "2024-10-08T13:10:54+00:00" }, { "message_id": "060c0a3916857765cfc0e31c7c91bb1dd3289d9c773ebc6d4401cda4b8c292d7", "sticker": null, "text": "Nah I don't have any projects purely for practicing", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "26d61baa76f987faaa1ae01c29302dabea697fdd8440ebe57e14635d38699bc2", "datetime": "2024-10-08T13:13:31+00:00" }, { "message_id": "7f1b5f895c832080c9b339343e7f39f2e0cf165f9ba886ea738352f1e1ab4c0f", "sticker": null, "text": "Is that opensource can I can see it ? Or your company project", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "56b0e7dfc58d38c28fae735910bfc5442879dea91be0a1353cdf903676e82b9e", "datetime": "2024-10-08T13:14:15+00:00" }, { "message_id": "3848dccf513c75d10796620fb19a455d3ab6db7a2e31960bffc94ac276a69f1a", "sticker": null, "text": "It was a long time ago.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "7f1b5f895c832080c9b339343e7f39f2e0cf165f9ba886ea738352f1e1ab4c0f", "datetime": "2024-10-08T13:15:06+00:00" }, { "message_id": "3b95266c798de903937ff4cb799e907128a487b011f95a10fa312f627aac2aa5", "sticker": null, "text": "hello everyone, what technologies are there for working with artificial intelligence in Java?", "from_id": "4037e8608ec49ef23cf7500e8e0d0e8249028abf88d65d34e9d39dd6e08d69a8", "reply_to": null, "datetime": "2024-10-08T13:16:08+00:00" }, { "message_id": "3529be8709290b62fa2572a966b99e2875fafd5c00fd1ccf0693f0306cfbee41", "sticker": null, "text": "You can google it.\nI'm not very update about it.\nI'm an old fashion class guy in programming.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "060c0a3916857765cfc0e31c7c91bb1dd3289d9c773ebc6d4401cda4b8c292d7", "datetime": "2024-10-08T13:17:06+00:00" }, { "message_id": "7986b602d207e8c08b2e8a11edd6149f5d1a981dff285658a9838e6e4f8cd897", "sticker": null, "text": "Try Tabnine", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "3b95266c798de903937ff4cb799e907128a487b011f95a10fa312f627aac2aa5", "datetime": "2024-10-08T13:18:28+00:00" }, { "message_id": "d48657d8320fc75cd8317186da4bba6f4f35abf8b990eed2d469a9f18ad815e9", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "3b95266c798de903937ff4cb799e907128a487b011f95a10fa312f627aac2aa5", "datetime": "2024-10-08T13:20:14+00:00" }, { "message_id": "9ecc420547ae7b02fd3c470d41923e0926eb957918d7455198b7b37fd8c3f2f1", "sticker": null, "text": "Okay cool", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "3529be8709290b62fa2572a966b99e2875fafd5c00fd1ccf0693f0306cfbee41", "datetime": "2024-10-08T13:20:34+00:00" }, { "message_id": "4c56b3a9c12dbb4c91fadff5c7736fc5b7cf5331019c47853bb9604991af3e63", "sticker": null, "text": "Tksm dude", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "3848dccf513c75d10796620fb19a455d3ab6db7a2e31960bffc94ac276a69f1a", "datetime": "2024-10-08T13:20:45+00:00" }, { "message_id": "14451cb7722cf4f76dd03d1ea2e60ee7e38d159c291916a65e83637c67aed04a", "sticker": null, "text": "🙂👍🏼", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "4c56b3a9c12dbb4c91fadff5c7736fc5b7cf5331019c47853bb9604991af3e63", "datetime": "2024-10-08T13:20:58+00:00" }, { "message_id": "e957c740990e54f2bf8835837e7a17ec243273c6c003e450ee57246b9658ae86", "sticker": null, "text": "Thanks for the code", "from_id": "63fbe4e71d3c37302c4912ec93ef68435cbbd5e553ff7f94293dfde9351f7756", "reply_to": "f7e856ad2333cf415380a01eec0b47369af78d38f5e3455757641e9243eba0ca", "datetime": "2024-10-08T13:27:07+00:00" }, { "message_id": "92d09e3b0207a933a3bb40e229aaa9941102ad54ab576da8511863b386646b43", "sticker": null, "text": "But its explanation is looking like written by Ai", "from_id": "63fbe4e71d3c37302c4912ec93ef68435cbbd5e553ff7f94293dfde9351f7756", "reply_to": null, "datetime": "2024-10-08T13:27:40+00:00" }, { "message_id": "45135fafb976fbb33a105bdde67e130310a14387854dbd05ec07506ef7d37c78", "sticker": null, "text": "Are you Persian?", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "4c56b3a9c12dbb4c91fadff5c7736fc5b7cf5331019c47853bb9604991af3e63", "datetime": "2024-10-08T13:35:37+00:00" }, { "message_id": "7063ef4aefce35bd7bab49ca839b6704a234a05e022252a4f1f91c49f72bcaba", "sticker": null, "text": "It is by AI", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "92d09e3b0207a933a3bb40e229aaa9941102ad54ab576da8511863b386646b43", "datetime": "2024-10-08T13:53:03+00:00" }, { "message_id": "401043a330f642657cf50e8c0fe07642ec8c79a2acb8a40d758b953e0a7daeb8", "sticker": null, "text": "Hello, I am a developer from the UK. My name is Raziye Huseyin. I am working as an online remote freelancer for an AI company to improve the AI model. I give human feedback for programming problems to the response of the AI chatbot. I make suggestions to AI responses to improve the AI model and check it They are looking for JAVA developers, and They pay $30 per hour. I can refer you for job if you are interested. You can send me a DM and your CV for details.", "from_id": "f99812e1ef42b6472375f2d576f3a9fa02dd430e9db50707906a272ad910cb9e", "reply_to": null, "datetime": "2024-10-08T17:05:46+00:00" }, { "message_id": "211b88faaf701b12e0a562bdad3b5e53383a375f82d1d8b65e89f86e56ed3bfc", "sticker": null, "text": "Java \nThe Complete Reference\n13th Edition\n\nDoes anyone have this book in PDF?", "from_id": "10750bbfabc99e666e0309657d554197a2ec5cc1586fcabf84212bef5ae932be", "reply_to": null, "datetime": "2024-10-08T19:17:07+00:00" }, { "message_id": "3314528d6f0edbb41c7399fac27b535523e58575a4fb9d4025fe562bafaea5bd", "sticker": null, "text": "5", "from_id": "cf1013dd3275344d9dfb53a99d7682891c77ee3be7e8ba79a65b9677aa45f1fa", "reply_to": null, "datetime": "2024-10-08T21:12:30+00:00" }, { "message_id": "26b0f04dda01f6a9cae8d773964a4ca8d2e162858a4177743cf6d74144e4d8f0", "sticker": null, "text": "Hi, you can try JavaFX. Before it was a part of jdk, but now it’s a separate project.\nSwing is also a possible choice.\nYou can also try Kotlin with Compose, may be a better choice.\nBut be careful, Java is not a great tool for GUI, unfortunately", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "21270f7d0b7d8ecee4b7391a591c0c731aeaacbd57c47b1ea12b3ce344c13801", "datetime": "2024-10-08T22:11:04+00:00" }, { "message_id": "5e9f9d61e4dd9975121b74b375878930dece78a6223d92b492514c9a71196cd5", "sticker": null, "text": "No", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "45135fafb976fbb33a105bdde67e130310a14387854dbd05ec07506ef7d37c78", "datetime": "2024-10-09T06:12:07+00:00" }, { "message_id": "0949a56d3cf486e6c2c974c42a79d45e773afe9169e9f24a1de752c788c3528a", "sticker": null, "text": "Ok \nThere was lots of Persian resources, that's why I asked you so.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "5e9f9d61e4dd9975121b74b375878930dece78a6223d92b492514c9a71196cd5", "datetime": "2024-10-09T06:12:59+00:00" }, { "message_id": "71a989df89da25813dae16130191d5fcd77a1e54c40ff38a431d3f41ce2dcda4", "sticker": null, "text": "Yeah 🤧 problem is I can't able to google better for python it's easy everyone posted videos resources alot simple direct way as pygui kivymd like that but what framework would help me build good modern UI", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "26b0f04dda01f6a9cae8d773964a4ca8d2e162858a4177743cf6d74144e4d8f0", "datetime": "2024-10-09T06:14:25+00:00" }, { "message_id": "9013b2ceb01608ec789ae3180710b096af0aa174a1be0e7c0bd2ef80fc689086", "sticker": null, "text": "☹hm", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "0949a56d3cf486e6c2c974c42a79d45e773afe9169e9f24a1de752c788c3528a", "datetime": "2024-10-09T06:14:39+00:00" }, { "message_id": "b7a1c2baebe2a8c613c5b0c72315691532978f525375e0faaa06947b01320d92", "sticker": null, "text": "You have youtube, so no need to worry 👍🏼", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "9013b2ceb01608ec789ae3180710b096af0aa174a1be0e7c0bd2ef80fc689086", "datetime": "2024-10-09T06:15:49+00:00" }, { "message_id": "9784060eeb3e0207d2a1d55f5fa1c314dda68b2606956d3508aabf515845d7e5", "sticker": null, "text": "Your channel has alot of useful stuffs thanks I'm joined", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "26b0f04dda01f6a9cae8d773964a4ca8d2e162858a4177743cf6d74144e4d8f0", "datetime": "2024-10-09T06:16:33+00:00" }, { "message_id": "fcc3a06b98cc3703a202aadc1fe1e7b8599deac7ccf6f57690f5819438195598", "sticker": null, "text": "I'm tried by searching with \" GUI application tutorial/ development using Java but all I get very old basic 🤧 videos I don't like those UI", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "b7a1c2baebe2a8c613c5b0c72315691532978f525375e0faaa06947b01320d92", "datetime": "2024-10-09T06:18:00+00:00" }, { "message_id": "0c9aede0cdf4c1140b3ab72a051f96b693832510dafbb40c1faef39147ec5954", "sticker": null, "text": "Why don't you search:\n\nModern looking UIs designed by Java+Code\n\n!?", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "fcc3a06b98cc3703a202aadc1fe1e7b8599deac7ccf6f57690f5819438195598", "datetime": "2024-10-09T06:19:52+00:00" }, { "message_id": "b7552f3a68de3b5621b9ee57be48a1cfa018d814c9bd3765a4e56de0aa90212c", "sticker": null, "text": "Keep trying.\nSearching is better than just expecting.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "fcc3a06b98cc3703a202aadc1fe1e7b8599deac7ccf6f57690f5819438195598", "datetime": "2024-10-09T06:21:11+00:00" }, { "message_id": "d78508eb8a1381b538395828ed047f1f96f3a0dbc1ac8a37113dfe5385a0d0d9", "sticker": null, "text": "Links allowed here ?", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "0c9aede0cdf4c1140b3ab72a051f96b693832510dafbb40c1faef39147ec5954", "datetime": "2024-10-09T06:23:39+00:00" }, { "message_id": "f3127a9c2e6d98a20ac726f97f52f5b34cef48cf28497c3305f4bbf018ea8fcb", "sticker": null, "text": "Yes. I sent some.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "d78508eb8a1381b538395828ed047f1f96f3a0dbc1ac8a37113dfe5385a0d0d9", "datetime": "2024-10-09T06:24:06+00:00" }, { "message_id": "1fdb87f450a29678169ee87d093c8ddcf70bdc7cf1a17cf470c2fd55cd72797e", "sticker": null, "text": "Links getting deleted \nI want to design UI like this but all I getting results for very basic poor UI or best UI for Python , c# or react mostly 🤧\n\nhttps :// imgur. com /a/rucFzqg", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "f3127a9c2e6d98a20ac726f97f52f5b34cef48cf28497c3305f4bbf018ea8fcb", "datetime": "2024-10-09T06:29:33+00:00" }, { "message_id": "a84c93c8f543c170913c0c2298cd2140410f6168aac024c2b68df18431fffea6", "sticker": null, "text": "I sent this link yesterday", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "d48657d8320fc75cd8317186da4bba6f4f35abf8b990eed2d469a9f18ad815e9", "datetime": "2024-10-09T06:34:37+00:00" }, { "message_id": "e7f74827d29bb103035d1d6f1a0bf27ae96c1247126d69e143b773aa5941c5ee", "sticker": null, "text": "Idk this links get deleted", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "a84c93c8f543c170913c0c2298cd2140410f6168aac024c2b68df18431fffea6", "datetime": "2024-10-09T06:35:45+00:00" }, { "message_id": "b4f2246108b8429c3aa5cf8d943d597737f638d319779cebc5a73837d3769765", "sticker": null, "text": "I think it's has specified filters to delete", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "a84c93c8f543c170913c0c2298cd2140410f6168aac024c2b68df18431fffea6", "datetime": "2024-10-09T06:36:09+00:00" }, { "message_id": "d2d749da062a28f0aaac47c2bc5945fab8b415d864499d57e6c17e8bccd59da8", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "b4f2246108b8429c3aa5cf8d943d597737f638d319779cebc5a73837d3769765", "datetime": "2024-10-09T06:36:15+00:00" }, { "message_id": "80e08a3aa556ca8cf4efdf0fcc90ff880d728b9dedbce6fb9ba32f964569f924", "sticker": null, "text": "Idk why this Imgur link got deleted", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "d2d749da062a28f0aaac47c2bc5945fab8b415d864499d57e6c17e8bccd59da8", "datetime": "2024-10-09T06:38:34+00:00" }, { "message_id": "0c7909fc4888fe37f63b15f13c537ba8b9c6f6eb6837ae0cc6937f126da1fdcf", "sticker": null, "text": "Me neither", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "80e08a3aa556ca8cf4efdf0fcc90ff880d728b9dedbce6fb9ba32f964569f924", "datetime": "2024-10-09T06:38:54+00:00" }, { "message_id": "39d00e41493ec066d7dd0e7c078b5b75f229b95406aa219f66df2f3cfadb4f29", "sticker": null, "text": "Hm anyway let it be", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "0c7909fc4888fe37f63b15f13c537ba8b9c6f6eb6837ae0cc6937f126da1fdcf", "datetime": "2024-10-09T06:39:02+00:00" }, { "message_id": "7dc8404f43947240cbe92827431be342202dba653fbfb2dcff3319e4905f071e", "sticker": null, "text": "Yeah.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "39d00e41493ec066d7dd0e7c078b5b75f229b95406aa219f66df2f3cfadb4f29", "datetime": "2024-10-09T06:43:15+00:00" }, { "message_id": "c9b43fbfd81497f50fc1af84a8e744fd47ea92445856cace849a4b17f3e4e3b3", "sticker": null, "text": "Probably because it's shortened.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "80e08a3aa556ca8cf4efdf0fcc90ff880d728b9dedbce6fb9ba32f964569f924", "datetime": "2024-10-09T06:44:14+00:00" }, { "message_id": "692755207c106f44e164e9d2c0827b968eef7b90bbf8daa045f95dca9861c06b", "sticker": null, "text": "Yea", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "c9b43fbfd81497f50fc1af84a8e744fd47ea92445856cace849a4b17f3e4e3b3", "datetime": "2024-10-09T06:44:23+00:00" }, { "message_id": "8f88845b40dc81ef1354dd71684e93196af3805f4ab399c2ad77f223eea5865b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "692755207c106f44e164e9d2c0827b968eef7b90bbf8daa045f95dca9861c06b", "datetime": "2024-10-09T06:57:51+00:00" }, { "message_id": "e008d884dadf4cbc3f21f25d4936be63ee1612fa97f3c4b240a2799fb7c9c81b", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "692755207c106f44e164e9d2c0827b968eef7b90bbf8daa045f95dca9861c06b", "datetime": "2024-10-09T06:58:44+00:00" }, { "message_id": "94f20b2f125599d2e8dd4a8839dca577fdd846fe156765c52d77c13c4643291b", "sticker": null, "text": "What kind of desktop app you wanna create?", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "1fdb87f450a29678169ee87d093c8ddcf70bdc7cf1a17cf470c2fd55cd72797e", "datetime": "2024-10-09T06:59:09+00:00" }, { "message_id": "6a03dc9a95ea59d4b2beada96b604e60d944acbf4eb5fd0a4ca3df13368ff241", "sticker": null, "text": "Thank you 🙏 \nI believe I have to share my 10 years experience\nBut being a pro developer it’s hard to find topics needed to beginners 😁", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "9784060eeb3e0207d2a1d55f5fa1c314dda68b2606956d3508aabf515845d7e5", "datetime": "2024-10-09T07:01:54+00:00" }, { "message_id": "800282f5e82fb60d17e743613bea6c685c724a977ce1da8bad9ddea659349753", "sticker": null, "text": "Haha 😂😆 you can easily just imagine yourself as noob person who is starting or go back to your nostalgic a decade back memories then note down how are you approached then it will become easy to find topics needed for beginners in structural way", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "6a03dc9a95ea59d4b2beada96b604e60d944acbf4eb5fd0a4ca3df13368ff241", "datetime": "2024-10-09T10:10:09+00:00" }, { "message_id": "5b39e99de24a2cc3513edb465e5081530be5b85bd729f156218c831ba6d57956", "sticker": null, "text": "I haven't decided yet but wants to make complex app that can be MVP maybe 🤔 suggest me something that can cover all concepts of CRUD in db like a small personal notes apps with side bar having other option icons to open container inside the parent window like setting some timer with break time tracker as pomedero , also an todo list all combined in single app or else you suggest me anything better", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "94f20b2f125599d2e8dd4a8839dca577fdd846fe156765c52d77c13c4643291b", "datetime": "2024-10-09T10:19:22+00:00" }, { "message_id": "a7b0c0c96265b5115e934572eb203aeff8316a1f6573fdc92f7ad01e166ab37b", "sticker": null, "text": "You will need to have a web and a mobile versions of your app\nAre you sure you don’t want to use something that can run everywhere? HTML5 fits better here, but Java is also an option, but not for web and iphone, android will also have a different version\nMaybe Kotlin multiplatform is your choice, but I’ve not touched it seriously", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "5b39e99de24a2cc3513edb465e5081530be5b85bd729f156218c831ba6d57956", "datetime": "2024-10-09T10:23:29+00:00" }, { "message_id": "1945912eaba2386dff17ab0e08e44be12545f0ad0d82d78e745c58c8e4df9b9b", "sticker": null, "text": "Nah I just now want to build an offline dekstop app with good UI for practice that's all later I maybe switch to some others", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "a7b0c0c96265b5115e934572eb203aeff8316a1f6573fdc92f7ad01e166ab37b", "datetime": "2024-10-09T11:08:39+00:00" }, { "message_id": "22556d01323dd23e7df50254c6b8e33f33068f7edc1fd6c2352e2bca36ae2420", "sticker": null, "text": "Did you check out Udemy? You could filter out based on best seller courses relating to the java technology you want", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "1945912eaba2386dff17ab0e08e44be12545f0ad0d82d78e745c58c8e4df9b9b", "datetime": "2024-10-09T11:15:06+00:00" }, { "message_id": "956aca28a3764277dd14db3a2950ebedc29498d9e9469d7a0aaa3d2b274baa18", "sticker": null, "text": "Oh gosh I didn't thought this thanks I'll look into this 👍", "from_id": "d7e211d24960dee8f02a77d099b60ef77a1889c2a5726736ed19c1cb945cc51a", "reply_to": "22556d01323dd23e7df50254c6b8e33f33068f7edc1fd6c2352e2bca36ae2420", "datetime": "2024-10-09T11:19:08+00:00" }, { "message_id": "e7814e3a9756496b966211ea675af79370b3135667771a49b0908576488b0f9e", "sticker": null, "text": "Welcome \nBut I'd suggest JavaFX over Swing. FX is more modern compared to Swing.", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "956aca28a3764277dd14db3a2950ebedc29498d9e9469d7a0aaa3d2b274baa18", "datetime": "2024-10-09T11:32:32+00:00" }, { "message_id": "0c2e4809a7b8e149c4c53a8c876ca9d8ae2d65bca75f978964539fd683f9fd55", "sticker": null, "text": "Hi", "from_id": "a4d3c344f97704356ca3b0ed1f5adf490a72a8c95436d64f1283e279dbe2019c", "reply_to": null, "datetime": "2024-10-09T12:33:17+00:00" }, { "message_id": "39cbc37228a19a756cec3c33dfbdcbeb503c566133451d31e61d1a1196df735a", "sticker": null, "text": "Creating a thick-client Windows application using Java involves several steps and considerations. Here's a breakdown of the process:\nTechnology Choices\nGUI Framework:\nSwing: Java's built-in GUI toolkit, mature and widely supported.\nJavaFX: A newer, more modern toolkit, offering advanced features and better performance.\nSWT: A toolkit from Eclipse, known for its native look and feel.\nBuild Tools:\nMaven: Popular for dependency management and project structure.\nGradle: A more flexible alternative to Maven.\nPackaging:\nJAR: The standard format for packaging Java applications.\nEXE: Executable files for easier distribution on Windows. Tools like JSmooth or JexePack can help create EXEs from JARs.", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "1fdb87f450a29678169ee87d093c8ddcf70bdc7cf1a17cf470c2fd55cd72797e", "datetime": "2024-10-09T12:48:39+00:00" }, { "message_id": "0ec93a825be1e51f7a317b05567b207bf7d8003ea048563613f4ddf2f449c622", "sticker": null, "text": "You can develop ui in react or angulari would suggest you to use chatgpt to develop code for ui application", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "fcc3a06b98cc3703a202aadc1fe1e7b8599deac7ccf6f57690f5819438195598", "datetime": "2024-10-09T14:02:48+00:00" }, { "message_id": "20ec3074e470af1a0d8c520dc3255b4ad7ea32c451479323e6856c2f45bb6735", "sticker": null, "text": "Hello I want to learn dsa using java so which course should I take", "from_id": "9c3292e262d56021f854f545d6026a2c57c68a3f0606631f002b72952b9ebb34", "reply_to": null, "datetime": "2024-10-09T15:00:11+00:00" }, { "message_id": "0604df92efa8b9a33b4a9ea35e348fdc9ce0a4d0a49643372c9a5ded8af686fe", "sticker": null, "text": "You can start with leetcode or codechef (they have practical tasks). Many interview tasks are taken from leetcode\nBut I guess you can find some basics on Coursera too", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "20ec3074e470af1a0d8c520dc3255b4ad7ea32c451479323e6856c2f45bb6735", "datetime": "2024-10-09T15:12:44+00:00" }, { "message_id": "896c52d8c5442133c15d9a331e1edcf42e46aeb13a29e40cef2f9cfbe8a2babe", "sticker": null, "text": "I want to learn for DSA so which course or yt to follow", "from_id": "9c3292e262d56021f854f545d6026a2c57c68a3f0606631f002b72952b9ebb34", "reply_to": "0604df92efa8b9a33b4a9ea35e348fdc9ce0a4d0a49643372c9a5ded8af686fe", "datetime": "2024-10-09T16:47:58+00:00" }, { "message_id": "cb22dd0d5978dffab2f3325a1b954b79528151ff3a420430f66ddf9e744b844c", "sticker": null, "text": "Telusko", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": "896c52d8c5442133c15d9a331e1edcf42e46aeb13a29e40cef2f9cfbe8a2babe", "datetime": "2024-10-09T16:52:30+00:00" }, { "message_id": "66f26b80d81cb7782ae03ece59842eddbf69151133be6f010d42974193926d26", "sticker": null, "text": "Hello dear friends,\nI am java and spring boot programer and i am helping to find bugs in your apps in exchange for 15€. If you are interested please dm me!", "from_id": "922c6178346c98545039bbf3ce1e24840d78c9b8ff58568b42bee1e6db5f00b4", "reply_to": null, "datetime": "2024-10-10T18:18:36+00:00" }, { "message_id": "cbbe5dd9e0cc6b50e2c2867479bb19f923b1602c168acac39861fcf51bb482ab", "sticker": null, "text": "Hello dear friends, \nI am looking for a Java free certificate course, Course must be more then 35 hours. \nPlease tell me Course name and course plateform.", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2024-10-10T18:27:58+00:00" }, { "message_id": "75fe52b32cc9e4f7a053377e5c051cd81fa1107c8d2e1487e82ab9535a6b3e86", "sticker": null, "text": "Follow Telusko closely on Udemy", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "cbbe5dd9e0cc6b50e2c2867479bb19f923b1602c168acac39861fcf51bb482ab", "datetime": "2024-10-10T19:09:22+00:00" }, { "message_id": "b803bd122caade2b433f5824035c795f833a6c50f003177a3f57190450df5a05", "sticker": null, "text": "He has a course like this", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-10-10T19:09:33+00:00" }, { "message_id": "c077564327a5ac9b064891e5e6c3a9599581cb39d97fa58b59e1420ddb52eb80", "sticker": null, "text": "I want more information about spring boot java", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2024-10-11T04:21:12+00:00" }, { "message_id": "58501388845e925e4c4622366c0b87d405195c84d84ff2766ab8ab0aba13034d", "sticker": null, "text": "How to integrate stripe payment method in spring boot", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2024-10-11T04:21:48+00:00" }, { "message_id": "1be3beaa60539da9802058a47572da193887033d026b68af9838c96dd96d44c0", "sticker": null, "text": "Is there any one have WeChat?", "from_id": "8f5312ce78a995b87d57904f569fc5297a5800747919481ebba4b541c4b3e61c", "reply_to": null, "datetime": "2024-10-11T08:48:18+00:00" }, { "message_id": "245579a550dab08a0c7859cb13955eec872b1e17638a0b57adab73881159c9ec", "sticker": null, "text": "", "from_id": "14f779bc8fe426aed21a4b19c383ce22f465840f5088e7f222106a6d395b6fd1", "reply_to": null, "datetime": "2024-10-11T09:17:32+00:00" }, { "message_id": "4a9922ebd4d0f6d1072ddddd2e53d529c6008f52bbc5f7fcb4242147d1f6b822", "sticker": null, "text": "Hello mates, can someone suggest a good resource to study spring security?.", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-10-11T17:29:24+00:00" }, { "message_id": "5495cc663fbb3ee2bdcc787c5bafc3c65eb4c51143412691b66154fe9a4d53a0", "sticker": null, "text": "13", "from_id": "1bd9d07f643aa0d85a507d89184ba338fa126e82a8385115f6f0b8f3c1182f68", "reply_to": "4bc386ec2dc3ddd7d9584020bcf69f20cf47c7dfb45755f68deb5581ec73cfc9", "datetime": "2024-10-11T18:39:04+00:00" }, { "message_id": "3fc797845aad15ef90c09becae288ba35ebdceefe928b53bb55f7550f57f35aa", "sticker": null, "text": "Sorry?", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "5495cc663fbb3ee2bdcc787c5bafc3c65eb4c51143412691b66154fe9a4d53a0", "datetime": "2024-10-11T19:20:12+00:00" }, { "message_id": "56f5100a7cd8962d5e79de71f5008c40df1764c97712bcc9005c180b374cd7bf", "sticker": null, "text": "That's me...I saw the message late by the bot and wrote wrong number in panic then I was blocked 😂", "from_id": "93bf12380252f7e4aa500a13878ff29f9e5400476502284c3385789727dc495d", "reply_to": "3fc797845aad15ef90c09becae288ba35ebdceefe928b53bb55f7550f57f35aa", "datetime": "2024-10-12T05:00:23+00:00" }, { "message_id": "a43f65f42510abce4d1fd4f03a594d2ffad573812c89c8b97f729fca9dafce0e", "sticker": null, "text": "Ok ok", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "56f5100a7cd8962d5e79de71f5008c40df1764c97712bcc9005c180b374cd7bf", "datetime": "2024-10-12T05:16:18+00:00" }, { "message_id": "9a921d57bfbe20a4c65f550574c826b3a9e17c79d347b0ce38b057143b9da52d", "sticker": null, "text": "Spring official website is good enough.", "from_id": "9324b5cb983cd1bddb91dc8bfed01723a93fb0df08e2201756616db5e99286eb", "reply_to": "4a9922ebd4d0f6d1072ddddd2e53d529c6008f52bbc5f7fcb4242147d1f6b822", "datetime": "2024-10-13T04:46:36+00:00" }, { "message_id": "80e44a76803c6a592315230f664f91d6fed1586a48da39f31fb0c15b1a4a9b04", "sticker": null, "text": "Ok will try", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "9a921d57bfbe20a4c65f550574c826b3a9e17c79d347b0ce38b057143b9da52d", "datetime": "2024-10-13T04:47:21+00:00" }, { "message_id": "1b6b77e16e2692ba603a35c82b9d39f51c1f5762db0279cffcab480f345f2c9f", "sticker": null, "text": "Thanks", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-10-13T04:47:32+00:00" }, { "message_id": "82992a6af7379297a37a4f4be6c9d53f1cb6b1aa2e4ecf7c673846db8a288b9b", "sticker": null, "text": "Wc", "from_id": "9324b5cb983cd1bddb91dc8bfed01723a93fb0df08e2201756616db5e99286eb", "reply_to": "1b6b77e16e2692ba603a35c82b9d39f51c1f5762db0279cffcab480f345f2c9f", "datetime": "2024-10-13T05:07:16+00:00" }, { "message_id": "c4473edada3eaa89b69d460c12c72645cb69c766d0575461b8fa23288ce6d357", "sticker": null, "text": "Hello I want to start learning Java which video should I watch any good tutor on YouTube?", "from_id": "93bf12380252f7e4aa500a13878ff29f9e5400476502284c3385789727dc495d", "reply_to": null, "datetime": "2024-10-13T13:14:48+00:00" }, { "message_id": "a2505ac30a9f1370f04aa9bb7d16fdc31f906e379191263afd6e2eac396490f3", "sticker": null, "text": "Some good reliable teacher", "from_id": "93bf12380252f7e4aa500a13878ff29f9e5400476502284c3385789727dc495d", "reply_to": null, "datetime": "2024-10-13T13:15:06+00:00" }, { "message_id": "66cff7575a0f8111452bf43dc248df20e4da2a06dfc796ffa35e9e56fd53d72b", "sticker": null, "text": "bro code is good", "from_id": "2ab643d656f82d23c84d7bde81557c3403da6f115f5369feaabb4732d13ad701", "reply_to": "c4473edada3eaa89b69d460c12c72645cb69c766d0575461b8fa23288ce6d357", "datetime": "2024-10-13T13:15:23+00:00" }, { "message_id": "371db85a93b0ce126530344e5b397c185c8d78f6e3ee7f470bb9b602645673a9", "sticker": null, "text": "For java?", "from_id": "93bf12380252f7e4aa500a13878ff29f9e5400476502284c3385789727dc495d", "reply_to": "66cff7575a0f8111452bf43dc248df20e4da2a06dfc796ffa35e9e56fd53d72b", "datetime": "2024-10-13T13:15:52+00:00" }, { "message_id": "9f68f85e4b72a5e423febba3770c74ea75b55bcb0c939dd6ef7a916810428810", "sticker": null, "text": "There are many tutorials in youtube, you can only search it in nav bar on youtube site. But I prefer to read it from books, because:-\n\n1- The youtuber maybe forget points:\nMany youtubers or Udemy teachers are trying to abstracts the matirials and points, this will creating gap between how use the language to solve problems and what are you learning. In the books or documentation of language the authors read the points many times to sure the idea is clear for reader.\n\n2- if you forget something, you can find it easly:\nIf we assume you are finished tutorial course for learning Java as example, after period of time you forget something and you are trying to remembering it, you will should to play all clips videos to find it. In books you will find it in minutes. \n\n3- Books and Documentation will give you good references to find solutions.\nSometimes when you build your software you will need some documentation and reference, the Books and the documentation will point the libraries or the place of information.", "from_id": "a14ea28d2a754a98c2f0abba5e36794f1b7f4ff9f6eadc318205d08dd7041051", "reply_to": "c4473edada3eaa89b69d460c12c72645cb69c766d0575461b8fa23288ce6d357", "datetime": "2024-10-13T13:43:43+00:00" }, { "message_id": "7c00b6f137931627f314a2c32bdf5ba380f263fe9dc949894e1b8bfc14ebaad9", "sticker": null, "text": "This was my opinion BTW.", "from_id": "a14ea28d2a754a98c2f0abba5e36794f1b7f4ff9f6eadc318205d08dd7041051", "reply_to": null, "datetime": "2024-10-13T13:46:35+00:00" }, { "message_id": "9c0fecf9b9178f2b6429beef1dee21cedb1f29d7a564810f1824a0d9b1aa404a", "sticker": null, "text": "I have a basic question related to java 8.Is there any difference in performance when we execute the operation with stream and without stream?\nAny specific conditions when stream is a better option than traditional methods", "from_id": "9324b5cb983cd1bddb91dc8bfed01723a93fb0df08e2201756616db5e99286eb", "reply_to": null, "datetime": "2024-10-14T10:32:36+00:00" }, { "message_id": "52cdbd0bfafa2bfcdb16fc4b419a309a23eac133c412e02c71936122953eccb1", "sticker": null, "text": "It depends on which operations you mean.\nIn general streams efficient, as non-terminal operations (map for instance) are lazy. That means they are collected and applied later when a terminal method is used (like count, forEach)", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "9c0fecf9b9178f2b6429beef1dee21cedb1f29d7a564810f1824a0d9b1aa404a", "datetime": "2024-10-14T10:46:49+00:00" }, { "message_id": "f33c117af9391b9e5e41133db83f9ea1d569fb5a925c1e308093248eb55c9b62", "sticker": null, "text": "Thanks , there is a general question. Like in which type of task we should not use stream api.", "from_id": "9324b5cb983cd1bddb91dc8bfed01723a93fb0df08e2201756616db5e99286eb", "reply_to": "52cdbd0bfafa2bfcdb16fc4b419a309a23eac133c412e02c71936122953eccb1", "datetime": "2024-10-14T10:57:18+00:00" }, { "message_id": "e8135a6aa7f3c1dae6e1fe2bbafc96514bd833872faa773e5dfea6b94d387137", "sticker": null, "text": "Where u want to minimise the time conplexity", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": "f33c117af9391b9e5e41133db83f9ea1d569fb5a925c1e308093248eb55c9b62", "datetime": "2024-10-14T13:33:30+00:00" }, { "message_id": "96042ecd7e69fbcfe68a161b57868924bbe113094c54a4f475661b1f5000fa46", "sticker": null, "text": "Dm me", "from_id": "439a9cd8e196098dc5e561c1a52f200d1470265c8c3ecf8e525dc2adfb0c4a14", "reply_to": "5b39e99de24a2cc3513edb465e5081530be5b85bd729f156218c831ba6d57956", "datetime": "2024-10-14T14:18:55+00:00" }, { "message_id": "49a8d1cd45316ebed30607ba6bf3a0f3eb6c5a0abff512dce67753185a136e73", "sticker": null, "text": "I want to create a shorten url maker", "from_id": "439a9cd8e196098dc5e561c1a52f200d1470265c8c3ecf8e525dc2adfb0c4a14", "reply_to": null, "datetime": "2024-10-14T14:19:41+00:00" }, { "message_id": "7a0ebf059417d3dad3530f6276e7eb108671891bb0743e2574a0002fceadc323", "sticker": null, "text": "Stream provides abstraction over traditional methods and uses pipe and filter patterns. It's mostly added to support functional programming", "from_id": "6d3867922e3034d40a8a11a3c09cfa17a6f37cdf7acb03634611e9a9bf7f2558", "reply_to": "9c0fecf9b9178f2b6429beef1dee21cedb1f29d7a564810f1824a0d9b1aa404a", "datetime": "2024-10-14T14:21:25+00:00" }, { "message_id": "dfb7a6afa1b4dc58ab9553b5cbf86790917f86e5e40b3397695956e0931049d7", "sticker": null, "text": "You can use bitwise flatmap parellal stream", "from_id": "439a9cd8e196098dc5e561c1a52f200d1470265c8c3ecf8e525dc2adfb0c4a14", "reply_to": "7a0ebf059417d3dad3530f6276e7eb108671891bb0743e2574a0002fceadc323", "datetime": "2024-10-14T14:28:03+00:00" }, { "message_id": "3a0d6950e96f94d3b977b76ba62d941ad106b3e7bd3956955088579c90ee307f", "sticker": null, "text": "Predicate bifunctional", "from_id": "439a9cd8e196098dc5e561c1a52f200d1470265c8c3ecf8e525dc2adfb0c4a14", "reply_to": null, "datetime": "2024-10-14T14:28:24+00:00" }, { "message_id": "af6586f15272d183c0058499ea52bd34319a29fc28c1bb70388fbb1f025bc364", "sticker": null, "text": "Please guide me related to AI , is there any library in Java for AI or need to learn python for it.", "from_id": "9324b5cb983cd1bddb91dc8bfed01723a93fb0df08e2201756616db5e99286eb", "reply_to": null, "datetime": "2024-10-15T07:47:32+00:00" }, { "message_id": "65aa4a521859c2c64c2ea5c4df509129915c294c7c15381e923bc2e9307966d5", "sticker": null, "text": "I’d recommend going to Python\nIt’s much easier to start\nJava in this case will be helpful if you need handle enormous amount of data and scale your solution to clusters\nBut keep in mind, Python also allows that", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "af6586f15272d183c0058499ea52bd34319a29fc28c1bb70388fbb1f025bc364", "datetime": "2024-10-15T16:41:21+00:00" }, { "message_id": "fdef4c864b5e9f8da7053d8038ec6203fe2626037504164a30fff988c7bcda54", "sticker": null, "text": "Hello! Do you know Python?", "from_id": "75ad76e096c00d719ac2421f17023f85d982f1ec54ee9e7fe953bd115f9b9d92", "reply_to": "65aa4a521859c2c64c2ea5c4df509129915c294c7c15381e923bc2e9307966d5", "datetime": "2024-10-15T19:08:29+00:00" }, { "message_id": "8f614ff97eb23c412930d0093ccf62a24ee76ddeff56f4a4d0226c31f3fa559d", "sticker": null, "text": "Hello, yes, Python is a brilliant language, but I specialise in jvm languages", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "fdef4c864b5e9f8da7053d8038ec6203fe2626037504164a30fff988c7bcda54", "datetime": "2024-10-15T19:49:58+00:00" }, { "message_id": "5f83911a31e8de8660c39e2f0dce40ee4f8878977e7eda6c78aef7607f96f4e5", "sticker": null, "text": "Hello, everyone!\nI need help with Java, the program is very simple, console calculator.\nBriefly: That is, when you press a button (button) need to light up, and you should approach this without various ready-made UI, because Jframe, etc.\nIf anyone knows, please help(", "from_id": "efb5419673acfdc209d9005f59fe1677c3b7e14b81fa7556fb22e7012e4805a7", "reply_to": null, "datetime": "2024-10-16T05:10:31+00:00" }, { "message_id": "ee48dfbdf8297fcf0ccbcc76f3bbca468b44a67eb8dc3eddb90db1494fa2122d", "sticker": null, "text": "Hi, it’s a bit confusing, you say it’s a console calculator but you need highlighting for some buttons\nButtons (in traditional view) do not exist in console apps, right?", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "5f83911a31e8de8660c39e2f0dce40ee4f8878977e7eda6c78aef7607f96f4e5", "datetime": "2024-10-16T07:55:56+00:00" }, { "message_id": "e66e66265f2a8c7e524b1cab8969ead79f860c293eb3071cc0b5c5067a96545f", "sticker": null, "text": "Hello i need support in Java interviews...", "from_id": "50a81e6c7e3eaed259ee794d2a6fd049c0bd94798ff35ba81cb2e0e8c0298fbd", "reply_to": null, "datetime": "2024-10-16T13:53:56+00:00" }, { "message_id": "57ea68988be295f22e409ec20f5cd312fec28299ef914c903e43f361ba090439", "sticker": null, "text": "Guys how do I write an operating system in java", "from_id": "f5154e906defecaf9004f5b67f6a0b34cd202c71e9bf4c59b2b31438ba99df57", "reply_to": null, "datetime": "2024-10-16T17:46:13+00:00" }, { "message_id": "e8e0383014bcb07d85180d902fe7717a503201abe8a3cd9949db468283027d93", "sticker": null, "text": "No way, don’t even try 😁\nJava compiles to bytecode which runs on jvm\nPC does not understand bytecode\nLet Java be Java, it is already good for its tasks", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "57ea68988be295f22e409ec20f5cd312fec28299ef914c903e43f361ba090439", "datetime": "2024-10-16T21:11:16+00:00" }, { "message_id": "02473f932a0339a3acbe2855d7fcd0bf5e8183482db4fd8f53ba966520a422d0", "sticker": null, "text": "Ask this after you got above 18.", "from_id": "87a62407a895362985cc9c152965acd6b554aad3d972f162fdfdef780a2790cc", "reply_to": "57ea68988be295f22e409ec20f5cd312fec28299ef914c903e43f361ba090439", "datetime": "2024-10-16T22:15:58+00:00" }, { "message_id": "4bc8056ba03573ca5fc2fdad7e6acd314befd50321a577b3fa46f56cce0b1714", "sticker": null, "text": "em..", "from_id": "6f7eb4d2cf22cc8f102b93990658c5c90d2e5d0655cc700749aa368ab9637ea9", "reply_to": null, "datetime": "2024-10-17T07:28:34+00:00" }, { "message_id": "6bca1a653968706711d4242779769defaa3b89a1fb7ba2bad1c3c26118feec83", "sticker": null, "text": "You want to set up the path in environment", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-10-17T07:41:07+00:00" }, { "message_id": "46bde1c3926822561be5cb8ec654819e68296387cfaddfaff9e1ab3c49924b3f", "sticker": null, "text": "Hi team, \nCan anyone help me with how we can extract username from jwt token in spring boot?", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-10-18T17:26:27+00:00" }, { "message_id": "e6afe7bd7d87529d87d345195c4cdc88eb3efc9151271e4ade4f8f1818aea2bb", "sticker": null, "text": "Authentication authentication = SecurityContextHolder.getContext().getAuthentication();\n if (authentication != null && authentication.getPrincipal() instanceof Jwt) {\n Jwt jwt = (Jwt) authentication.getPrincipal();\n return jwt.getClaimAsString(\"sub\"); // \"sub\" claim typically contains the username\n }\n return null; // or throw an ex", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "46bde1c3926822561be5cb8ec654819e68296387cfaddfaff9e1ab3c49924b3f", "datetime": "2024-10-19T00:10:03+00:00" }, { "message_id": "bf2e0219a68d0fd97076e7124fb42a041a2c6a82b0260ffdafbc4b713ab3a0a1", "sticker": null, "text": "Ok thanks alot Ashis sir...", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "e6afe7bd7d87529d87d345195c4cdc88eb3efc9151271e4ade4f8f1818aea2bb", "datetime": "2024-10-19T04:39:54+00:00" }, { "message_id": "3dce602d49b2f6f7ad19c1024cdce741fae107c062b856930e8e4265dd6a10fb", "sticker": null, "text": "Very well explained. I am just a beginner in spring security. So many things confuse me. But your code is really good and very well explanatory too. Thanks", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-10-19T04:41:38+00:00" }, { "message_id": "2d8efd895c26c9a755c7b63ac003ce031c3af9b412aa24a4683d9b7ff3bc267c", "sticker": null, "text": "Freelance Remote Job for Software Developers (Hourly Wage: 30 USD per hour)\n\nsend me your CV via DM, please or email your CV to: raziyeoptimalhr@#USER\nI am recruiting for an AI high-tech company that is seeking talented professionals to help train generative artificial intelligence models by providing human feedback. Are you a developer, software engineer, data scientist, or math expert interested in using your expertise to contribute to AI development?\n\nAre you an experienced software developer who would like to lend your coding expertise to train AI models?\nI am recruiting for a high-tech AI company that is looking for graduates or experienced individuals in computer science-related fields. There is no requirement for previous AI experience.\n\nThis is a job related to AI training and can be done online and remotely, in addition to your current job. You can work as much as you like, according to your schedule. The job description includes providing feedback to AI, validating its responses, and scoring them based on your expertise. Payments are made for the hours you work, and deposited into your PayPal account every Wednesday. A minimum upper-intermediate level of English is required.\n\nJob Description: Similar to Google searches, you are expected to compare two different AI responses to a given question and explain in detail which one is better and why. You will need to provide feedback in English in a specific format. Feedback that is written with attention to detail is highly valued and can lead to more job opportunities. Payments are made via PayPal or Aitm every Wednesday.\n\nAbout the opportunity:\n* The company is looking for talented coders to help train generative artificial intelligence models\n* This freelance opportunity is remote and hours are flexible, so you can work whenever is best for you\n\n\nApplication Requirements:\n\n* Currently enrolled in or completed a bachelor's degree or higher in computer science at a selective institution\n* Proficiency in working with one or more of the following languages: Java, Python, JavaScript / TypeScript, C++ , Swift , C#\n* Applicants must reside in the Germany,US, UK, Canada, Australia, New Zealand, Argentina, India, Mexico, Egypt, Brazil, Colombia, Philippines, Chile\n* Germany 29 USD per Hour\n* France 25 USD per Hour\n* Italy 20 USD\n* US, UK, Canada, Australia, and New Zealand are 30 USD per hour\n* India, Argentina,Brazil, India, Mexico, Egypt, Brazil, Colombia, and the Philippines, Chile is 10 USD per hour \n* No other countries for developers but They can work on AI’s Language model improvement if They know other languages in C! level\n\nsend me your CV via DM, please or email your CV to: raziyeoptimalhr@#USER", "from_id": "f99812e1ef42b6472375f2d576f3a9fa02dd430e9db50707906a272ad910cb9e", "reply_to": null, "datetime": "2024-10-19T21:06:38+00:00" }, { "message_id": "9c2af61630e75963f08840112e899cf548055c131f517956b88d76e4b3a5a203", "sticker": null, "text": "o'zbek?👏", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "3b95266c798de903937ff4cb799e907128a487b011f95a10fa312f627aac2aa5", "datetime": "2024-10-20T05:56:18+00:00" }, { "message_id": "a691ce92f770d57e3de8ddbf85866f59d60d6a7ae930a0135988b2a7c6fd3f5c", "sticker": null, "text": "guyss I need help of active users of GitHub. can u help me??", "from_id": "de19272119cfe205b6c487bf37d9765a19e0a275b0c306656127b0b6bcf1a7de", "reply_to": null, "datetime": "2024-10-21T14:01:43+00:00" }, { "message_id": "10e78e94ac920a7af7fc766caba90f9926018272135ff1149f8555fee5c9ed67", "sticker": null, "text": "Yes please tell", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "a691ce92f770d57e3de8ddbf85866f59d60d6a7ae930a0135988b2a7c6fd3f5c", "datetime": "2024-10-21T14:03:53+00:00" }, { "message_id": "4370e4d98bbd2d63f952ad5da37fdf2cf86944804f239ed7f05cc7d3c11dc47d", "sticker": null, "text": "can you please favour me to win devFest ai", "from_id": "de19272119cfe205b6c487bf37d9765a19e0a275b0c306656127b0b6bcf1a7de", "reply_to": "10e78e94ac920a7af7fc766caba90f9926018272135ff1149f8555fee5c9ed67", "datetime": "2024-10-21T14:06:48+00:00" }, { "message_id": "15fdf15de562937cc893fde219228495c9dd7738b1cb34f4e45caba5020b748e", "sticker": null, "text": "I m not sure if I am able to help you or not. But I can try .", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "4370e4d98bbd2d63f952ad5da37fdf2cf86944804f239ed7f05cc7d3c11dc47d", "datetime": "2024-10-21T14:08:11+00:00" }, { "message_id": "4983ddfb397ada0d0989b072734073dda3d73b4e7944646db4bcb176fab17f30", "sticker": null, "text": "What help you seek?", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-10-21T14:08:23+00:00" }, { "message_id": "ce6c6e4e4150afe0c958cf44ecd80f991c7c441be17785e6f73bb8b325ac2ce9", "sticker": null, "text": "#Vishal:\nWhat help you seek?\n\nshasank:\nyou just have to contribute me as a friend in GitHub for devfest", "from_id": "de19272119cfe205b6c487bf37d9765a19e0a275b0c306656127b0b6bcf1a7de", "reply_to": "4983ddfb397ada0d0989b072734073dda3d73b4e7944646db4bcb176fab17f30", "datetime": "2024-10-21T14:10:09+00:00" }, { "message_id": "1a105992328ac995fd05560d9be8a23e24b7574935eb4cb9a3c7a2f40e93fab6", "sticker": null, "text": "Message me your introduction on my number it is my new phone but it is on charger 🥰", "from_id": "46bc9d182ad4c0222cec747c0950b2e35e5545e8cc511a653205b53c4758fdfc", "reply_to": "50a5ef39afaba2ce1432dfb2a3570aa7829f881761dfd9050f1e035381e847ca", "datetime": "2024-10-22T07:08:29+00:00" }, { "message_id": "d0d2f2ee67d6f706f306b79426fac4367a37800a6598dd28c3fb2f834bcbd91b", "sticker": null, "text": "Okay write me my phone is out of charge", "from_id": "46bc9d182ad4c0222cec747c0950b2e35e5545e8cc511a653205b53c4758fdfc", "reply_to": "278d66418a349d36a5c6f168cab118130168dba2a42e3ffd0a8ac776a6999b6d", "datetime": "2024-10-22T07:09:18+00:00" }, { "message_id": "728c8f8c48e9cffa1f0244c86593d22ca71ed46dcb622e7d3ef21c46cf0632f9", "sticker": null, "text": "Read her username and then reply to her I bet you don't want message her anymore", "from_id": "fde2bd401e3f6be3f0ec33adfd696377bbb295062509b00b53d8f6227fc74128", "reply_to": null, "datetime": "2024-10-22T08:10:07+00:00" }, { "message_id": "ba77ce55443c7bed5ae21298d3077719cba03c1d6f1b290e25812539624d1be0", "sticker": null, "text": "Anyone in infosys + ICT academy training program", "from_id": "cc3984b16a081fe7d1b1071fbead3699145b4822c7abb8a83192e3d73cce9e90", "reply_to": null, "datetime": "2024-10-22T10:22:53+00:00" }, { "message_id": "32c598b6ddbdcebca76d55273b2e7aac73aca3a46b1abe553cd69d3bd22939be", "sticker": null, "text": "Am a beginner in programming \nI want to learn Java who can help me \nAnd explain things to me", "from_id": "6a177a311807fa920bc614bc2b3001ef64a5db7e636ed8085a876902bd1ce31c", "reply_to": null, "datetime": "2024-10-22T10:55:54+00:00" }, { "message_id": "617b8747525a154b1ecf75a42d883df00e0dd6d0f981bea57ac7bdce73e57eae", "sticker": null, "text": "Please you can chat me", "from_id": "6a177a311807fa920bc614bc2b3001ef64a5db7e636ed8085a876902bd1ce31c", "reply_to": null, "datetime": "2024-10-22T10:59:34+00:00" }, { "message_id": "b0af1c1862f64879c0f69e6fa3db75912855e9fbc953a6b45f068448320f8186", "sticker": null, "text": "Dm me bro I will help you", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "32c598b6ddbdcebca76d55273b2e7aac73aca3a46b1abe553cd69d3bd22939be", "datetime": "2024-10-22T11:10:16+00:00" }, { "message_id": "9110fddee52080e294ebb59ea96121f667c1ad31f2f44cf11a97159cd9e9171e", "sticker": null, "text": "Instead of trying find mentors,You can post your queries here someone will definately help", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "32c598b6ddbdcebca76d55273b2e7aac73aca3a46b1abe553cd69d3bd22939be", "datetime": "2024-10-22T12:54:51+00:00" }, { "message_id": "a711495af63d8cf0b820f28cee73e7f130cfe2c5d963bde590faf516c3a113c2", "sticker": null, "text": "Hello everyone, is there anyone that can recommend a good company to for my internship as an ML/AI Engineer.\n\nThank you", "from_id": "b89130343ef17a1ed092dff7998397b7b56190075a1c1a5b423fa7bc8a94c819", "reply_to": null, "datetime": "2024-10-22T15:01:13+00:00" }, { "message_id": "a4193ef28239b35da6ae14b9d56b15daf493ce4ad43fa599e19aa5e864493d93", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "22b76eadab4f742b0be4e8987a8e18a79db7fabf951368314cb03cd18f273bb8", "reply_to": null, "datetime": "2024-10-22T23:49:02+00:00" }, { "message_id": "5207e3ff3eaa756c74c5d7d19f2634f90689995ffe783eeab4ab01c5efec94ce", "sticker": null, "text": "I have to buy a laptop for programming . which laptop should I buy . Intel Ultra Processors(Ai processor) or normal Intel processor. Please tell", "from_id": "63fbe4e71d3c37302c4912ec93ef68435cbbd5e553ff7f94293dfde9351f7756", "reply_to": null, "datetime": "2024-10-24T14:19:39+00:00" }, { "message_id": "631959568c5569e7d34f421097cb93ec217e3ca80afa772b11c50da1d1b456b7", "sticker": null, "text": "hi all, can some one pls explain \nwhat is persistence context in jpa", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2024-10-24T19:48:27+00:00" }, { "message_id": "e3969138262b5ba9e4692b4c354ba2ce133e20d9a57d32088658fe801bf24fca", "sticker": null, "text": "hi everyone this is kinda out of context but do you guys know how to pirate games safely", "from_id": "18618eadb21ab036a2ef9facee4f8660b7b35c2caf1acb22b23a978b8f11ce8d", "reply_to": null, "datetime": "2024-10-24T20:33:27+00:00" }, { "message_id": "ad50b04a76c87a576bdd0fcdfb19b88a6f3ece1fd100f5c318c248aa4d5da4eb", "sticker": null, "text": "Do you ask it in java chat? You wanna to hack a java game?", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "e3969138262b5ba9e4692b4c354ba2ce133e20d9a57d32088658fe801bf24fca", "datetime": "2024-10-24T21:06:16+00:00" }, { "message_id": "153111b5836ecf225e5d2bf856de6593835fd338af1323b8411cfe79df5d1f4e", "sticker": null, "text": "hi, the question is too broad but I’ll try to explain shortly\nIn JPA you have entities (object which map to database), so this context is a storage (you can think about it as a Map) of these entities\nThere are quite many details, so please explain what you’d like to understand please", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "631959568c5569e7d34f421097cb93ec217e3ca80afa772b11c50da1d1b456b7", "datetime": "2024-10-24T21:11:49+00:00" }, { "message_id": "ebf58e79a195b9768317b2969ec35c5c5c7cf116fa426660cba45e04785618d5", "sticker": null, "text": "I luv you", "from_id": "05c7f1ad2707b5d8c81f852691cd3d75c950ab3c29cff3ab0183f979003d4cac", "reply_to": "153111b5836ecf225e5d2bf856de6593835fd338af1323b8411cfe79df5d1f4e", "datetime": "2024-10-24T22:47:03+00:00" }, { "message_id": "0af6fbf99b1c98461af5b721f6c7a5462c13cb5554c31511754fd2c9eb188587", "sticker": null, "text": "Hi, I used jpa repository for my projects. So when I sit for interview I'm getting questions like entity manager, transaction management,..\n\nCould you pls list some topics which I need to go through.", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": "153111b5836ecf225e5d2bf856de6593835fd338af1323b8411cfe79df5d1f4e", "datetime": "2024-10-24T23:23:31+00:00" }, { "message_id": "b24d5d34b4c9a753d35f36952fd24aaa2f917666146d07367ad5891d38b19a4e", "sticker": null, "text": "You need to learn hibernate", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "0af6fbf99b1c98461af5b721f6c7a5462c13cb5554c31511754fd2c9eb188587", "datetime": "2024-10-25T00:16:23+00:00" }, { "message_id": "6bbc2274d92c6526d527a955582b57eb28e33f2ed40a8e54e4fc27992d6caf87", "sticker": null, "text": "It’s a good practice to go deeper than just using some technology or framework. You should try to understand (at least basics) how it works internally.\nOne may say: to drive a car 🚙 one doesn’t need to know how an engine works. In many cases yes. But one you may face performance degradation, unpredicted behaviour, etc. - that’s the moment \nTalking about materials: start with **jpa entity lifecycle**, then ask yourself **“how”** and **“why”\n**Good luck **🤞**", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "0af6fbf99b1c98461af5b721f6c7a5462c13cb5554c31511754fd2c9eb188587", "datetime": "2024-10-25T08:45:01+00:00" }, { "message_id": "bdca5d487776bb66a46a13df72560fd492d92bef802685ec25d1a9bf6ded226c", "sticker": null, "text": "Thanks", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": "6bbc2274d92c6526d527a955582b57eb28e33f2ed40a8e54e4fc27992d6caf87", "datetime": "2024-10-25T08:47:30+00:00" }, { "message_id": "c6cf75129bc5830e1dacd828725af0e055c93ac26c8b73ffdb7508e3662d3da0", "sticker": null, "text": "Agree, but keep in mind that hibernate is not the only implementation of jpa\nThere is also EclipseLink, and some others", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "b24d5d34b4c9a753d35f36952fd24aaa2f917666146d07367ad5891d38b19a4e", "datetime": "2024-10-25T08:49:58+00:00" }, { "message_id": "3da6aac5417d07d66ec6baae8a395f007ddf24678f84a17e807fe5801bc43248", "sticker": null, "text": "Sorry to porting out of context things here, does anyone have springboot 0 - 100 anuj bhaiya's course??", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-10-25T08:59:54+00:00" }, { "message_id": "d4fa1423f2700901fbcd6d3cd84a31b5e5aaf9322c9cb6818238a77aabc786a2", "sticker": null, "text": "Total messages:143786", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-10-26T20:12:07+00:00" }, { "message_id": "39cb8fed6f02e028ee6ab534f5d4162f658b5a5c87ce8aea8e7a210eb87e5988", "sticker": null, "text": "hello guys\nApolloscalar dependency available in mvn repo", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2024-10-27T03:54:15+00:00" }, { "message_id": "df230b47ab23bbf93576f402017f80516ae9263ea711a76e803e011c677a5464", "sticker": null, "text": "7", "from_id": "6edf35350bdf6f8d26788c20cebf496c28791559a3bf3172f926fa7e7e84f657", "reply_to": null, "datetime": "2024-10-27T06:30:54+00:00" }, { "message_id": "cd4fee9976e9bc1c8b13c691c76eedbded28938302f500c61f6f4419464ea5f4", "sticker": null, "text": "Wassup", "from_id": "6edf35350bdf6f8d26788c20cebf496c28791559a3bf3172f926fa7e7e84f657", "reply_to": null, "datetime": "2024-10-27T06:31:09+00:00" }, { "message_id": "8448a20709657aadb282a341b9222dfdb3f3b66216add7c2a6b0e417cf6e8d8c", "sticker": null, "text": "Ang job for freshers", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-10-27T13:47:12+00:00" }, { "message_id": "e6d19d816fbf2cc7aa9e1f7f18f37a548b6be3d70fe9a61ba278b5a278edfe90", "sticker": null, "text": "Hey \nI am first year student\nAnd I am a beginner in java , so I want full lacture or video for learning , is there anybody who have best lectures", "from_id": "90293f89fd76b1833aac99176c95a37873c8113898e9d4af471692a449a0ebad", "reply_to": null, "datetime": "2024-10-27T19:24:44+00:00" }, { "message_id": "2aee20333b47898a20cb0dd9cbafd498c0156d069e204b0cf9bd2af715aeba12", "sticker": null, "text": "Hi dm me", "from_id": "c61b55177e401e0ae3e66ead73b8dd5f5863b062419fca869a2d951052a6cfe3", "reply_to": "e6d19d816fbf2cc7aa9e1f7f18f37a548b6be3d70fe9a61ba278b5a278edfe90", "datetime": "2024-10-27T20:40:36+00:00" }, { "message_id": "1694184861aba35c8044fc336d12c88ed3b07d2f653cdc912248444f6ab516fb", "sticker": null, "text": "Read Head Start Java", "from_id": "d27ec43e16f14b4b59c6751fb1bb32a18eb641ec92e1610c25807dc242a426a5", "reply_to": "e6d19d816fbf2cc7aa9e1f7f18f37a548b6be3d70fe9a61ba278b5a278edfe90", "datetime": "2024-10-28T05:25:52+00:00" }, { "message_id": "9ba32a111a082638703fa5865e9a44984a077f90032ab6677c6d1260bb772a8b", "sticker": null, "text": "Hi team,\n\n I need Java interview support.", "from_id": "77c4aaa7cbb32bd12af15a79750277689d0d12fb47c77a40dbd58bb8b2d77090", "reply_to": null, "datetime": "2024-10-28T05:51:49+00:00" }, { "message_id": "9e1c80d41f3e45ab9b216c502246ad8220026fc509af6166c68aa5b61ed298dd", "sticker": null, "text": "Hey everyone,\n\nI have an idea that could help us secure more development projects across the U.S. and Europe. We have talented developers specializing in Java development, but their English proficiency is a bit of a challenge during interviews. To overcome this, I’m looking for someone with some development background who can assist by conducting interviews and facilitating communication with potential employers.\n\nThe idea is to have this person represent our team during interviews and handle communication, while the developers focus on the technical work. We’ll also provide support during live coding sessions to ensure everything goes smoothly.\n\nOnce we secure the job, the developers will handle the project work while the candidate continues to represent the team during meetings like standups and sprint reviews. The candidate would receive 20-30% of the monthly income from the projects as compensation.\n\nIf you are interesting, feel free DM", "from_id": "34669c1cda4abed31f505611adfb39aa2ed6cd5166407eda8d1d348aaaa31082", "reply_to": null, "datetime": "2024-10-28T12:44:28+00:00" }, { "message_id": "b6a8ae0b443f99bd8a587476e66db8e97221f0dfdc86b7b83bba244d5a77ac8f", "sticker": null, "text": "Hello fellow developers,\n\nI'm facing an issue with OAuth2. I have created a project implementing OAuth2 and am using Google as the authorization server.\n\nThe app works perfectly when accessed through a browser. However, when I try to test it manually using Postman, I'm able to successfully fetch the access token from Google.\n\nBut when I use that token as a Bearer token in the header and send a request to the API, I receive the HTML for the Google sign-in page in the response.\n\nI'm unable to access my API even after adding the access token to the header field.\n\nAny insights would be greatly appreciated!", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-10-28T13:47:28+00:00" }, { "message_id": "1845234a830ce7c0b8f87c6d802594d33fd41e1490ab9b33e2e3b5f961affd4b", "sticker": null, "text": "12", "from_id": "b736aa1c3b8cc752b5f7c64444c3959443167af33cf00d5fb12c45191e2039b8", "reply_to": null, "datetime": "2024-10-28T16:23:30+00:00" }, { "message_id": "9bb855ea094d1be91d1022e44022fcdb11cfd7b4d18538794136b478770a1597", "sticker": null, "text": "Never give up easily.", "from_id": "37626a40db84eca3aa796b0ff4a0fc34d24efe519b770206c84e30302781e172", "reply_to": null, "datetime": "2024-10-28T17:04:32+00:00" }, { "message_id": "60d9a7726fc32a9fa17ad1a3ab2872f87a56a76162d3f952e622c9c679ea9838", "sticker": null, "text": "Hi everyone. I’m learning java from the fundamentals. I just started learning OOP. My institute uses java swing to create gui’s. Is learning swing valuable or waste of time?", "from_id": "8fd824fb7b3b2d01b719abb68e632760dbd2b9993a30683ac1403b91f7a53826", "reply_to": null, "datetime": "2024-10-28T17:17:35+00:00" }, { "message_id": "d40a5ca9d232986463f0a1346529b759802f539c122028d1f83f20378a9ba18e", "sticker": null, "text": "Hi, it’s waste 🥴", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "60d9a7726fc32a9fa17ad1a3ab2872f87a56a76162d3f952e622c9c679ea9838", "datetime": "2024-10-28T17:33:24+00:00" }, { "message_id": "65a154ee2d61c36a05d0d9db776cffaef7b76de1354c79a5a4de6ec5b8440daa", "sticker": null, "text": "Wht u recommend", "from_id": "8fd824fb7b3b2d01b719abb68e632760dbd2b9993a30683ac1403b91f7a53826", "reply_to": "d40a5ca9d232986463f0a1346529b759802f539c122028d1f83f20378a9ba18e", "datetime": "2024-10-28T18:56:52+00:00" }, { "message_id": "4aa3791e1b8b278a5e6f171a1a4494b793e47d58ffac02e0f36c86c0b37a53bc", "sticker": null, "text": "It’s your choice. You can choose between: data engineering, backend, frontend (sorry but not Java), mobile, gamedev", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "65a154ee2d61c36a05d0d9db776cffaef7b76de1354c79a5a4de6ec5b8440daa", "datetime": "2024-10-28T19:35:48+00:00" }, { "message_id": "8288166a251049d065177b18732b633428dd00b75d3938112f20c17fe592e909", "sticker": null, "text": "As a starter learning oops concept helps. I would say no knowledge is waste. \n\nEventually when it comes to earn the bread, you would have to choose a path that's where you need to focus more. \n\nMay be swing is out dated but knowing it is not a harm to you. Learn any language you are comfortable with. Don't learn something just by listening from someone. End of the its you who will be learning it and coding it. \n\nIf you like html go for it or js or ts for angular or react. Or backend like java, python..", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "60d9a7726fc32a9fa17ad1a3ab2872f87a56a76162d3f952e622c9c679ea9838", "datetime": "2024-10-28T22:46:28+00:00" }, { "message_id": "6373947f83d0eca9510c1ff2fb9ee8fd2da5dbbf2de25ed74e03372ce5259d5f", "sticker": null, "text": "Hi anyone has decode java batch by raghav garg", "from_id": "95e7876ed98cf9fc9582de4ffd16e950c2fe2049831225f60cc5df24499df2a5", "reply_to": null, "datetime": "2024-10-29T03:49:41+00:00" }, { "message_id": "b153d5233829e93d9a2ec7f8bc41b5cbceb7df408b1ca5d7144c0e21db043fd0", "sticker": null, "text": "thank you for your valuable opinion!", "from_id": "8fd824fb7b3b2d01b719abb68e632760dbd2b9993a30683ac1403b91f7a53826", "reply_to": "8288166a251049d065177b18732b633428dd00b75d3938112f20c17fe592e909", "datetime": "2024-10-29T14:00:58+00:00" }, { "message_id": "d4afe3c06c8741a634a23d7c200ccc1ff11ff59ff9a441ee93017bcb43743a05", "sticker": null, "text": "thanks!", "from_id": "8fd824fb7b3b2d01b719abb68e632760dbd2b9993a30683ac1403b91f7a53826", "reply_to": "4aa3791e1b8b278a5e6f171a1a4494b793e47d58ffac02e0f36c86c0b37a53bc", "datetime": "2024-10-29T14:01:19+00:00" }, { "message_id": "081b357cce78833a99cb96ece638c5b990f8aaf5ec633d220edde121a856a33a", "sticker": null, "text": "Hi guys I need help with the stripe payment method \n\n\nStripe payment method...\nIf I frontend enter card details to submit it ll be automatically connected to the stripe and generate the payment method id", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2024-10-30T05:52:29+00:00" }, { "message_id": "b9442b472c4d42559642770df00d5233ef12db0f41c5874fee44fafeac083f5d", "sticker": null, "text": "If the payment method id send to the backend is getting an error like this\n\n{ \"message\": \"Payment failed: No such PaymentMethod: 'pm_1QFG8sEv1Bo2oeUW6XVHJ2Aq'; code: resource_missing; request-id: req_S3RhhGMa2wFMDg\" }", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2024-10-30T05:53:01+00:00" }, { "message_id": "b2efaf7e9c6f17b2df871dc24a75c3ddb983e4228a628b8e9e2fd11df20afa8d", "sticker": null, "text": "How to fix it please help me", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2024-10-30T05:53:17+00:00" }, { "message_id": "42f6886e81971a54d9fe17efe1dd4113f94d138d50cdd81bee8f265836ce0add", "sticker": null, "text": "🔤🔤", "from_id": "37626a40db84eca3aa796b0ff4a0fc34d24efe519b770206c84e30302781e172", "reply_to": null, "datetime": "2024-10-30T18:05:27+00:00" }, { "message_id": "782a00499cdee0a54c38f19f056c7d829aff2d13c15e9088cf72462c0dd770ee", "sticker": null, "text": "3", "from_id": "34669c1cda4abed31f505611adfb39aa2ed6cd5166407eda8d1d348aaaa31082", "reply_to": null, "datetime": "2024-10-30T21:08:34+00:00" }, { "message_id": "cfd85040a213517c3f6d1eb9da167276a1a8cf12daaa201953066360e653ba63", "sticker": null, "text": "Visit a w3school for core concepts then follow tutorialpoint to clear more concepts.", "from_id": "7e28604b1bbb8dd3a5ac19b57390ca92dc40e10d2f1fee8c8896c53c1985dacc", "reply_to": "e6d19d816fbf2cc7aa9e1f7f18f37a548b6be3d70fe9a61ba278b5a278edfe90", "datetime": "2024-10-31T04:34:49+00:00" }, { "message_id": "270cf9f472d341e93bceed74ccf651dd1d2089a3a76cab32a2f4baea4c4354fe", "sticker": null, "text": "My friend got panel management job his looking for offline support exp 4 yrs can any one help with support\n\nOffline support hyd", "from_id": "699470ef3880c4374a15cbd75502812b0cc0e2585b8494bbd835eb97421bb2e0", "reply_to": null, "datetime": "2024-10-31T05:40:52+00:00" }, { "message_id": "4c6c1a2aef0d0445ad77eeebfeb95c6b122e90d2ce4e70ef066e9568c44a3295", "sticker": null, "text": "Hi all,\nI'm trying for software developer jobs.\nNot getting any interview calls. Please give suggestions.", "from_id": "ebdc1e2732148a99fac566809e1a2622abf017e7d7ecd8b84136d701cec7ccb6", "reply_to": null, "datetime": "2024-11-01T15:41:47+00:00" }, { "message_id": "b8d2b6840ed2bd56c7639262ad0914eb4029375a270ecaff4c4d84ecbf54da45", "sticker": null, "text": "Update your profile regularly in Naukri, ask for referrals you will get definately", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "4c6c1a2aef0d0445ad77eeebfeb95c6b122e90d2ce4e70ef066e9568c44a3295", "datetime": "2024-11-01T15:43:27+00:00" }, { "message_id": "b0e3afa663b241116e845bfd3ee027215424bce7a9c187c9ee182212f29f4893", "sticker": null, "text": "Hi fellow developers need your help, \n\nI have created a springboot application implementing oauth2 sign using github. \n\nI tried getting authorization code and access token using postman. \n\nI am able to get the authorization code but facing issue with fetching access token. please help me team .", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-11-01T19:39:39+00:00" }, { "message_id": "56fe559c476e4a395ed9749cd9c92912cd3e1b7362ed470a9ac5e4dd1f0a678f", "sticker": null, "text": "Git link?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "b0e3afa663b241116e845bfd3ee027215424bce7a9c187c9ee182212f29f4893", "datetime": "2024-11-01T21:01:50+00:00" }, { "message_id": "c4644000e8350043bbf38baeb0735dccc2fcd3cfb8d34d0e0120cf84dd03b2a8", "sticker": null, "text": "Sure sir will share tomorrow", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "56fe559c476e4a395ed9749cd9c92912cd3e1b7362ed470a9ac5e4dd1f0a678f", "datetime": "2024-11-01T21:02:57+00:00" }, { "message_id": "546d003743a3b3fd33113208ea0fa314c4da8bd80ab89f0677cf87b59865b448", "sticker": null, "text": "I have years of experience in website and mobile app development. If you need help with your project, please feel free to reach out.", "from_id": "7cf73981287a3df775658f4b24de0c62d365d4eb4c66009135e1c57997539be1", "reply_to": null, "datetime": "2024-11-02T04:36:13+00:00" }, { "message_id": "a9c5a6d7da65cf9628839adc27e0b696ef635ce25b1892af459647aa78da2761", "sticker": null, "text": "What kinda support?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "bbf0fcf56e2c4dcde31de891407a27a5952994e9ff20e3bd66f005592e45d63d", "datetime": "2024-11-03T01:52:35+00:00" }, { "message_id": "0a4214cef7d38e5340704732e0f70e2a05113228a4a43a4904147a8a99787f1a", "sticker": null, "text": "I need job in web/app developer, I have experience in Android app development and web development.", "from_id": "4f12d694dac43402d43a99af6f7f4d52ad26bd5fa9cdfe38a7e71fe0fc362d02", "reply_to": null, "datetime": "2024-11-03T06:40:52+00:00" }, { "message_id": "a4f61fb02c0815d9fe6a64d827a728b215eff9bb501ee1a470a40b2b1255018c", "sticker": null, "text": "Apna College All course Available(C++, Java, Web Development).\n\nLove Babbar Course Available(C++, Web Development)\n\nPhysics Wallah Data Science course available. \n\nAptitude Preparation Materials also available.", "from_id": "b2148533208a841a31aff766e05da9c76cae633d99d0ab72dc72067d747c1c64", "reply_to": null, "datetime": "2024-11-03T06:58:55+00:00" }, { "message_id": "75c9bf2e1db2caa2ce22f32420888cfa47c0c76132eea918b15dfbd23bd7169c", "sticker": null, "text": "I want it", "from_id": "ab8ed6c16b5e2199bac4a1ff8c39d6e45d84a62ce8bbf0dad37718b1b7b76045", "reply_to": "a4f61fb02c0815d9fe6a64d827a728b215eff9bb501ee1a470a40b2b1255018c", "datetime": "2024-11-03T07:01:52+00:00" }, { "message_id": "5eb46b2837db6e45ffc2299d50a8da7a1c771422de539b9f0389239dba6cf29e", "sticker": null, "text": "Message me", "from_id": "b2148533208a841a31aff766e05da9c76cae633d99d0ab72dc72067d747c1c64", "reply_to": "75c9bf2e1db2caa2ce22f32420888cfa47c0c76132eea918b15dfbd23bd7169c", "datetime": "2024-11-03T07:07:21+00:00" }, { "message_id": "21d2fa8803caa4829e44e36f9908055f2c96fbefbffaf9bd0ce98d6af9b138a0", "sticker": null, "text": "Hi guys. Who can prepare me for java intern in EPAM systems? DM me", "from_id": "87bc9ef354e1c760c8e4a41d1e901babdf19e81cb31196452cd2a48aec6cf62a", "reply_to": null, "datetime": "2024-11-03T15:16:00+00:00" }, { "message_id": "6fa213d632e1ad5d21dc8f2c7831f065d535c9ee4b78ac114dd4c0b668e2867b", "sticker": null, "text": "Need any course dm me", "from_id": "9c3292e262d56021f854f545d6026a2c57c68a3f0606631f002b72952b9ebb34", "reply_to": null, "datetime": "2024-11-03T15:41:02+00:00" }, { "message_id": "ae2f0b391037e55445557c0c021a3cd8694b65187ccdda9a8f185e916b95abe4", "sticker": null, "text": "Ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": "6fa213d632e1ad5d21dc8f2c7831f065d535c9ee4b78ac114dd4c0b668e2867b", "datetime": "2024-11-03T17:44:10+00:00" }, { "message_id": "04b266c58ce5f4785a1dc96869d2cd70f04ef8ded27ff43db556f3bea70057c1", "sticker": null, "text": "/stat@#USER", "from_id": "fde2bd401e3f6be3f0ec33adfd696377bbb295062509b00b53d8f6227fc74128", "reply_to": null, "datetime": "2024-11-04T04:42:02+00:00" }, { "message_id": "4124cda5d39df97cd959ef439773754b688d35647d9223e36fb1ac146975c048", "sticker": null, "text": "Total messages:144190", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-11-04T04:42:03+00:00" }, { "message_id": "dcb86b6cb6e2ee18361206529e424117b4998d42c926016c5ba6ff3cd957c59f", "sticker": null, "text": "/stat@#USER", "from_id": "30e15c476fbd749308aca890fc06f6e72f35568dd632c186f8de68397b1582cb", "reply_to": null, "datetime": "2024-11-04T13:49:29+00:00" }, { "message_id": "342623ce923a737595986b3d966e20d9ecd0df655ee58b0d329ddd26ac40734e", "sticker": null, "text": "Total messages:144205", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-11-04T13:49:29+00:00" }, { "message_id": "8d7ef2133a8d65ae03c78804abcace2dff1d1255e3af06471b0b07da6b682bbb", "sticker": null, "text": "/stat@#USER", "from_id": "d3c79aea1b4526de2ea724e2357de54d8c15f2d4001b77c4ccec404e79249030", "reply_to": null, "datetime": "2024-11-04T15:31:24+00:00" }, { "message_id": "13ab8a301e504250e2529c71b3fd816188e70645da28d4bfba52e20de3d6ce27", "sticker": null, "text": "Total messages:144213", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-11-04T15:31:24+00:00" }, { "message_id": "8381f69ad07bd0dfbf8e3e5e0bb28a1a9c680be80c4f09f313fef8bd6061bd6d", "sticker": null, "text": "/stat@#USER", "from_id": "af76338e9ccd020a9ede82d560a48b488a83c3c6dd23b225e22f8ea25935e8f7", "reply_to": null, "datetime": "2024-11-04T18:11:54+00:00" }, { "message_id": "e7539ddc528012704c5de1e251f6c10f0ae15d37ba29c41849b8965d6926e7cc", "sticker": null, "text": "Total messages:144224", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-11-04T18:11:54+00:00" }, { "message_id": "abec948a12453886648f20e75ccdd89e4cf3d4fd1184fd21d2fc76b46f3e6afe", "sticker": null, "text": "/stat@#USER", "from_id": "af76338e9ccd020a9ede82d560a48b488a83c3c6dd23b225e22f8ea25935e8f7", "reply_to": null, "datetime": "2024-11-04T18:12:12+00:00" }, { "message_id": "acc07ae7c5cde9da55fd9ed4dc60e0a8258fed8df28e4aea08800dd3d4485e4b", "sticker": null, "text": "Total messages:144226", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-11-04T18:12:12+00:00" }, { "message_id": "4a00c2bc73a35c47fb1cd95e1ab12047e65539316051b53f9e996053c2fade43", "sticker": null, "text": "Best way to learn is to try on your machine with small codes", "from_id": "9324b5cb983cd1bddb91dc8bfed01723a93fb0df08e2201756616db5e99286eb", "reply_to": "e6d19d816fbf2cc7aa9e1f7f18f37a548b6be3d70fe9a61ba278b5a278edfe90", "datetime": "2024-11-06T05:23:36+00:00" }, { "message_id": "5d70b9d626731097d0199eb470b2fc846f6ca3d1b7585d811be2517cba46393e", "sticker": null, "text": "What is the error?", "from_id": "9324b5cb983cd1bddb91dc8bfed01723a93fb0df08e2201756616db5e99286eb", "reply_to": "b6a8ae0b443f99bd8a587476e66db8e97221f0dfdc86b7b83bba244d5a77ac8f", "datetime": "2024-11-06T07:15:58+00:00" }, { "message_id": "530cedf4a2bb6778f72bb2cee0b959a5eb31ebbdb0cee9f0a40d4568d1ce04f1", "sticker": null, "text": "Dear friends i developed\n \"Quiz Hunt\" app \nin android java and available on google play store . Pl have a look and give your review.. I shall be thankful to you.", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2024-11-06T07:23:40+00:00" }, { "message_id": "1ee9ddc732b5c4aee2c28dfb1169983aacb62cd1aa332e772f990b6744141553", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "20353055b103a94160ef8d16a469d809e7bf2bb3f239259935928cf960ed565f", "reply_to": null, "datetime": "2024-11-06T07:23:56+00:00" }, { "message_id": "ef544a5b9cd41a4d77eb181d014c81b8880a7575154937a5db31659b96f4a334", "sticker": null, "text": "Hi", "from_id": "0c0b72d5921c07432565b64505e159efc0d92637854c2ac32320233c73912fda", "reply_to": null, "datetime": "2024-11-06T20:44:21+00:00" }, { "message_id": "c81c90b25cf1fffeac5af71bc469ddc4cf1403f42252ed893894dd2ed97156d7", "sticker": null, "text": "Hi", "from_id": "699470ef3880c4374a15cbd75502812b0cc0e2585b8494bbd835eb97421bb2e0", "reply_to": null, "datetime": "2024-11-07T03:55:16+00:00" }, { "message_id": "0522d5e9028ef65e1306590dffb6d3469da90ced269b05e40ff0bb9e467d406b", "sticker": null, "text": "A=7;\nB=9;\nC=a+b;\nSystem.out.in.println(c);", "from_id": "02c0273253951dca8f7bc4dba5e03477b98b08e2ea37225a116d1c4c2257220a", "reply_to": null, "datetime": "2024-11-07T17:15:53+00:00" }, { "message_id": "a6c73130b46de584c057a0a33656ab7325e61b11812e08ece1acb50836632ef0", "sticker": null, "text": "Hi", "from_id": "43d6c3faf1c02a871cfcf8f773b732bdc51e0f58546074c1e70e630beeef5f71", "reply_to": null, "datetime": "2024-11-07T19:02:46+00:00" }, { "message_id": "e48d4bbb88173aaec5749e52706cea40795ae5abd620ecb2553643f5637950aa", "sticker": null, "text": "What are the Java specializations?", "from_id": "bb983e4825dd817587d4a93408e2c9cc0ab291bcbe1e72e3322af88bb99c988d", "reply_to": null, "datetime": "2024-11-07T20:19:08+00:00" }, { "message_id": "5dcd403774933de52e82401197d2cf76d030e75e7ce22294e76ba0d00efcb911", "sticker": null, "text": "Do you mean the fields where Java is applied/used?", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "e48d4bbb88173aaec5749e52706cea40795ae5abd620ecb2553643f5637950aa", "datetime": "2024-11-07T20:20:15+00:00" }, { "message_id": "4dc43f3e0880e022d55a840fab80ecf8dfaf65f151e6e57f9b82a311ab400094", "sticker": null, "text": "Or you mean inheritance", "from_id": "43d6c3faf1c02a871cfcf8f773b732bdc51e0f58546074c1e70e630beeef5f71", "reply_to": null, "datetime": "2024-11-07T20:20:33+00:00" }, { "message_id": "f183a49d109268ad5b2bcffa291e55146bc39f581d22db6541869f3172cabb31", "sticker": null, "text": "Hello fellow developers,\n\nI'm seeking your guidance. Over the past few days, I've been learning about OAuth2 with Spring Boot and have integrated Google into my code. When I try to access my API through a browser, it successfully redirects me to the Google sign-in page. After entering my credentials, I'm able to access the API.\n\nHowever, I'm facing difficulties when trying to use the access token received from the authorization server in the header of my Postman request.\n\nDo I need to implement OIDC, or is there a configuration change I should make?\n\nPlease help and guide me through this issue. Thank you!", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-11-08T11:12:31+00:00" }, { "message_id": "f17e04489b1443b3a9c835957b6b9868051dabafb004425a2382e53a7627f8a9", "sticker": null, "text": "yes", "from_id": "bb983e4825dd817587d4a93408e2c9cc0ab291bcbe1e72e3322af88bb99c988d", "reply_to": "5dcd403774933de52e82401197d2cf76d030e75e7ce22294e76ba0d00efcb911", "datetime": "2024-11-08T11:27:02+00:00" }, { "message_id": "9b77084501009469f9862c1e062229ec1afe4eb565b9939fd2b9f388a53dbbff", "sticker": null, "text": "How do i become java developer?", "from_id": "bb983e4825dd817587d4a93408e2c9cc0ab291bcbe1e72e3322af88bb99c988d", "reply_to": null, "datetime": "2024-11-08T17:20:33+00:00" }, { "message_id": "63bde461b47d3e949cec92787ee1740ea42be319ad357fb05bbb425691076526", "sticker": null, "text": "step 1: code", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": "9b77084501009469f9862c1e062229ec1afe4eb565b9939fd2b9f388a53dbbff", "datetime": "2024-11-08T17:34:57+00:00" }, { "message_id": "262be75eafc3d7cb1e0bd4c424b2a9645ec348455363aa5bf11a60ec5635d782", "sticker": null, "text": "I learned basics java\nOOP \nData structure\nAlgorithm", "from_id": "bb983e4825dd817587d4a93408e2c9cc0ab291bcbe1e72e3322af88bb99c988d", "reply_to": "63bde461b47d3e949cec92787ee1740ea42be319ad357fb05bbb425691076526", "datetime": "2024-11-08T18:08:54+00:00" }, { "message_id": "2496245001f7d2db01b3ded684e04540ec669759785bfd7685ef892b4998a578", "sticker": null, "text": "Then you are a Java dev already 👍", "from_id": "409cf595a4b65d1a85cbc3f0dbd8fca965f63c1df9a9dde130c542aebad13901", "reply_to": "262be75eafc3d7cb1e0bd4c424b2a9645ec348455363aa5bf11a60ec5635d782", "datetime": "2024-11-08T19:07:32+00:00" }, { "message_id": "8dfb1a39e6c0b53a6daa1527421d153626aa781e34670b03478f7233a57a062a", "sticker": null, "text": "I want to know the fields of java as spring boot in web", "from_id": "bb983e4825dd817587d4a93408e2c9cc0ab291bcbe1e72e3322af88bb99c988d", "reply_to": "2496245001f7d2db01b3ded684e04540ec669759785bfd7685ef892b4998a578", "datetime": "2024-11-08T19:20:21+00:00" }, { "message_id": "46fdd1f6af9edb1950c128ba2ff62ea79f0b8061ad58a56209ce74fdf1518188", "sticker": null, "text": "your question is very clear but if i can assume you want to know the various concepts and frameworks application to spring boot when using java.....\nin terms of the core concepts it doesnt chagne from \nOOPS\nData structures\nFile I/O\nMultithreading\n\nand for the framework there's a heavy reliance on \nSpring core for the dependency injection\nthe spring MVC architecture and \nspring Security\netc\n——-\nWhile these are not the exhaustive list I do hope it answers to some extent your question", "from_id": "e1a74d30dce46cdfd20e385bdaf82d88276aa0e6a61c1aee5573630e48c41f7f", "reply_to": "8dfb1a39e6c0b53a6daa1527421d153626aa781e34670b03478f7233a57a062a", "datetime": "2024-11-08T20:17:30+00:00" }, { "message_id": "acc632e92465fc8aec6e458636e4dd789b1cce1d2aadf25d0f9c9ce0e42a0bcd", "sticker": null, "text": "can you have a web version? that'd be readily accessible to a wider audience", "from_id": "e1a74d30dce46cdfd20e385bdaf82d88276aa0e6a61c1aee5573630e48c41f7f", "reply_to": "530cedf4a2bb6778f72bb2cee0b959a5eb31ebbdb0cee9f0a40d4568d1ce04f1", "datetime": "2024-11-08T20:18:35+00:00" }, { "message_id": "68db5bf139a1426b42a80d055bde48479dc77223766d05473f433b0b92302dd2", "sticker": null, "text": "Creating a sql query for tables and running DAGs , preferred GCP \n\nNeed Support for a friend \n\nAnyone with prior experience please ping me", "from_id": "bf017c101b07825f21b7bb066d874f0d43a860d4d82bb61d4da0c434202afa36", "reply_to": null, "datetime": "2024-11-08T22:08:35+00:00" }, { "message_id": "aa60cca2174878229a3e350df0a55663e6ac6caf0137c658e5c750929047cfba", "sticker": null, "text": "Yes oauth only provides authorisation if you want authentication you need to implement oidc .if you implement oidc you will get there tokens id token access token and refresh token.id token is for authentication access token is for authorisation refresh token is for regeneration of token after token time expired", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "b6a8ae0b443f99bd8a587476e66db8e97221f0dfdc86b7b83bba244d5a77ac8f", "datetime": "2024-11-09T00:31:51+00:00" }, { "message_id": "453619fa219d1e85705ebf9e9f0b3d3dfe1c020f44f3fd1f9766f2e3b8b5fc55", "sticker": null, "text": "Hi", "from_id": "5d896d305f6428392f5e275f782eeb5ba6da4c7d3754b17b01018086ae2aa722", "reply_to": null, "datetime": "2024-11-09T01:17:27+00:00" }, { "message_id": "4f35273271a726197713e56ee27b4c9ec8fc0eca64b55cb55369adf9bc0ad401", "sticker": null, "text": "Total messages:144524", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-11-09T03:22:36+00:00" }, { "message_id": "a29836c8c408d49e2ebdf8787d109a4734cf8a765a51b39b789a9476f1fd9f46", "sticker": null, "text": "Hi", "from_id": "0c0b72d5921c07432565b64505e159efc0d92637854c2ac32320233c73912fda", "reply_to": "453619fa219d1e85705ebf9e9f0b3d3dfe1c020f44f3fd1f9766f2e3b8b5fc55", "datetime": "2024-11-09T05:03:17+00:00" }, { "message_id": "3f9004144b7caff35f76d51f118bbb3b0635a5e48aca548b1a77fe2f29a0ef45", "sticker": null, "text": "Thanks alot now I get it.. Really thanks", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "aa60cca2174878229a3e350df0a55663e6ac6caf0137c658e5c750929047cfba", "datetime": "2024-11-09T07:40:04+00:00" }, { "message_id": "aa289200ac63f64c9108cc462db7c78418ba620f8057f511e3622c1866283473", "sticker": null, "text": "I truly believe this group is amazing. Each of you is incredibly genuine, talented, and kind. Thank you all! I hope the integrity of this group continues to stay strong.", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": null, "datetime": "2024-11-09T08:20:23+00:00" }, { "message_id": "29182232df00aaf325e772ba9ff6465a2b769adaf824787f88b30733920ee12a", "sticker": null, "text": "I want to learn core Java tell me the yt channel for all of concepts", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-11-09T08:35:37+00:00" }, { "message_id": "17bb3d43d788d7ac4624d426aa88a0e3b9cfb7b327a58f4aa56ac333887200e7", "sticker": null, "text": "Bro code", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "29182232df00aaf325e772ba9ff6465a2b769adaf824787f88b30733920ee12a", "datetime": "2024-11-09T09:45:38+00:00" }, { "message_id": "6507b44652e34f95ebcc3756321b5985e7d3a48a12336c98445a2a4fa54dabac", "sticker": null, "text": "head first java book. let that be your main guide, separate concepts check on youtube", "from_id": "72cb5f7afda028485b2098fcdba7a26e1d89db05d5c006aa206a9419b854333d", "reply_to": "17bb3d43d788d7ac4624d426aa88a0e3b9cfb7b327a58f4aa56ac333887200e7", "datetime": "2024-11-09T15:02:38+00:00" }, { "message_id": "0ce45479ff85735a8152e925aaa6a42d1fe704db0403baec2d1f91292f9f7e8f", "sticker": null, "text": "anyone here who can work with me in a java spring boot project for whatsapp banking? like not for production, just testing case", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-11-09T17:51:56+00:00" }, { "message_id": "afc5692d59a2c97890a58f3b64a1b7ff46ae60db1a7fb6aec0dc932d2b3046a9", "sticker": null, "text": "Anybody can send the best resume template", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-11-10T07:37:41+00:00" }, { "message_id": "c204203b5072dcbf4b85b2aaf9e641c0cd42b2062e3e9c2f4e3657e4d707a204", "sticker": null, "text": "there is nothing like this, try canva.com for free", "from_id": "72cb5f7afda028485b2098fcdba7a26e1d89db05d5c006aa206a9419b854333d", "reply_to": "afc5692d59a2c97890a58f3b64a1b7ff46ae60db1a7fb6aec0dc932d2b3046a9", "datetime": "2024-11-10T10:29:08+00:00" }, { "message_id": "362e3eb08d94b8c1c3957fb83a0f30b2f6d14d120c638180a683c514ff158f3a", "sticker": null, "text": "Lord help this generation of folks 🙏🏾", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "159372b61a3ec50406b5ac5f6ad55fe24bb9986977205cec1a4e0067aa2e6606", "datetime": "2024-11-11T10:19:19+00:00" }, { "message_id": "c3dca7748f214e3170f8d824b71de5b90e52ed00b62ff32c58cb7758299ac802", "sticker": null, "text": "Hello. I have a question.\nOn Linkedin there are job anouncements that they post the same almost every week when appliers are over 100.\nWhy do they post the same job announcements every time?", "from_id": "04ad2ee937f03412d62e4fd8d8f0f986fe2757e52b1a64d11471b63977b1a045", "reply_to": null, "datetime": "2024-11-11T13:23:42+00:00" }, { "message_id": "98050b33ca21605127aff9bc26513aed8fae62608928cb651e2b4f004e5222f3", "sticker": null, "text": "You are in wrong group!!", "from_id": "0c0b72d5921c07432565b64505e159efc0d92637854c2ac32320233c73912fda", "reply_to": "b07346ae261eca6bda80658de455e7003b94f7ad5c3f4368755fd8a1e5924d48", "datetime": "2024-11-11T15:47:00+00:00" }, { "message_id": "7cdf6833bb15b0ed0dd96cd7ec6ca6006022dd74c659f65f4bc3219e5e9ed449", "sticker": null, "text": "wrong group!!!", "from_id": "e1a74d30dce46cdfd20e385bdaf82d88276aa0e6a61c1aee5573630e48c41f7f", "reply_to": "b07346ae261eca6bda80658de455e7003b94f7ad5c3f4368755fd8a1e5924d48", "datetime": "2024-11-11T16:36:57+00:00" }, { "message_id": "bf5ff14e2c7981e5639b0522dce6a5503a01dd038bea784002e2c0dd82f393dc", "sticker": null, "text": "Hi All\nI am looking for job change. I have experience in java microservice spring boot Restapis hibernate, cloud, docker, Kubernetes, spring security, Devops, messaging technologies Apache pulsar and Kafka, google pub/sub and Redis knowledge of AI/ML generative AI \n\nI am currently leading and managing multiple messaging tech projects like Apache pulsar, Kafka, google pub/sub and Redis projects also leading and managing a team of 10 individual contributors", "from_id": "d387ef20c77ad9e6b7cbf0b3d8bcc0633ac4fdc1faf529f0f390ed31778d2bfb", "reply_to": null, "datetime": "2024-11-11T17:19:48+00:00" }, { "message_id": "5906d829bde556b4c5ae4fb1901917b50a269090f5df19608ae78f6a146ed465", "sticker": null, "text": "Hi \n\nMy name is Ritesh working as a java full stack developer with experience of 3 years,\n\nMy question is I know java , adv java , jsp , spring boot, JavaScript, hibernate , JPA\n\nNow what I need to learn now ...", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": null, "datetime": "2024-11-12T11:51:19+00:00" }, { "message_id": "81aa53393e3fd36a202f466e153d9dab82556861ca7b853d3ccd610305f812a6", "sticker": null, "text": "Microservices and clous", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "5906d829bde556b4c5ae4fb1901917b50a269090f5df19608ae78f6a146ed465", "datetime": "2024-11-12T11:57:00+00:00" }, { "message_id": "e96d364f6c13d54a8a2393b5517f8616a2ccb29d0b65a1711c41b1f3f54505d6", "sticker": null, "text": "Hi Shannu ,\nSorry I forgot to mention I know Microservice too", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": "81aa53393e3fd36a202f466e153d9dab82556861ca7b853d3ccd610305f812a6", "datetime": "2024-11-12T12:00:27+00:00" }, { "message_id": "d3177a9ace7eb5761dbf96c2b8fe542f86ea7217ac833939f352c94a2deab62d", "sticker": null, "text": "Can you please tell me a bit more about the cloud that what I need to learn", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": null, "datetime": "2024-11-12T12:00:58+00:00" }, { "message_id": "6fd50f8bbc911b57b4be698a58f71f3ca9d4912a2ffc4c736430bf8696e1c891", "sticker": null, "text": "Aws", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "d3177a9ace7eb5761dbf96c2b8fe542f86ea7217ac833939f352c94a2deab62d", "datetime": "2024-11-12T12:01:19+00:00" }, { "message_id": "4db010396e4ac2df7ec93f29e05241928d886a2212a0b2f8e5f8a5b443909866", "sticker": null, "text": "Aws with devops", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": null, "datetime": "2024-11-12T12:01:32+00:00" }, { "message_id": "637136b6ca04f02a45549aaf40715487dc1264f499d9d12f73abfc58fff92e26", "sticker": null, "text": "Kafka etc", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": null, "datetime": "2024-11-12T12:01:42+00:00" }, { "message_id": "146e198542c370ec7184a495305bb1bdf6850e1d70a87a7cea8cb7d0c2d3f987", "sticker": null, "text": "Any reference?", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": null, "datetime": "2024-11-12T12:02:17+00:00" }, { "message_id": "b7dbcded7e56302a1dcaa3b1e74ae431e3e70a2349f8d4f523eafe5024c20ca7", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c8d52a93d6f58623f395d3ab9c00217377dfab537d229f5300c6d7d2768b48fe", "reply_to": "5906d829bde556b4c5ae4fb1901917b50a269090f5df19608ae78f6a146ed465", "datetime": "2024-11-12T13:35:12+00:00" }, { "message_id": "87dbc6526979146a71696ba63ff9c5b1376660057b6fa859479ab7208fce5abd", "sticker": null, "text": "Thanks Paulius", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": null, "datetime": "2024-11-12T16:39:40+00:00" }, { "message_id": "158bcf9343e0480b7dbb8241f2a38347fec681c1f744551550775df35462cdc0", "sticker": null, "text": "Hii everyone \nI m career counselor and advisor \nI have 6+ year of exp in field and helped many students for choosing right career and solving there personal issues \n\nIf any one here need my assistance feel free to ping me", "from_id": "69597a209c9da590d928a8b81c1b1a24d39e0ee345c7fe8b2cd3e18c321e1b79", "reply_to": null, "datetime": "2024-11-12T17:42:05+00:00" }, { "message_id": "9d9942caa83196314a6f27c5868bad14d70353c13784a072da8dd3ccca8dce3c", "sticker": null, "text": "Please I gave a job to an Indian developer in October he promised that the job would be completed the next day we are in November now this guy is telling me that I'm frustrating him 😂😂😂😂", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T09:21:40+00:00" }, { "message_id": "b065a0952077c414f9500df27ff7a5c49e905aadc36af4e29940aded4a2e16f7", "sticker": null, "text": "Can you imagine 😂😂😂", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T09:21:50+00:00" }, { "message_id": "6718cd37d10fdef8991b558b1ecfb559e7da7c22a637e91445b91288592895dc", "sticker": null, "text": "Who TF has right to be frustrated 😂😂", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T09:22:21+00:00" }, { "message_id": "49d1ac8166558f0ffd2651f03849d42d345d3373247a3f2b6182d69c7a21b684", "sticker": null, "text": "It's not like he's working for free too 😂😂😂", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T09:22:48+00:00" }, { "message_id": "eb101c31356988bd5dac5120e4e5c19b3c3d5f4e14a4a9aba21be925fe895c58", "sticker": null, "text": "u should give the job to a china guy, they work 996😂", "from_id": "800e38f7731c5e287777a161b19d501cb408de1b2becc65ed0c3e2fe73982123", "reply_to": null, "datetime": "2024-11-13T09:34:11+00:00" }, { "message_id": "5176756c692e08c921230a8b09787c35799c94879c4aaf20d927a57136ea41db", "sticker": null, "text": "Very true 😂😂😂", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": "eb101c31356988bd5dac5120e4e5c19b3c3d5f4e14a4a9aba21be925fe895c58", "datetime": "2024-11-13T09:35:06+00:00" }, { "message_id": "a4223892437d68086d417d98ec88cb912a7209a66ce8a8d1f8d58eb57ec0d968", "sticker": null, "text": "I don't know who gave birth to that guy", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T09:35:46+00:00" }, { "message_id": "4af35a5e002b726e8983997f45ee13fbee53be8be97b17ab653f56bbbe171957", "sticker": null, "text": "Bro please link me up with one of them it seams a lot of indians are lazy", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": "eb101c31356988bd5dac5120e4e5c19b3c3d5f4e14a4a9aba21be925fe895c58", "datetime": "2024-11-13T09:47:51+00:00" }, { "message_id": "49fa2e41ffd3bea47a6346500397dc8110efe10c251d2cc19f85d8273f324596", "sticker": null, "text": "This world is full of funny people 😊😊", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T10:06:41+00:00" }, { "message_id": "87b84b32bc1966500fe3871d60bfd9b5e5d841a7671562fdd2d899a64a998567", "sticker": null, "text": "i am one of them😭", "from_id": "800e38f7731c5e287777a161b19d501cb408de1b2becc65ed0c3e2fe73982123", "reply_to": null, "datetime": "2024-11-13T10:25:00+00:00" }, { "message_id": "6c3404403e22cd7afdcaa8f95d9b4131ba390cb3876551eb972a38c8ce6b3c1d", "sticker": null, "text": "What that means?", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "eb101c31356988bd5dac5120e4e5c19b3c3d5f4e14a4a9aba21be925fe895c58", "datetime": "2024-11-13T10:30:44+00:00" }, { "message_id": "d29536d56cc01a7ce815aac9b9773ff5f6730b09ba7d6c8181e9a4630f92d641", "sticker": null, "text": "Pm me", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": "87b84b32bc1966500fe3871d60bfd9b5e5d841a7671562fdd2d899a64a998567", "datetime": "2024-11-13T10:37:37+00:00" }, { "message_id": "9bba9fd92b505a7f5868186deadae0c64966b8c6c0e6e5d9de8fd51ca330f8b5", "sticker": null, "text": "in china, lots of coders have to work from 9am to 9pm, and from mon to sat every week", "from_id": "800e38f7731c5e287777a161b19d501cb408de1b2becc65ed0c3e2fe73982123", "reply_to": null, "datetime": "2024-11-13T10:39:10+00:00" }, { "message_id": "c884b552a9c0d9a5d5f53f2a9542e77d2116b6efa173e3970ba30346ee4fd4e7", "sticker": null, "text": "it's a culture invented by alibaba", "from_id": "800e38f7731c5e287777a161b19d501cb408de1b2becc65ed0c3e2fe73982123", "reply_to": null, "datetime": "2024-11-13T10:39:42+00:00" }, { "message_id": "0568963ef4a3cf4288a7f0c25d10621d48b49f85872cf5b8d67a2496f126334f", "sticker": null, "text": "I said private message me", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": "9bba9fd92b505a7f5868186deadae0c64966b8c6c0e6e5d9de8fd51ca330f8b5", "datetime": "2024-11-13T10:39:47+00:00" }, { "message_id": "092ceac0cfeb8bf262d4da2896ba19509b1fab3ac554ca0c1a2aca8ff9eee03b", "sticker": null, "text": "I need an active JavaScript programmer", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T10:46:14+00:00" }, { "message_id": "2edb8baa25fa8414a64b606bd2836c18eedfd7c86d853be286c7c7dfe442ab36", "sticker": null, "text": "But its a shit na??.. We are human not robots?", "from_id": "cf2f20f983a54b979e8c0cf2e789e0efa7e555afdfdb19b79b988665c87974a7", "reply_to": "9bba9fd92b505a7f5868186deadae0c64966b8c6c0e6e5d9de8fd51ca330f8b5", "datetime": "2024-11-13T11:59:25+00:00" }, { "message_id": "505f3f422d6eba400c214522b0d4246b8ab8a46316580fb191be95eea25d8bcd", "sticker": null, "text": "Hi", "from_id": "238802814d441eb093e5879f5206154d1f479c63d9fee3730d508fa84bc002ca", "reply_to": null, "datetime": "2024-11-13T19:01:13+00:00" }, { "message_id": "ab3d51f4f76d4e65fd92cecde6b2c75e6177579f2ae861049c37d479017a50c7", "sticker": null, "text": "Who can find origin ip of a website behind cloudfare", "from_id": "3b14365343737f64fbfe3a5cdf6b8cdf34b0bff0cbe2c37f16ac7d3ad3d052e2", "reply_to": null, "datetime": "2024-11-13T20:58:25+00:00" }, { "message_id": "b66dc7ea0d26fe41adc649d3eb900ba23243d51f4372d4c2031bc04ae1ccc8c0", "sticker": null, "text": "Whats the website you want to find the ip?", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "ab3d51f4f76d4e65fd92cecde6b2c75e6177579f2ae861049c37d479017a50c7", "datetime": "2024-11-13T22:18:32+00:00" }, { "message_id": "c0ff7fb5769a5fbae12446ade95a6ef6db5c658542f2615f1cf0ada19f544e84", "sticker": null, "text": "fire him😂", "from_id": "d05b7a226ec2740d9cbab539b51196b0a08a6a778071b44dcad840a334726529", "reply_to": "9d9942caa83196314a6f27c5868bad14d70353c13784a072da8dd3ccca8dce3c", "datetime": "2024-11-13T23:43:47+00:00" }, { "message_id": "5a31debe237e7db09676683f96dc2a6b0726bd692174cbd193b506d36e71ba89", "sticker": null, "text": "😌", "from_id": "5c5a35e3f2e05a7751390689d40066ac99ba8b1b145615b8d0d0a9228889ed22", "reply_to": null, "datetime": "2024-11-14T04:00:14+00:00" }, { "message_id": "eb79f714273e1ba0d3288d30a392bd9978a60e229c7915bfe9086eac8e4b9441", "sticker": null, "text": "Java project", "from_id": "a379ecf0b066bef598d7d45ab8e42033a090321e31c31df2fe7f951da278b3e7", "reply_to": null, "datetime": "2024-11-14T07:22:23+00:00" }, { "message_id": "b7a52abfd6bc7d1d2d8d711825d12c32a45d0614c85e57b6ba0849587ac7cd30", "sticker": null, "text": "are you looking for project ideas?", "from_id": "d05b7a226ec2740d9cbab539b51196b0a08a6a778071b44dcad840a334726529", "reply_to": "eb79f714273e1ba0d3288d30a392bd9978a60e229c7915bfe9086eac8e4b9441", "datetime": "2024-11-14T07:48:58+00:00" }, { "message_id": "d1fa6ae6919dc9fb55143bd7393aa3159bed38657d03373935eba2b6f99e3b66", "sticker": null, "text": "Yes", "from_id": "a379ecf0b066bef598d7d45ab8e42033a090321e31c31df2fe7f951da278b3e7", "reply_to": "b7a52abfd6bc7d1d2d8d711825d12c32a45d0614c85e57b6ba0849587ac7cd30", "datetime": "2024-11-14T07:49:34+00:00" }, { "message_id": "160f87e7d66b6f59f7f537fd3b144490d51caa09475ee327ae372d6d053fb1f8", "sticker": null, "text": "In samsung a04e distributed by up government to students, came with many restrictions ie you cannot change wallpaper and can't reset etc . the admin is someone else. how to make that device free?(india) anybody know?", "from_id": "37de4ae812688002b562a53b023d47b794a8c8028f343962ebe9696f33f986b6", "reply_to": null, "datetime": "2024-11-15T08:19:37+00:00" }, { "message_id": "3b3449093b68a5e0040dc4d4e8cd19051f635115ce7d8c14552bb4ab1bc60a8a", "sticker": null, "text": "i mean how to remove restrictions", "from_id": "37de4ae812688002b562a53b023d47b794a8c8028f343962ebe9696f33f986b6", "reply_to": null, "datetime": "2024-11-15T08:19:49+00:00" }, { "message_id": "217846878f5925ac1c9df9f8ae70981a0f201237db4a5374c9bffc4c7e2c0a58", "sticker": null, "text": "12", "from_id": "37de4ae812688002b562a53b023d47b794a8c8028f343962ebe9696f33f986b6", "reply_to": null, "datetime": "2024-11-15T08:20:46+00:00" }, { "message_id": "b7b7d222c4e042c5458a06abaad4197081fdb81f734a888c7879a5ffb3c7d672", "sticker": null, "text": "If its out of warranty, you can flash it with different os/rom or you can also remove the bloatwares", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "3b3449093b68a5e0040dc4d4e8cd19051f635115ce7d8c14552bb4ab1bc60a8a", "datetime": "2024-11-15T09:05:10+00:00" }, { "message_id": "b2e6c78f216e0950c929b6154321a238775beca0b14174087f8769ba45405c48", "sticker": null, "text": "It has no warranty", "from_id": "37de4ae812688002b562a53b023d47b794a8c8028f343962ebe9696f33f986b6", "reply_to": null, "datetime": "2024-11-15T11:57:00+00:00" }, { "message_id": "6c51b1ba13b57ffa2153ead110e7cd4421b3ccf0dcca6cc223206b0f61719d3f", "sticker": null, "text": "How to flash btw?", "from_id": "37de4ae812688002b562a53b023d47b794a8c8028f343962ebe9696f33f986b6", "reply_to": null, "datetime": "2024-11-15T11:57:10+00:00" }, { "message_id": "7597902a60d696804b4e4fec1fee1ac79c0d271fab842d3abf83a7fe54171441", "sticker": null, "text": "Yt", "from_id": "17f1e2b4d2f5581002ac89bef632aa2e6677503c89d2db494bb7e5c4f25125e9", "reply_to": "160f87e7d66b6f59f7f537fd3b144490d51caa09475ee327ae372d6d053fb1f8", "datetime": "2024-11-15T15:46:19+00:00" }, { "message_id": "ba3021a29bd65a28d318174e248267a6feb07b3e4fe60f9d567d91fedf2797c3", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "c8d52a93d6f58623f395d3ab9c00217377dfab537d229f5300c6d7d2768b48fe", "reply_to": null, "datetime": "2024-11-15T16:51:41+00:00" }, { "message_id": "85c319443485c8f5dd21862d34391a2bbabd0a96cac4527cf82311ff81d79081", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "f99812e1ef42b6472375f2d576f3a9fa02dd430e9db50707906a272ad910cb9e", "reply_to": null, "datetime": "2024-11-15T23:19:59+00:00" }, { "message_id": "9ec2b0c4f2b0082b473eef478aa9683cd09347ba7baefd27ee70249fba639d7c", "sticker": null, "text": "Google about it you will get lot of videos and articles,or visit XDA forum", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "6c51b1ba13b57ffa2153ead110e7cd4421b3ccf0dcca6cc223206b0f61719d3f", "datetime": "2024-11-17T02:56:07+00:00" }, { "message_id": "953670585cccaf3551607a35856949281efe698fc0b41d1325c4bacd52d10764", "sticker": null, "text": "A salesman working in a company (meher and sons) gets the commissions on the sale done by him, depending upon the following conditions..\n\nSales.                                                       Commission \n\nUpto ₹10,000.                                                 10%\nless than equal to ₹20,000.                                15%\nless than equal to ₹50,000.                                30%\nabove ₹50,000.                                               40%\n\nWrite a java program to print the commission of 100  salesmen of the company.\n\nCan anyone please tell me the answer for this program", "from_id": "4fffa337cd4fbb1be2377ba561365ae3b0ec1f4747d45c0ab065f3fbdefc1708", "reply_to": null, "datetime": "2024-11-17T12:45:52+00:00" }, { "message_id": "e581c67c69b0b3dfb0da1ea6ef4a74365144f8405facea318c387359d14d84c7", "sticker": null, "text": "import java.util.Scanner;\n\npublic class CommissionCalculator {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n\n // Array to store sales of 100 salesmen\n double[] sales = new double[100];\n double[] commissions = new double[100];\n\n // Input sales for 100 salesmen\n System.out.println(\"Enter sales for 100 salesmen:\");\n for (int i = 0; i < 100; i++) {\n System.out.print(\"Salesman \" + (i + 1) + \": \");\n sales[i] = scanner.nextDouble();\n }\n\n // Calculate commission for each salesman\n for (int i = 0; i < 100; i++) {\n if (sales[i] <= 10000) {\n commissions[i] = sales[i] * 0.10; // 10%\n } else if (sales[i] <= 20000) {\n commissions[i] = sales[i] * 0.15; // 15%\n } else if (sales[i] <= 50000) {\n commissions[i] = sales[i] * 0.30; // 30%\n } else {\n commissions[i] = sales[i] * 0.40; // 40%\n }\n }\n\n // Print the commission for each salesman\n System.out.println(\"\\nCommission of each salesman:\");\n for (int i = 0; i < 100; i++) {\n System.out.println(\"Salesman \" + (i + 1) + \": ₹\" + commissions[i]);\n }\n\n scanner.close();\n }\n}", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "953670585cccaf3551607a35856949281efe698fc0b41d1325c4bacd52d10764", "datetime": "2024-11-17T18:56:56+00:00" }, { "message_id": "c60c5ed2be1cf7b231a263636f77cba199aeb56c243a66d493d751371429c93d", "sticker": null, "text": "Hello", "from_id": "0f80fa0a1cfd86e5db9bf8d092695ab3a14e9de29fcb3668647fd63d5b05d202", "reply_to": null, "datetime": "2024-11-17T19:09:34+00:00" }, { "message_id": "6bd3871940286cf160f7d0be29084ecbec657a3aafb5cc91e2d17f9c90d15a8c", "sticker": null, "text": "I have a java project source code, but there is a bug and I don‘t know how to fix it. Is there any friend willing to help me check it? I will give you a generous commission", "from_id": "0f80fa0a1cfd86e5db9bf8d092695ab3a14e9de29fcb3668647fd63d5b05d202", "reply_to": null, "datetime": "2024-11-17T19:12:00+00:00" }, { "message_id": "a836449cc3bf5e0efee55a7c5be4aeac9dc66af1cf9a7cb6c32395433f7ff72c", "sticker": null, "text": "Dm", "from_id": "30e15c476fbd749308aca890fc06f6e72f35568dd632c186f8de68397b1582cb", "reply_to": "6bd3871940286cf160f7d0be29084ecbec657a3aafb5cc91e2d17f9c90d15a8c", "datetime": "2024-11-17T19:15:41+00:00" }, { "message_id": "20823116e0bde7dc9118fbf768d15adf3adb5b0d6b30307b7345e2497798a613", "sticker": null, "text": "Okkk thank you so much", "from_id": "4fffa337cd4fbb1be2377ba561365ae3b0ec1f4747d45c0ab065f3fbdefc1708", "reply_to": "e581c67c69b0b3dfb0da1ea6ef4a74365144f8405facea318c387359d14d84c7", "datetime": "2024-11-17T22:09:07+00:00" }, { "message_id": "ae4a961145b159aaa9f89532eb57e33fd57a83fb4c3ff7c65610916b11ec828e", "sticker": null, "text": "DM with details if you still 👀 looking for help. 🤝", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": "6bd3871940286cf160f7d0be29084ecbec657a3aafb5cc91e2d17f9c90d15a8c", "datetime": "2024-11-17T23:31:59+00:00" }, { "message_id": "fdc8c52283c33e3a111377464bd437ceb9a031c1c7afed11a325868544bbb4a5", "sticker": null, "text": "👋", "from_id": "bbc19710cb3d4409c4eb655dd420d174562e50afc1d5c6d5775ed5f539c5225a", "reply_to": null, "datetime": "2024-11-19T02:17:07+00:00" }, { "message_id": "574d539fab7fcedff0f844b040e91c0b0737c991ed4ea452ec8c718ae65a5889", "sticker": null, "text": "Anyone use joomla", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-11-19T04:24:26+00:00" }, { "message_id": "6962b5a23431ef9fe2fa795bd8353f6148a3dc931a302f0bf111ccb64fde05ad", "sticker": null, "text": "There is an undirected graph with n nodes, where each node is numbered between 0 and n - 1. You are given a 2D array graph, where graph[u] is an array of nodes that node u is adjacent to. More formally, for each v in graph[u], there is an undirected edge between node u and node v. The graph has the following properties:", "from_id": "fe0422d9d3564c4c8108cd27e0f8400296367ebf54a72811439891cfc09f589d", "reply_to": null, "datetime": "2024-11-19T05:48:10+00:00" }, { "message_id": "706bc9f474fd495ed984aad3f414da6269282cee97d0598a43eb6c4c578a4f18", "sticker": null, "text": "if (help <= 10000 )\n{youCommission=help *0.1}\n....\nJoke☺️", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "6bd3871940286cf160f7d0be29084ecbec657a3aafb5cc91e2d17f9c90d15a8c", "datetime": "2024-11-20T09:44:40+00:00" }, { "message_id": "69e962d7c8a8d95e047332d56d354ee83062eff703ea812a8719d5e0a597ad03", "sticker": null, "text": "What properties has graph?", "from_id": "5ffca923a7cd6a1a93952bcbe42c26e0159fd58defc03dc0602e597002c798c9", "reply_to": "6962b5a23431ef9fe2fa795bd8353f6148a3dc931a302f0bf111ccb64fde05ad", "datetime": "2024-11-20T09:51:22+00:00" }, { "message_id": "35b60f5fe2055e9f7130953c0d00808d6c3646dba66000efa5f3756c0a198d82", "sticker": null, "text": "yes", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2024-11-21T15:55:40+00:00" }, { "message_id": "dba4f86a75f42ad88dc905d68a9340e161c19fe6d7a717969dcedd4e9e025b12", "sticker": null, "text": "What project?", "from_id": "6bcb2d2231ace822b20fd87131229c30ac6d1a55fc9fb8c6266ff11ca0ef7617", "reply_to": null, "datetime": "2024-11-23T18:32:29+00:00" }, { "message_id": "fd0af4fdfb9cadf0a61002f8eff0ecda044ca39dd35090c25ccfc2218ac3214c", "sticker": null, "text": "Well, I don't think I can qualify for this project, since I don't know anything about finances", "from_id": "6bcb2d2231ace822b20fd87131229c30ac6d1a55fc9fb8c6266ff11ca0ef7617", "reply_to": null, "datetime": "2024-11-23T18:41:37+00:00" }, { "message_id": "5e6519ed2e5d612b7964f121b48b802e2220662b078d64622b4f3fb0a5c79d5c", "sticker": null, "text": "I am just a beginner in java, I don't think I can do that big of a project yet", "from_id": "6bcb2d2231ace822b20fd87131229c30ac6d1a55fc9fb8c6266ff11ca0ef7617", "reply_to": null, "datetime": "2024-11-23T18:44:25+00:00" }, { "message_id": "c807d240edf44235c65fb5e44fd0ecf11e4b97b5c7cc0d00b9f806919bd9ef62", "sticker": null, "text": "Not years. Around 2 months", "from_id": "6bcb2d2231ace822b20fd87131229c30ac6d1a55fc9fb8c6266ff11ca0ef7617", "reply_to": null, "datetime": "2024-11-23T18:47:08+00:00" }, { "message_id": "5e6e02c21b36c0d316f6550a3f1450101b52719968dc140f7c9cf76128c25f64", "sticker": null, "text": "🔠🔠🔠🔠  🔠🔠🔠🔠🔠", "from_id": "d1e7a8fdca7d23a7e18a1e1e493e42238d993a8b27080d2b5fc18ef9f37414ac", "reply_to": null, "datetime": "2024-11-24T18:52:13+00:00" }, { "message_id": "a2ade8772c1595c740bc855e3f7592cf21c413f8920cab6f92c119aa86072d52", "sticker": null, "text": "Web3 Developers, Stay Alert! \nScammers are targeting blockchain developers on LinkedIn, and it’s getting more convincing. You’ll get a message from someone claiming to be impressed by your skills, pushing you to join an “urgent” technical interview. At first, everything seems legitimate—until they ask you to clone and run their repo on your own device. They'll promise a gig and express excitement about working with you, but the moment you execute their software on host device, you could be compromising your system or loosing your assets. Stay vigilant, don’t fall for the rush, and always double-check before running any code,I was almost a victim for this but when i noticed the interviewer insisting that i should run their software on my host machine i decided to run it on virtualbox on a virtual environment, when the interviewer noticed that ,He terminated the interview immediately and blocked me on LinkedIn. \n\nStay Vigilant Devs.🙏🏾\n\n@#USER", "from_id": "9b9b995bbebe25155d7d9e99817c6e6b6a2b4acc1a64937cc021c5c2e3a2a81d", "reply_to": null, "datetime": "2024-11-25T13:12:39+00:00" }, { "message_id": "f13c66af1b0bd093e3ba1730de5fd102b16b3e42a6cc53583a6ddceb7f9fffb9", "sticker": null, "text": "🔤🔤🔤🔤  🔤🔤🔤🔤🔤", "from_id": "d1e7a8fdca7d23a7e18a1e1e493e42238d993a8b27080d2b5fc18ef9f37414ac", "reply_to": null, "datetime": "2024-11-25T16:52:37+00:00" }, { "message_id": "71ccda5d16b802195b3af91c6ea180b627f28ff45d8d165a6068b455c852344d", "sticker": null, "text": "Here’s another for Telegram specifically.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "a2ade8772c1595c740bc855e3f7592cf21c413f8920cab6f92c119aa86072d52", "datetime": "2024-11-25T17:13:04+00:00" }, { "message_id": "00ec9f57a5d5f9ba26ef053fafc6788813c230ba81fc3ceae05ea9880272e22c", "sticker": null, "text": "6", "from_id": "975672fccd0610489e2ab0781e9871b16a4e8c05f9820a0493ad7b76ae54bab9", "reply_to": null, "datetime": "2024-11-27T02:14:23+00:00" }, { "message_id": "c0a33feb7a3b8812594b452f599b0d366d333bbdbd638bf75f0d849a12edb769", "sticker": null, "text": "Hello bro good morning", "from_id": "a86354b023b9a3389fcf3afbd2217e1b208dd74ff645d4a94d0494b5694d7dca", "reply_to": null, "datetime": "2024-11-27T04:51:55+00:00" }, { "message_id": "fe1d53b776bee2987dfa841718dd2c0feb9ab07604164b624514a12d0cead9f8", "sticker": null, "text": "All of you", "from_id": "a86354b023b9a3389fcf3afbd2217e1b208dd74ff645d4a94d0494b5694d7dca", "reply_to": null, "datetime": "2024-11-27T04:52:15+00:00" }, { "message_id": "e2b2625959297c2e4f068c6879c9eb55f8c07b89eb039be5b937e4d479f59f9e", "sticker": null, "text": "Hy everyone", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": null, "datetime": "2024-11-27T06:07:30+00:00" }, { "message_id": "08cb2bd320e72dae51d2eb044478d31889dabae9ea540f1a2f77470d0a0f331f", "sticker": null, "text": "I'm 4 years java developers. If anyone needs my help in any bug, error or exception \nFeel free to contact me", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": null, "datetime": "2024-11-27T06:12:51+00:00" }, { "message_id": "87de006eca438a6a1b6e7f6ff533a83a025ad6c00ee7916aad1eb389638c2698", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "7a61a14d7a8eb869a33c43c1a09ea605a47c7b14a9f601596fcaa66dce382e40", "reply_to": null, "datetime": "2024-11-28T22:00:01+00:00" }, { "message_id": "4af422e1af107fe48ceca93f865cee2cef8e91b9da374a00bb103c2a69285789", "sticker": null, "text": "Hello", "from_id": "123bf4c854805cf3c2947723656f445a2a1047f3cb5ea28a57d0cc6aa2163a2e", "reply_to": null, "datetime": "2024-11-28T22:30:22+00:00" }, { "message_id": "2574fe5be4fa359fd5823b56ad66fef201e61a9a14e7ff1dd3a923f1d27fca4e", "sticker": null, "text": "How are you", "from_id": "77151aadbf9518b1691c2368100ae594795e11632b0589fdbf83c45bf4fc240c", "reply_to": "4af422e1af107fe48ceca93f865cee2cef8e91b9da374a00bb103c2a69285789", "datetime": "2024-11-29T00:15:20+00:00" }, { "message_id": "561a941005a5e5df4d633bf3398504678c466d90c0086d9b4546bb443d388d98", "sticker": null, "text": "Hi", "from_id": "2913455e8cb77bd426098d41d2aacc5aa098e757d09bc9b14df0cf09f9e24fa7", "reply_to": null, "datetime": "2024-11-29T09:22:44+00:00" }, { "message_id": "191c5bff64a8b7d78182ab4e2ed6a84dd2fe862236bb8c5d088b3d7a5b9fe48d", "sticker": null, "text": "hi", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": null, "datetime": "2024-11-29T09:23:21+00:00" }, { "message_id": "111f25ce41af07708e9e7a4bbb60be5d04f400a110ec092a32649fc2df8a9125", "sticker": null, "text": "Can i get java begging notes", "from_id": "f2f3cb8f7792a8bcc837f2e2941fb6948767636d19d45e84c4fa9d333b5c1262", "reply_to": null, "datetime": "2024-11-30T15:18:06+00:00" }, { "message_id": "31d0ae06829a1dff53189c9ecb395d8c8d6d594940da32e1c863446efed98e29", "sticker": null, "text": "Guys, can someone explain to me how I can create 2d objects in java, like lines, squares etc.", "from_id": "6bcb2d2231ace822b20fd87131229c30ac6d1a55fc9fb8c6266ff11ca0ef7617", "reply_to": null, "datetime": "2024-11-30T19:24:25+00:00" }, { "message_id": "8930c3b3859ffef418101104cf28fa268b730708e5a215f017356255bf01b8ab", "sticker": null, "text": "Creating 2D objects like lines, squares, and other shapes in Java is typically done using the Java 2D API, which is part of the java.awt and javax.swing packages. Here's a quick overview of how to get started:\n\n\n---\n\nSteps to Create 2D Objects:\n\n1. Set Up a Swing Application\nUse a JFrame as the main window, and draw 2D objects inside a JPanel or similar component.\n\n\n2. Override the paintComponent Method\nThe paintComponent(Graphics g) method is used to perform custom drawing on a JPanel. To access Java 2D functionality, cast the Graphics object to Graphics2D.\n\n\n3. Use Graphics2D to Draw Shapes\nThe Graphics2D class provides methods to draw lines, rectangles, ellipses, and more.\n\n\n\n\n---\n\nExample Code\n\nimport javax.swing.*;\nimport java.awt.*;\n\npublic class Draw2DShapes extends JPanel {\n\n @#USER\n protected void paintComponent(Graphics g) {\n super.paintComponent(g); // Ensure the panel is properly rendered first\n Graphics2D g2d = (Graphics2D) g;\n\n // Set Rendering Hints for better quality\n g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);\n\n // Draw a line\n g2d.drawLine(50, 50, 200, 50);\n\n // Draw a rectangle\n g2d.drawRect(50, 70, 150, 100);\n\n // Draw a filled rectangle\n g2d.setColor(Color.BLUE);\n g2d.fillRect(50, 200, 150, 100);\n\n // Draw an oval\n g2d.setColor(Color.RED);\n g2d.drawOval(250, 70, 100, 100);\n\n // Draw a filled oval\n g2d.setColor(Color.GREEN);\n g2d.fillOval(250, 200, 100, 100);\n }\n\n public static void main(String[] args) {\n JFrame frame = new JFrame(\"2D Shapes Example\");\n Draw2DShapes panel = new Draw2DShapes();\n\n frame.add(panel);\n frame.setSize(400, 400);\n frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);\n frame.setVisible(true);\n }\n}\n\n\n---\n\nKey Points in the Code:\n\n1. Panel Customization\nThe custom drawing is performed inside the paintComponent method.\n\n\n2. Graphics2D Methods\n\ndrawLine(int x1, int y1, int x2, int y2)\n\ndrawRect(int x, int y, int width, int height)\n\ndrawOval(int x, int y, int width, int height)\n\nfillRect(int x, int y, int width, int height)\n\nfillOval(int x, int y, int width, int height)\n\n\n\n3. Colors\nYou can set colors with g2d.setColor(Color color).", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "31d0ae06829a1dff53189c9ecb395d8c8d6d594940da32e1c863446efed98e29", "datetime": "2024-12-01T06:56:47+00:00" }, { "message_id": "7cce78c79589ffbae5e563a47f0797d9182880232fc643cadd5ee94ba6fe25cb", "sticker": null, "text": "Yes, but how do I change the position of the lines, rectangles etc? I mean, now they are all horizontal; How can I make them vertical?", "from_id": "6bcb2d2231ace822b20fd87131229c30ac6d1a55fc9fb8c6266ff11ca0ef7617", "reply_to": null, "datetime": "2024-12-01T09:13:14+00:00" }, { "message_id": "42586e958c1c38c359654b9f2e9384a3c76377619fed4d958949c0305e25b85c", "sticker": null, "text": "To change the orientation of the shapes (e.g., make lines vertical, adjust rectangles to align differently), you simply modify their coordinates or dimensions. Here's how it works:\n\nVertical Line\n\nA vertical line has the same x coordinate for both start and end points. For example:\n\ng2d.drawLine(100, 50, 100, 200); // Vertical line at x=100\n\nHere, x1 equals x2 (100), but y1 and y2 differ, making the line vertical.\n\n\n---\n\nVertical Rectangle\n\nA rectangle is always aligned with the axes, but you can make it appear \"vertical\" by modifying its width and height:\n\ng2d.drawRect(150, 50, 50, 150); // A tall rectangle\n\nHere, width (50) is less than height (150), making it appear vertical.", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "7cce78c79589ffbae5e563a47f0797d9182880232fc643cadd5ee94ba6fe25cb", "datetime": "2024-12-01T09:15:03+00:00" }, { "message_id": "907a160447039566c76c27b0e6c6ff655a5206d69cf5149d406bb072b6e9886d", "sticker": null, "text": "nice view", "from_id": "4037e8608ec49ef23cf7500e8e0d0e8249028abf88d65d34e9d39dd6e08d69a8", "reply_to": null, "datetime": "2024-12-02T05:27:12+00:00" }, { "message_id": "94e9abc1dd08397547e12dfcf7b53718693d57994a8d2f0c1136506994fada10", "sticker": null, "text": "HI ANYOUNE INTERESTED IN FULL STACK JAVA DEVELOPMENT COURSE ?\n\nI AM GOING TO START.\n\nITS FREE", "from_id": "1ac67fd2e44bbfdb110e53626604b042d5600af0b7d53d7a77107e3a7a62e468", "reply_to": null, "datetime": "2024-12-03T02:14:05+00:00" }, { "message_id": "77aef6624327bfcfff34b1394068d060c785252213e1cbb50546dba2a28b25cf", "sticker": null, "text": "I am interested", "from_id": "4b17b89b0abd326af4ebc3f03cbe5dd3364ecd6284477e553e88d3fa2644065b", "reply_to": "94e9abc1dd08397547e12dfcf7b53718693d57994a8d2f0c1136506994fada10", "datetime": "2024-12-03T02:27:05+00:00" }, { "message_id": "a1502279ede6803f49cb69b708fb01e50025564427656944e0de7b4e2fdeb81e", "sticker": null, "text": "I’m interested", "from_id": "56c49bb8df6afc07bd65958dc4a50218b13c1f29f9c6a6e927e87a7834555bab", "reply_to": "94e9abc1dd08397547e12dfcf7b53718693d57994a8d2f0c1136506994fada10", "datetime": "2024-12-03T09:11:47+00:00" }, { "message_id": "893848b3d357a89376eba8d63b42ec7f931acc1665775be2539cf85766ae721a", "sticker": null, "text": "I am not interested", "from_id": "37de4ae812688002b562a53b023d47b794a8c8028f343962ebe9696f33f986b6", "reply_to": "42586e958c1c38c359654b9f2e9384a3c76377619fed4d958949c0305e25b85c", "datetime": "2024-12-03T09:49:05+00:00" }, { "message_id": "457d665046adb129eb2ff5aaa3df766b194eef0811118e90a18a62df683fa896", "sticker": null, "text": "I am interested", "from_id": "4a10c06bf3712cd3d2c2789fd31efa44fd33f52eee5676fed3c1bbbea9d39c3d", "reply_to": "94e9abc1dd08397547e12dfcf7b53718693d57994a8d2f0c1136506994fada10", "datetime": "2024-12-05T10:07:02+00:00" }, { "message_id": "826977e2896928203a5f401295ad44015c16bfc839532d7f2923298c94e60c6c", "sticker": null, "text": "Hii I am mern stack developer and I am fresher", "from_id": "fb7bb4b5284a2e1689bbcbb7a8cc48621855c818059e3d7f594bfa930cac5999", "reply_to": "0e88342d656faa24bb356de7992a2b1645d309a0e034fdabd8d6e85f12a02623", "datetime": "2024-12-05T17:52:34+00:00" }, { "message_id": "e7392e29035df0ded6dc3f4ac8fb4623fe67038a0a64768aa20637c2abb5e72c", "sticker": null, "text": "tech not reply yet", "from_id": "4a10c06bf3712cd3d2c2789fd31efa44fd33f52eee5676fed3c1bbbea9d39c3d", "reply_to": "94e9abc1dd08397547e12dfcf7b53718693d57994a8d2f0c1136506994fada10", "datetime": "2024-12-06T02:36:19+00:00" }, { "message_id": "15af8ed02bbb917ed2a29298629fe3aeabe527b90d0ba50f9468801347d641d7", "sticker": null, "text": "Looking for freelancing opportunity...I'm a full stack app developer also works on web MERN", "from_id": "008fc8f376f2ea271a108e9d060a6288cd41379885be092d491a24df602f1572", "reply_to": null, "datetime": "2024-12-06T08:08:29+00:00" }, { "message_id": "c645c4d3dcd818e5e307ea5111c9c6e90509d781f10e1bc51a613a3b01fe132a", "sticker": null, "text": "Anyone looking for plc programming", "from_id": "35f63189cfa78d964d986808ac8f789513a0a1dade294893f2b809a177886184", "reply_to": null, "datetime": "2024-12-06T15:19:00+00:00" }, { "message_id": "1de6755445447153f5eab6d2e827b9c6a9e1b2c03daee87c356afb4960516691", "sticker": null, "text": "Use classification model of supervised learning", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": null, "datetime": "2024-12-08T01:06:57+00:00" }, { "message_id": "abd49f7f08af5723b849e69ee86b75e74e22803aa6be9cb1e3aca6159873416a", "sticker": null, "text": "He just can use Regex to parse it don't worry about classification model 😅", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "0cd63c9b3c98cc680156dabf8939362e110c8e335c0f9f9bc3676f1164e89735", "datetime": "2024-12-08T01:11:41+00:00" }, { "message_id": "fce354b08aa92678e1b371a5aeb8c22f8fb225153c38af27c74ef6832badde6a", "sticker": null, "text": "Yes it can also be a method", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": "abd49f7f08af5723b849e69ee86b75e74e22803aa6be9cb1e3aca6159873416a", "datetime": "2024-12-08T01:15:16+00:00" }, { "message_id": "a4fb3e35f0c96a755a989aebb7aa414b1645d0505765b940f7fcd13a7782e687", "sticker": null, "text": "Import regex as r", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": null, "datetime": "2024-12-08T01:15:27+00:00" }, { "message_id": "a5bcc6534c839ae33fc8564b9e537ce8c6086dcebdc608efe315a282525c509a", "sticker": null, "text": "But its also very easy", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": "1de6755445447153f5eab6d2e827b9c6a9e1b2c03daee87c356afb4960516691", "datetime": "2024-12-08T01:15:52+00:00" }, { "message_id": "83ceaeb57c75e12915c76a838ac0856fc7ae9f844639e9c70fbbbbee1b7cd584", "sticker": null, "text": "But he just want to get username and domain address from email address, machine learning model isn't necessary.", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "a5bcc6534c839ae33fc8564b9e537ce8c6086dcebdc608efe315a282525c509a", "datetime": "2024-12-08T01:18:30+00:00" }, { "message_id": "48b8f7d5b6d4cb33c3ba7ba2b9caede1e84df5d79da97f7a1c7fe449d027f01b", "sticker": null, "text": "Ok", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": null, "datetime": "2024-12-08T01:25:50+00:00" }, { "message_id": "a7dfb9cbc5bf21a1087aab2ed3299b9db741652addb6293176e7345fb02c08cf", "sticker": null, "text": "Yes", "from_id": "f9b0ec94f09e24298b44fceea111a7703cfa6d6f8e13ae6c64f55827ef570862", "reply_to": "40720397b18853b60b3d2f2cd85ea55efe60737301552df5b653324901becae9", "datetime": "2024-12-08T03:11:52+00:00" }, { "message_id": "f0fe98ac177aae5e73771edaf9680d749df36f448012b5224a81e2f1441b8197", "sticker": null, "text": "Great", "from_id": "ed7e9a2e0e6b484b129aa874b37cfcdcd1f305faf7189258e5225b172bc720b3", "reply_to": "b2b427d20444a2509505686da8055bd545cc3400746d1bd305ba49f88e2b8997", "datetime": "2024-12-08T07:44:09+00:00" }, { "message_id": "f87687e8db5fefb5f2840c0a3b5b9bd00315c84bea44ae48b1a00781cc92448e", "sticker": null, "text": "Hello everyone..\n\nMy cousin asked me to make a website for his class 10th HTML project. What topic should be to  make a website for him??\n\nPlease Suggest me topics and any reference.😊", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2024-12-08T08:16:57+00:00" }, { "message_id": "4b11a5cee77f47ef7e01545962c5c85a03c409da34874b10b01af0e932fb44da", "sticker": null, "text": "Total messages:146502", "from_id": "98b732f5c5ec0335294bd7dd179a85ae74bd4c2dbd58115975856ae9334ae0fe", "reply_to": null, "datetime": "2024-12-08T08:28:14+00:00" }, { "message_id": "fca0a5f25fc1e9c799aec16c52b86bc9db810e0661f32e18cd368a2f8f86583e", "sticker": null, "text": "Grocery selling", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": "f87687e8db5fefb5f2840c0a3b5b9bd00315c84bea44ae48b1a00781cc92448e", "datetime": "2024-12-08T08:57:21+00:00" }, { "message_id": "e3c9c876f967c622d659907591721b62f840ac5a0d3aed774695bb1edaa0b638", "sticker": null, "text": "Ys", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": "6712aa19194f2f43268dffd8bb45bd1f032eaa4b9a0ac4c92345b4a54bfce7cd", "datetime": "2024-12-08T17:21:54+00:00" }, { "message_id": "37ed14aa60909d53a15644e08a5010e893b66dc6825591cd32358e4ca9f3f9d2", "sticker": null, "text": "\"How to do your projects\" might be a good Idea for website you can try this one", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": "f87687e8db5fefb5f2840c0a3b5b9bd00315c84bea44ae48b1a00781cc92448e", "datetime": "2024-12-08T19:45:10+00:00" }, { "message_id": "c5db10e673e6d309dca0846657bd5829e87703ac9e2d56d1045cd5cb4ad9ff05", "sticker": null, "text": null, "from_id": "20e20279c46edd11e84211b3d48d0be60a8f4a66e7dbebd2c8b3ed68b88f53af", "reply_to": null, "datetime": "2024-12-09T01:34:43+00:00" }, { "message_id": "435c439c8bac6168e5085572bd1e0715d2bdc9620f322c7a3d5370da50dde98e", "sticker": null, "text": "Hello", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": null, "datetime": "2024-12-09T02:01:12+00:00" }, { "message_id": "b194638fae31b1a4a0e40d7d76a205c51e58606351f0dd4515f13c54b94b0735", "sticker": null, "text": "Hi guys am new", "from_id": "34431b22f3ade5f0a2ce8e59140f204a8df370596388e2ab27b88efb49786375", "reply_to": null, "datetime": "2024-12-09T10:59:42+00:00" }, { "message_id": "0188e8800c3170afd721c50d333cb3a6bd589813673ebc195d79fa4da58e5d00", "sticker": null, "text": "Good to you", "from_id": "2ab643d656f82d23c84d7bde81557c3403da6f115f5369feaabb4732d13ad701", "reply_to": "b194638fae31b1a4a0e40d7d76a205c51e58606351f0dd4515f13c54b94b0735", "datetime": "2024-12-09T12:40:54+00:00" }, { "message_id": "8b654ff5378ca33048308f0e37fc209e533faff9f9cbb556ccec4a04ef88bafc", "sticker": null, "text": "Hello", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": null, "datetime": "2024-12-09T12:41:11+00:00" }, { "message_id": "a4de464bd0f881997c32bf853785104ec0dfbcf427f5bdd10d5d9e57f08bd77b", "sticker": null, "text": "Bri", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": null, "datetime": "2024-12-09T12:41:27+00:00" }, { "message_id": "8df0aae828963050885d94c3599b9e811fd76afceeda867a3a5273e2e7727e24", "sticker": null, "text": "Can someone tut Me", "from_id": "34431b22f3ade5f0a2ce8e59140f204a8df370596388e2ab27b88efb49786375", "reply_to": null, "datetime": "2024-12-09T12:45:42+00:00" }, { "message_id": "288e9967c89030fd76a5e69d096e288b6384e69f7a37ab7eb1cdc85805c78f53", "sticker": null, "text": "For what", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": null, "datetime": "2024-12-09T13:18:32+00:00" }, { "message_id": "e0cb8678e7e73462da4a639f2f5f40f4b6be9f4debbeea0f057ea6dc94683075", "sticker": null, "text": "What are you referring to?", "from_id": "892c7ee27b3d7b15d545a6b339480ac4c92e403d52d820a442ca0f31cacaddaf", "reply_to": "6712aa19194f2f43268dffd8bb45bd1f032eaa4b9a0ac4c92345b4a54bfce7cd", "datetime": "2024-12-10T06:01:03+00:00" }, { "message_id": "cb824de8a97aea4e7d62701205a855ba11250061e96e3687f30cf8863cb63f0c", "sticker": null, "text": "heyy everyone !", "from_id": "dde3cc53fcee35717c8f70a044ddac9678dd52c27d192fda1c9cfa4716475e33", "reply_to": null, "datetime": "2024-12-10T12:19:50+00:00" }, { "message_id": "7bd416dc3a9fdd09749afbc3aadc9bcf344439be825659eb6cd6c415a307c6fa", "sticker": null, "text": "is there anyone who can let me know the purpose of this group?", "from_id": "dde3cc53fcee35717c8f70a044ddac9678dd52c27d192fda1c9cfa4716475e33", "reply_to": null, "datetime": "2024-12-10T12:20:19+00:00" }, { "message_id": "277da9efb2e78aa1fbdb616267a58a913baf667b1c9f4df76b93b15890dbeee7", "sticker": null, "text": "Hi \nI want job support \n\nRequirement : 5 + power bi and 5+ ADF Experience guys required.", "from_id": "77c4aaa7cbb32bd12af15a79750277689d0d12fb47c77a40dbd58bb8b2d77090", "reply_to": null, "datetime": "2024-12-10T13:20:13+00:00" }, { "message_id": "5f221c03c6748674368c21b3000500478969cb22a4f78a07116587232f58ecd0", "sticker": null, "text": "Okk", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": null, "datetime": "2024-12-10T14:13:09+00:00" }, { "message_id": "5a53c72965fa46b44c4799cd8078bf808f8d05021442b82b0d2812432aee8469", "sticker": null, "text": "Thnx for suggesting me", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": null, "datetime": "2024-12-10T14:13:19+00:00" }, { "message_id": "42561dfbf9f0de934f1e2a060255f66cab2599062c3efadcc2fc2955e5f94bef", "sticker": null, "text": "Welcome bro ❤️", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": null, "datetime": "2024-12-10T14:13:28+00:00" }, { "message_id": "370dfe4f059cbeb66d176a345998545aa318097a3c8f15a25a4a7d31b2180c26", "sticker": null, "text": "Okk", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": null, "datetime": "2024-12-10T14:13:48+00:00" }, { "message_id": "b6f51c27857d2e7f6b5a570539fe5128b255a64f1ffb3b70717f5f717b2a37f9", "sticker": null, "text": "Bye 👋", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": null, "datetime": "2024-12-10T14:13:58+00:00" }, { "message_id": "8fa377eac22391d1f6c81bc06fce464e2a10bda687f141c73d912ac15523edb8", "sticker": null, "text": "By", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": null, "datetime": "2024-12-10T14:14:53+00:00" }, { "message_id": "36fc5ca5320e880b0d0f2166295b87f22db6b102bfa48a38b28ad0c0ba031c83", "sticker": null, "text": "@#USER @#USER English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2024-12-10T15:36:59+00:00" }, { "message_id": "21ccd45ba772dc0c31eec7812ca86c7df2ef5910a4edf1a07648c05bd98a5cfe", "sticker": null, "text": "Why", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": "36fc5ca5320e880b0d0f2166295b87f22db6b102bfa48a38b28ad0c0ba031c83", "datetime": "2024-12-10T15:37:28+00:00" }, { "message_id": "767ef0a17a2da43310563f524fb3b70a97c7eb7f6287db97ad98ee495d9e3eb9", "sticker": null, "text": "Group’s rule when you joined.", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": null, "datetime": "2024-12-10T15:38:01+00:00" }, { "message_id": "caebda1743da2a18601f0bd1845bc06a554da199ae5fe6866552a16567a418a5", "sticker": null, "text": "Where are the rules", "from_id": "acb3cfa68ceab79aecadeb968008ddf338ff2c6e3e625dfec14ecd579d4ceb71", "reply_to": null, "datetime": "2024-12-10T15:38:17+00:00" }, { "message_id": "b46b28896248d06a9cb8dcd87cf3cdbefba4fccdabf4e274051559688d2afbb7", "sticker": null, "text": "Read the description", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "21ccd45ba772dc0c31eec7812ca86c7df2ef5910a4edf1a07648c05bd98a5cfe", "datetime": "2024-12-10T15:38:18+00:00" }, { "message_id": "566f750ced3a1306b205be2cd8f0d7e5d85a2c0691351ac0f8431219d172301d", "sticker": null, "text": "Check the description", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "7bd416dc3a9fdd09749afbc3aadc9bcf344439be825659eb6cd6c415a307c6fa", "datetime": "2024-12-10T15:40:39+00:00" }, { "message_id": "fc70dd2d48bb687ea08b7d32a181d8f014162c4b47f0304123bed82e38952903", "sticker": null, "text": "Bro but I weak in english communication 😔", "from_id": "b551796e0910d51ebfeb79498b1077cb21b28c38b0d68d3b0c8ce5e3bace7887", "reply_to": "767ef0a17a2da43310563f524fb3b70a97c7eb7f6287db97ad98ee495d9e3eb9", "datetime": "2024-12-10T15:50:32+00:00" }, { "message_id": "ce26747899413c81d1f842915e5447f69a68ac6dfe480d579215948dc6340cc3", "sticker": null, "text": "You can chat with @#USER privately. Also try using the translate feature in this app", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "fc70dd2d48bb687ea08b7d32a181d8f014162c4b47f0304123bed82e38952903", "datetime": "2024-12-10T16:08:39+00:00" }, { "message_id": "e5db9e037a8d8ceacb7736c9d8e9b96e90bcf82784ceb621f856d39f7dcae735", "sticker": null, "text": "Hii bro", "from_id": "062761a5511cfdd0d48b21a34c33b6c1e25dabf27666610fa1e081ce50c7e4a0", "reply_to": "fc70dd2d48bb687ea08b7d32a181d8f014162c4b47f0304123bed82e38952903", "datetime": "2024-12-10T17:03:19+00:00" }, { "message_id": "2152de7eb808ca6de9d93e19df5795926f5684968422cd817709d3522e6274db", "sticker": null, "text": "Anyone here who want to improve their English speaking. We can practice atleast 10 to 30 minutes a day ?", "from_id": "062761a5511cfdd0d48b21a34c33b6c1e25dabf27666610fa1e081ce50c7e4a0", "reply_to": null, "datetime": "2024-12-10T17:04:05+00:00" }, { "message_id": "b3952ae3cbf2cb0a2121b46224b245135b59ace82e1e3697f5d7bc61fea508dd", "sticker": null, "text": "I am", "from_id": "015da51acd28ee3938294dc385b2b0d6c6125f3ee8181eff2bd1b2d9d9d1ca02", "reply_to": "2152de7eb808ca6de9d93e19df5795926f5684968422cd817709d3522e6274db", "datetime": "2024-12-11T00:58:33+00:00" }, { "message_id": "4cce643c95f8f8759167f97e8ed860371c16c4919370510f0c5df7522d715090", "sticker": null, "text": "I am also..can u say how can I learn english zero to hero ? I don't know where to start ..can anyone say steps wise how can I learn english?", "from_id": "53ac8021e53636b6d620044eca7facd20348e74c5f61fd0ad14916413e8202af", "reply_to": "2152de7eb808ca6de9d93e19df5795926f5684968422cd817709d3522e6274db", "datetime": "2024-12-11T19:38:52+00:00" }, { "message_id": "84182c82a1027b85b1dac4e347c2580fdb5cf47ec9202a892ed6443e0d1f2772", "sticker": null, "text": "Hello, I have a project to do.\nMy IT teacher asked me to make a UI where people log in, or register for a site. He also asked me to make it so that they can log in with the same information as they registered. If they haven't registered, a pop up screen will be shown saying try again. I know everything I will need, but I don't know how to use them. I have set up a JFrame for the project.", "from_id": "6bcb2d2231ace822b20fd87131229c30ac6d1a55fc9fb8c6266ff11ca0ef7617", "reply_to": null, "datetime": "2024-12-12T12:52:43+00:00" }, { "message_id": "1b59720bd04b35247ebd1a08ae417b658d13f6facc3571b5ea3f0c6f8d9fd621", "sticker": null, "text": "It's totally depends on yours practice and learning new things daily", "from_id": "062761a5511cfdd0d48b21a34c33b6c1e25dabf27666610fa1e081ce50c7e4a0", "reply_to": "4cce643c95f8f8759167f97e8ed860371c16c4919370510f0c5df7522d715090", "datetime": "2024-12-12T14:42:36+00:00" }, { "message_id": "a57efac077dde1c44b4ca875f2f1810ae48328e3ccd9d00db1b2745cb0b98f70", "sticker": null, "text": "This is the only way to speak properly there is no other shortcuts or nothing", "from_id": "062761a5511cfdd0d48b21a34c33b6c1e25dabf27666610fa1e081ce50c7e4a0", "reply_to": "4cce643c95f8f8759167f97e8ed860371c16c4919370510f0c5df7522d715090", "datetime": "2024-12-12T14:43:13+00:00" }, { "message_id": "c1c219b9517df388b00b801cf74b9f2589e68e08014c12358f41cebe4752636c", "sticker": null, "text": "How can I practice? Can you help me to practice", "from_id": "53ac8021e53636b6d620044eca7facd20348e74c5f61fd0ad14916413e8202af", "reply_to": "1b59720bd04b35247ebd1a08ae417b658d13f6facc3571b5ea3f0c6f8d9fd621", "datetime": "2024-12-12T20:44:25+00:00" }, { "message_id": "4b6066cf54e1779ce4e61f40b7e95956701af282c1a868167037a217397934a0", "sticker": null, "text": "Why would we be a full-end developer?", "from_id": "c7aa6e6d7da1db85d83d2e77918a69a4bc94bdee7ffae16b5b2c688df5ba1884", "reply_to": null, "datetime": "2024-12-13T11:17:52+00:00" }, { "message_id": "8c9ffbd6a220ce9b3850e131a903e676149cc3ebd233ff9d2731d3c91e7c5fd0", "sticker": null, "text": "Back-end is very difficult.", "from_id": "c7aa6e6d7da1db85d83d2e77918a69a4bc94bdee7ffae16b5b2c688df5ba1884", "reply_to": null, "datetime": "2024-12-13T11:20:11+00:00" }, { "message_id": "30af60be6e0f068c103d19d3ee83ed54269cb0a112e719c91a42e0a1511f4038", "sticker": null, "text": "I can agree from experience", "from_id": "cfbe8b494e5a60570f81cadf2f2ef79dad8944d4260c0d1c66d49ddd98e7a9c8", "reply_to": "8c9ffbd6a220ce9b3850e131a903e676149cc3ebd233ff9d2731d3c91e7c5fd0", "datetime": "2024-12-13T21:19:32+00:00" }, { "message_id": "2a28665ce3cc8e89bd91233c5e838c6ff4ffdaa559a8af9b86b632f25cd00db8", "sticker": null, "text": "Hello \nI'm new here and learning Java is there anyone who can assist me with notes and videos on it pls", "from_id": "e4d09d4d0d996d50cb22a1ae5623d6d22ec485885b5a033b4e7c59601938ebd1", "reply_to": null, "datetime": "2024-12-14T14:42:43+00:00" }, { "message_id": "c4448cf0677bc81c16b78423b24875b390636cf5ebcde81d7eaf35b442e9dbde", "sticker": null, "text": "Check out Telusko on YouTube", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": "2a28665ce3cc8e89bd91233c5e838c6ff4ffdaa559a8af9b86b632f25cd00db8", "datetime": "2024-12-14T14:49:05+00:00" }, { "message_id": "bdf8839fe4e264d1094216ecb5ab3ad09405ffffccff63af2ef40e20ff299ce1", "sticker": null, "text": "When you get the fundamentals, move to Chad Darby on Udemy, his learn java with spring boot course. When done you can be confident building full fledged java apps", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-12-14T14:50:07+00:00" }, { "message_id": "aa780ff31aca28c8f4ae0720c1b15df77c64d5687af2985236cb52318022a302", "sticker": null, "text": "What are good books about the software designing and the solution of the software development?", "from_id": "c7aa6e6d7da1db85d83d2e77918a69a4bc94bdee7ffae16b5b2c688df5ba1884", "reply_to": null, "datetime": "2024-12-15T03:44:49+00:00" }, { "message_id": "39637c790f21c19019a1ffee9d6a6f80c214a99ae90395b0b3e566cf12eb8793", "sticker": null, "text": "What are you recommended?", "from_id": "c7aa6e6d7da1db85d83d2e77918a69a4bc94bdee7ffae16b5b2c688df5ba1884", "reply_to": null, "datetime": "2024-12-15T03:45:56+00:00" }, { "message_id": "b5e8af2d80a4f645a9ef19eec67309f4e280e8064b40c0f9d8033e193aaf4aa1", "sticker": null, "text": "Design data intencive applications and domain driven design", "from_id": "345777a815185738eac07be78937acd5710041ca8b32522224922aa2f8e58060", "reply_to": "aa780ff31aca28c8f4ae0720c1b15df77c64d5687af2985236cb52318022a302", "datetime": "2024-12-15T04:25:13+00:00" }, { "message_id": "00050a199532994483f7714b3d77232b11441f7128e889965487d2f8e8f1ab2f", "sticker": null, "text": "DDD is too old. I want what are published after 2015.", "from_id": "c7aa6e6d7da1db85d83d2e77918a69a4bc94bdee7ffae16b5b2c688df5ba1884", "reply_to": "b5e8af2d80a4f645a9ef19eec67309f4e280e8064b40c0f9d8033e193aaf4aa1", "datetime": "2024-12-15T05:00:41+00:00" }, { "message_id": "de22fdf2565fea59d6ee1a68d053569d1841af5f61b3bc3d6c9a79c7d90b7f13", "sticker": null, "text": "Thanks you for DDIA that is great.", "from_id": "c7aa6e6d7da1db85d83d2e77918a69a4bc94bdee7ffae16b5b2c688df5ba1884", "reply_to": "b5e8af2d80a4f645a9ef19eec67309f4e280e8064b40c0f9d8033e193aaf4aa1", "datetime": "2024-12-15T05:08:18+00:00" }, { "message_id": "19f1669307d35b87c0f700a323e63f997e6d970ee4bf83c3d0c8e83b35d71d7f", "sticker": null, "text": "Looking for freelancing opportunity...I'm a full stack app developer also works on web MERN... please let me know if there is any project available", "from_id": "008fc8f376f2ea271a108e9d060a6288cd41379885be092d491a24df602f1572", "reply_to": null, "datetime": "2024-12-15T13:41:36+00:00" }, { "message_id": "c32ffdbd4b6fb3fec6c7445866cd7d3f571bed05fde4418316d402afca99a994", "sticker": null, "text": "Am new here and I want to learn programming", "from_id": "6a177a311807fa920bc614bc2b3001ef64a5db7e636ed8085a876902bd1ce31c", "reply_to": null, "datetime": "2024-12-15T20:43:06+00:00" }, { "message_id": "6c369ab7193a8fb13a7f6d53ece49acbea656f6120f2a1afa3f2c330568e8574", "sticker": null, "text": "What background do you have?", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-12-15T21:37:23+00:00" }, { "message_id": "2bbbf8f47206b16e2860b7fba46b67998ffcfcf68781055adbb65aca735c505f", "sticker": null, "text": "Am beginner in Java", "from_id": "6a177a311807fa920bc614bc2b3001ef64a5db7e636ed8085a876902bd1ce31c", "reply_to": null, "datetime": "2024-12-16T04:50:50+00:00" }, { "message_id": "5ebe78176209a7d054dc592b66a98e1a57ec80d377a65dcc88ed19399961b8f8", "sticker": null, "text": "Hi All\n\nMy name is Ritesh Kumar Sharma, working as a full stack Java developer from the last 3 years in Hexaware technology. \n\nSkills: Java , Microservice, docker, RabbitMQ , javascript and all other tools.\n\nNotice period: 60 Days \n\nLooking for a job change, please support if you have any referral or opening.", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": null, "datetime": "2024-12-16T05:08:18+00:00" }, { "message_id": "97bee4085350f5e96d3ca60ceaeebd52bf8ece3c2e9f0d5eb71cab4ec0cd307a", "sticker": null, "text": "DM me I can refer", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "5ebe78176209a7d054dc592b66a98e1a57ec80d377a65dcc88ed19399961b8f8", "datetime": "2024-12-16T08:46:52+00:00" }, { "message_id": "045a57040101a8ddeeab793b9c9740fb0aa32ea170adb524769826f302c75feb", "sticker": null, "text": "Can I learn coding", "from_id": "ee083468a0ed3358f2da55cb12a24511c0f1aa1da82f838215aa83b12f6dc839", "reply_to": null, "datetime": "2024-12-16T20:44:07+00:00" }, { "message_id": "fb3ea017fbe53b0f91c08905c11f1bd3529f616ca22627991168d4bcc8a349d7", "sticker": null, "text": "Many courses on YouTube.", "from_id": "6758fb722e9a9002b751bf68ddb79ed5c4654da57ac22a458ce5d9c007fc2723", "reply_to": "045a57040101a8ddeeab793b9c9740fb0aa32ea170adb524769826f302c75feb", "datetime": "2024-12-17T02:12:21+00:00" }, { "message_id": "1fea7e20eb77d9e04896ff6285157ba27a0c5595f985b40584535eb3c343a8a7", "sticker": null, "text": "Code with Harry is best for web development", "from_id": "90103a8548d53e06a6225877d032a787ec63ddea1fe79005ee7efef0686408ac", "reply_to": null, "datetime": "2024-12-17T04:07:35+00:00" }, { "message_id": "ef4bda380c29100d353dc2c7906217844a4e6b247ed25e2ae4d8b0cd1e99032e", "sticker": null, "text": "Location?", "from_id": "2e7f4b7e1efd650421e4957fc2359e4e519e16682702d1e53da28c3e252bdaa8", "reply_to": "5ebe78176209a7d054dc592b66a98e1a57ec80d377a65dcc88ed19399961b8f8", "datetime": "2024-12-17T04:13:07+00:00" }, { "message_id": "2af3c16ab1729c31e349654ebd1e694e0bd20022227f3ac2dc80145756bac2e4", "sticker": null, "text": "Hi #USER_ID \n\nDelhi,gurugram, Noida", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": null, "datetime": "2024-12-17T06:35:46+00:00" }, { "message_id": "7cb08c582605b64b058bdef4a50ba3e15d99b47bf9fd68278dfa3f5b978258ac", "sticker": null, "text": "DM me your resume", "from_id": "2e7f4b7e1efd650421e4957fc2359e4e519e16682702d1e53da28c3e252bdaa8", "reply_to": "2af3c16ab1729c31e349654ebd1e694e0bd20022227f3ac2dc80145756bac2e4", "datetime": "2024-12-17T11:44:34+00:00" }, { "message_id": "74119d51beb45a9f05d8401f5f56d30fd6a2e20583fbdbe33337665acd37ae0d", "sticker": null, "text": "me", "from_id": "82da4a433c662abb8736e09829f8f7006958d766107cd94c522dd6f3cf5e4385", "reply_to": "2152de7eb808ca6de9d93e19df5795926f5684968422cd817709d3522e6274db", "datetime": "2024-12-20T07:32:14+00:00" }, { "message_id": "83a19f3ba598d9bd92c2cc4a861f74e448fea8e2d705e483aeafaebb2da2177b", "sticker": null, "text": "Your thought is nice \nIf you can, please create a group to develop a well English spoken community", "from_id": "dddeb5dab5ffbae83c4b991eb8e2a7840c39748208f1e1ade2778177eb91c734", "reply_to": "2152de7eb808ca6de9d93e19df5795926f5684968422cd817709d3522e6274db", "datetime": "2024-12-20T15:38:07+00:00" }, { "message_id": "109128a17257f32eb8467628cd86c60d856249735af546087411636d6145e1b9", "sticker": null, "text": "PeLiGrO is a Spanish word", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-12-21T18:43:55+00:00" }, { "message_id": "17582af16b1b8e95afbcf1a264d11ddab9e3ad9db212f9da2caa21dacb88e1c5", "sticker": null, "text": "If you are curious, look for its translation", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": null, "datetime": "2024-12-21T18:44:53+00:00" }, { "message_id": "848bcd51c5ce09defb520f1476b6facc4ed0a506c885697d25a745497d4394b9", "sticker": null, "text": "All this is a java group. Please refrain yourself from posting useless stuff thats not related to Java please🙏🙏", "from_id": "b6f753793f7e95624b646a2de341e2c620f8b6daeb9c3de3ce95d9d620990266", "reply_to": null, "datetime": "2024-12-22T05:29:59+00:00" }, { "message_id": "772d3b0c4ea1dfa712806f39d35f63a79c60bbba64be16b5fb1f2772a7440499", "sticker": null, "text": "Hey guys, I'm kinda new and learning java, was wondering is it possible to make runnable jar to run with double click newdays? I remember it was quite simple in the past", "from_id": "6b022e0adddb20ba0428f03f01e156da040b8abde7f808ce8feb5ecf9e90a202", "reply_to": null, "datetime": "2024-12-22T17:35:58+00:00" }, { "message_id": "bddd70183e0b3e85c784daf00ed23265cfbe1168a48cd61f5a96cf54df0073e5", "sticker": null, "text": "In the past you had to enable show console in java control panel in order to see the console, but since control panel is removed from java 11, it doesn't seem to work with some tweaks and workarounds", "from_id": "6b022e0adddb20ba0428f03f01e156da040b8abde7f808ce8feb5ecf9e90a202", "reply_to": null, "datetime": "2024-12-22T17:38:08+00:00" }, { "message_id": "cab044b89014e14e7656cb335dbff68e8cf2d8b236c37fb3504ee892915df528", "sticker": null, "text": "As it is the name of a user, I thought it was suitable, sorry", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": "848bcd51c5ce09defb520f1476b6facc4ed0a506c885697d25a745497d4394b9", "datetime": "2024-12-22T18:30:42+00:00" }, { "message_id": "e7c77fbbc838966709770e2678082b0b51dd23769b5c52e43a90c76f71d21c37", "sticker": null, "text": "You can start by programming applications increassing its difficulty\n\n- A command line one\n- A gui one\n- A web service, with an api rest\n- for instance, you can also create one or several common libraries to be used by your applications\n\nYou can use Intellij community edition\nAnd maven or gradle\n\nTry to state your goals, and go ahead\n\nSend me a private message if you feel like to", "from_id": "ea8735e0e60c47ce168c9f2516253bb62bc02878957661411d95cb0e37e221da", "reply_to": "2bbbf8f47206b16e2860b7fba46b67998ffcfcf68781055adbb65aca735c505f", "datetime": "2024-12-22T18:41:34+00:00" }, { "message_id": "a940be015dafc921c4b057992c4c7af4ef896c30c84172a1992be75f3456150f", "sticker": null, "text": "For example first application:do hangman game where you need guess words,you will have some limit of words and you can wrong,also words that you need guess will be random.One random words will be taken from file .In one file for ex 1000 words.When you will begin game you should see already one open letter.If user wrote 2 the same wrong letter you should not count it like mistakes.Also every next wrong letter will be present on console like in man appear some new peace of picture.For ex:for begin it hand,second hand,head,body and so on.If user for ex do 5 mistake game lose.And you can start again and watch statistic", "from_id": "ebb122974f0cc18950b3e14e357114c1bb966403fd6fbe468e989cfc3d555d71", "reply_to": "2bbbf8f47206b16e2860b7fba46b67998ffcfcf68781055adbb65aca735c505f", "datetime": "2024-12-24T04:17:46+00:00" }, { "message_id": "54b387af57069c2314ebadf5101684c519351a692638669abd4e9c5c89ad77f6", "sticker": null, "text": "If explain unclear,sorry", "from_id": "ebb122974f0cc18950b3e14e357114c1bb966403fd6fbe468e989cfc3d555d71", "reply_to": null, "datetime": "2024-12-24T04:18:29+00:00" }, { "message_id": "408b9610b48235a86787bbefb1e2d3143e16d31c6192bbb8cf117fe0fedce71a", "sticker": null, "text": "Anybody know some another groups about Java,where are more activity ? If yes,give me link please ☺️", "from_id": "ebb122974f0cc18950b3e14e357114c1bb966403fd6fbe468e989cfc3d555d71", "reply_to": null, "datetime": "2024-12-24T04:42:44+00:00" }, { "message_id": "cf0c5a6849f2e9b1048ec856b5c861f9ec009c5b86749fbc9b95b20d6f03bcd7", "sticker": null, "text": "Hi this is Ritesh, I have 3 years of experience in Java going to change The job, Can any one help me with DSA questions or material.... According to 3 years of experience.", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": null, "datetime": "2024-12-24T10:23:55+00:00" }, { "message_id": "d45681fba8419c17621971d605f38fdc498ebcd111ba1cbfa573273109281d10", "sticker": null, "text": "U-Sticker detects a link.", "from_id": "8b221a07adfebbfcb166339e31c324e7b38392c9ad5d3a624be91f706d445835", "reply_to": "cf0c5a6849f2e9b1048ec856b5c861f9ec009c5b86749fbc9b95b20d6f03bcd7", "datetime": "2024-12-24T12:29:19+00:00" }, { "message_id": "9c662bfe60a234da0e05636fa7cd89af0081d91fb4fd9a5b013dc814fcc84da0", "sticker": null, "text": "Hi Alen ,\nThank you", "from_id": "ca357d691d9141e5537c3b5ed7b6e0ce70cd4751c34b5afa6b3a8a9398a97570", "reply_to": "d45681fba8419c17621971d605f38fdc498ebcd111ba1cbfa573273109281d10", "datetime": "2024-12-24T14:57:34+00:00" }, { "message_id": "56fb4ec2c53738466d7f33107914ae811c36956a4e657227d6d1d2f6843b191c", "sticker": null, "text": "Try backdoor", "from_id": "699470ef3880c4374a15cbd75502812b0cc0e2585b8494bbd835eb97421bb2e0", "reply_to": "cf0c5a6849f2e9b1048ec856b5c861f9ec009c5b86749fbc9b95b20d6f03bcd7", "datetime": "2024-12-25T06:04:51+00:00" }, { "message_id": "4746a6b4f85318042d3c87ff7c69da02453ddea300dec7af9c64b5bacbdb1317", "sticker": null, "text": "Study material of core Java", "from_id": "b572bf6ec32aac45f44b1276dba6b3d53142c192ab9cc854dcf4a3b5172d4337", "reply_to": null, "datetime": "2024-12-25T15:47:20+00:00" }, { "message_id": "24f3d13d29f54104437cde0cf34c1f7ed41d6e873256e122ddf6d33eddf37541", "sticker": null, "text": "Hii", "from_id": "77bfc46bcec6f7b027ebabeb2dcced29c94496cb8b34efcfad4bc6594f2aaf83", "reply_to": null, "datetime": "2024-12-25T19:40:25+00:00" }, { "message_id": "131319a25357c4033c80606eaccae446bb5061dde8e10c0386c2d837ce5f5cc2", "sticker": null, "text": "Hello Guys", "from_id": "bdcd28655c8a57a4b44def039121ce4df668d265ead25dd3862547b2e5fbe287", "reply_to": null, "datetime": "2024-12-26T17:00:46+00:00" }, { "message_id": "162b17344479866c2069980471d7684d612588e0fb5e93da834ee5a7de3fc29a", "sticker": null, "text": "I have I will help", "from_id": "bdcd28655c8a57a4b44def039121ce4df668d265ead25dd3862547b2e5fbe287", "reply_to": "4746a6b4f85318042d3c87ff7c69da02453ddea300dec7af9c64b5bacbdb1317", "datetime": "2024-12-26T17:01:01+00:00" }, { "message_id": "2aa71708ce990a196865f8431185d016964d0423adf5bbaaf1fe1c2cadedbdf0", "sticker": null, "text": "Dm", "from_id": "bdcd28655c8a57a4b44def039121ce4df668d265ead25dd3862547b2e5fbe287", "reply_to": null, "datetime": "2024-12-26T17:01:12+00:00" }, { "message_id": "2533448e687eed5d55226f5e0528eaea0c65a353cd171dd82dbccabbb67a7fa6", "sticker": null, "text": "Heyy", "from_id": "2e04a245d939c0d21274a9fa0d6fb7aabf2185ceb9a189364fdb46c43889d39b", "reply_to": null, "datetime": "2024-12-26T19:12:54+00:00" }, { "message_id": "1b1525461e674a92c1b8c5ad886922ab9b4fa92d2ab1e335c66b54898fd810b2", "sticker": null, "text": "Hy", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "2533448e687eed5d55226f5e0528eaea0c65a353cd171dd82dbccabbb67a7fa6", "datetime": "2024-12-27T00:49:45+00:00" }, { "message_id": "201fe89a5d236b823ab9eb60d5c20d0fab0e27d3175b7e1819d57edd6857eb20", "sticker": null, "text": "How are you", "from_id": "2e04a245d939c0d21274a9fa0d6fb7aabf2185ceb9a189364fdb46c43889d39b", "reply_to": null, "datetime": "2024-12-27T03:37:40+00:00" }, { "message_id": "185c60e8defc1e2e12744a0234ba9864a23e8afa572ad58d56bdcd2edb316e37", "sticker": null, "text": "Guy i need support of all of you", "from_id": "2e04a245d939c0d21274a9fa0d6fb7aabf2185ceb9a189364fdb46c43889d39b", "reply_to": null, "datetime": "2024-12-27T06:51:25+00:00" }, { "message_id": "176eea4448bcdddd647d5f2944e6ae12578cabeea34c9a07bbaf080646b26286", "sticker": null, "text": "Hy guyz i need support of you guyz please", "from_id": "2e04a245d939c0d21274a9fa0d6fb7aabf2185ceb9a189364fdb46c43889d39b", "reply_to": null, "datetime": "2024-12-27T06:55:41+00:00" }, { "message_id": "d14c17b3ae603e67139e2ddda15160a58cf07e7e0182469c52012af3c3def484", "sticker": null, "text": "What ?", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": null, "datetime": "2024-12-27T08:45:42+00:00" }, { "message_id": "6fcefd3a6d50e1dbd7a5d46f63df4d8d0e553156999b92d97864bf004e76b2bd", "sticker": null, "text": "Hi can you dm me", "from_id": "c975bbaf030c9982b9e132b6a0a2935d0a190bf519a18be52c41aa5730f50aa4", "reply_to": "2aa71708ce990a196865f8431185d016964d0423adf5bbaaf1fe1c2cadedbdf0", "datetime": "2024-12-27T09:38:42+00:00" }, { "message_id": "5b1cb705808b2b5bfc747779226954633f9625198171137c1d647f63c713db85", "sticker": null, "text": "Hii", "from_id": "4a99e4cd24e1aa373c45b2c6f68decd85c0e9131ead09cae6bdb96deb340baf5", "reply_to": "2533448e687eed5d55226f5e0528eaea0c65a353cd171dd82dbccabbb67a7fa6", "datetime": "2024-12-27T10:05:46+00:00" }, { "message_id": "4bb70cf78e35ef0f08b72148cf4a0d7b499d630bdaee4bbdf16d844a4c9beab8", "sticker": null, "text": "Who is very good with PowerShell Script Automation her please?", "from_id": "8b76bc113c38c87c19939cdb386aed38c1e12a7f5b7f7dbf8f60043f376480c2", "reply_to": null, "datetime": "2024-12-27T13:40:47+00:00" }, { "message_id": "134e076cb7c878ebf03fa12e6110664ea71ceb884a9a7d44a565c88010c60a45", "sticker": null, "text": "hello?", "from_id": "0ea511b71e8cad06e0ba8bcdcba0601d9fe635dbf263befe4460dad07e31df34", "reply_to": null, "datetime": "2024-12-28T15:40:31+00:00" }, { "message_id": "f486c9fbafd72abff109d4539915b16e2842585b8abbf33250a6ecf8d8bc10e0", "sticker": null, "text": "word", "from_id": "9a6a501bae70aab9cfdc8ffd3f60b2cae1cb26f8219dfb9823c90402073d24fe", "reply_to": null, "datetime": "2024-12-28T15:42:02+00:00" }, { "message_id": "411aa4dec3bcb747f9315e1f799592becf9278bc1793303d8562f13f8dd04da9", "sticker": null, "text": "Hi", "from_id": "b634cdabb6347d4fb770c31ae5bc87b2f837deb4a1edb277b524274b21d7bd9d", "reply_to": null, "datetime": "2024-12-29T05:49:28+00:00" }, { "message_id": "17e7147e76811d0c44b8ded6ad76c278ae03d2206043ef03839bbc31507acd83", "sticker": null, "text": "Hi", "from_id": "cd52701755755e8ed6a73f8a28d0c3424ddc13ceb8aa93f101f202cba38e7987", "reply_to": null, "datetime": "2024-12-29T15:08:18+00:00" }, { "message_id": "2d89a22f73dbfc3d9969a482b76e3327da6bc3c7b75e6c2cf83c6de451db9600", "sticker": null, "text": "Hii anyone' help me in Java multi threading concept", "from_id": "2a0a3fa0b873c017a724ac77622a3645c7bda2984e854ae622437c99fa6dad1f", "reply_to": null, "datetime": "2024-12-29T16:57:51+00:00" }, { "message_id": "617e8ecdc2f878444fab2cabf56a2baa3dfb2ffd9af7458650b42fbbf85a3ca0", "sticker": null, "text": "??", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": "2d89a22f73dbfc3d9969a482b76e3327da6bc3c7b75e6c2cf83c6de451db9600", "datetime": "2024-12-29T17:10:48+00:00" }, { "message_id": "e9503ab2180f4b01399da7690c27f6445cb6936aa94e340db8044530830152dd", "sticker": null, "text": "Hello guys", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2024-12-29T19:08:52+00:00" }, { "message_id": "32eeb508ef410f8bff6bb280c3195cd69ed7a83eae60e563f8195db1156e45e5", "sticker": null, "text": "What's up", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2024-12-29T19:09:03+00:00" }, { "message_id": "8aa315e38970fd316f6a5d2079072d65a3ad4f0a4b2162235973bb1dc8acaf66", "sticker": null, "text": "Somebody have any project or ui designing task can dm me", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2024-12-29T19:10:02+00:00" }, { "message_id": "ebd4240587235a007b06afc21cef7385299c5744dd481ed9c6ca19e673862fc9", "sticker": null, "text": "I have many ready made ready to publish apps and websites", "from_id": "bd89c44ef7b9c0d6a0ba26888ad02abbcb3e2958bba02956900c1ee7c424307c", "reply_to": null, "datetime": "2024-12-29T19:11:50+00:00" }, { "message_id": "5f6883d26a6c156119807f8d13cfe4dd43b81fdd496eaccc1c1035b8c4fe7783", "sticker": null, "text": "What", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2024-12-29T19:12:14+00:00" }, { "message_id": "b0310923529b637f5543bc013d028906eb22dabc6691dc90fa742f66fc39ba18", "sticker": null, "text": "I mean I have source codes", "from_id": "bd89c44ef7b9c0d6a0ba26888ad02abbcb3e2958bba02956900c1ee7c424307c", "reply_to": null, "datetime": "2024-12-29T19:12:46+00:00" }, { "message_id": "e8e82217261ae71d4341a26a9d5efe6f2ca3e71cae5ce6a87d827b348f55ba34", "sticker": null, "text": "30+ apps and website source codes I have", "from_id": "bd89c44ef7b9c0d6a0ba26888ad02abbcb3e2958bba02956900c1ee7c424307c", "reply_to": null, "datetime": "2024-12-29T19:14:05+00:00" }, { "message_id": "65307057da785e04acce7f4f3d2106351676493b890caed27b951f88f1579849", "sticker": null, "text": "With support", "from_id": "bd89c44ef7b9c0d6a0ba26888ad02abbcb3e2958bba02956900c1ee7c424307c", "reply_to": null, "datetime": "2024-12-29T19:14:34+00:00" }, { "message_id": "98c097ff2cd3807b73b105dffc5b70cfc87e65c012fd9a9316b84ce0f6e0b49f", "sticker": null, "text": "Ok", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2024-12-29T19:16:02+00:00" }, { "message_id": "f0940dbe322d859540d9746df80a6a71c3f74477de414c1bb8b35a12b465c090", "sticker": null, "text": "I'm a designer", "from_id": "55b33db59f3ae07a62a45233acc52a19c2fba1eeb9101cb3985b1becb147c35f", "reply_to": null, "datetime": "2024-12-29T19:16:13+00:00" }, { "message_id": "0adefd924b125af20eb5b1fe84653339674c6a94e6098ed8af73e19ccd247b50", "sticker": null, "text": "Webapps?", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "e8e82217261ae71d4341a26a9d5efe6f2ca3e71cae5ce6a87d827b348f55ba34", "datetime": "2024-12-30T02:18:04+00:00" }, { "message_id": "dbc8ad154d9cbbc0586080c939d2190537c2df062f0927330851ebb94ba17394", "sticker": null, "text": "hi everyone. i had doubts about real database squemas for a servlet webapp. before installing apps locally to see their databases i have found a web resource with real examples", "from_id": "e621541926d1b416b8bfd9b97c6e33cae8b478a57dc1400f75645b2014819ec9", "reply_to": null, "datetime": "2024-12-30T22:38:12+00:00" }, { "message_id": "46ccfaf9860aec55424c8282a5166300c3a4a38c6655357899ea3e87361e3e5e", "sticker": null, "text": "dbdiagrams dot com", "from_id": "e621541926d1b416b8bfd9b97c6e33cae8b478a57dc1400f75645b2014819ec9", "reply_to": null, "datetime": "2024-12-30T22:38:53+00:00" }, { "message_id": "748805059e1e7da756e412902e5fd433820adc1cd77742125503373dff461dd2", "sticker": null, "text": "i put it here for anyone in my situation", "from_id": "e621541926d1b416b8bfd9b97c6e33cae8b478a57dc1400f75645b2014819ec9", "reply_to": null, "datetime": "2024-12-30T22:39:26+00:00" }, { "message_id": "64dfe03da01ee9c13dff60740d3fe93caa70b324b833400b1eab4f99f41d3c6e", "sticker": null, "text": "(learning webapps with servlets and databases)", "from_id": "e621541926d1b416b8bfd9b97c6e33cae8b478a57dc1400f75645b2014819ec9", "reply_to": null, "datetime": "2024-12-30T22:41:18+00:00" }, { "message_id": "69f919c25af2361a1e0340530cdb7575e4e8f7a008bd81d8e6bd077e0bd35722", "sticker": null, "text": "Yes", "from_id": "bd89c44ef7b9c0d6a0ba26888ad02abbcb3e2958bba02956900c1ee7c424307c", "reply_to": "0adefd924b125af20eb5b1fe84653339674c6a94e6098ed8af73e19ccd247b50", "datetime": "2024-12-31T09:12:51+00:00" }, { "message_id": "4d95accd49bfff9efefb774d290b6faf6c7a4beb606378a8e4d1ddecd932bec0", "sticker": null, "text": "springboot devs ?", "from_id": "1328c1d8dd2291417efc837b6c263255e0f295eaf0371d8321613580ab8b8750", "reply_to": null, "datetime": "2024-12-31T09:55:11+00:00" }, { "message_id": "88c3ea6f60aa366642e0a9c75c20bf5245218e300b10571e9ffb5c08df424d44", "sticker": null, "text": "I am", "from_id": "bd89c44ef7b9c0d6a0ba26888ad02abbcb3e2958bba02956900c1ee7c424307c", "reply_to": "4d95accd49bfff9efefb774d290b6faf6c7a4beb606378a8e4d1ddecd932bec0", "datetime": "2024-12-31T10:56:55+00:00" }, { "message_id": "fc380e29fefaae10d7cc640a0b8c9501c093b7b76673500de34621c84d9baea6", "sticker": null, "text": "Iam", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "4d95accd49bfff9efefb774d290b6faf6c7a4beb606378a8e4d1ddecd932bec0", "datetime": "2024-12-31T18:02:55+00:00" }, { "message_id": "e1efbbded2f79fdde16c6cffaaefda00687dd82fd150b59d77ab5db0dd99b89d", "sticker": null, "text": "Are these free?", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "69f919c25af2361a1e0340530cdb7575e4e8f7a008bd81d8e6bd077e0bd35722", "datetime": "2024-12-31T18:03:41+00:00" }, { "message_id": "5c5db4aaff22855338fbec461d3a5022dc8f4edef630cf0ae98e8cc5bf18118f", "sticker": null, "text": "Happy new year", "from_id": "2e04a245d939c0d21274a9fa0d6fb7aabf2185ceb9a189364fdb46c43889d39b", "reply_to": null, "datetime": "2024-12-31T18:59:08+00:00" }, { "message_id": "084cffbe23536b4ef69f282de63a7f27adca0f86415aa4eedc47b0ddb07b106a", "sticker": null, "text": "Happy new year", "from_id": "b634cdabb6347d4fb770c31ae5bc87b2f837deb4a1edb277b524274b21d7bd9d", "reply_to": null, "datetime": "2024-12-31T19:05:15+00:00" }, { "message_id": "9356c151333bf5d393d60cfeb1b840b1ba8938ff56e267542f08a3c749251e49", "sticker": null, "text": "Happy new year", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2024-12-31T19:47:12+00:00" }, { "message_id": "be54d6e73023582be606232452ca67f55d0e73405181b58877179285881bbae1", "sticker": null, "text": "Hey bro", "from_id": "1328c1d8dd2291417efc837b6c263255e0f295eaf0371d8321613580ab8b8750", "reply_to": "fc380e29fefaae10d7cc640a0b8c9501c093b7b76673500de34621c84d9baea6", "datetime": "2025-01-01T06:37:12+00:00" }, { "message_id": "2814a5c32a5d139d23522a5a5fb1409ffab37e47b652bee8b169bdcb880e986a", "sticker": null, "text": "Happy new year 😊", "from_id": "1ba790c943cf6368012b099de08f476a9c964367f4313b57f5280e72bc383999", "reply_to": null, "datetime": "2025-01-01T07:16:01+00:00" }, { "message_id": "9ea95477e7ed5c0aa01f21895056cd92a7b35d510f567434e5f724a434549634", "sticker": null, "text": "Thnxs and same to u", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "2814a5c32a5d139d23522a5a5fb1409ffab37e47b652bee8b169bdcb880e986a", "datetime": "2025-01-01T07:16:37+00:00" }, { "message_id": "af52e7616fdafaac4d3ec38a33e172431855adfd5a807e458f36d2b91b2ca89f", "sticker": null, "text": "Helo", "from_id": "4041c8e80ffec6fd07951c56e21cb155ee6db230d482759f894bc7add80647d7", "reply_to": null, "datetime": "2025-01-01T11:56:00+00:00" }, { "message_id": "5678a66b20544875449df60cab0dc50caf079dc9ed637d8fe166719f6716e76b", "sticker": null, "text": "Anyone online?", "from_id": "4041c8e80ffec6fd07951c56e21cb155ee6db230d482759f894bc7add80647d7", "reply_to": null, "datetime": "2025-01-01T11:57:10+00:00" }, { "message_id": "7a49ecf05218e4d892d87232edc97ea15db784648921d6079c28659729368e5a", "sticker": null, "text": "3", "from_id": "4041c8e80ffec6fd07951c56e21cb155ee6db230d482759f894bc7add80647d7", "reply_to": null, "datetime": "2025-01-01T12:12:11+00:00" }, { "message_id": "87c73e9ca060dda545c5d4df9e548d1e204b29433426006c33c9bd1ed077ae03", "sticker": null, "text": "happy new year", "from_id": "8125a159736ea36ca71bac86d904f95a45139d59e77dd707f0ed19983f4bb263", "reply_to": null, "datetime": "2025-01-01T13:27:50+00:00" }, { "message_id": "2c92b2c59134d73cdadd332005c687c5b19129ad7d9046d45684c1596006618d", "sticker": null, "text": "Thanku", "from_id": "93a13624061d3488857650f9988b82d4331038060906e6eb2a970cbcb75baaed", "reply_to": "2814a5c32a5d139d23522a5a5fb1409ffab37e47b652bee8b169bdcb880e986a", "datetime": "2025-01-01T13:34:22+00:00" }, { "message_id": "9dde7e187fb5375e09bfec965fe0b8afa4a0a9ac59fdecc609fcb85e45a12ffe", "sticker": null, "text": "Which youtube channel is good for learning Java + DSA? Can you guys suggest it?", "from_id": "1ba790c943cf6368012b099de08f476a9c964367f4313b57f5280e72bc383999", "reply_to": null, "datetime": "2025-01-01T15:03:56+00:00" }, { "message_id": "7079bc19da536904660e1ea8f569d4aec77df3ed38c3e73564cf18145454cb05", "sticker": null, "text": "Plz chk out Pepcoding channel", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "9dde7e187fb5375e09bfec965fe0b8afa4a0a9ac59fdecc609fcb85e45a12ffe", "datetime": "2025-01-01T15:05:21+00:00" }, { "message_id": "80419f79478faaf61bdecee3c8ea7c63383bde83e404a3cc8ebf73c1843166ee", "sticker": null, "text": "Hi", "from_id": "a58066618fdfb6878f627994623a219f61d53cb6276f311e5ac07e8f4a5a8a5f", "reply_to": "be54d6e73023582be606232452ca67f55d0e73405181b58877179285881bbae1", "datetime": "2025-01-01T16:15:37+00:00" }, { "message_id": "6a241e7cd3efb03977dc8e947552aa55c82646f6f3ac9c918a91ca64cc9f6ac3", "sticker": null, "text": "Hi guys,\n\nI'm keeping all my interview notes in my channel daily. It's free for lifetime, so no one has to go through the same struggles. Join if you're preparing for interviews.\n\nThe channel will be in my profile", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": null, "datetime": "2025-01-03T02:40:35+00:00" }, { "message_id": "634b1ad969c602a0f61a6173d163737a6d5138825bd33fd3e4b93ea1399bf9c4", "sticker": null, "text": "Anybody well known to hacking telegram pine me please immediately it's urge", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2025-01-03T07:37:27+00:00" }, { "message_id": "e9cc6924d9d538316aa2da71216a64e4beee3ef9b07776407c27cc592e056d55", "sticker": null, "text": "Has anyone here given bel exam?", "from_id": "484a2df3500f10b5d8f669d037304a2ab826ec3558a22ab0e48dc2b5ed65b645", "reply_to": null, "datetime": "2025-01-03T13:45:25+00:00" }, { "message_id": "10bfccbee266757172f6ebf2f27ddaa90500df1ef1b01c136f190a31c1455a54", "sticker": null, "text": "Hello guyz", "from_id": "77bfc46bcec6f7b027ebabeb2dcced29c94496cb8b34efcfad4bc6594f2aaf83", "reply_to": null, "datetime": "2025-01-03T14:02:30+00:00" }, { "message_id": "d750dd721672b2f59bb22157403e020de1aded5d57749995516771b055c6f219", "sticker": null, "text": "Hey guyz", "from_id": "2e04a245d939c0d21274a9fa0d6fb7aabf2185ceb9a189364fdb46c43889d39b", "reply_to": null, "datetime": "2025-01-03T14:20:25+00:00" }, { "message_id": "abbc3f5743cbaafffb78e28d97807601cb2b94bad64064175f904cee489e895b", "sticker": null, "text": "Mean what?", "from_id": "cca7d82af86fb91e55aa4c71c52bf1d70a9653f7f4601e5fed6c050a63d3e83c", "reply_to": "634b1ad969c602a0f61a6173d163737a6d5138825bd33fd3e4b93ea1399bf9c4", "datetime": "2025-01-03T15:52:13+00:00" }, { "message_id": "faeb5f6b1a2af0c778bc005f3a0d09707b99245e74b5fe44e09516d888b6ca9c", "sticker": null, "text": "Someone is cheating on telegram", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2025-01-03T16:00:19+00:00" }, { "message_id": "b257a5be2f1edf6aa8dd055b8227663b63c9361edba015f5bf05c7ac9ec67d0d", "sticker": null, "text": "They cheating 30k", "from_id": "5e470c1bcf1f6b736362284d0296d8c2dc1d0036cfc9a519d495bbdb81d59c7f", "reply_to": null, "datetime": "2025-01-03T16:00:35+00:00" }, { "message_id": "78e85606b4b121dffe777e264380ec84b9ed73ebd5f718d40c23b76025e8d0c6", "sticker": null, "text": "They took your money?", "from_id": "cca7d82af86fb91e55aa4c71c52bf1d70a9653f7f4601e5fed6c050a63d3e83c", "reply_to": null, "datetime": "2025-01-03T16:44:58+00:00" }, { "message_id": "6e85eac558f5b8701f33341ad06e46e17ef2664c42affaa068c41d0506a0208a", "sticker": null, "text": "Why do you need anyways?", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "faeb5f6b1a2af0c778bc005f3a0d09707b99245e74b5fe44e09516d888b6ca9c", "datetime": "2025-01-03T19:08:54+00:00" }, { "message_id": "1c8a9912fb179df7cc176ace54eb7371edee4675472f0f26399c380c5f5245d8", "sticker": null, "text": "What is the output of the given code:\npublic class TrickyJava {\n public static void main(String[] args) {\n int x = 10;\n int y = 20;\n\n System.out.println(x++ + ++x + --y + y--);\n System.out.println(\"x: \" + x);\n System.out.println(\"y: \" + y);\n }\n}", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": null, "datetime": "2025-01-04T05:09:47+00:00" }, { "message_id": "0db8b266e670195baee8e1f240f5164df9afc363b8920e4053ff300346d94943", "sticker": null, "text": "63\n12\n22\n\n?", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": null, "datetime": "2025-01-04T06:20:23+00:00" }, { "message_id": "7aba8ed270625cc3af5c7706ea9a951a7b2e0b50f8c121075243e03418d1c92a", "sticker": null, "text": "Wrong", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "0db8b266e670195baee8e1f240f5164df9afc363b8920e4053ff300346d94943", "datetime": "2025-01-04T06:21:47+00:00" }, { "message_id": "de5652472c338c7c94b110839e565cdef42ad8ce88c9af56c8158d49873288e5", "sticker": null, "text": "My bad then it’s \n60\n12\n18", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": null, "datetime": "2025-01-04T06:22:18+00:00" }, { "message_id": "07bbe0892be7c3b590f007c4822b740426b413b8b9977cef8cd8a2e596e3ff0c", "sticker": null, "text": "Now it's correct", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "de5652472c338c7c94b110839e565cdef42ad8ce88c9af56c8158d49873288e5", "datetime": "2025-01-04T06:23:48+00:00" }, { "message_id": "d91fdfc730fd0378548166678ae40301e315da179ac33a7c623340f428b0590a", "sticker": "750766425144033288/750766425144033742.gif", "text": "", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": "07bbe0892be7c3b590f007c4822b740426b413b8b9977cef8cd8a2e596e3ff0c", "datetime": "2025-01-04T06:28:26+00:00" }, { "message_id": "29d37fcc0cf64171f715e6d958cb150e30482a60b0be6488020a9a02018d82f0", "sticker": null, "text": "Ye Google Kiya hoga 😂", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "de5652472c338c7c94b110839e565cdef42ad8ce88c9af56c8158d49873288e5", "datetime": "2025-01-04T06:29:10+00:00" }, { "message_id": "ac076fdb573c8eb81739d310d24d11dc5e2a026bcaba318ea9d7b8a9184a0d08", "sticker": null, "text": "No google it was a instant response when you said it was wrong, make up a question and ask me 😎", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": null, "datetime": "2025-01-04T06:30:01+00:00" }, { "message_id": "6d250a810541692a1a927a02b3f8a2aac0bae91ad269bafe90aed380b1dfad10", "sticker": null, "text": "Good 👍", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "ac076fdb573c8eb81739d310d24d11dc5e2a026bcaba318ea9d7b8a9184a0d08", "datetime": "2025-01-04T06:31:02+00:00" }, { "message_id": "14f06d069693ba80d3425295eea9694f2c90348f3302e1039ea9a9a7a34baf1e", "sticker": null, "text": "What’s your Java proficiency 🤔 let me ask you one", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": "6d250a810541692a1a927a02b3f8a2aac0bae91ad269bafe90aed380b1dfad10", "datetime": "2025-01-04T06:32:01+00:00" }, { "message_id": "7291d7eea733f8f27068955e34b79e7d440226afb46294b6c6801b17dabe4af2", "sticker": null, "text": "4+ java experience, master in core java", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "14f06d069693ba80d3425295eea9694f2c90348f3302e1039ea9a9a7a34baf1e", "datetime": "2025-01-04T06:32:50+00:00" }, { "message_id": "9237ae80a28a06e650581eb4f0dbaa0498abc60cd0f74b4479274ff8a0db9f7d", "sticker": null, "text": "public class BitwiseChallenge {\n public static void main(String[] args) {\n int a = 12; \n int b = 25; \n \n int c = (a & b) << 2;\n int d = (a | b) >> 1;\n int e = ~a & 0x0F;\n \n System.out.println(c);\n System.out.println(d);\n System.out.println(e);\n }\n}", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": null, "datetime": "2025-01-04T06:44:54+00:00" }, { "message_id": "a645364d12681d533f5ee48e516fc07eb16c669828e7db12baddcda9d92deb8e", "sticker": null, "text": "What’s the output? (Don’t run it) xD", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": null, "datetime": "2025-01-04T06:45:04+00:00" }, { "message_id": "ef3ca6b095811fa110a191baaf24f6fb09fd5276490233af96a719fe68f4a048", "sticker": null, "text": "Nice bro", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": "7291d7eea733f8f27068955e34b79e7d440226afb46294b6c6801b17dabe4af2", "datetime": "2025-01-04T06:45:18+00:00" }, { "message_id": "4de59291c248bd3a943bf450dc2125ece09d698e4127650d318b0fc66fc9d14e", "sticker": null, "text": "32\n14\nHave doubt in value of e integer", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "9237ae80a28a06e650581eb4f0dbaa0498abc60cd0f74b4479274ff8a0db9f7d", "datetime": "2025-01-04T06:50:12+00:00" }, { "message_id": "3d1d6a1fb0e15c991e78e4d740ab5dd4dfcc31efa79bfcf57fe42a76fbc7004c", "sticker": null, "text": "First 2 correct, guess third line", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": "4de59291c248bd3a943bf450dc2125ece09d698e4127650d318b0fc66fc9d14e", "datetime": "2025-01-04T06:51:21+00:00" }, { "message_id": "b211320a03aa996340a374e961e3f365896b600c9ee34e1ec2cc1c19f9a9f039", "sticker": null, "text": "Don't know plz explain 3Rd line in Easy way", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "3d1d6a1fb0e15c991e78e4d740ab5dd4dfcc31efa79bfcf57fe42a76fbc7004c", "datetime": "2025-01-04T06:54:20+00:00" }, { "message_id": "e9a6fee86a069a607592cd37f193bd0b4b006c2a0b1dd115e5179ab20a969113", "sticker": null, "text": "a is 12 (binary 00001100), ~a flips all bits -> 11110011. Then we do & with 0x0F (which is 00001111), so 11110011 & 00001111 = 00000011 (decimal 3). So last line prints 3", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": "b211320a03aa996340a374e961e3f365896b600c9ee34e1ec2cc1c19f9a9f039", "datetime": "2025-01-04T06:57:15+00:00" }, { "message_id": "d0938dc3d8bb99f062905dd389707beec99601f0391a31347e40e80007a53429", "sticker": null, "text": "Noted 👍", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "e9a6fee86a069a607592cd37f193bd0b4b006c2a0b1dd115e5179ab20a969113", "datetime": "2025-01-04T06:59:11+00:00" }, { "message_id": "39eff0ea1f5d343decf43a5c639e92ab783529baba4e80b21a36db076058f28b", "sticker": null, "text": "Hope that helps!", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": null, "datetime": "2025-01-04T06:59:32+00:00" }, { "message_id": "e89724f79cb3589023aa91ae730fea4f224d59418f64830162bd14ee0e0df119", "sticker": null, "text": "More practice for ya, what’s the output?\npublic class BitwiseChallenge2 {\n public static void main(String[] args) {\n int x = 5; \n int y = 9; \n \n int result1 = (x & y) | (x ^ y);\n int result2 = ((~x) & 0x0F) ^ y;\n int result3 = (x << 3) ^ (y >> 1);\n \n System.out.println(result1);\n System.out.println(result2);\n System.out.println(result3);\n }\n}", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": null, "datetime": "2025-01-04T07:14:45+00:00" }, { "message_id": "1b025ad79490ee3ef860ab605c34869de7d45e25a5e637b279cf6ad5e3097c78", "sticker": null, "text": "13\n10\n44?", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "e89724f79cb3589023aa91ae730fea4f224d59418f64830162bd14ee0e0df119", "datetime": "2025-01-04T07:22:29+00:00" }, { "message_id": "b475f19345eef7d1c788462dd56d487291bdc39c21ca8dea8e668cdef47adc4e", "sticker": null, "text": "Almost, result2 output is not correct", "from_id": "eb96cd892dcfb541c299ea9dce14dc9a19d2b6788f84eba2a504b51d474a9282", "reply_to": "1b025ad79490ee3ef860ab605c34869de7d45e25a5e637b279cf6ad5e3097c78", "datetime": "2025-01-04T07:23:44+00:00" }, { "message_id": "c30d70f301ce8bae2989bbf052f3963bef4ab531d08f46ffc3e847231ea49d51", "sticker": null, "text": "O sorry, just forgot to perform operation of y integer,\nAnswer is 3?", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "b475f19345eef7d1c788462dd56d487291bdc39c21ca8dea8e668cdef47adc4e", "datetime": "2025-01-04T08:33:26+00:00" }, { "message_id": "71b918ebad1257c37e72bb00c09cb81c04591153690a8c154619f05fe998a33d", "sticker": null, "text": "Hey hi", "from_id": "9c22b7958e1abc392d73a1eae2301b689e07dd8cfc3055e4f35678ed8d8d8ba2", "reply_to": null, "datetime": "2025-01-07T10:18:41+00:00" }, { "message_id": "808a49f980c68dfa6519c25c77893fbe34519800b9efa29b2b16e2bf5dabbabb", "sticker": null, "text": "where in practice do you use these bitmap manipulations? do you also write your app code like that?", "from_id": "c8d52a93d6f58623f395d3ab9c00217377dfab537d229f5300c6d7d2768b48fe", "reply_to": "e89724f79cb3589023aa91ae730fea4f224d59418f64830162bd14ee0e0df119", "datetime": "2025-01-07T10:34:53+00:00" }, { "message_id": "47c84c0eb4abcb351629dbf8ddc9a168a1d7ee726162ecb3859f4dc7c6945d1e", "sticker": null, "text": "+1 for meaningless nonsense. I also don't like such kind of \"exercises\". \nProper exercises should go the reverse way - you set a task and the student writes code to do the task. Obviously, tasks should be preceded by proper detailed explanation of the tools (bitwise operators in this case) available, and a set of GOOD examples of how those tools are used to do some task. GOOD examples, not some \"result1\" junk. It's extremely important to show people how to write good code ALWAYS, from the day 1 of learning. Even if it's a hello-worldish exercises, the code should always be as if you write it for nasa, google or whatever faang.\n\nThe only positive side effect of such exercises is learning how to read and decrypt bad code. But that's not a proper way to develop such skill anyway. Proper way is by reading and understanding a lot of other's code, being not afraid to dive deep and understand implementations of opensource libraries you use, which usually happens automatically when you work. Which again brings me to the point - such kind of exercises do no good for people who're learning", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": "808a49f980c68dfa6519c25c77893fbe34519800b9efa29b2b16e2bf5dabbabb", "datetime": "2025-01-07T12:18:51+00:00" }, { "message_id": "95223de5a854f1d146b4bd21e7e3a65768f6e01a1a642ae6d52d44bd9eb628a9", "sticker": null, "text": "Agree 👍", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "47c84c0eb4abcb351629dbf8ddc9a168a1d7ee726162ecb3859f4dc7c6945d1e", "datetime": "2025-01-07T12:20:11+00:00" }, { "message_id": "c6e2b75d16aaffb4623cf372d4a4b00598c0076405c136ca0613d30e634a3dd9", "sticker": null, "text": "PS: bitwise operations are useful in practice, but that highly depends on the area. Some people may work for years and not use them once, but it may be a bread and butter for others. Few examples off the top of my head - in java it's working with reflection with modifiers, processing images, low-level protocols implementation. In my opinion, they are worth spending some time, but not too early in the study. For OOP languages specifically, first learning priority is OOP itself, and bitwise operations is rather a topic for later, alongide with stuff like json and xml processing and similar stuff that usually goes in the last chapters of books.", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2025-01-07T12:24:21+00:00" }, { "message_id": "cdc82a1991f16083ace77b673c5cecbc692909f2fe03de77c464f4a49b5ebeb4", "sticker": null, "text": "PPS: #USER_ID , I'm not trying to discourage you or demean your work here. Please, don't take my words like this. I highly respect your effort. Instead, I'm trying to say that you may consider trying to rethink how you build your exercises. Only consider. Because what I'm saying is my personal opinion and experience and I may be wrong", "from_id": "7992e2bc8a9181df585c594b73b0c97d13012986701d18b463cd822976bc978e", "reply_to": null, "datetime": "2025-01-07T12:31:47+00:00" }, { "message_id": "1482dfdbef48646446f62486c4198bce9d6c62a1b1f1f4a8a2d15041d1a35e24", "sticker": null, "text": "Ouk sir", "from_id": "8ff95a8977cb440cb168e3a28f46095b5cfa03b4284aaaa7e0e64b7067409769", "reply_to": null, "datetime": "2025-01-07T22:22:46+00:00" }, { "message_id": "84dffc9328ad166c05b5d4fcf8cc6bb937e80643a1a9f53e20711e6e03c40ef8", "sticker": null, "text": "good night. I'm wanting to remove java 23 from my pc. When i run on cmd the command \"java -version\", it's appear that i'm using java 23. But when i search it on \"add or remove programs\" to uninstall it, it don't appears on the list.\nI want to remove it from my pc for make a downgrade to use java22.\nAnyone can give a help?", "from_id": "1b2375be9ce97073f490f5110bc18ba42f01043c6392596f1d87cacaa20bf721", "reply_to": null, "datetime": "2025-01-08T01:00:51+00:00" }, { "message_id": "6293ff5c76cffefd1dbe89891fe54c98b097ed073fefa17d242897cea5ce4836", "sticker": null, "text": "Remove java path from environmental variables and restart the cmd", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "84dffc9328ad166c05b5d4fcf8cc6bb937e80643a1a9f53e20711e6e03c40ef8", "datetime": "2025-01-08T01:32:07+00:00" }, { "message_id": "45bb48aa189ba80304a079e3d21960474cdbd932432f18e061163a60f14d46dc", "sticker": null, "text": "7", "from_id": "534a7b7ac94f2bfe57b3beb32e2ddd5971c58894d8893305e41533c52e3f2cde", "reply_to": null, "datetime": "2025-01-08T06:31:24+00:00" }, { "message_id": "a6d5cb74dbfefebf9f468b5e9f0c35d5cf85d0572441bbe644556ac0210414da", "sticker": null, "text": "Hello Job Aspirants \n\n\n\n\n    Who are really interested for joining in a mnc those who has gap and really wanted through enter in job just ping me\n\n\nIt's backdoor", "from_id": "534a7b7ac94f2bfe57b3beb32e2ddd5971c58894d8893305e41533c52e3f2cde", "reply_to": null, "datetime": "2025-01-08T06:31:45+00:00" }, { "message_id": "d1f093b1edc647ea4443c8e75e92109148c46803c96234ae7e98a3ad4ca4b421", "sticker": null, "text": "Hii everyone I am java freshers pls send the java documents full stock", "from_id": "68c68362e6fdc432ef0357ed62c47b7e12788db817231b426464b32d12f49a4c", "reply_to": null, "datetime": "2025-01-08T06:37:30+00:00" }, { "message_id": "c31c642b938c25f2024a3ca8a84ca831263cb774c9452e26f99d4066e52b2b3b", "sticker": null, "text": "You can join the channel in my profile. I'm sharing it for free", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "d1f093b1edc647ea4443c8e75e92109148c46803c96234ae7e98a3ad4ca4b421", "datetime": "2025-01-08T13:35:38+00:00" }, { "message_id": "3dd85b2d6ae3fc041c104cc3e70f0eae21305e4c90afea681a5ef7d21de8d3d1", "sticker": null, "text": "Stop spamming and scamming", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": null, "datetime": "2025-01-08T15:20:31+00:00" }, { "message_id": "295582157acc97191be8973cef335e958e7d7923304b96f346afa78385cca35b", "sticker": null, "text": "Yes", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": "f5901301eccc9a990393ad7c914a5fcbfdf18db9daaf7ffef91b61afed12fbe0", "datetime": "2025-01-08T18:57:03+00:00" }, { "message_id": "5dd903a0ca88bf60e8d1de2588693282a6a1e18e501422e278a0e3272fa66c77", "sticker": null, "text": "Send all notes here.", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": null, "datetime": "2025-01-08T18:57:39+00:00" }, { "message_id": "121e7edca654fb9d56152370e93dcd476ea5dfed289125d7b599dc65bab3b554", "sticker": null, "text": "I need help with linking a netbeans form to my sql database in xampp", "from_id": "8ff95a8977cb440cb168e3a28f46095b5cfa03b4284aaaa7e0e64b7067409769", "reply_to": null, "datetime": "2025-01-08T20:50:45+00:00" }, { "message_id": "8b1cbbc012270c43bbc612fc3c8d2a5c8854b6e56ca0c7d396b22931db1bd75f", "sticker": null, "text": "my English very poor", "from_id": "7616375df0d1e9cff5b7eb35bcce3a6eab78262e25c6037f92ebc030ba3efd36", "reply_to": null, "datetime": "2025-01-08T22:05:22+00:00" }, { "message_id": "c17720a018b416fe924b5ce8e013710b8a0aa0f48865c7246ded9776665d533e", "sticker": null, "text": "sry", "from_id": "7616375df0d1e9cff5b7eb35bcce3a6eab78262e25c6037f92ebc030ba3efd36", "reply_to": null, "datetime": "2025-01-08T22:05:32+00:00" }, { "message_id": "0ce56070a9d2ae2a18f70b7d797aa7619209f5ee17d87bf3055f0ae188c2171d", "sticker": null, "text": "Not possible because I'm preparing few topics daily and keeping them in my channel as organized. Here it will mess up", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "5dd903a0ca88bf60e8d1de2588693282a6a1e18e501422e278a0e3272fa66c77", "datetime": "2025-01-09T00:25:07+00:00" }, { "message_id": "405985b65d2efc741729f906f05e0bdfcb9ae46b940ba8578a54ce6717053cef", "sticker": null, "text": "Which one is better TCS or Genpact?", "from_id": "8fe7b1304ab3d70e1f684c0ab599f25302398b5fdd51140b918dfaceff0dd033", "reply_to": null, "datetime": "2025-01-09T08:16:15+00:00" }, { "message_id": "0f0bf4bae6495b2e604ec63c151f202b030d5c54cd167da5f260b44e0cb1c970", "sticker": null, "text": "How many years of exp you have?", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": null, "datetime": "2025-01-09T08:19:45+00:00" }, { "message_id": "3495f86e73d8da5cb90e515fd02cdb46432abba4699780130e5a3f6c0cd0440a", "sticker": null, "text": "7.5", "from_id": "8fe7b1304ab3d70e1f684c0ab599f25302398b5fdd51140b918dfaceff0dd033", "reply_to": null, "datetime": "2025-01-09T08:50:20+00:00" }, { "message_id": "4b4c1f5f3e93072f9c4eabd8b7fcedb16b028a1489a55a44c86ba9572255094a", "sticker": null, "text": "If you're looking for peace and retirement go for TCS else Genpact also depends upon how much both are paying", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "3495f86e73d8da5cb90e515fd02cdb46432abba4699780130e5a3f6c0cd0440a", "datetime": "2025-01-09T16:17:41+00:00" }, { "message_id": "155723a371b90d2e661baac1c71e551e853ce9d9e2205c32128945449dfe68be", "sticker": null, "text": "I am fresher. Can your please suggest me something?", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "4b4c1f5f3e93072f9c4eabd8b7fcedb16b028a1489a55a44c86ba9572255094a", "datetime": "2025-01-10T05:34:26+00:00" }, { "message_id": "858af92195b0a836d3d5ffce6183244e58d7e22da3d658b000d174a67b56715a", "sticker": null, "text": "Suggestion on?", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "155723a371b90d2e661baac1c71e551e853ce9d9e2205c32128945449dfe68be", "datetime": "2025-01-10T05:36:04+00:00" }, { "message_id": "087284a74fb8bb1beb622045f405658e2e94c6acc5668d2787b62c45e0886666", "sticker": null, "text": "As a java developer, how can i get Command on building springboot applications.", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "858af92195b0a836d3d5ffce6183244e58d7e22da3d658b000d174a67b56715a", "datetime": "2025-01-10T06:35:55+00:00" }, { "message_id": "5f6cc0e67f6ceede85bcf3ccc94f6c9b6698dffc43d27bcffd093afb5feeedf8", "sticker": null, "text": "Build your own projects", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "087284a74fb8bb1beb622045f405658e2e94c6acc5668d2787b62c45e0886666", "datetime": "2025-01-10T06:37:00+00:00" }, { "message_id": "5eb71881f613893ff9d6fc28c1a828df3c20a25cb7942b1b8efc4794afa72430", "sticker": null, "text": "Project ideas chahiye", "from_id": "8ca0578fd93e1fea9c282473a329bd207cb06a84e11dc264a0d0db765ec2ac42", "reply_to": "5f6cc0e67f6ceede85bcf3ccc94f6c9b6698dffc43d27bcffd093afb5feeedf8", "datetime": "2025-01-10T09:32:09+00:00" }, { "message_id": "e9ddf5af6cefb4779ef7fe3f822a724cd8c86ad867b2d6abd676dd183004a080", "sticker": null, "text": "Use chatGpt to get the ideas", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "5eb71881f613893ff9d6fc28c1a828df3c20a25cb7942b1b8efc4794afa72430", "datetime": "2025-01-10T09:33:15+00:00" }, { "message_id": "cb8ce3da79d3684d038358b740aae5d6b03884cfd53d28ec77fd9d4524bb7538", "sticker": null, "text": "It can guide you easily", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": null, "datetime": "2025-01-10T09:33:29+00:00" }, { "message_id": "6380677285314eee9e44d8cdfa1ddcb0a9c61d7e71dfd47cdd839ac8be683d7d", "sticker": null, "text": "Please guide me...🤌", "from_id": "8ca0578fd93e1fea9c282473a329bd207cb06a84e11dc264a0d0db765ec2ac42", "reply_to": "cb8ce3da79d3684d038358b740aae5d6b03884cfd53d28ec77fd9d4524bb7538", "datetime": "2025-01-10T09:33:58+00:00" }, { "message_id": "cf986e9c9ef81321af023d04ecbee428c7adf807f0264afe0846e96c8353994e", "sticker": null, "text": "😂😂😂 I'm not chatGpt", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": null, "datetime": "2025-01-10T09:34:17+00:00" }, { "message_id": "4a0d560393fc30d149b23a00c777cc00a75b05e6b11b2530563e63257b29c675", "sticker": null, "text": "But senior....to ho na", "from_id": "8ca0578fd93e1fea9c282473a329bd207cb06a84e11dc264a0d0db765ec2ac42", "reply_to": "cf986e9c9ef81321af023d04ecbee428c7adf807f0264afe0846e96c8353994e", "datetime": "2025-01-10T11:39:11+00:00" }, { "message_id": "367aa2b25a8bb7c5d19688f847dfacf62feeef91d0566cbb3f3c802f3c87a692", "sticker": null, "text": "To guide to kar hi sakte ho please", "from_id": "8ca0578fd93e1fea9c282473a329bd207cb06a84e11dc264a0d0db765ec2ac42", "reply_to": null, "datetime": "2025-01-10T11:39:24+00:00" }, { "message_id": "39360fe7f4d68317cb6062b4d16d686a739181195d93887a6914b02ee3114727", "sticker": null, "text": "Start with some user APIs", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": null, "datetime": "2025-01-10T11:40:17+00:00" }, { "message_id": "abeea63b4e065892cf38a2a4c4c7704a9c02ac0a98745bcf690b45907c472a7f", "sticker": null, "text": "Ok", "from_id": "8ca0578fd93e1fea9c282473a329bd207cb06a84e11dc264a0d0db765ec2ac42", "reply_to": "39360fe7f4d68317cb6062b4d16d686a739181195d93887a6914b02ee3114727", "datetime": "2025-01-10T12:07:37+00:00" }, { "message_id": "c03e72ba94bc2af079915e6ec35c06139622f84c764434014d10acb0cd1d4ee0", "sticker": null, "text": "Does anyone have modules for practice", "from_id": "609fef46678fafbcb5683f5fc305207ce5bcca343d181381805692484cb7e773", "reply_to": null, "datetime": "2025-01-10T15:23:28+00:00" }, { "message_id": "c300df324ac7179e0124bf5e1561d9aa1de913e790e6bdadd316cf934e58e51b", "sticker": null, "text": "English only please", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "367aa2b25a8bb7c5d19688f847dfacf62feeef91d0566cbb3f3c802f3c87a692", "datetime": "2025-01-10T16:12:26+00:00" }, { "message_id": "910dc43645fa1964b9e876fdca60c6270bb1d3fa0178af9fbf32b91528d7db4f", "sticker": null, "text": "Hi im a junior web developer", "from_id": "43d6c3faf1c02a871cfcf8f773b732bdc51e0f58546074c1e70e630beeef5f71", "reply_to": null, "datetime": "2025-01-10T21:09:24+00:00" }, { "message_id": "225d71fe5fb485ee20cd6be99c4600225c8081cc2a12a64c2f84b6fde4c64eec", "sticker": null, "text": "Does anyone wants a collab", "from_id": "43d6c3faf1c02a871cfcf8f773b732bdc51e0f58546074c1e70e630beeef5f71", "reply_to": null, "datetime": "2025-01-10T21:09:37+00:00" }, { "message_id": "4dff1974a1a85217d5aea8c477486e18d257fff1c0f67c7d89b74139b1f710df", "sticker": null, "text": "Good evening developers", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": null, "datetime": "2025-01-11T13:09:16+00:00" }, { "message_id": "fee768f625c17ff8d0db4906f0327a7a3f33646c42299280e876d41b7751aee3", "sticker": null, "text": "Which type of projects like?", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "5f6cc0e67f6ceede85bcf3ccc94f6c9b6698dffc43d27bcffd093afb5feeedf8", "datetime": "2025-01-11T16:39:40+00:00" }, { "message_id": "e1236e4847cf9d49fc4c7ef6289b5fbe1f8b5d0dcf883ec5f62baf4c32f804de", "sticker": null, "text": "Try to develop REST APIs related to user operations", "from_id": "4a9a9d737edec3c4e4b815f3ee7ffd1a386b16814b94fa5f1269cbe77e3d9ae4", "reply_to": "fee768f625c17ff8d0db4906f0327a7a3f33646c42299280e876d41b7751aee3", "datetime": "2025-01-11T16:44:35+00:00" }, { "message_id": "42ba88bbd67ed86264f6a0b2242fbe3355d3a7a8dc8eab3eb796d2d56d082335", "sticker": null, "text": "Ohk", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "e1236e4847cf9d49fc4c7ef6289b5fbe1f8b5d0dcf883ec5f62baf4c32f804de", "datetime": "2025-01-11T16:45:41+00:00" }, { "message_id": "c8c5d834a0a9c536d9eb3c8dafd1eea5a88e30eac1c3d10c4c60d828e724019d", "sticker": null, "text": "Hey I am new to Bangalore \nAnyone wanna hangout?", "from_id": "14e7ac998b4e39f7550be427937660d4e7937c6a60e35594417a4672af991ae8", "reply_to": null, "datetime": "2025-01-11T19:40:26+00:00" }, { "message_id": "12d2069aa8851dca9db2b6df9237bf544c9be22994332716d86a56ae90f80381", "sticker": null, "text": "Yes, I will be new to Bangalore in sometime.", "from_id": "eb1ffff057d1f2f359ed7ccc51ae5720440e4426109cd4c883b344454146da33", "reply_to": "c8c5d834a0a9c536d9eb3c8dafd1eea5a88e30eac1c3d10c4c60d828e724019d", "datetime": "2025-01-11T20:36:12+00:00" }, { "message_id": "cbda504da61322dd5f42901442cc290dfa1c89a34fc51f27c76ad398aa83558a", "sticker": null, "text": "Hello", "from_id": "3d0b3d8fe88ef08dce8ca7d467f95d6db3cfd4c8d69fef59b89b5116fbb13a7d", "reply_to": null, "datetime": "2025-01-13T06:43:00+00:00" }, { "message_id": "61c5d8d91ce5c71ccfa2453784e71f5ecd6ba3dbbdce51dc13726a5e8b512d5e", "sticker": null, "text": "Hi", "from_id": "8ff95a8977cb440cb168e3a28f46095b5cfa03b4284aaaa7e0e64b7067409769", "reply_to": null, "datetime": "2025-01-13T08:00:11+00:00" }, { "message_id": "efdc5b14ef20b702b34ec74d756cc717343bede18a429d7aa94e03240809663b", "sticker": null, "text": "\"Is there a search tool available?", "from_id": "7616375df0d1e9cff5b7eb35bcce3a6eab78262e25c6037f92ebc030ba3efd36", "reply_to": null, "datetime": "2025-01-13T08:21:47+00:00" }, { "message_id": "f79b6cfe38cd44f7a17a987461ee39d568f4e83117764360a6c1d9745267ffbe", "sticker": null, "text": "11", "from_id": "f3aecfa09696a26ee398b72ec266424a258ac7f53d4b4be24794caa23f545dcb", "reply_to": null, "datetime": "2025-01-13T11:44:29+00:00" }, { "message_id": "039b4745d0a9537f1d243de041436d6b725321cfc676a1b8f737a69817afb63e", "sticker": null, "text": "))", "from_id": "f3aecfa09696a26ee398b72ec266424a258ac7f53d4b4be24794caa23f545dcb", "reply_to": null, "datetime": "2025-01-13T11:44:50+00:00" }, { "message_id": "710658f313d744f03fc522136bcf7e685b1707d857e78ffcb1631f99299728d4", "sticker": null, "text": "@#USER If you need help, post it here and people will respond if they can. Don’t ask anyone to dm you", "from_id": "39184918b8481d4b810187c92129d99c61305765ed66c2c6e8a40999862fb32c", "reply_to": "52006356b1d72b3392d1e270208f712f6da9815e08340db4c697284486bce15e", "datetime": "2025-01-13T15:53:41+00:00" }, { "message_id": "8d7bb80c2c650f79f0f656bcdeb5aafc2f9bcc0fc1f301f0e5b94b7b02e04c51", "sticker": null, "text": "Unfortunately I can't send the image with the task here", "from_id": "f3aecfa09696a26ee398b72ec266424a258ac7f53d4b4be24794caa23f545dcb", "reply_to": "710658f313d744f03fc522136bcf7e685b1707d857e78ffcb1631f99299728d4", "datetime": "2025-01-13T17:47:03+00:00" }, { "message_id": "39741c8b83f43839a382a80c9e62c22d24e42f1a8a7b82346ae29aa8b1a103de", "sticker": null, "text": "Good morning everyone 🌞\nHave a great day", "from_id": "bdee22a436f973a889c7cc670a5c18b7b3bf26526d45fa2664be3667dd529e19", "reply_to": null, "datetime": "2025-01-14T04:49:48+00:00" }, { "message_id": "3dd5ae3dcc04450fa97f4d417cdb356cd732eef95d766562b6c7e65c2850143a", "sticker": null, "text": "Good morning", "from_id": "58374f792e35efa7219dfb2b0a543621c6995974aff3a95c887c507e7898220e", "reply_to": "39741c8b83f43839a382a80c9e62c22d24e42f1a8a7b82346ae29aa8b1a103de", "datetime": "2025-01-14T05:24:28+00:00" } ]