Douglas Galdino

Results 208 comments of Douglas Galdino

Didnt work. ``` > pip3 install requests Requirement already satisfied: requests in /usr/lib/python3/dist-packages (2.22.0) ``` though both pip and pip3 goes to python3

It seems there is nothing built-in, but you can do by hand. ``` function delay(ms) { return new Promise((resolve) => setTimeout(resolve, ms)); } async function requestWithRetry( requestPromise, { retries =...

You could give the option and recommend the svg library to whoever is using and want shimmer. Maybe even restrict and make it required so no glitchs appear.

I had a case of blank list in an app that I am working on, using react-navigation, I had two bottom tab routes, one with the list of collections in...

Would be too hard to give the lib consumer a prop so he would choose to make `renderHeader` a part or not, of the recycle list content? In my case...

I mean, would be cool to have separate styling option as props, one for the `renderHeader` and another for the `renderItem` list which already is the `contentContainerStyle`. I think that's...

You can have a `appcenter-pre-build.sh` in the root folder ``` #!/usr/bin/env bash echo $CODE_PUSH_ANDROID_SECRET | base64 --decode > "$APPCENTER_SOURCE_DIRECTORY/android/app/src/main/assets/appcenter-config.json" echo $CODE_PUSH_IOS_SECRET | base64 --decode > "$APPCENTER_SOURCE_DIRECTORY/ios/Shyn/AppCenter-Config.plist" ``` And for each...

Actually just `0.0.0.0:PORT` are enough. No need to get the local ip. Default port http://0.0.0.0:3000

Hey @mimiqkz you can try improving the typing. `goober.d.ts` ``` declare module "goober" { export interface DefaultTheme extends StyledFunction { palette: YourPaletteType; // or typeof theme.palette; (by importing the theme...