SubX, Subject X, Reactive Subject. Pronunciation: [Sub X]
SubX is next generation state container. It could replace Redux and MobX in our React apps.
SubX, Subject X, Reactive Subject. Pronunciation: [Sub X]
SubX is next generation state container. It could replace Redux and MobX in our React apps.
sudo: false | |
language: php | |
git: | |
depth: 5 | |
php: | |
- 7.0 |
# UPDATED 17 February 2019 | |
# Redirect all HTTP traffic to HTTPS | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name www.domain.com domain.com; | |
return 301 https://$host$request_uri; | |
} | |
# SSL configuration |
When I developed an app for ios by phonegap, I had a trouble in changing the <input> input cursor color. | |
but now, there is a solution for it: | |
--------------- | |
<style> | |
input { | |
color: rgb(60, 0, 248); /* change [input cursor color] by this*/ | |
text-shadow: 0px 0px 0px #D60B0B; /* change [input font] by this*/ | |
-webkit-text-fill-color: transparent; |