Apple farmers exit industry after pocketing a rise of just 50c a kilo in 20 years
Retail fruit prices have barely changed in two decades, exports have dropped to around two per cent of the nation’s crop and producers are fleeing the industry, new data from a NSW Farmers Association survey reveals. ⌘ Read more
Someone just asked me to send them my notes on a topic.
I was like “No problem!” and exported a PDF from my remarkable.
But uhm…
Good luck. 😅 ⌘ Read more
@prologic@twtxt.net I use FreeOTP+ from F-Droid and it does what I need. It may be considered bad practice but I do use the import/export functionality to sync devices.
Updated China-Australia trade list welcomed by citrus industry
Australia’s citrus industry welcomes an administrative milestone, the publication of a new list of orchards, packhouses and treatment facilities allowed to export to China. ⌘ Read more
Grape growers eye off diverse new markets for export
Wine exporters across regional Victoria are building stronger ties with overseas countries to offload a glut of red wine, in what is being described as one of the most challenging harvests the sector has ever seen. ⌘ Read more
Just finished writing my doc on how I’m using Parabola to export LJ to Plume https://ouvaton.link/F0KxT5
Wineries eye further opportunities in US as producers continue to feel the squeeze from China tariffs
More than two years after China placed tariffs on Australian wine, SA producers are still looking for alternative markets for their product. ⌘ Read more
How to create a keyboard shortcut to export the current slide in Keynote
Lately I’ve been using Apple Keynote to create graphics for using in videos and blog posts. It’s a quick way to arrange things on a page, copying and pasting most things just works, and there are enough built in shapes and tools to get the point across. However, after spending a full day creating graphics for a video, I found myself frustrated by the number of clicks required to export a single slide at a time. ⌘ Read more
Announcing Docker Hub Export Members
Find out how Docker Business admins can export members to track their utilization of Docker and audit Docker usage. ⌘ Read more
Scan QR codes right from your Linux Terminal
… you can export the QR codes as images… or even ASCII art! Neat! ⌘ Read more
Pakistan loves chai so much, it may need to export green tea to fund its addiction
Tea is deeply entrenched across gender and social classes in Pakistan, even as the country explores non-import alternatives like herbal and green tea. ⌘ Read more
How’s the China-India economic relationship changed 2 years on from the deadly Galwan Valley border clash?
China’s exports to India grew to US$27.1 billion in the first quarter of 2022, but India is concerned by its ballooning trade deficit with its neighbour amid strained ties two years after the deadly Galwan Valley clash. ⌘ Read more
China’s world’s factory tag threatened by Vietnam, but ‘there’s nothing to worry about’, analysts say
Vietnam’s first quarter exports reached US$88.58 billion, up by 12.9 per cent from the previous year, with Chinese state media comparing the shipments in the first three months of the year to China’s main export hub of Shenzhen. ⌘ Read more
Indonesia looks to Singapore to offload its surplus chickens
Indonesia produces 55 million to 60 million chickens per week and currently has a surplus. Singapore has been scrambling to find alternative supply sources since Malaysia restricted poultry exports. ⌘ Read more
EU seeks to release Ukrainian grain stuck due to Russia’s sea blockade
The EU supports efforts by the United Nations to broker a deal to resume Ukraine’s sea exports in return for easing Russian food and fertiliser exports, but that would need Moscow’s green light. ⌘ Read more
China’s latest hot export is a US$50 toy Russian fighter jet that ‘will never break’, helped by social media such as TikTok
The fighter jet toy, with a price tag of less than US$50 on e-commerce sites such as eBay and Amazon, has gained popularity for its affordability and durability. ⌘ Read more
China manufacturing: fresh lay-offs in the Pearl River Delta add to worries over economic slowdown
In the Pearl River Delta, factories are laying off workers and young people are struggling to find casual jobs as China’s export machine slows amid multiple headwinds. ⌘ Read more
US pressures Iran by targeting Hong Kong and UAE firms
Penalties over petrochemical exports were also imposed on Chinese citizen Jinfeng Gao and Indian national Mohammed Shaheed Ruknooddin Bhore. ⌘ Read more
How would a US recession impact Singapore, Malaysia, Thailand amid surging inflation?
If the US were to enter a recession, export-reliant Singapore and Malaysia would be among the worst hit, while remittances to the Philippines may decline, analysts say. ⌘ Read more
#!/bin/sh
# Validate environment
if ! command -v msgbus > /dev/null; then
printf "missing msgbus command. Use: go install git.mills.io/prologic/msgbus/cmd/msgbus@latest"
exit 1
fi
if ! command -v salty > /dev/null; then
printf "missing salty command. Use: go install go.mills.io/salty/cmd/salty@latest"
exit 1
fi
if ! command -v salty-keygen > /dev/null; then
printf "missing salty-keygen command. Use: go install go.mills.io/salty/cmd/salty-keygen@latest"
exit 1
fi
if [ -z "$SALTY_IDENTITY" ]; then
export SALTY_IDENTITY="$HOME/.config/salty/$USER.key"
fi
get_user () {
user=$(grep user: "$SALTY_IDENTITY" | awk '{print $3}')
if [ -z "$user" ]; then
user="$USER"
fi
echo "$user"
}
stream () {
if [ -z "$SALTY_IDENTITY" ]; then
echo "SALTY_IDENTITY not set"
exit 2
fi
jq -r '.payload' | base64 -d | salty -i "$SALTY_IDENTITY" -d
}
lookup () {
if [ $# -lt 1 ]; then
printf "Usage: %s nick@domain\n" "$(basename "$0")"
exit 1
fi
user="$1"
nick="$(echo "$user" | awk -F@ '{ print $1 }')"
domain="$(echo "$user" | awk -F@ '{ print $2 }')"
curl -qsSL "https://$domain/.well-known/salty/${nick}.json"
}
readmsgs () {
topic="$1"
if [ -z "$topic" ]; then
topic=$(get_user)
fi
export SALTY_IDENTITY="$HOME/.config/salty/$topic.key"
if [ ! -f "$SALTY_IDENTITY" ]; then
echo "identity file missing for user $topic" >&2
exit 1
fi
msgbus sub "$topic" "$0"
}
sendmsg () {
if [ $# -lt 2 ]; then
printf "Usage: %s nick@domain.tld <message>\n" "$(basename "$0")"
exit 0
fi
if [ -z "$SALTY_IDENTITY" ]; then
echo "SALTY_IDENTITY not set"
exit 2
fi
user="$1"
message="$2"
salty_json="$(mktemp /tmp/salty.XXXXXX)"
lookup "$user" > "$salty_json"
endpoint="$(jq -r '.endpoint' < "$salty_json")"
topic="$(jq -r '.topic' < "$salty_json")"
key="$(jq -r '.key' < "$salty_json")"
rm "$salty_json"
message="[$(date +%FT%TZ)] <$(get_user)> $message"
echo "$message" \
| salty -i "$SALTY_IDENTITY" -r "$key" \
| msgbus -u "$endpoint" pub "$topic"
}
make_user () {
mkdir -p "$HOME/.config/salty"
if [ $# -lt 1 ]; then
user=$USER
else
user=$1
fi
identity_file="$HOME/.config/salty/$user.key"
if [ -f "$identity_file" ]; then
printf "user key exists!"
exit 1
fi
# Check for msgbus env.. probably can make it fallback to looking for a config file?
if [ -z "$MSGBUS_URI" ]; then
printf "missing MSGBUS_URI in environment"
exit 1
fi
salty-keygen -o "$identity_file"
echo "# user: $user" >> "$identity_file"
pubkey=$(grep key: "$identity_file" | awk '{print $4}')
cat <<- EOF
Create this file in your webserver well-known folder. https://hostname.tld/.well-known/salty/$user.json
{
"endpoint": "$MSGBUS_URI",
"topic": "$user",
"key": "$pubkey"
}
EOF
}
# check if streaming
if [ ! -t 1 ]; then
stream
exit 0
fi
# Show Help
if [ $# -lt 1 ]; then
printf "Commands: send read lookup"
exit 0
fi
CMD=$1
shift
case $CMD in
send)
sendmsg "$@"
;;
read)
readmsgs "$@"
;;
lookup)
lookup "$@"
;;
make-user)
make_user "$@"
;;
esac
Collecting Twitter data with TAGs and exporting to Gephi – Doug Specht
I’ve got to try this out on datasets I have collected with TAGS ⌘ Read more
Tech tip: To download a Google spreadsheet directly, replace /edit and anything after in the URL with /export?format=ods or any other format
How to export your complete Foursquare checkin history ⌘ Read more…
GitHub Artifact Exporter open source release ⌘ Read more…
Bookmarks exported and imported \o/
https://orgmode.org/worg/exporters/taskjuggler/ox-taskjuggler.html emacs gantt orgmode
some good initial progress with the !weewiki zettelkasten. messages can be made and tied to previous messages by providing partial UUIDs (that then get automatically expanded). basic export also works. #updates
How to Leave Google Photos | written by Robbie Antenesse ⌘ https://robbie.antenesse.net/2020/11/25/exporting-google-photos.html
I really really need to add page navigation to !worgle programs exported to !weewiki wiki pages.
The master plan is to export the !worgle bits of !monolith to a !weewiki, then begin adding user-level documentation that is able to dynamically reference bits of source code as another wiki page.
Posted to Entropy Arbitrage: Small Technology Notes https://john.colagioia.net/blog/2020/02/05/recutils.html #techtips #recutils #linux #sqlite #export
USA Wants to Restrict AI Exports: A Stupid and Dangerous Idea – Lauren Weinstein’s Blog https://lauren.vortex.com/2019/01/02/usa-wants-to-restrict-ai-exports-a-stupid-and-dangerous-idea
Reidl on that export control on AI tech I talked about a couple weeks ago: https://medium.com/@mark_riedl/us-export-control-of-artificial-intelligence-research-considered-harmful-fb2986fb3f14
The Little Regulation That Will Make a Big Change in How You Do Business: Department of Commerce to Establish New Export Controls on Emerging Technologies - Lexology https://www.lexology.com/library/detail.aspx?g=205f4c5f-17c7-4d18-9967-a01983883706
Heads up, apparently there are gonna be export restrictions on neural net, reinforcement learning, computer vision, NLP, & similar research done in the US: https://www.federalregister.gov/documents/2018/11/19/2018-25221/review-of-controls-for-certain-emerging-technologies
Bad idea of the day: a prolog repl, except pred definitions are checked in reverse definition order and all pred definitions not starting with underscore are persistent. you can export the persistent environment image as a regular prolog file.
#txtnish supports exporting your timeline to html with –theme html since last night. See https://domgoergen.com/twtxt/timeline.html for an example.
@tx@0x1A4.1337.cx Is you page publicly accessable? Maybe i should add exporting to html to #txtnish, seems like a thing many users wan to to?