topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 25, 2024, 4:48 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mouser [ switch to compact view ]

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 1513next
126
ShareX support was put in when ShareX was mostly an uploader and not a full screenshot taker, is my memory, and before SC had imageshack uploading.

127
v1.42.01 - June 27, 2022
  • [Feature] Added -capturehwndat commandline parameter
  • [Improvement] Noticed significant slow capture on some window captures, due to minicap trying to use PrintWin capture mode and failing; this mode is no longer attempted by default (see -trypwcapmode to reenable)
  • [Feature] Added -trypwcapmode tells minicap to try using the PrintWindow capture mode which was used in some older version of windows for minicap older than v1.42
  • [Bugfix] Sometimes printing without printer preview would fail with generic printer driver error, due to no printer document title being set.

128
Living Room / Re: Arduino anyone?
« on: June 20, 2022, 12:16 PM »
New video:

129
Living Room / Re: Happy Father's Day 2022
« on: June 19, 2022, 09:58 AM »
Yes, happy father's day to all fathers alive and passed.  A good day to remember our fathers.

130
Living Room / Re: Programming/Coder humor
« on: June 17, 2022, 09:24 PM »
LOL to the Demon one.

131
On kickstarter now:

50 Years of Text Games: From Oregon Trail to A.I. Dungeon
A definitive book about the first half-century of interactive fiction.


132
Living Room / Re: 3D Printing - General Discussion
« on: June 09, 2022, 05:47 PM »
A tip for 3d printing folks: For most 3d printers you can get replacement nozels and parts where the fillament gets heated and comes out of, very cheaply, and install yourself quite easily.
I recently replaced mine for like $15 and the difference has been huge in terms of less problematic prints -- it's clear to me that my old nozzle/head had started to perform quite badly due to being dirty or whatever.
Feels like I have a new printer now, much more reliable.

Just a tip!

133
Living Room / Re: Arduino anyone?
« on: June 01, 2022, 06:17 AM »
And here you have a video of the final product in action:


134
Living Room / Re: Arduino anyone?
« on: May 27, 2022, 03:19 AM »
Yeah I am not a fan of touchscreens.. however.. logically speaking this whole project might have been a LOT simpler if I had just used a touchscreen ui interface and something like a phone app or Raspberry pi, rather than arduino..
But I had more fun this way :)

135
Living Room / Re: Arduino anyone?
« on: May 26, 2022, 09:37 PM »
If you look at the first picture you'll see the wall mounted big box where the brains of the thing live.. Then there are 3 modules that connect to that via custom usbc cables: A small scale built into the base of espresso machine, a larger black scale in front of the grinder with the cup on it, and the control panel module with keys and screen.

136
Living Room / Re: Arduino anyone?
« on: May 26, 2022, 09:24 PM »
Some recent photos:
scalebot1.jpg
scalebot2.jpg

137
N.A.N.Y. 2021 / Re: NANY 2021: yaydl
« on: May 23, 2022, 03:45 PM »
I still use yaydl, so looking forward to new version!

138
Screenshot Captor / Re: Please Assist with Forum Coder
« on: May 13, 2022, 10:06 PM »
If you're talking about Screenshot Captor, let me start by saying that the program will never stop working or work in a reduced way based on whether you have a license or donate.  So something else is going wrong.

139
Living Room / Re: Happy Mother's Day!
« on: May 12, 2022, 02:02 PM »
Sorry I didn't see this earlier -- happy belated mothers day to all the mothers.

140
Just thought I'd share this little code snippet for a batch (zipcurdir.bat) file that I use quite frequently.
Requires 7-zip but could be adapted for any other zip tool.
Then just put this little .bat file in any directories where you want to be able to super quickly make a uniquely timestamped zip file of the contents of the directory, and then move the zip file out of the way to the parent directory.
I use this all the time when I'm working on a project and it's not under version control and I want to make sure I have quick backups before something goes wrong.

Add any exclusion patterns you want to the extraoptions line, and change 7-zip location if different; or maybe you want to change the destination folder..

for %%a in ("%cd%") do set "CurDir=%%~na"
set thedir=%CurDir%

set mydate=%date:~12,2%%date:~4,2%%date:~7,2%
set TIMEZERO=%TIME: =0%
set HOUR=%TIMEZERO:~0,2%
set MIN=%TIMEZERO:~3,2%
set mytime=%HOUR%%MIN%
set zformat=zip

set extraoptions=-xr!Temp -xr!Junk

set zcmd="c:\program files\7-zip\7z" a -t%zformat% -r %extraoptions%
set fname=%thedir%_%mydate%_%mytime%.%zformat%

echo %zcmd% ..\%fname% .\
%zcmd% ..\%fname% .\


As an example if I put this zipcurdir.bat file in my Documents\Arduino\ folder and run it, I get the file in the parent directory: "Arduino_220506_0615.zip"

The only thing neat about this batch file is the autonaming of the created file based on the current directory and the fact that you never have to modify the batch file no matter where you put it.

141
Living Room / Re: Arduino anyone?
« on: May 04, 2022, 10:20 AM »
Video of my espresso scale in progress can be seen here at the 11:12 mark:
https://youtu.be/h-m7h_l1SJg?t=673

142
Yeah that would be very easy.. I'll add it.

143
Living Room / Re: Arduino anyone?
« on: April 29, 2022, 11:43 PM »
It's such a crazy feeling to be sitting tinkering with a $25 device on a little cutting board and realize you are playing with something that the equivalent of which 60 years ago probably would have cost half a million dollars and been the size of a hotel lobby, and taken a team of people a year to assemble and debug.

144
Living Room / Re: Arduino anyone?
« on: April 29, 2022, 11:33 PM »
I have to agree with you, the ease of just writing a little code and uploading it and communicating back and forth make it a really enjoyable platform; the ease of sending info back to display on the pc console window is another thing that makes it relatively painless to tinker with.

The highlight of my recent project has been getting a nice little options menu system working with a 20x4 lcd screen and a rotary knob, based on a library called LCDMenuLib2.

The ease of use of 3rd party libraries has also been a bright spot in working with the Arduino family.

So far I've only messed with the Arduino UNO and Mega.  The UNO seems quite limited in ram for program code and global variables, but nearly everything just compiles and works fine on the big brother Mega, so it's easy to upgrade when you need to.

145
Living Room / Re: Arduino anyone?
« on: April 29, 2022, 10:30 PM »
Well this is interesting timing.. I've been working for the last couple of weeks on a new Arduino project, a deluxe espresso scale.
I'm having a blast.  I'll put up a youtube video soon.. Here's a quick photo:
scalebot.jpg

First version was on Arduino Uni; here's a slightly newer version running on Mega:
20220429_232958.jpg

146
There is a button to "Reuse the last file list"..

147
Living Room / Re: Recommend some music videos to me!
« on: April 26, 2022, 08:20 PM »
Bob Dylan has a cover of (Johnny Cash's) Ring of Fire that is one of my favorites.. I can't listen to any other cover:

148
Yeah the dried ink was what was really killing me with the rarely used inkjet.  Every time you use an inkjet that hasn't been used in a while, the printer actually dumps out a bunch of ink into a "waste pad" in the machine to help clean out the nozzles.

Remarkably, the color laser printer still has 4 different toner cartridges in it -- it's remarkable how almost the entire cavity of this small machine is mostly toner:

149
I am pretty sure that the laser toner is cheaper -- but the clincher is that inkjet ink dries up in a major way, and inkjets have to dump quantities of ink into a waste reservoir after periods of disuse, which really exacerbates things.  Laser toner is in powder form so doesn't seem to have that problem.

150
Screenshot Captor / Re: Grapics Card error pop-up on capturing
« on: April 24, 2022, 12:52 PM »
 :Thmbsup:
All's well that ends well, and thank you for the kind words.

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 1513next