- 5,390
- 2,593
Tell me about it. I forgot to agree to the terms and services. I wanted to punch my own face.Congrats to all who copped. I'm upset because I hella screwed up but oh well live and learn.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Tell me about it. I forgot to agree to the terms and services. I wanted to punch my own face.Congrats to all who copped. I'm upset because I hella screwed up but oh well live and learn.
Yeah, those are the only two things: Terms and Services checkbox, state selection. Eeverything else is automatically entered (if you save your address) or entered manually (CC/CVV/Exp Date)For some reason my state is never selected, but I've learned and since I didn't have anything crazy in the cart this week caught it before hitting submit the first time.
while I agree with this statement, you have to ask yourself if you're willing to contribute to another problem which is the inflated aftermarket. Call it selfish, call it cheating but with the way that the game has gone you have to lookout for yourself above all else if you're really interested in a product. When I was copping heavy about a year ago when bots came to the scene outside of the underground people that knew about em, I was pissed at people for using them and I ended up paying resale for everything. Then I realized that Nike and other brands don't give a sh*t and that's when my purist, "everyone needs to go manual" attitude went straight out of the window. the days of being able to honorably cop stuff are long gone lol. I can't settle for putting myself out a disadvantage week in and week out.
Like I said, I'm a purist and always will be. I like the fact that I'm a regular human being. Ya'll can cook on the steroids of copping releases but I'm not gonna pull a Mark McGuire just to be the best. It actually ends up meaning that you're the WORST. It's like if everyone in baseball started taking steroids, it ruins the sport. I know I'd have better chances, but I'm content not adding to the problem and taking an L some of the time.
I screws up worse. Had a keychain in cart, accidentally hit view cart while refreshing and ordered...then I had lebain in cart but the keychain was still there so I had to remove it. Aw well!
I think he's saying he accidentally ordered the keychain but then because the keychain was in the cart (and he already ordered it) supreme wouldn't let the order process until he removed the keychain.Man, I'd have eaten the cost of that keychain, it's not like it really blows the price up or anything.
I'm still torn from missing out earlier.
Congrats to those that got the Le Bain to actually wear though.
M&N is running a sale on most of their jerseys, $100 each:
Bought a few to fill the hole the Le Bain left,.
Who did you grab?
To avoid such issues I always add something to cart, hit checkout, enter info, then go to another tab and remove the product from cart. That way I only order the thing I'm trying to buy and never have to pay for something unnecessary or risk something like that. But then again, I apparently don't agree to the terms and conditions so my tactics don't really help me all that much anyways haha.OH, in that case, yeah I'd be a little heated. That sucks.
Yeah it sucked but whatever. I was gonna oop it to a friend or flip it.To avoid such issues I always add something to cart, hit checkout, enter info, then go to another tab and remove the product from cart. That way I only order the thing I'm trying to buy and never have to pay for something unnecessary or risk something like that. But then again, I apparently don't agree to the terms and conditions so my tactics don't really help me all that much anyways haha.
as long as you're ok with the L and not seasoning the thread with salt, can't knock it.
Like I said, I'm a purist and always will be. I like the fact that I'm a regular human being. Ya'll can cook on the steroids of copping releases but I'm not gonna pull a Mark McGuire just to be the best. It actually ends up meaning that you're the WORST. It's like if everyone in baseball started taking steroids, it ruins the sport. I know I'd have better chances, but I'm content not adding to the problem and taking an L some of the time.
so are you saying the guy in your scenario is just SOL? he can't cop a size not his and he shouldn't pay resale that inflates the market.
There are definitely degrees. Yes, buying 8 hoodies is worse. But at the end of the day, he couldn't handle an L so he bought a size he can't fit. He has every right to do it, and there's nothing illegal about it, but it is selfish (in my book). Capitalism favors self-preservation.
I hope he gets his size because I genuinely desire that all people who wanted the hoodie to wear got it at or around retail. Just saying I don't agree with his methods but I seriously hope he cooks and it's nice of you to help him out in his quest.
I still season the thread with salt because who's not salty after an L? Haha it goes away, and you get over it.
as long as you're ok with the L and not seasoning the thread with salt, can't knock it.
so are you saying the guy in your scenario is just SOL? he can't cop a size not his and he shouldn't pay resale that inflates the market.
you know I got you fam! I always help where i can!
as long as you're ok with the L and not seasoning the thread with salt, can't knock it.
i've been playing around with a supreme bot - haven't actually used it - and man, i can see the appeal! i put this thing through all kinds of tests to see if i could outsmart it but it kept finding and adding the item. not too comfortable putting your CC info in there so wouldn't go that far but i def anticipate a bot being part of my routine going forward. yo @ronaldcinho might need to DM ya on that one playa
so are you saying the guy in your scenario is just SOL? he can't cop a size not his and he shouldn't pay resale that inflates the market.
I have said it before but Le Bain is my #1 pick from all of SS 2014. I'd sell my TNF Backpack at retail to cover costs for Le Bain resell but I really won't pay more than $230.If you really want le Bain, 140 extra ain't horrible if you compare to the resell on some shoes. If you can wait awhile I'm sure you'll cop more reasonably. Bogos went from 300 on release day to like 150 now.
For some reason my state is never selected, but I've learned and since I didn't have anything crazy in the cart this week caught it before hitting submit the first time.
If you just fill out the info in advance, you never have to enter any info just hit checkout. Plus you can save the address, so if you're on top of it, just enter your card info about 5 minutes before release and no issues.if you're only purchasing with one card everytime, you should just go ahead and create a Tampermonkey script
the page loads with your info filledall you'll have to do is check terms & check out// ==UserScript==
// @name SUPREME Checkout
// @namespace supremenewyork.com/shop
// @description Automatically enters checkout information.
// @include https://www.supremenewyork.com/checkout
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==
var Card = {
type: "Visa",
number: "1111222233334444",
expMo: "00",
expYr: "2000",
cvcCode: "123",
name: "Jay2da3airjordan",
email: "[email protected]",
tel: "1112223333",
address: "64 64 Zoo Lane",
zip: "11111",
city: "FALLS CHURCH",
state: "VA",
country: "USA",
}
//Do not edit anything below this line.
var paymentMethod = "Credit Card";
function selectOption(s, v) {
for ( var i = 0; i < s.options.length; i++ ) {
if ( s.options.text == v ) {
s.options.selected = true;
return;
}
}
}
function fillWithData() {
selectOption(document.getElementsByTagName('select')[1],Card.type);
document.getElementById("credit_card_number").value = Card.number;
document.getElementById("credit_card_month").value = Card.expMo;
document.getElementById("credit_card_year").value = Card.expYr;
document.getElementById("credit_card_verification_value").value = Card.cvcCode;
document.getElementById("order_billing_name").value = Card.name;
document.getElementById("order_email").value = Card.email;
document.getElementById("order_tel").value = Card.tel;
document.getElementById("order_billing_address").value = Card.address;
document.getElementById("order_billing_zip").value = Card.zip;
document.getElementById("order_billing_city").value = Card.city;
document.getElementById("order_billing_state").value = Card.state;
document.getElementById("order_billing_country").value = Card.country;
}
fillWithData();
I still season the thread with salt because who's not salty after an L? Haha it goes away, and you get over it.
And yeah, I'm saying at that point you either hope you get an oop, or a price you can live with, or move on. Again, when people make the decision to purchase something they can't fit, they're actively saying "you're not as important as me" to any of the people whose size was just taken off the retail market for no good reason other than this dude can't take a freakin L. In my opinion, it's selfish and immature. Like the example I made earlier, it's no different than someone cutting in line.
Also, I can't tell you how many times I've seen people buy another size when the person behind them in line IS that size. So you're just gonna take the last pair that this other dude could fit? Selfish. Don't see how it's any different online. Just a bunch of people justifying their own behavior.
I'm hoping haha, you think it's likely? I've been watching the page like a hawk for the past couple of hours.
hopefully theres another restock for everyone that missed out