Main public logs
Appearance
Combined display of all available logs of scratchpad. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:30, 11 September 2026 Admin talk contribs created page Private:Journal/2026/09/11 (Created page with "== TODOs == [] Fully test the integrated UI forms with the fields. [] Finalize the Risk Score analysis conflict between old app and new app [] Fix any bugs and integration issues and finalize the Salesforce mappings into UI, fetch and test all the fields. == Learnings == * {{{learnings|}}} == Thoughts == {{{notes|}}}")
- 09:24, 11 September 2026 Admin talk contribs created page Private:Journal/2026/09/09 (Created page with "== TODOs == [x] Integrate the function with UI in ARA application == Learnings == Nothing today == Thoughts == {{{notes|}}}")
- 09:24, 11 September 2026 Admin talk contribs created page Private:Journal/2026/09/10 (Created page with "== TODOs == [x] Integrate the function with UI in ARA application == Learnings == Nothing today == Thoughts == {{{notes|}}}")
- 09:58, 8 September 2026 Admin talk contribs created page Private:Journal/2026/09/08 (Created page with "== TODOs == [] Learn how a MAC OS works <youtube id="UKr5KDHXBVc"></youtube> [] Finish up fetching the Salesforce data into the UI == Learnings == * Learned about how a MAC OS really works through the YT video, how the kernel decides, how the OS decides what etc., == Thoughts == {{{notes|}}}") Tag: Visual edit: Switched
- 16:02, 7 September 2026 Admin talk contribs created page Private:Journal/2026/09/07 (Created page with "== TODOs == [] Migrate Pilot app to OSDK react app == Learnings == * Pilot app in Palantir is nothing but a temporary ontology.ts file which contains everything and every API should be updated manually. * But if it's an OSDK everything will be synced with just version upgrades. == Thoughts == {{{notes|}}}") Tag: Visual edit: Switched
- 09:27, 4 September 2026 Admin talk contribs created page Private:Journal/2026/09/04 (Created page with "== TODOs == [] Get the complete understanding of GRA project in palantir - In & Out [] Go through all KT videos and resources for GRA project == Learnings == * {{{learnings|}}} == Thoughts == {{{notes|}}}") Tag: Visual edit: Switched
- 10:19, 3 September 2026 Admin talk contribs created page MediaWiki:Tabberneue-tabbertransclude-category (Created blank page)
- 10:19, 3 September 2026 Admin talk contribs created page MediaWiki:Tabberneue-tabber-category (Created blank page)
- 10:08, 3 September 2026 Admin talk contribs created page DSA/Chessboards and Queens (Create Chessboard & Queens problem solution)
- 09:28, 3 September 2026 Admin talk contribs created page Private:Journal/2026/09/03 (Created page with "== TODOs == [] Setup remaining apps in laptop [] Try to complete the Introductory CSES problems == Learnings == * == Thoughts ==") Tag: Visual edit
- 09:23, 3 September 2026 Admin talk contribs created page Private:Journal/2026/09/02 (Created page with " No Interesting stuff") Tag: Visual edit
- 14:49, 1 September 2026 Admin talk contribs created page Private:Journal/2026/09/01 (Created page with "== TODOs == [] Go through KT videos on FPM project [] Try to convince Suman for a better project == Learnings == * == Thoughts ==") Tag: Visual edit: Switched
- 14:49, 1 September 2026 Admin talk contribs deleted page Private:Journal/2026/08/31 (content was: "== TODOs == [] Go through KT videos on FPM project [] Try to convince Suman for a better project == Learnings == * == Thoughts ==", and the only contributor was "Admin" (talk))
- 09:48, 1 September 2026 Admin talk contribs created page Private:Journal/2026/08/31 (Created page with "== TODOs == [] Go through KT videos on FPM project [] Try to convince Suman for a better project == Learnings == * == Thoughts ==") Tag: Visual edit
- 10:59, 31 August 2026 Admin talk contribs created page Private:Journal/2026/08/2026-08-31 (Created page with "== TODOs == * {{{todos|}}} == Learnings == * {{{learnings|}}} == Notes == {{{notes|}}}")
- 10:56, 31 August 2026 Admin talk contribs deleted page Journal/2026/08/2026-08-31 (content was: "== TODOs == * {{{todos|}}} == Learnings == * {{{learnings|}}} == Notes == {{{notes|}}}", and the only contributor was "Admin" (talk))
- 10:54, 31 August 2026 Admin talk contribs created page Journal/2026/08/2026-08-31 (Created page with "== TODOs == * {{{todos|}}} == Learnings == * {{{learnings|}}} == Notes == {{{notes|}}}")
- 10:53, 31 August 2026 Admin talk contribs created page Template:DailyJournalPreload (Created page with "== TODOs == * {{{todos|}}} == Learnings == * {{{learnings|}}} == Notes == {{{notes|}}}")
- 10:49, 31 August 2026 Admin talk contribs deleted page Private:Daily (content was: "=== Daily Day Details ===", and the only contributor was "Admin" (talk))
- 10:34, 31 August 2026 Admin talk contribs created page DSA/CSES 2Knights (Created page with "== Non-Attacking Knights on a k×k Board == '''Problem.''' For every board size <math>k = 1, 2, \dots, n</math>, count the number of ways to place ''two'' knights on a <math>k \times k</math> chessboard so that they do not attack each other. The core is instead of calculating the possible combinations of placements which is confusing we can do ''total_possibilities - attacking_squares'' ---- === Step 1: Total ways to place two knights, ignoring attacks === A <math>k...") Tag: Visual edit: Switched
- 14:31, 30 August 2026 Admin talk contribs deleted page CSES/Introductory/Weird Algorithm (content was: " Just use Brute Force using while loop <syntaxhighlight lang="python3" line="1"> n = int(input()) while n != 1: print(n, end=' ', flush=True) if n % 2 != 0: n = n*3 + 1 else: n = n // 2 print(n) </syntaxhighlight>", and the only contributor was "Admin" (talk))
- 14:31, 30 August 2026 Admin talk contribs deleted page CSES/Introductory/Missing Number (content was: " For a number series from 1 to n the sum is <math>sum = (n * (n+1))/2</math> so the missing number must be <math>sum - input\_sum</math> <syntaxhighlight lang="python3" line="1"> n = int(input()) nums = map(int, input().split()) print((n * (n + 1) // 2) - sum(nums)) </syntaxhighlight>", and the only contributor was "Admin" (talk))
- 14:28, 30 August 2026 Admin talk contribs created page CSES/Introductory/Missing Number (Created page with " For a number series from 1 to n the sum is<math>(n * (n+1))/2</math>") Tag: Visual edit
- 16:29, 28 August 2026 Admin talk contribs created page CSES/Introductory/Weird Algorithm (Created page with " Just a simple one") Tag: Visual edit
- 14:48, 27 August 2026 Admin talk contribs deleted page Private:Daily/27Aug2026 (content was: "== TODOS == [] Revise all topics from the week 1 on boarding plan [] Revise python for DSA [] Start working on CSES problems == LEARNINGS ==", and the only contributor was "Admin" (talk))
- 14:48, 27 August 2026 Admin talk contribs deleted page Private:Daily/26Aug2026 (content was: "# Learned about multiple AWS services # Attended sessions on TOPS 2 application and team norms == TODOS == [x] Create a skill for AI FDE design tokens and patterns [x] Create a skill for AI FDE to make a PPT", and the only contributor was "Admin" (talk))
- 14:48, 27 August 2026 Admin talk contribs deleted page Private:Daily/25Aug2026 (content was: "# Learned about something related to TOPS2 # Completed the design for POC of IQE agents == TODOS == [x] Complete the design for IQE POC [x] extract the design theme and tokens for CBRE emarald theme", and the only contributor was "Admin" (talk))
- 14:48, 27 August 2026 Admin talk contribs deleted page Private:Daily/24Aug2026 (content was: " # Created an IQE generic Agent but haven't tested on anything but introduced many methodologies and stuff into it to make it efficient and better # Revised Python, React, Typescript [x] Complete draft of IQE agent. [] Research about Life Sciences companies", and the only contributor was "Admin" (talk))
- 14:47, 27 August 2026 Admin talk contribs deleted page Private:Daily/21Aug2026 (content was: "# Worked on QE Agent POC with 2 different approaches #* First approach is to do based on the human decided goals and testing that but not complete the full requirement #* Second approach is to get GitHub issues, PR and then crawl around then test the quality but the issue is scope not definable properly and getting more complex", and the only contributor was "Admin" (talk))
- 14:47, 27 August 2026 Admin talk contribs deleted page Private:Daily/20Aug2026 (content was: " # Learned about ontology functions. # Started to work on Autonomous QE Agent POC, doesn't know whether it's going to be a success or not but using all the techniques and methodologies I know for better efficiencies. == TODOS == [x] Create a comprehensive research document on QE Agent creation -> Think about harness of context in loops/iterations. [x] Learn Ontology functions [...", and the only contributor was "Admin" (talk))
- 14:47, 27 August 2026 Admin talk contribs deleted page Private:Daily/19Aug2026 (content was: "# Learned about ontology creation, object creations, workspace creations # Got to know about the CBRE AI Agent integration little bit. Seems like they are facing issues with QE Agents #* The proposed solution is not a straight forward because first I need to understand how exactly their agents are working are they just sending the code to models and writing some prompts and getting...", and the only contributor was "Admin" (talk))
- 14:47, 27 August 2026 Admin talk contribs deleted page Private:Daily/18Aug2026 (content was: "* Started Exploring what is Palantir, ontology and other stuff * Got the Palantir and GitHub copilot access EOD", and the only contributor was "Admin" (talk))
- 14:47, 27 August 2026 Admin talk contribs deleted page Private:Daily/17Aug2026 (content was: "#REDIRECT Private:Daily/2026/August/17", and the only contributor was "Admin" (talk))
- 14:47, 27 August 2026 Admin talk contribs deleted page Private:Daily/2026/August/17 (content was: "* Got on boarded into CBRE * Collected Laptop from Rajan * Start setting up some basic essentials in laptop", and the only contributor was "Admin" (talk))
- 14:46, 27 August 2026 Admin talk contribs moved page Private:Daily/17Aug2026 to Private:Daily/2026/August/17
- 14:46, 27 August 2026 Admin talk contribs deleted page Private:Daily/2026/August/17 (Deleted to make way for move from "Private:Daily/17Aug2026")
- 14:45, 27 August 2026 Admin talk contribs created page Private:Daily/2026/August/17 (Created page with "HI") Tag: Visual edit
- 09:41, 27 August 2026 Admin talk contribs created page Private:Daily/27Aug2026 (Created page with "== TODOS == [] Revise all topics from the week 1 on boarding plan [] Revise python for DSA [] Start working on CSES problems == LEARNINGS ==") Tag: Visual edit: Switched
- 16:42, 26 August 2026 Admin talk contribs created page Private:Daily/26Aug2026 (Created page with "== TODOS == <tabber> |-|TODOS = [] test |-|LEARNINGS = - test </tabber>[] Create a skill for AI FDE design tokens and patterns [] Create a skill for AI FDE to make a PPT") Tag: Visual edit
- 16:27, 25 August 2026 Admin talk contribs created page Private:Daily/25Aug2026 (Created page with "# Learned about something related to TOPS2 # Completed the design for POC of IQE agents") Tag: Visual edit
- 16:25, 24 August 2026 Admin talk contribs created page Private:Daily/24Aug2026 (Created page with " # Created an IQE generic Agent but haven't tested on anything but introduced many methodologies and stuff into it to make it efficient and better # Revised Python, React, Typescript") Tag: Visual edit
- 16:19, 24 August 2026 Admin talk contribs created page Private:Daily/21Aug2026 (Created page with "# Worked on QE Agent POC with 2 different approaches #* First approach is to do based on the human decided goals and testing that but not complete the full requirement #* Second approach is to get GitHub issues, PR and then crawl around then test the quality but the issue is scope not definable properly and getting more complex") Tag: Visual edit
- 16:18, 24 August 2026 Admin talk contribs created page Private:Daily/20Aug2026 (Created page with " # Learned about ontology functions. # Started to work on Autonomous QE Agent POC, doesn't know whether it's going to be a success or not but using all the techniques and methodologies I know for better efficiencies. == TODOS == [x] Create a comprehensive research document on QE Agent creation -> Think about harness of context in loops/iterations. [x] Learn Ontology functions [x] Revise DBMS & Typescript")
- 15:59, 24 August 2026 Admin talk contribs created page Private:Daily/19Aug2026 (Created page with "# Learned about ontology creation, object creations, workspace creations # Got to know about the CBRE AI Agent integration little bit. Seems like they are facing issues with QE Agents #* The proposed solution is not a straight forward because first I need to understand how exactly their agents are working are they just sending the code to models and writing some prompts and getting tests or are they optimizing anything in between for reducing hallucinations #* Once I get...") Tag: Visual edit
- 15:56, 24 August 2026 Admin talk contribs created page Private:Daily (Created page with "=== Daily Day Details ===") Tag: Visual edit
- 15:56, 24 August 2026 Admin talk contribs deleted page Private:Daily/Daily (content was: "=== Daily Day Details ===", and the only contributor was "Admin" (talk))
- 15:55, 24 August 2026 Admin talk contribs created page Private:Daily/Daily (Created page with "=== Daily Day Details ===") Tag: Visual edit
- 15:51, 24 August 2026 Admin talk contribs created page Private:Daily/18Aug2026 (Created page with "* Started Exploring what is Palantir, ontology and other stuff * Got the Palantir and GitHub copilot access EOD") Tag: Visual edit
- 15:50, 24 August 2026 Admin talk contribs created page Private:Daily/17Aug2026 (Created page with "* Got on boarded into CBRE * Collected Laptop from Rajan * Start setting up some basic essentials in laptop") Tag: Visual edit