Archive for the ‘Uncategorized’ Category.
May 21, 2021, 08:17
I wanted to see the settings and profile used to print the sample Owl_pair.gcode. The file has the settings included at the end starting with
;CURA_PROFILE_STRING:
After that there is the base64 encoded zlib inflated profile data. You can extract it by removing everything before the following start code similar to ‘eNrtWk’ (6 bytes or chars) and after the == at the end of this line.
Here is a single line to do this within a Linux system with zlib-flate fro qpdf installed:
awk -F ';CURA_PROFILE_STRING:' '{print $2}' <Owl_pair.gcode |base64 -d -i | zlib-flate -uncompress | tr '\010' '\012' >Owl_pair.gcode.settings
Or here the bash script I used:
#!/bin/sh
# awk -F ';CURA_PROFILE_STRING:' '{print $2}' <Owl_pair.gcode |base64 -d -i | zlib-flate -uncompress | tr '\010' '\012' >Owl_pair.gcode.settings
infile=$1
[ $# -eq 0 ] && { echo "Usage: $0 gcode-file"; exit 999; }
echo "$0\ntool to extract cura settings from gcode file\n"
if [ -f ${infile} ];
then
awk -F ';CURA_PROFILE_STRING:' '{print $2}' < ${infile} |base64 -d -i | zlib-flate -uncompress | tr '\010' '\012' > ${infile}.settings
# less ${infile}.settings
else
echo "\n${infile} not found!\n"
fi
if [ -s ${infile}.settings ];
then
echo "\nSettings written to ${infile}.settings"
else
echo "\nNO Settings found. Either missing ';CURA_PROFILE_STRING:' in gcode file or base64 decode or zlib deflate failed\n"
if [ -f ${infile}.settings ];
then
#delete empty file
rm ${infile}.settings
fi
fi
The output looks similar to this:
layer_height=0.2
wall_thickness=1.2
retraction_enable=True
solid_layer_thickness=1.2
fill_density=25
print_speed=50
print_temperature=200
print_temperature2=0
print_temperature3=0
print_temperature4=0
print_temperature5=0
print_bed_temperature=60
support=None
platform_adhesion=None
support_dual_extrusion=Both
wipe_tower=False
wipe_tower_volume=15
ooze_shield=False
filament_diameter=1.75
filament_diameter2=0
filament_diameter3=0
filament_diameter4=0
filament_diameter5=0
filament_flow=100.0
nozzle_size=0.4
retraction_speed=60.0
retraction_amount=5
retraction_dual_amount=16.5
retraction_min_travel=1.5
retraction_combing=All
retraction_minimal_extrusion=0.02
retraction_hop=0.0
bottom_thickness=0
layer0_width_factor=140
object_sink=0
overlap_dual=0.15
travel_speed=60
bottom_layer_speed=20
infill_speed=0.0
solidarea_speed=30
inset0_speed=30
insetx_speed=40.0
cool_min_layer_time=5
...
May 19, 2021, 17:00
Where does Ultimaker Cura AppImage store plugins and settings?
There are two locations. One is the $HOME/.config/cura/ directory and the other is %HOME/.local/share/cura/ folder.
For example: The material folder of Ultimaker Cura 4.9 with your custom changes is at $HOME/4.9/materials/.
December 1, 2020, 16:09
Sie benötigen ein kleines Programm für die Inventur oder ein spezielles Plugin für Honeywell Handheld Geräte. Da kann ich Ihnen vielleicht helfen.
Problemlösungen:
- Ihr Telnet Client macht nicht, was er soll. Anpassungen von Client und/oder Server.
- Sie möchten Tasten am Handheld umbelegen
- Die Daten des Barcode Scanners entsprechen nicht der Erwartung?
- Die Darstellung von SAP Web-Inhalten auf Mobil-Geräten gefällt Ihnen nicht?
- Sie möchten vom Mobil-Gerät auf einem mobilen Label- oder Quittungsdrucker ausgeben.
Biete auch Windows- und Web-Programmierung, Linux Scripting und andere Software Leistungen. Bei Bedarf einfach Kommentar posten. Arduino, ESP und andere Microcontroller Erfahrung ist auch vorhanden.
Ich bin seit über 35 Jahren in der Computer Software- und Hardware Branche unterwegs. Habe sowohl PCs konfiguriert und repariert als auch professionells Desktop Publishing inklusive Bildbearbeitung, Text Layout und Satz. Zuletzt war ich als Senior Software Specialist tätig und habe Kunden, Partner und Kollegen bei kleinen und großen Projekten mit Lösungen geholfen. Dabei kamen die unterschiedlichsten Umgebungen und Programiersprachen zum Einsatz. Die notwendigen Grundlagen habe ich mir selbst erarbeitet und erfolgreich eingesetzt, oft mit verblüffenden Lösungen, weil ich über ein sehr breites Wissen verfüge. Manchmal wurde zur Lösung ein kleines Programm oder ein Dienst programmiert.
Mein größtes, privates Projekt war die Programmierung einer Faktura für eine Nutzfahrzeug-Werkstatt inkl. Merc*des Teile Übernahme aus der Fahrzeug Datenbank.
Ein anderes, großes, privates Projekt war die Erstellung eines technischen Katalogs vom Satz und Layout bis zum Belichten und Druck.
Einige Jahre habe ich das Novell Netware / Windows 2000 / MS SQL Server Netzwerk eines Seniorenheims betreut, inklusive automatischem Backup und Netware Server-Spiegelung.
Einen Teil meiner Programme können Sie unter github.com/hjgode begutachten.
Category:
Uncategorized |
Comments Off on Biete Programmierung von Kunden-Anwendungen, Automatisierung, Plugins für Honeywell Handheld
July 26, 2018, 13:26
If rdesktopce has issues to connect to a Remote Desktop Server keep in mind that is only supported up to Windows Server 2008. Depending on your settings and the installed or not installed updates, rdesktopce may not be able to connect. I cannot fix this!
If rdesktopce connects to a Windows 2008 R2 server and shows only a desktop with blue background, try the following setting in Remote Desktop Session Host configuration:
Change “Security Layer:” to “Negotiate”

The same setting prevents rdesktopce to connect to a Windows 2012 R2 Server! Currently no solution for this issue.