Jump to content

kiran

Member
  • Posts

    7
  • Joined

  • Last visited

Reputation Activity

  1. Like
    kiran reacted to CPotter in Tesoro GRAM Spectrum Keyboard Giveaway   
    We have partnered with Tesoro to run another great giveaway for you all!
     
    This time around we will be giving away two units of their new GRAM Spectrum mechanical keyboards!! 
     

     
    Purchase Link: http://bit.ly/29bhJkm
     
    *Worldwide Giveaway/No Age Restrictions*
     
    To enter the giveaway:
     
    1. Comment below! Tell us about the keyboard you're currently using, and why you want a new one.
     
    2. Follow Tesoro on Twitter: https://twitter.com/tesorotec
     
    Entries close on 7/8/2016. 
     
    The winner will be selected randomly, and contacted by this account via PMs and this post on the forum.
     
    *GIVEAWAY IS CLOSED, THANK YOU ALL FOR ENTERING!!*
     
    Winners are: Yoola + Stefan1024
     
    *YOU HAVE 72 HOURS TO RESPOND TO MY PMS, OR I WILL HAVE TO DRAW ANOTHER WINNER.*
     
     
  2. Like
    kiran got a reaction from ShadowCaptain in ShadowCaptain's 20k Post giveaway thread! - Extended to 23rd   
    Congrats man on 20K posts!! 
  3. Like
    kiran reacted to ShadowCaptain in ShadowCaptain's 20k Post giveaway thread! - Extended to 23rd   
    20k Post giveaway!
    Well, it happened, I hit 20k posts….. if I did one post a day, that would mean it would take nearly 55 years to hit 20k posts just to put that into perspective
     
    As with my 10k milepost, its giveaway time
     
    This will be WORLDWIDE giveaway, the only people excluded from winning are 1 post accounts since they do not contribute to the forum!
     
    There will be 2 prizes, because I am nice like that!!!!
     
    Prize 1 - A Custom ShadowCaptain T shirt - you can have a tshirt with my face on it! the photo will be unique to the t-shirt, I will take a photo, get it printed, and then the photo deleted
     
    Prize 2 - A custom mouse mat…. with my face on it….because everyone wants that
     
    To enter the competition, just post below and I will use a random number generator to find the winners!  
     
    Competition runs for 1 week, I will draw a winner Monday 16th!
     
     
     Good luck babes :wub: :wub:   :wub:   :wub:   :wub:   :wub:   :wub:
     
    EDIT!!!!!

    Hey Everyone! Thanks for entering so far!! I am extending the competition for another week, since I don't get paid until the 25th

     

    I will do the draw on the 23rd and place the order on the 25th

     

    Good Luck!!!!


  4. Like
    kiran reacted to nicklmg in Feenix Collection Giveaway   
    Are you in the market for some badass new gaming peripherals? Then look no further friends! The awesome folks over at Feenix are providing an exclusive giveaway of their whole peripheral lineup to THREE lucky winners from the Linus Tech Tips audience!
     
    In Feenix's own words, their products are "of very good quality, very comfortable, and look beautiful." Hopefully you will be one of the lucky winners who gets a chance to judge that for themselves!
     
     
    Each of the three winners will receive:

    1x Feenix Aria Headset
    1x Feenix Autore Keyboard
    1x Feenix Nascita Mouse
    1x Feenix Dimora Mousepad
     
    Alright, that's all well and good... now how do I WIN!?

    Entry is very simple - just comment below letting us and Feenix know which of their products is your favorite and why! And if you're feeling appreciative, head on over to their Twitter, give them a follow, and say thanks for providing this awesome giveaway for the community!
     
     
    The three winners will be selected at random on November 11, 2015.
     
    One entry (comment) per user.

    This is a worldwide giveaway with no age restrictions.

    Each of the three winners will be contacted by me here on the forum. Disregard any messages, emails, Tweets etc. you receive from anyone other than this account here on the forum.

    Good luck all!!
     
    ***UPDATE***
     
    Alright so the wait is over and winners have been chosen!

    Our three winners are:
     
    @xeks
    @gamertossen
    @SecretAsianMan1533

    Congrats to the winners, and thanks to everyone else who participated!
     
    ***UPDATE 11/18***
    We did not receive a reply from two of the winners, so two new winners have been selected:

    @blair5032
    @FluffyPuma
  5. Like
    kiran reacted to nicklmg in Samsung Galaxy S6 edge+ Giveaway   
    We partnered with Collective Digital Studio to give you lucky people the opportunity to be the owner of a new Samsung Galaxy S6 edge+ as part of their "Your Fest Foot Forward" campaign!

    They brought Snapchatter Shaunduras and Viner Ray Ligaya out to a few outdoor music festivals this summer and let them demonstrate how you can step your social media game up a few notches with the camera features on their new Samsung Galaxy S6 edge & edge+ smartphones. Check it out:
     
    https://www.youtube.com/watch?v=lPvM4KP-8_E&index=1&list=PLG_rGpgE_jjgdj1o6lJOjbKMoGZJ5lPSY


    How do I become the lucky new owner of a Samsung Galaxy S6 edge+ smartphone?
     
    Entry is super simple:
     
    1. Watch the video series linked above.
     
    2. Hit that "like" button on the videos in this series over on Samsung's channel.
     
    3. Comment below letting us know what your favorite feature that they highlighted in the series was.
     
     
    One entry (comment) per person. This is a worldwide giveaway. The winner will be selected on EDIT: due to the issues experienced last week, we are extending the deadline to 9/28 at 12pm PT. Best of luck all.
     
    Thanks as always for being awesome
     
    EDIT: The winner is @Maddalol! Congrats, and thanks again to everyone who entered
  6. Like
    kiran reacted to fizzlesticks in Whats wrong with this code?   
    You're using the name 'L' twice.
     
    edit: You also don't need a loop for this. Doing L * N will repeat the string L, N times.
  7. Like
    kiran reacted to manikyath in Problem with Seagate SATA HDD   
    its a paperweight.

     
    try to carefully get important data off of it, and replace it.
  8. Like
    kiran reacted to as96 in simple c++ loop question   
    #include <iostream>
    #include <string>
    int main(int argc, const char * argv[]) {
    std::string name;
    int height, width;
    std::cout << "Name: ";
    std::cin >> name;
    std::cout << "Height: ";
    std::cin >> height;
    std::cout << "widht: ";
    std::cin >> width;
    std::string space((name.length()*width) - (name.length()*2), ' ');
    std::string midRows = name + space + name;
    for(int w = 0; w < width; w++)
    std::cout << name;
    std::cout << std::endl;
    for(int h = 0; h < (height - 2); h++)
    std::cout << midRows << std::endl;
    for(int w = 0; w < width; w++)
    std::cout << name;
    return 0;
    }

×