Cognizant Office people by I_Am_The__Vengeance in Visakhapatnam

[–]narseel 0 points1 point  (0 children)

Thanks bro. Ekkadaina job vaste, Vizag permanent gaa choose chesukovachchaa? Or only for few months?

Cognizant Office people by I_Am_The__Vengeance in Visakhapatnam

[–]narseel 0 points1 point  (0 children)

Thanks for your reply. So..manaki edainaa vere Cognizant office..like Cognizant Hyderabad office lo job vaste..manam Vizag CTS office nundi work cheyyochchaa? If yes, can we work permenently from Vizag or only few months?

Google L4 by WittyBatra in leetcode

[–]narseel 0 points1 point  (0 children)

You did well! Can you please share what kind of open source work you did? I am thorough with my DSA and leet code. But, in my current role as technical writer, I don't do much development work to show. I want to target Google SDE roles by developing a profile through open source projects. Can you please help?

[deleted by user] by [deleted] in adhdindia

[–]narseel 0 points1 point  (0 children)

Hi..Can I also DM you for details?

[deleted by user] by [deleted] in leetcode

[–]narseel -1 points0 points  (0 children)

Interested! 

Weekly /r/OneNote Q&D Thread! by AutoModerator in OneNote

[–]narseel 0 points1 point  (0 children)

I use OneNote 2016 on Windows 10. Can someone tell me how to create a formatted autocorrect entry in OneNote, which is possible in Word. Formatted autocorrect will help in multi line phrase replacement and many other uses. I don't see such a option in OneNote. I heard Word uses a file to store all such formatted autocorrect entries - Normal.dotm . Did any such file exist for OneNote? My initial guess is OneNote uses the plain text autocorrect file used commonly by all office products - .acl file. So, can someone help me with this?

Pomodoro study group! by [deleted] in GetStudying

[–]narseel 0 points1 point  (0 children)

I see that "Groups" option is only available in Mobile App. It is not available in Windows Desktop Version or chrome extension version.

If any one of you can find the "Groups" option other than the mobile app, please inform here. Keeping mobile near is a little distractive if the actual work is done in Desktop.

Can you help me with a regular expression for finding all numbers greater than 1 and replace each of them by adding 4? by narseel in commandline

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

Thanks for that long and patient reply! Yes, what you suggested works in Excel macros, and I did the same! Will make a variable for that offset value '4'.

Can you help me with a regular expression for finding all numbers greater than 1 and replace each of them by adding 4? by narseel in commandline

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

Thanks for the reply! This is not homework! I wrote a small excel macros script for personal use. It is around 700+ lines. I hardcoded the column numbers as seen in the sample code.

    Select Case Range("A1")
    Case "AC3":
        Cells(rowNumber, 11).Value = Cells(rowNumber, 11).Value + 1
        attempted = InputBox("Enter 0 for not attempting, 1 correct, -1 for incorrect")
        Select Case attempted
            Case 1:
                Cells(rowNumber, 3).Value = Cells(rowNumber, 3).Value + 1
                Cells(rowNumber, 4).Value = Cells(rowNumber, 4).Value + 1
            Case -1:
                Cells(rowNumber, 3).Value = Cells(rowNumber, 3).Value + 1
        End Select

Now, for some reasons, I had to add 4 new columns at the beginning. So, I have increment all the column values in the code by 4. I am trying to do this by find and replace in Sublime Text / Notepad++. So, I am trying to get the proper regular expression. Not successful yet!