https://www.instructables.com/A-Practical-Guide-to-FDM-3D-Printing-Gears/
https://www.unionfab.com/blog/2024/12/3d-printed-gears
Option Explicit | |
Declare PtrSafe Function lstrlenA Lib "kernel32" (ByVal lpString As LongPtr) As Long | |
Declare PtrSafe Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" ( _ | |
ByVal Destination As String, ByVal Source As LongPtr, ByVal length As Long) | |
Private Declare PtrSafe Function api_get_message Lib "C:\tools\my-api\bin\mydll.dll" () As LongPtr | |
Function PtrToStringAnsi(ByVal lpString As LongPtr) As String |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: argo | |
namespace: default | |
annotations: | |
meta.helm.sh/release-name: argo-3 | |
automountServiceAccountToken: true | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 |
The way that facebook has written their pages for instagram, there is so much indirection on where a image is comming from, it is nearly impossible to grab the source of an image or video.
Using a browser plugin makes it significantly easier.
https://onlinetoolset.com/browser-extensions/downloader-for-instagram
Install the extension, use it to download the image. Done. No screenshot required.
https://www.youtube.com/watch?v=dmLXgt0sfq8
https://github.com/eliemichel/MapsModelsImporter
chrome shortcut target :
C:\Windows\System32\cmd.exe /c "SET RENDERDOC_HOOK_EGL=0 && START "" ^"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe^" --disable-gpu-sandbox --gpu-startup-dialog"
After much todo, trying to get powershell to run julia like it would in bash, I got this working:
& julia -i -e ('println(\"Hello World\")')
& julia -i -e ('include(\"path-to-script.jl\"); function_in_script(); exit()')
& julia -i -e "path-to-script.jl"
using Pkg | |
using Pkg.MiniProgressBars | |
# Function that simulates a task with progress | |
function example_task_with_progress_bar(n::Int) | |
bar = MiniProgressBar(; indent=2, header="Processing items", color=Base.info_color()) | |
bar.max = n | |
fancyprint = Pkg.can_fancyprint(stderr) | |
fancyprint && start_progress(stderr, bar) |
https://kb.parallels.com/en/122702#section4
Shutdown Windows 10, go to Configure > Hardware > + > TPM Chip
https://forum.parallels.com/threads/resolved-cannot-add-tpm-chip-on-intel-mac.357063/
Shutdown Windows 10, go to Configure > Hardware > Boot Order > Advanced...
sudo yum update
sudo yum install -y docker nginx certbot python3-certbot-nginx git
sudo systemctl start docker
sudo systemctl enable docker
sudo usermod -a -G docker ec2-user
sudo systemctl start nginx