ditto -ck --sequesterRsrc --keepParent `ls -1 -d -t ~/Library/Developer/Xcode/DerivedData/*/Build/Products/*-iphonesimulator/*.app | head -n 1` /path/ofyourchoice/MyApp.zip
ios-sim launch /path/to/your-app.app
version: '3' | |
services: | |
strapi: | |
image: strapi/strapi | |
container_name: strapi_mysql | |
environment: | |
DATABASE_CLIENT: mysql | |
DATABASE_HOST: mysql | |
DATABASE_NAME: ${DATABASE_NAME:-strapidb} |
version: "3" | |
services: | |
strapiexample: | |
image: strapi/strapi | |
container_name: strapiexample | |
restart: unless-stopped | |
env_file: .env | |
environment: | |
DATABASE_CLIENT: ${DATABASE_CLIENT} | |
DATABASE_NAME: ${DATABASE_NAME} |
import org.w3c.dom.Element | |
import org.w3c.dom.Node | |
import javax.xml.transform.dom.DOMSource | |
import javax.xml.transform.stream.StreamResult | |
import javax.xml.transform.TransformerFactory | |
import javax.xml.transform.Transformer | |
/** | |
* For apps targeting Android 12, if the AndroidManifest.xml file contains <activity>, <activity-alias>, <service>, or |
<?php | |
/** | |
* This sample code comes with the shipping web service of La Poste Colissimo | |
* The example builds a request, send it to the web service, then parse its response and save the generated label to the | |
specified location | |
* @author La Poste Colissimo - [email protected] | |
*/ | |
define("SERVER_NAME", 'https://ws.colissimo.fr'); //TODO : Change server name | |
define("LABEL_FOLDER",'./labels/'); //TODO : Change OutPut Folder: this is where the label will be saved | |
//Build the input request : adapt parameters according to your parcel info and options |
version: '3.3" | |
services: | |
redis: | |
container_name: redis | |
image: redis:4.0.11-alping | |
environment: | |
- REDIS_PASSWORD=mypassword | |
- REDIS_REPLICATION_mode=master | |
#command | |
#- "--requirepass=mypassword" |
git checkout -f HEAD |
# Remove all Underscore prefix files DS_Store | |
- Type this command in Terminal | |
sudo find / -name "._*" -exec rm -rf {} \; |
A Pen by Alexandre Magnier on CodePen.