Tech blog

This blog is for my future and past info and reviews on various tech stuff….


Watches, bands & rings

Phones / Phablets
Cameras
Compact cameras
Reviews
Reviews
Resolution...
Resolution and Noise
 
Battery
Batteries and usage
PC
PC & Code
Various tech
Various tech stuff
TwoPlusTwo
Math
Other stuff
Other stuff

Newer reviews can be expected to be ongoing projects, with minor additions or corrections.

Note: When I rate stuff, a 10/10 does not indicate perfect in an absolute academic sense, but as in (at least) as good as could be expected at the time, minor flaws allowed. For portable devices typically limited by the size and weight. Value for money also counts. An electronic device that got a high score in 2005, most likely would seem like pure trash ten years later….

2026-05-11. After using Discus for many years, and using an ad-blocker, I only recently noticed all its ads, so now switching to WpDiscuz.


 

  • F(x)tec & XDA – Pro1-X announced

    F(x)tec in collaboration with XDA are relaunching the Pro1 with improved privacy oriented software

    Continue reading...</p> <p> </p> <p>
  • Calculate day of week

    A small guide on calculating the day of week fairly easily

    Continue reading...</p> <p> </p> <p>
  • The EASY way to make a C# Windows.forms app really per monitor DPI aware

    For .Net 8.0 WinForms apps go HERE (Also 7.0 and 6.0)

    The below is for .Net Framework, latest being 4.8.

    As posted in another post, many apps have problems with windows scaling.

    See these screen-dumps from Windows lengthy guide that was found here

    UPDATE 2020. After Windows “Creators update”, they made things slightly more complicated, sorry…

    Here is a reasonably minimalistic approach. You will often just need code like this:

        public partial class Form1 : Form {
             public Form1() {
                 InitializeComponent();
                 DPI_Per_Monitor.TryEnableDPIAware(this, SetUserFonts);
             }
             void SetUserFonts(float scaleFactorX, float scaleFactorY) {
                var OldFont = Font;
                Font = new Font(OldFont.FontFamily, 11f * scaleFactorX, OldFont.Style, GraphicsUnit.Pixel);
                Refresh();
                OldFont.Dispose();
             }
             protected override void DefWndProc(ref Message m) {
                 DPI_Per_Monitor.Check_WM_DPICHANGED(SetUserFonts,m, this.Handle);
                 base.DefWndProc(ref m);
             }
         }
    

    You will need to obey a few rules, but often it can be implemented in existing code in minutes!

    Continue reading...</p> <p> </p> <p>
  • Cases/shells for the Pro1, DIY experiments

    There are no official case(s) for the FxTec Pro1, so I have ordered over a score of cases/shells for various phones of dimensions close the keyboard part…

    Ten have arrived, nine Nov 13., and here are the preliminary results, and a flip case fitted

    Add Nov 21, two more have arrived, for Huawei P20  Pro and Note 7

    Add Dec 28, two more have arrived a week ago, Flip cases for Huawei P20  Pro and they are better (the above image)

    Add Jan 23, a little more on a P20 Pro flip, reverting the inner part

    Add Apr 1, a better shell case with strengthened corners.

    Add Aug 6, a protector for the top half – disabling edge interaction

    (Will update if any of the remaining ones proves a better fit)

    Continue reading...</p> <p> </p> <p>
  • Save and restore positions of windows, WindowsPosSaveNRestore

    WindowsPosSaveNRestore is a tool to save the position of windows for later restore

    This is primarily useful if you frequently change display configuration, say add/remove external monitor(s) e.g. by docking, or turning a device with autorotate active.

    Windows also has the bug that it sometimes cram all open windows (and icons [+]) on the primary screen on sleep.

    Continue reading...</p> <p> </p> <p>

 

Blog in English (well sort of, bare with me, non-native…), a few earlier than 2010 are just blunt copies of the source texts in Danish – Google translate helps here….

Collecting of old stuff started May 2015. Entries are generally attempted dated with original stamps, even if they are somewhat updated since, several reviews have been ongoing ‘projects’.

7 thoughts on “Tech blog

  1. atleast show the courtesy to explain . . why you blocked me in the first place. .

    1. Aloha! 🙂

      Yeah,. I finally pulled my self together, and gathered some of the old stuff I’ve posted, starting a couple of weeks ago.

      The camera reviews were originally posted on a once great Norwegian site (akam.no) that is now dwindling and dying as a tiny unattended corner of a larger tech site, So I thought I’d better save the stuff before it was too late and they closed it completely. *G*

      Unfortunately I never did reviews on my first four digital cameras (Pentax Optio S , S4, S5i and the legendary FujiFilm F30 that was the lo light king among compacts for years) – but who would care in 2015 anyway *LOL*

  2. Eske — Looking for some help pulling data from smart phones. Wanted to see if you could help me out or point me in the right directs

    1.) Just need to pull all the data that the fitbit records
    2.) Need to hack the microphone and allow it to record 24/7 and send to phone via Bluetooth ..

    1. Sorry, no idea how. Most of the cheap ones got a closed system with no official api. I would try XDA and see if some have posted something you can use.

Leave a Reply

Your email address will not be published. Required fields are marked *