sequenceDiagram
autonumber
participant mobile as Woo Mobile App
participant core as WooCommerce Core
mobile->>mobile:generate list of possible variations
note right of mobile: "abort if >100"
mobile->>core:products//variations/batch
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
""" | |
Basic skeleton of a mitmproxy addon. | |
Run as follows: mitmproxy -s anatomy.py | |
""" | |
import json | |
import os | |
# File to store events |
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
struct GravatarProfileSheet: View { | |
@Environment(\.presentationMode) var presentationMode | |
@State private var isLoading = true | |
var email: String | |
var body: some View { | |
NavigationView { | |
VStack { | |
ProfileViewControllerWrapper(email: email) |
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
> Task :buildEnvironment | |
------------------------------------------------------------ | |
Root project 'wordpress-rs' | |
------------------------------------------------------------ | |
classpath | |
+--- com.android.application:com.android.application.gradle.plugin:8.5.1 | |
| \--- com.android.tools.build:gradle:8.5.1 | |
| +--- com.android.tools.build:gradle-settings-api:8.5.1 |
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
From 55199e2344e932ec3dc85f99202bd95c3b7f4199 | |
// Automatically generated file. DO NOT MODIFY | |
package org.wordpress.android.util.config | |
import kotlin.String | |
import kotlin.collections.List | |
public object FeaturesInDevelopment { | |
public val featuresInDevelopment: List<String> = listOf( |
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
From ec1baba114bba7d8eb6557fff1f48c581ab8870b | |
// Automatically generated file. DO NOT MODIFY | |
package org.wordpress.android.util.config | |
import kotlin.String | |
import kotlin.collections.List | |
public object FeaturesInDevelopment { | |
public val featuresInDevelopment: List<String> = listOf( |
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
#!/usr/bin/env python3 | |
from collections import namedtuple | |
import os | |
import shutil | |
import re | |
import json | |
import argparse | |
parser = argparse.ArgumentParser( |
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
if ./gradlew "$@" ; then | |
osascript -e "display notification \"Success\" with title \"Gradle\" sound name \"hero\"" | |
else | |
osascript -e "display notification \"Failure\" with title \"Gradle\" sound name \"bottle\"" | |
fi |
sequenceDiagram
autonumber
participant mobile as Woo Mobile App
participant core as WooCommerce Core
mobile->>mobile:generate list of possible variations
loop Until all variations created
mobile->>core:products//variations/batch
sequenceDiagram
autonumber
participant mobile as Woo Mobile App
participant core as WooCommerce Core
participant core_internal as CRON? Internal jobs?
mobile->>core:create_variations?product_id=<id>
loop Until all variations created
NewerOlder