Patrick Lu

Results 19 issues of Patrick Lu

Hey guys, I'm using Next.js to server side render my app. I have some components that render solely on the client, and some that render on the server. I tried...

Hey guys, I'm trying to use this package or webcrypto-shim to fix Safari's webcrypto package. I'm getting this error though: ``` Error: Unsupported algorithm 'hmac' ``` I've included asymcrypto and...

Hey guys, I don't know if I set up Raven wrong or what, but it's not logging 500 errors. I've added ``` 'raven.contrib.django.raven_compat', ``` to my INSTALLED_APPS and then also...

Hey all, I'm trying to load test my site, and found this package. It's seems to be hanging on the first step ``` patricklu@patricklu-macbook funnel-server % puppeteer-loadtest --s=100 --c=25 --file=loadtest.js...

Hey guys, not sure what's happening as this library was working earlier, but now the installation seems to be completely broken. If I try the pod installation, I'm getting an...

Hey guys, I'm trying to compile my project but I get this when I run `electron-webpack`. I also tried adding `NODE_ENV=production electron-webpack` but it's still a no go. Anyone know...

Is there an easy way to search across all indices and have the result be serialized back? For example, hitting elastic search at `localhost:9200/_search?` searches across all available indices. What's...

enhancement
work in progress
help appreciated

Hey guys, I'm using particle.js to render particles in the background, but on mobile whenever the app loads up, the particles are stretched. You can even look at browser width...

Hey guys, when we use `.animate('CUSTOM_ANIMATION')`, is there anyway to pass variables? For example, if we have: ``` const CUSTOM_ANIMATION = { from: { opacity: .05, transform: [{translateY: 10}] },...

Hey guys, getting an error when I try to use ``` this.animation.ref.transitionTo({translateY: 5}, TRANSITION_DURATION) ``` Have also tried ``` this.animation.ref.transitionTo({transform: [{translateY: 5}]}, TRANSITION_DURATION) ``` Getting this error: Anyone know the...