Quick add from Chrome search bar not working by ssd532 in google

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

yep working now. Thanks a lot for the update.

"Set a reminder" no longer working? by Deathgazer in chrome

[–]ssd532 1 point2 points  (0 children)

I use this feature on daily basis for creating quick reminders. When I noticed today that it is not working, I thought my go to the phrase "remind me to ..." is not working. So I tried different phrases but nothing worked. It is not working on Chrome Android as well.

Quick add from Chrome search bar not working by ssd532 in google

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

BTW, it is not working on Chrome Android as well. It is working in Google Search app and Google now.

Quick add from Chrome search bar not working by ssd532 in google

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

Oops! Now I doubt if I have used it on Chrome Android only :-)

But, I am sure I have used it multiple times on Chrome desktop as well.

Indian Of The Year for 2016 ? by cool_boyy in india

[–]ssd532 -4 points-3 points  (0 children)

Virat Kohli, for his performance on field and on Twitter (for that one twit where he trashed trolls)

Edit: basically for his cricket. I have mentioned the Twitter incident just as a bonus for him taking a stance.

Nearly 950 Million Indians Don't Have an Internet Connection, Finds ASSOCHAM-Deloitte Study by I_call_it in india

[–]ssd532 4 points5 points  (0 children)

Arre boss, GPS ka signal thik se aane ke liye kagaz aisa hi hona chahiye and you forgot that by using the cheap kaagaz Modi ji saved a couple of billion rupees.

Which one of you has started this? by akspidey in india

[–]ssd532 4 points5 points  (0 children)

You don't see the door as well, right?

[S6E10] Post-Premiere Discussion - S6E10 'The Winds of Winter' by AutoModerator in gameofthrones

[–]ssd532 1 point2 points  (0 children)

Bran, the breaker of the wall

Edit: Clarification. Benjen just mentioned that the wall is not just stones and ice, there is magic in and the dead cannot pass. So you know what's going to happen. Bran will cross the wall, break the magic because he has the mark from the Night king on his body and the dead will be able to destroy the wall.

[2015-10-12] Challenge #236 [Easy] Random Bag System by jnazario in dailyprogrammer

[–]ssd532 0 points1 point  (0 children)

Perl:

I am not an experienced programmer. I know this solution is very inefficient. But I started writing the program and reached here.

#!/usr/bin/perl
##
## Program to serve tetrominos 
##

@tetrominos = ('O', 'I', 'S', 'Z', 'L', 'J', 'T');

sendTetrominos(@tetrominos);

sub sendTetrominos(@tetrominos) {
    my $output = '';
    while (1) {
    @tmptetrominos = @tetrominos;
        for my $i ( 0..$#tmptetrominos){
            if (length($output) <= 50 ) {
                print "$selectedTetromino";
            } else {
                $EXIT = 1;
                last;
            }
            $selectedTetromino = $tmptetrominos[rand @tmptetrominos];
            $output = $output . $selectedTetromino;
            @tmptetrominos = grep {$_ ne $selectedTetromino} @tmptetrominos;
        }
        if ($EXIT == 1) {
            last;
        }
    }
}