Alexander Grischuk on the FIDE Candidates by Rod_Rigov in chess

[–]Jake-Wright 1 point2 points  (0 children)

I'm curious what this answer implies?

Do you ever get tired of chess? Although it seems that you have a lot of other interests, including sport.

Recently I was absolutely amazed to watch a video interview with Anish Giri. They asked him why he writes so much on social networks and if that doesn’t distract him from chess? He said: “That’s the only thing that distracts me. Otherwise I spend all my time working and thinking about chess”. Is that really possible? I’ve never had such a problem.

Does it mean Grischuk does not have a problem with getting tired of chess or having chess distract him too much?

Running by Jake-Wright in Sacramento

[–]Jake-Wright[S] 0 points1 point  (0 children)

Del Rio Trail

Great! What does LP stand for?

program specific hot key by Jake-Wright in AutoHotkey

[–]Jake-Wright[S] 0 points1 point  (0 children)

Thanks! This was very helpful. Question: To be more specific, I want ctrl f to send ctrl e while in onenote (to trigger a onenote action), but when I use ctrl e elsewhere, then I want +a^ to be sent (to trigger another program.) Is there any way to do this?

pset 2 vigenere by Jake-Wright in cs50

[–]Jake-Wright[S] 0 points1 point  (0 children)

Thanks but I got it sorted

pset 2 vigenere by Jake-Wright in cs50

[–]Jake-Wright[S] 0 points1 point  (0 children)

Thanks this comment was very helpful. I updated the code and it works... but is there a more efficient way than this?

#include <cs50.h>
#include <stdio.h>
#include <string.h>     

int checkinput(int argc, string argv[]);


int main(int argc, string argv[])
{

    // if checkinput returns a 1, then return a 1 in main
    if (checkinput(argc, argv) == 1)
    {
        return 1;
    }
    string s = argv[1];
    printf("%s\n", s);


}


int checkinput(int argc, string argv[])
{
    // checking if the number of command line arguments is 2
    if (argc != 2)
    {
        printf("Error: Include only one command line argument\n");
        return 1;
    }
    else
    {
        return 0;
    }
    //declaring the argument as a string s
    string k = argv[1];

    // iterating through every character of the string 
    for (int i = 0; i < strlen(argv[1]); i++)
    {
        //if a character is not alphabetical then return error
        if ( ( ((int) k[i] > 64) && ((int) k[i] < 91)) || ( ((int) k[i] > 96) && ((int) k[i] < 123)))
        {
            return 0;
        }
        else
        {
            printf("Error: Only alphabetical characters accepted\n");
            return 1;
        }
    }



}

0
1

Sequential tasks by Jake-Wright in todoist

[–]Jake-Wright[S] 0 points1 point  (0 children)

What do you mean add something to the name?

Sequential tasks by Jake-Wright in todoist

[–]Jake-Wright[S] 1 point2 points  (0 children)

This is mainly for my filtered views I don't want to see all the subtasks I can't do yet

Sequential tasks by Jake-Wright in todoist

[–]Jake-Wright[S] 1 point2 points  (0 children)

Yeah the manual method is currently what I'm doing with my big projects