This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": [ | |
["env", { | |
"targets": { | |
"browsers": ["last 2 versions"] | |
} | |
}], | |
["react"] | |
], | |
"plugins": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path'); | |
const webpack = require('webpack'); | |
const CleanWebpackPlugin = require('clean-webpack-plugin'); | |
module.exports = { | |
mode: 'development', | |
entry: { | |
// Set the single-spa config as the project entry point | |
'single-spa.config': 'single-spa.config.js', | |
}, | |
output: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {registerApplication, start} from 'single-spa' | |
registerApplication( | |
// Name of our single-spa application | |
'home', | |
// Our loading function | |
loadingFunction, | |
// Our activity function | |
() => location.pathname === "" || location.pathname === "/" || location.pathname.startsWith('/home')) | |
); | |
start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def shared_locations(self): | |
""" | |
A dictionary of shared locations whose keys are in the set 'prefix', | |
'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. | |
The corresponding value is the absolute path of that category for | |
this distribution, and takes into account any paths selected by the | |
user at installation time (e.g. via command-line arguments). In the | |
case of the 'namespace' key, this would be a list of absolute paths | |
for the roots of namespace packages in this distribution. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def _warn_unsafe_extraction_path(path): | |
""" | |
If the default extraction path is overridden and set to an insecure | |
location, such as /tmp, it opens up an opportunity for an attacker to | |
replace an extracted file with an unauthorized payload. Warn the user | |
if a known insecure location is used. | |
See Distribute #375 for more details. | |
""" | |
if os.name == 'nt' and not path.startswith(os.environ['windir']): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
postgres: | |
image: postgres:9.6 | |
environment: | |
- POSTGRES_USER=airflow | |
- POSTGRES_PASSWORD=airflow | |
- POSTGRES_DB=airflow | |
ports: | |
- "5432:5432" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Properties consumerProperties = new Properties(); | |
consumerProperties.put("bootstrap.servers", kafkaBootstrapServers); | |
consumerProperties.put("group.id", zookeeperGroupId); | |
consumerProperties.put("zookeeper.session.timeout.ms", "6000"); | |
consumerProperties.put("zookeeper.sync.time.ms","2000"); | |
consumerProperties.put("auto.commit.enable", "false"); | |
consumerProperties.put("auto.commit.interval.ms", "1000"); | |
consumerProperties.put("consumer.timeout.ms", "-1"); | |
consumerProperties.put("max.poll.records", "1"); | |
consumerProperties.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Properties consumerProperties = new Properties(); | |
consumerProperties.put("bootstrap.servers", kafkaBootstrapServers); | |
consumerProperties.put("group.id", zookeeperGroupId); | |
consumerProperties.put("zookeeper.session.timeout.ms", "6000"); | |
consumerProperties.put("zookeeper.sync.time.ms","2000"); | |
consumerProperties.put("auto.commit.enable", "false"); | |
consumerProperties.put("auto.commit.interval.ms", "1000"); | |
consumerProperties.put("consumer.timeout.ms", "-1"); | |
consumerProperties.put("max.poll.records", "1"); | |
consumerProperties.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
package="com.corneliouz.quicktasks"> | |
<application | |
android:allowBackup="true" | |
android:fullBackupContent="@xml/device" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<color name="colorPrimary">#008577</color> | |
<color name="colorPrimaryDark">#00574B</color> | |
<color name="colorAccent">#FBC02D</color> | |
</resources> |