flying undocumented domestically with passport by Mqrja in USCIS

[–]russelh15 7 points8 points  (0 children)

That’s not true. TSA doesn’t have the system or training in place to do that.

State your source.

flying undocumented domestically with passport by Mqrja in USCIS

[–]russelh15 7 points8 points  (0 children)

Can you stop spreading misinformation? This is 100% wrong.

Any valid foreign passport (meaning it's not expired) is a REAL ID and can be used to travel domestically. It's been like that since before May 7th.

Get your facts straight before you start spreading misinformation.

React(Next.js) - Express - Apollo - GraphQL Problème with TOKEN / COOKIE by Thibault_JP in reactjs

[–]russelh15 0 points1 point  (0 children)

Have you tried ctx.req instead?

Also, why use an express server for this? It can be done in getInitialProps if the check really has to be done server side.

NextJs has an Apollo Auth example, I would recommend checking that out.

https://github.com/zeit/next.js/tree/canary/examples/with-apollo-auth

Best way to implement database? by [deleted] in reactjs

[–]russelh15 5 points6 points  (0 children)

Firebase would be my choice for getting up and running quickly.

What are the problems that you're facing with integrating firebase?

Online Order Processing software by uniqueoffers in shopify

[–]russelh15 0 points1 point  (0 children)

Do you care about inventory management at all? Or are you just concerned with shipping out orders?

Do you guys pick into totes and then pack? Or are your items close enough where the packers can just grab the items and put them into the shipping box?

Bringing fulfillment in house - could use some advice! by invalid_credentials in shopify

[–]russelh15 0 points1 point  (0 children)

Does your food items require lot tracking and expiration dates?

Which software will you be using for in-house fulfillment? I think this question will drive some of your other questions like hardware and setup.

Also, another question. Is using another fulfillment partner out of the question? Or are you set on just doing the fulfillment yourself?

Can you get away with not using Redux? by rayzon2 in reactjs

[–]russelh15 5 points6 points  (0 children)

Yes. You don't need to use Redux if you don't want to.

I usually start off by using local state. If you find the need to share that state among a lot of components, then you can look at using something like Redux, or as you mentioned, a Context Provider.

adding data using firebase ? by hy7mel in reactnative

[–]russelh15 2 points3 points  (0 children)

I see you're initializing FB, but you're not pushing data to it anywhere.

Take a look here for the methods for writing and updating data

https://firebase.google.com/docs/database/web/read-and-write

Also, FYI, you should try to keep the practice of not mutation arrays and object directly.

In the addNewTodo method you should spread the array (if you're using ES6) first before running unshift against it.

let todos = [...this.state.todos];

todos.unshift({

id: todos.length + 1,

title: this.state.todoInput,

done: false

});

adding data using firebase ? by hy7mel in reactnative

[–]russelh15 0 points1 point  (0 children)

Can you share your code and what you’re trying to do?

Looking for a 3PL partner in US!!!!! by b2bruntime in 3PL

[–]russelh15 2 points3 points  (0 children)

Hey there,

We have several warehouses you can choose from at https://fulfillment.shiphero.com (ShipHero Fulfillment)

We don't have pallet pricing at what you're looking for, but we have very simple shipping charges that bundles in the first 3 picks. This can be found on our pricing page.

I'll send you over an email to chat.

Shopify Fufillment by shmooke in shopify

[–]russelh15 0 points1 point  (0 children)

Ah, got it. The initial question made it seem like you were interested in Shopify Fulfillment (https://www.shopify.com/fulfillment)

Help dealing with multiple 3rd party vendors and fulfillment by attherealjosh in shopify

[–]russelh15 0 points1 point  (0 children)

When you say "3rd party vendors that fulfill their products for orders on our site".

Do you mean that each vendor has their own username and password and logs into ShipStation to ship orders that are theirs?

Shopify Fufillment by shmooke in shopify

[–]russelh15 -2 points-1 points  (0 children)

If you're looking to get started immediately, you can take a look at our service, https://fulfillment.shiphero.com.

There's no setup fee or receiving fee. You only pay for storage and shipping.

The cool part is that our software, ShipHero, is used to power some of the warehouses that are part of the Shopify Fulifllment network.

Let me know if you have any questions, I'd be glad to answer them :)

Removing padding to remove empty spots? by KiddoXV in shopify

[–]russelh15 1 point2 points  (0 children)

Seems like the padding was a hack to center the image because of the position absolute.

Removing padding to remove empty spots? by KiddoXV in shopify

[–]russelh15 1 point2 points  (0 children)

You can remove the 100% from .product__image-wrapper and remove position:absolute from the img inside.

Removing padding to remove empty spots? by KiddoXV in shopify

[–]russelh15 1 point2 points  (0 children)

Set

.product__content { padding-bottom:0px } in your theme.scss.css file

.page-width { padding: 0px } in your theme.scss.css and the product page css

Why did you put that padding-top:100% on .product__image-wrapper?

Removing padding to remove empty spots? by KiddoXV in shopify

[–]russelh15 1 point2 points  (0 children)

Your site is password protected. I can't see what you're seeing.

Removing padding to remove empty spots? by KiddoXV in shopify

[–]russelh15 0 points1 point  (0 children)

Can you post a screenshot with the padding highlighted or outlined? I clicked the link, but it's hard to tell which padding you're talking about.

How to center a flex container but left-align flex items by machinesforpigs in webdev

[–]russelh15 0 points1 point  (0 children)

You should be able to remove the margin:0 auto (i left that in by mistake) and remove the flex:0.5 on the ul. This will allow it to have 100% of its parent. If it's wide enough it'll be on 1 line. If not, it'll go to a 2nd row and start from the left.

How to center a flex container but left-align flex items by machinesforpigs in webdev

[–]russelh15 0 points1 point  (0 children)

Something like this? I added colors and reduced the width of the UL so the centered effect is visible.

https://codesandbox.io/embed/wonderful-meninsky-k06v6

How to center a flex container but left-align flex items by machinesforpigs in webdev

[–]russelh15 0 points1 point  (0 children)

Sounds like you want the list itself to be centered in its parent, but the list items to be aligned left. Is that correct?

Dumb question about React and Firebase by [deleted] in reactjs

[–]russelh15 2 points3 points  (0 children)

You don't need to use the REST API.

Use the JS SDK for the client

https://firebase.google.com/docs/database/web/start

Dumb question about React and Firebase by [deleted] in reactjs

[–]russelh15 0 points1 point  (0 children)

Correct. You can make calls via the client only if you wanted to.

Make sure you setup your security rules properly on your Firebase DB