darkoshi: (Default)
Previously when I tried out dark mode for various applications on my laptop, it made text seem less coherent to me, so I didn't use it.

But recently the normal (light) mode started bothering my eyes (they've been getting very tired & dry & achy), so I switched both my work and personal laptops into dark mode in the Windows settings. I've been switching individual applications into dark mode too, where possible.

My spreadsheets have been giving me difficulty. They are LibreOffice Calc ODS files. For whatever reason, most of the text in them is set to black, not "automatic". So when I switch to the "LibreOffice Dark" color scheme, I end up with black text on a black background, impossible to read.

I have many spreadsheet files, with many tabs (sheets) in each file.
There ought to be an easy way, a script, to update multiple spreadsheet files at once to convert all text, current and future, to the "Automatic" color. But I haven't found such a script yet.

Doing it manually involves going it each tab in each file, selecting all the cells, and updating the text color. And then doing something else to change the default for new cells too. I did the first step for two spreadsheets. Then I noticed that text I enter in a row below the last existing row ends up black on black again. That's why I think the 2nd step is required too (and I don't even know how to do that step manually yet).

I asked Gpt4o-mini (via DuckDuckGo) for assistance. It suggested creating a macro, and gave me sample code for the macro. The sample code was giving me an error in the part for finding all ODS files in a specified folder. I worked through that error with Gpt4o-mini's assistance. Now the part for updating each file is giving me an error (probably the first of several). Sigh. I don't want to spend my vacation time trying to code and debug a spreadsheet macro. Debugging the macro isn't as easy as debugging Java code in Eclipse. You can't just select a variable in the code and see all the details for it.

Surely such a macro or script already exists somewhere. I can't be the first person facing this problem.

I get stuck in all these problems. How can i make progress. How can I ever get to sleep at a good time. How can I ever catch up.

UPDATED:
I tried asking Copilot. There were a few issues with the first code it suggested too, but we fixed them. This logic seems to work well to update the text color to "Automatic" in all ODS files in the specified folder:

Sub ChangeTextColorInFolder()
    Dim oDoc As Object
    Dim oSheet As Object
    Dim oCell As Object
    Dim oRange As Object
    Dim oCursor As Object
    Dim sFolderPath As String
    Dim sFileName As String
    Dim i As Integer
    Dim oSimpleFileAccess As Object
    Dim aFiles() As String
    Dim args(0) As New com.sun.star.beans.PropertyValue

    ' Set the folder path
    sFolderPath = "C:\path\to\your\folder\"

    ' Get the SimpleFileAccess service
    oSimpleFileAccess = CreateUnoService("com.sun.star.ucb.SimpleFileAccess")

    ' Get the list of files in the folder
    aFiles = oSimpleFileAccess.getFolderContents(ConvertToURL(sFolderPath), False)

    ' Loop through all the files in the folder
    For i = LBound(aFiles) To UBound(aFiles)
        sFileName = aFiles(i)
        
        ' Check if the file is an ODS file
        If Right(sFileName, 4) = ".ods" Then
            ' Open the ODS file in hidden mode
            args(0).Name = "Hidden"
            args(0).Value = True
            oDoc = StarDesktop.loadComponentFromURL(sFileName, "_blank", 0, args)

            ' Loop through all the sheets in the document
            For Each oSheet In oDoc.Sheets
                ' Get the used range of the sheet
                oCursor = oSheet.createCursor()
                oCursor.gotoEndOfUsedArea(False)
                oRange = oSheet.getCellRangeByPosition(0, 0, oCursor.RangeAddress.EndColumn, oCursor.RangeAddress.EndRow)

                ' Loop through all the cells in the range
                For j = 0 To oRange.Rows.Count - 1
                    For k = 0 To oRange.Columns.Count - 1
                        oCell = oRange.getCellByPosition(k, j)
                        ' Set the text color to Automatic
                        oCell.CharColor = -1
                    Next k
                Next j
            Next oSheet

            ' Modify the default cell style to automatic color
            Dim oStyle As Object
            oStyle = oDoc.StyleFamilies.getByName("CellStyles").getByName("Default")
            oStyle.CharColor = -1

            ' Save and close the document
            oDoc.store()
            oDoc.close(True)
        End If
    Next i

    ' Show a message box to indicate completion
    MsgBox "Macro completed successfully!", 64, "Success"
End Sub



That is for both the first and 2nd steps.
For how to do the 2nd part manually, this answer works:

To ensure that all cells, including those outside the used range, default to Automatic color, you can modify the default cell style in LibreOffice Calc. Here’s how you can do it manually:

Open LibreOffice Calc.
Go to Format > Styles and Formatting (or press F11).
In the Styles and Formatting window, click on the Cell Styles icon (second icon from the left).
Right-click on Default and select Modify.
In the Cell Style dialog, go to the Font Effects tab.
Set the Font Color to Automatic.
Click OK to apply the changes.
darkoshi: (Default)
Why did the Messages app on this phone update itself, changing how all the emojis look? I rarely select to update it due to things like this. But maybe I did unwisely select it last time, sigh. And then a few days later it finally applies the changes.

Now I see (what I suspected before but did not know for sure) that the emojis I send aren't necessarily what the other person receives.

Dang, I sent a picture of a giraffe from the side, showing its long neck. Now my phone shows it as only a picture of a giraffe's head, head-on. Totally NOT equivalent! ::SMH::

Update, later that day:
I didn't change anything, but now the emojis are back to how they were before. Weird.

the new laptop

Tuesday, May 23rd, 2023 04:02 am
darkoshi: (Default)
I turn it on after 3 weeks of not having used it.
I get a prompt to update one piece of software. I click the link to see what changed.
The browser gives me a prompt to update it.
The laptop also is showing a prompt for an update from the manufacturer.
I let the browser update.

I open a text file in Notepad++ and start typing. Then I change my mind and close the file. I don't get prompted to save the changes like usual. I check the file's last modified date in File Explorer. It still shows 04/30/2023. I reopen the file. What I typed today is still there. I close the file. The file's date still displays as 04/30 in both File Explorer and from a command prompt.

The laptop starts making an annoying high-pitched sound; the fan is on high. It gets quiet again after 8 minutes. Now there is a Windows update ready to install.

I don't have the external keyboard plugged into the laptop. The laptop has a single key for both Page Up and Home, and today I can't figure out how to press Control+Home to move the cursor to the start of the file. I try several key combinations without success and feel like shrieking (ok, I shrieked. Later, I determined that Control + Function Key + PageUp/Home button works. I thought I tried that before but I guess not).

I restart the laptop to see if that will clear up this weird text file issue. The file still shows a date 04/30. I open the file; it still has the prior change. I make another change and again close the file without saving it. Again, my change is retained even though the file's modified date is unchanged. What the hecking heck?
When I open the file it still shows the asterisk in the title bar as if it hasn't been saved yet.

Ah, so it is a Notepad++ "feature":
https://stackoverflow.com/questions/24447786/notepad-doesnt-save-document-on-exit

I turn the feature off.

I connect the external keyboard to the laptop. The USB dongle is hard to push in. Why? It's turned the right way around. It was hard to push in the other times too. I hope I'm not ruining the port.

I try to remember why I turned on the laptop to begin with. Oh right, to copy some clips from the cam's SD card.

Now I can't find the paper where I'd written down the time range of the clips I wanted to copy. It's 4:46am! I need to get to bed!!!!

My whole day has been like this, sort of. The only thing that feels like a success is that I washed a load of clothes and hung them up to dry.

A car hit my mailbox post again, pushing it so that it's now loose in the ground. I need to dump in some dirt and tamp it down. At least the post and mailbox don't seem damaged. But it's the clips of that incident which I am trying to copy so that I can see better what happened. There were cop cars on the street with flashing lights. A different car drove up, then apparently on seeing the cop car at the corner - maybe the cop car was blocking the street, decided to turn around. It did a 3-point turn right into my mailbox. And then it looked like a cop ran by on foot, but I'm not sure.

very various

Sunday, February 26th, 2023 03:37 pm
darkoshi: (Default)
Sleep Deprivation

I really need to get my sleep habits in check.

.

A dandelion in the yard, with full puffy seed-head.

The temptation to blow on it. Ah, it would be so nice! To see them float gently away in the air!

The responsible voice in my head telling me to pluck it and place it carefully in the trash, before the seeds disperse and grow into a swath of dandelion plants which I'll feel duty-bound to spend time and effort pulling out of the ground later this year or some other.

A compromise. Pluck it and take it inside. Blow on it in the house, where the seeds will eventually get vacuumed up.
Ah, they are like little parachutes falling slowly down to the rug! So cute!

.

I discovered that when word-wrap is turned in in Notepad++, the wrapped text keeps the same indentation as the first word in the paragraph! That makes it so much easier to read, compared to Notepad's word-wrap.

.

Writing with a pen or pencil on paper, sometimes my hands feel so awkward and clumsy. Sometimes the marks end up so malformed. I wonder if it is due to being so out of practice or due to losing flexibility in my hands.

(I am still having a lot of trouble with my hands and thumbs.)

.

I made pretzels yesterday, from a box mix my mom gave me 7 years ago. I'd known it would take a lot of effort to make them, and also that they wouldn't turn out as good as the kind I used to eat in Germany. I was pretty sure this box mix was more like the kind of pretzels you get here in malls. I had made pretzels from scratch once before, long ago, and those weren't as good as German ones either. So the box sat in the cupboard all this time, waiting till I had the will to make them.

Anyway, the packet of yeast in the box showed a best-by date of 2017 and likely wouldn't work well on its own. Luckily, I had a jar of yeast in the back of the fridge which I'd practically forgotten about. Its best-by date was 2011. So I used the yeast packet plus several tablespoons of the yeast from the fridge, which seemed to work just fine.

The pretzels turned out looking just like the image on the box. Success, I guess. The taste... I'm not sure how to describe it; not very good but edible. Sort of salty and yeasty. I plan to make lunches with them, sliced in half and topped with vegan cheese and deli slices.

TV and radio apps

Saturday, September 4th, 2021 04:33 am
darkoshi: (Default)
I bought a FireTV stick and set it up today. Installed many apps. Mostly wanted it for some German news and shows, but also installed other apps to try out.

One app is iQIYI, and on it I watched the first episode of I Don't Want to Be Friends With You. It's a 2020 Chinese series, free to watch, with English subtitles. The first episode was cute, funny and entertaining. I don't want to spoil it for anyone by describing the plot, as I had no idea when I started watching it. But this page has some details if you want, and lists its genres as: Comedy, Romance, School, Youth, Fantasy.

I admit, one thing that appeals to me about the show is the androgynous appearance of the lead character, a teenage girl.

.

Recently I installed the Audials Android app on my phone. It's got radio stations from all over the world. Unlike some apps, the radio links all seem to be up to date, no hunting just to find stations that will play ok. It also lets you record songs/shows to your phone. (This feels like taping songs from the radio to cassettes like in the old days, except it's to your phone instead.) That can be useful for stations that don't list which song is playing. If I hear a good song, I can save a clip to help in figuring out what song it was so I can later buy it and support the artists.

The "record songs" option didn't work for me when I tried it. With that, the software looks for distinct gaps between songs before it will record or save them. But the "record show" option worked fine - you can select that and then click to stop the recording whenever you want.

Now I find myself listening to our local college radio station WUSC more often again, as I can simply tap on my phone to start playing it.

I'm also getting to listen to college radio station WUML again. I used to listen to it in Massachusetts during my high school years, when it was called WJUL.
darkoshi: (Default)
ACLU app for recording police incidents, uploading video to cloud:
https://www.aclu.org/issues/criminal-law-reform/reforming-police/mobile-justice

In the past there were separate apps for several states; the Wikipedia page (https://en.wikipedia.org/wiki/ACLU_Mobile_Justice) mentions 16 states. But the Google Play site currently only has one, which it seems is now for all states:
https://www.cnn.com/2020/05/31/us/aclu-mobile-justice-police-misconduct-app/index.html
(from May 2020) says "In the upcoming months, the app -- which is currently available in 17 states and the District of Columbia -- will be accessible to everyone in all 50 states while respecting each state's laws, Benigno said."

I searched for more info on how it works, and this page has the most details I was able to find: https://www.imore.com/how-use-aclu-mobile-justice-app

But I still wish it were explained more. What happens after you submit the video; is it also saved to your phone? Can you access it online after the upload, or not? One of the comments on the Google Play page said that if you don't enter report data right after the upload, you can't do it later, and if you don't enter the data the video won't be reviewed by anyone. Is that true, and if so then how good is it if the cop takes away your phone before you can enter any report details?

The app has a lot of one-star reviews that say the app crashes all the time. I wondered if police departments or others might be posting some of the bad reviews, to discourage people from installing it.

(I haven't installed it or tried it out yet.)

Other more general info:

https://www.consumerreports.org/audio-video/how-to-record-video-during-a-protest/

https://www.consumerreports.org/privacy/protect-phone-privacy-security-during-a-protest/
darkoshi: (Default)
This is based on LibreOffice Calc but probably works the same in Excel.

Say I have a column where several cells have formulas in them like:
=AVERAGE(C10:C18)

In the next column, I want to have the same formulas but using MIN instead of AVERAGE.

When I copy and paste the cells from the first column to the second, it changes the formulas like:
=AVERAGE(D10:D18)

To update the formulas in the 2nd column, select those cells and select from the menu, Edit - Find & Replace.
On the Find&Replace window, make sure these options are selected:
Current Selection Only
Search in: Formulas

Enter "AVERAGE" in the "Find:" field, and "MIN" in the "Replace:" field.
Click the Replace All button.

Then repeat that process to change all "D" to "C".

Alternately, this method should also work for keeping the original cell references when copying the formulas:
https://www.groovypost.com/news/microsoft-releases-windows-10-20h1-preview-build-18970/
First use Find&Replace to change all equal signs to a hashtag or other unique character.
Then copy/paste the cells to another column, and use Find&Replace to change the hashtag back to the equal sign again.
(This method could also be used for copying the formulas out of the spreadsheet into a text file, for easier editing.)
darkoshi: (Default)
My Thunderbird email program prompted me to update, and thinking it was one of the usual monthly updates, I clicked to allow it. Typing the new version number into my notes file, I realized it had jumped from v60.9.1 to v68.4.1!

Checking the Add-ons Manager, it shows that the 2 add-ons I had been using have now been disabled as "incompatible with Thunderbird 68.4.1".

laptop fan noise

Friday, January 3rd, 2020 02:11 am
darkoshi: (Default)
I have wasted several hours today trying to figure out why the new laptop I bought my mom has its fan running most of the time, even when CPU usage is very low. My own laptop usually does not have any noticeable fan noise until CPU usage goes up beyond what is used for normal web browsing.

Both are HP's; both have only SSD hard drives.
Mine is Windows 8.1; the new one is Windows 10.
The new one has twice as much RAM as mine.
The new one has twice as much SSD drive space as mine.

CoreTemp shows similar temperatures for both laptops.
Both SpeedFan and HWMonitor fail to find any fans in either laptop, so I can't compare fan speeds.

The BIOS in the new laptop has an option "Fan Always On", but disabling it made no difference.
Lowering the "Maximum Processor Speed" in the power plan settings made no difference.

When I put the laptop to sleep, the fan turns off. When I wake the laptop, sometimes the fan stays off for a while, sometimes it comes back on fairly quickly*.

I doubt the noise will bother my mom much. But it bothers me to think that if I ever buy myself a new laptop in the far future, there's no way to know if I might end up with this same problem. I thought one of the benefits of SSD drives is that they run cool and quiet.

I am curious now if the laptop I ordered my niece (a different brand with different specs but also Win10) will have this problem too or not.

*If the noise ends up being from the laptop doing some kind of temporary automatic scanning or updates in the background, I'll kick myself for having wasted so much time researching the (non)-issue. But I'd also like to kick Windows for making it so that such processing is never accurately reflected in the Task Manager's CPU usage.

going nowhere?

Thursday, August 15th, 2019 01:34 am
darkoshi: (Default)
A mandolin cutter put some gouges into my thumb yesterday. That's what I get for ignoring the warning to always use the food-gripper thingy with it. It was bound to happen eventually. Maybe I won't ignore the warning anymore.

With the waterproof bandages they have nowadays, the gouges hardly bother me. It would be nice if they made smaller mini-sized ones so that I wouldn't have to cut them in half for cuts on my fingers. The cut side makes it easier for water to eventually leak in, when washing hands or taking showers.

.

One reason I like the sounds of katydids and cicadas and such is that they speak of another world right in the midst of this one. The human world could disappear and they'd still be there, singing those same songs.

.

I discovered that one of Notepad++'s dialog boxes has a button labelled "I'm going nowhere". At first I was perplexed, then amused.

lunar missions

Saturday, August 3rd, 2019 02:32 pm
darkoshi: (Default)
While scrolling through these old newspaper images from the time of the first manned moon landing...
These 50-year-old front pages show how Apollo 11 captivated the country

(There are some headlines about Ted Kennedy leaving the scene of a car crash on Chappaquiddick Island.)

One also sees headlines mentioning Luna 15. It was an unmanned Soviet craft designed to land on the moon and bring back lunar samples to Earth. It orbited the moon at the same time as Apollo 11 - I don't remember hearing about that before! (Space race, indeed.) After the American moonwalk had finished, it attempted a landing but crashed into the moon.

Interesting to read:
Luna 15 Accompanied Apollo 11 to the Moon
Luna-15: Russia’s secret moonshot designed to beat Apollo 11

The first article mentions 2 medals the Soviets gave to the Americans "to leave on the Moon honoring two lost cosmonauts, Yuri Gagarin and Vladimir Komarov," but doesn't say whether the Americans actually took the medals to the moon. According to this article, they did:
What Have We Left on the Moon? (answer: half a million pounds of equipment, trash, and other items).

Jodrell Bank Lovell Telescope records Luna 15 crash:
(there's not really much one can hear in the video, but it is still interesting.)
https://www.youtube.com/watch?v=MJthrJ5xpxk

[personal profile] gfish staged a Lego re-enactment of the Apollo 11 mission on Twitter:
https://gfish.dreamwidth.org/386990.html

This is an interesting video about the computer on the lunar landing module, and the 1202 alarm that happened:
https://www.youtube.com/watch?v=z4cn93H6sM0
darkoshi: (Default)
StackOverflow was down for a little while this afternoon.

https://twitter.com/StackStatus

One of the subsequent tweets had this charming song.



Video title: Something Went Terribly Wrong
Posted by: Mediocre
URL: https://www.youtube.com/watch?v=t3otBjVZzT0
Date posted: Dec 30, 2014

exiting Vim

Tuesday, August 7th, 2018 11:22 pm
darkoshi: (Default)
I got stuck in a Vim window yesterday while doing a Git merge after pulling updates. Git wanted me to provide a reason for the merge, which it had never asked for before while doing a merge.
I didn't want to enter a reason; at that point I just wanted to cancel the merge to figure out what had gone wrong. But I had to close the whole window as I couldn't figure out how to quit Vim.

So today I happened to do a search on it, and was amused by these pages:

How to exit vim in 5 simple steps.
OR: Help! I was using git to commit some code and now the window has changed and I don’t know what’s going on!


Stack Overflow: Helping One Million Developers Exit Vim
darkoshi: (Default)
They keep showing that car commercial on TV. The one that starts out with the music sounding like a Star Wars trailer. It feels like sacrilege to me. Apparently this isn't a new thing - there have been other car commercials in the past with Star Wars themes. But I don't remember seeing them, or if I did, they must not have bothered me as much.

Hmm, nope, I haven't seen this one before now. I rather like that one, and it has a funny part too.
On the other hand, this one is even WORSE than the one being shown on TV now. HOW DARE THEY! grrr.

.

I found a grocery store that sells Accent (MSG). All the reviews say it makes "flavor come out" and "makes things taste better". But so far, it doesn't seem that way to me. I tried it on my pasta instead of salt, and ::blech::. Maybe it tastes better when it's added during cooking, or along with other flavors.

.

At work, I noticed a bug in one of the file search utilities I use. I was searching some large XML files for certain element names to verify that all the expected nodes were there, but the count was coming up short in some of the files. The files didn't have line breaks. When I used another tool to add line breaks after each node, and then searched them again, the counts came out correct. So it seems like the utility has a problem searching large files without line breaks.

I thought I would submit a bug report along with a sample file to demonstrate the problem. I stayed late after work to create such a file. I didn't want to submit the original XML file as it had some company-specific things in it. So I started by doing a replace-all to change all instances of one element name to a string of plus signs of the same length. With the file like that, the count of the plus-signs-string still comes out wrong.

Then I did a regex replace-all, to convert *all* other characters in the file to minus signs. That way, the final file still has the same size, and the search string is still in all the same positions as in the original file.

But weirdly, after doing that, the count comes out correct. Even without having added line breaks. So that thwarted me. Tomorrow I may try again, this time not converting the less-than and greater-than characters.

Along the way, I found out that Notepad++ doesn't perform well when using regex to replace nearly all characters in a 10MB sized file. The one time it succeeded at the task, it took 10 minutes to complete. Several other times it locked up or crashed. Then I downloaded UltraEdit, which was able to do the same task in about a minute, maybe less.
darkoshi: (Default)
About 6 years ago at work, I set up an online group on one of the corporate websites intended for that purpose. It was a group for our developers to share information and post questions & answers. Many coworkers joined the group, and it got a good bit of use in the first years (about 180 posts/threads). But the activity eventually lessened, and the last post was 2 years ago (for various reasons, I suppose).

Recently all group owners were notified that the website was being shut down soon, in favor of some other new site on different technology. We were told that if we wanted to save our group's content, no tools were being provided for doing so, but that we could copy and paste the content into Word documents.

I harrumphed at the thought. Opening each and every post, and copying/pasting it into a Word doc? You've got to be kidding. As the group hadn't even been used in 2 years, and much of the info there was no longer pertinent, there didn't seem much point in trying to save the content.

But yesterday I took some screenshots of the pages which listed the post titles, for memory's sake, or nostalgia, or because maybe that could somehow be useful.

Today a coworker emailed me a question. It reminded me of one of those posts, which explained how to find the foreign key relationships of a table in SQL Explorer. So I went back and read that post. It helped me answer the question.

Then I wondered if I could find an easier way to save the group data after all. I discovered that each thread had an option for saving to a PDF file - and to get that PDF, you only had to append ".pdf" to the URL of the thread's page.

If I could get a list of all those URLs, then I could save off the PDFs. Scrolling through the posts, 20 titles & URLs are shown per page. So I saved off about 10 HTML pages like that. Then I used File Locator Pro (an awesome tool; I highly recommend it) to parse out the URLs along with the titles. I used a reg-ex search query, and saved off the matches, using this method: export just the content found by a regex expression.

Then I determined how to save off the PDFs from the URLs. After logging into the website in my browser, entering the command "start firefox [URL]" in a command window would open the URL in a new tab of the browser. So I divided the URLs into groups of 10, and used a batch file to open the URLs, ten at a time. (I didn't want to do all 180 at once, as I had a feeling that would either crash the browser and/or get me into some kind of trouble, as in who's this person fetching a zillion pages from our webserver all at once?).

Then I used a Firefox plugin, Mozilla Archive Format, to save all open tabs to a MAFF file. A MAFF file is a zip file containing a folder for each tab. Each folder has an index.html (or in my case index.pdf) file, along with a RDF file which has metadata including the page's original filename.

So, once I had saved off MAFF files for all the URLs (about 18 MAFF files), I unzipped them all, extracted the PDFs, used another batch file to rename them back to the original numeric filenames (which puts the posts in order by date), and to include the post titles as part of the filenames.

For creating the batch files, I use Notepad++'s column editing to edit a bunch of lines at once, and macros to apply the same changes to each line.

And voila, I now have the group's entire content exported as PDF files which can be browsed or searched. And it only took me a few hours to do, most of which was figuring out how to do it as opposed to actually doing it.

I'm not sure what I'm going to do with the files now, but at least I have them.

Figuring out how to do things like that makes me feel clever.

keeping track

Sunday, April 30th, 2017 07:04 pm
darkoshi: (Default)
Some of my notes files are becoming inconvenient. I've got so many different files now... for things about this house, things about that house, things about the dogs, things about other people, etc.

But a lot of times, those things overlap, and later I don't remember which file I wrote something in.

For example, I was just wondering which day exactly it was that Serena last got out of the fence... it was in the last few weeks. I had to check several files, and still didn't find it mentioned. Maybe I didn't write it down.

I've also started to want to have one place where I can check to see what was going on in my life on any particular day... right now that info, if I wrote it down, may be spread across many different files, or even posted to DW.

What I need is a personal DW-type blog, on my local machine, just for personal stuff, where I could add tags to each entry, so that if I wanted to check info I wrote down about Zorro, for example, I could check that tag. This is stuff I don't want to be saved to an internet server, even though most of the info is quite mundane.

But installing a local version of DW is probably overkill. Or is it? It'd be nice to have the same interface I'm used to.
I'd want something open-source, and preferably something where I could export the data into other formats if necessary.

Would WordPress do what I want? Can it be installed locally, and is it light-weight?

TiddlyWiki sounds interesting. But I'm not sure about the interface.

And right now I'm feeling anxious for no important reason, so I can't spend more time thinking about this topic right now.

Now why was it that I wanted to know which day Serena got out?...
darkoshi: (Default)
I had an app installed on my phone which was quite useful during a trip last year. After the trip I uninstalled it, as it kept throwing an error message whenever I turned on the phone (but the app itself still worked).

I figured I could always reinstall it again later when I did need it, as I had bought it on Google Play, and Google Play keeps copies of your stuff for you, right?.

So today I was going to reinstall it, but the version of the app now on Google Play is no longer compatible with my phone. So I'm not even given the option of reinstalling it. Furthermore, it says "Installed" even though I had uninstalled it.

Does Google Play really not store a copy for you, of the version of the app that you originally purchased?

data security things

Tuesday, July 28th, 2015 10:37 pm
darkoshi: (Default)
I've generally felt that access-locked posts on DW and LJ were fairly secure. But it occurred to me recently that unless you use https to submit your post, it is still sent unencrypted over the internet. Whenever someone in your access list reads it, unless they are using https, it is also sent unencrypted. Therefore, anyone sniffing traffic could potentially capture the text and read it. I should check whether DW and LJ fully support https now; the last times I checked it, it was only partially supported.

I suppose posts are also stored unencrypted on the servers, so that they might be vulnerable to hacking. This DW news post from 2010 seems to indicate so. I guess it would be hard to encrypt posts, considering that they need to be visible not only to the author, but also to anyone the author gives access to.

.

Because Thunderbird always prompts me for a password when I bring it up, I've had a vague feeling that my email was secure. That's silly, as I know that when I cancel the password prompt a few times, I can read mail that's already been downloaded; only new mail won't be downloaded. I was also under the mistaken impression that the mail was at least stored in encrypted form on my hard drive (though obviously, there's no point in that, as one can simply open Thunderbird and read it from there).

.

I hadn't realized that the original TrueCrypt project had shut down last year, until reading about it on the above linked Thunderbird page. The circumstances around the shut down sound quite suspicious (even though they might not be). It makes me start thinking of all kinds of possible subterfuge and conspiracies. Even regarding the audit that was done on the code, which as pointed out by one of the comments on that page, was limited in scope.

I never did get around to installing and using TrueCrypt myself. It's been one of those things I'd always wanted to do, sort of, if I had more time.

live scum oh what am i

Thursday, July 16th, 2015 09:01 pm
darkoshi: (Default)
Google totally fails to answer the question "what is a live installer?". It is a small install program that downloads the bulk of the actual software to be installed as part of the install process itself (so that the install won't succeed unless you have an internet connection available during the process). Right? For a moment I wasn't certain. Now maybe this answer will come up if someone else searches on it.

.

The small pond at work is at a low level, due to the heat and not much rain. As I was driving by on my way home, it looked like young green grass growing out of the pond scum on top of the water! Yet I walked by the pond at lunch time and didn't notice anything then. Maybe I wasn't paying attention? Maybe it's some quick-growing fungus? Google fails me there too.

.

I decided which trees in the yard to get cut down. A few are half-dead. A few are simply making the back yard too shady, dark, dreary, and mosquito-ridden. Yet they do also block some of the view of the neighbors' yards which is a positive thing. And even the half dead ones... I actually like the look of bare gray limbs... on one tree, that is even more aesthetically pleasing to me than the leafy parts. And my wonderful Japanese Cherry Tree with the beautiful blossoms in the spring-time! It's half dead, but also still half alive. Am I making a horrible mistake??? I told Qiao he'd better hurry and call up some people to get quotes for the work, as otherwise I might change my mind. I'd been considering this for a while, but probably would have put it off longer had the neighbor not also mentioned trees needing trimming.

.

Next post about pronunciations! But Windows wants to reboot first.
darkoshi: (Default)
At my work, we are transitioning to using Git in place of SVN. During a recent meeting, one of our techs mentioned that using TortoiseGit, it had taken half an hour to download the files for just 2 of our projects. One of the BAs retorted, "Isn't there some other tool, like HareGit maybe, that would be faster?"

April 2025

S M T W T F S
  12345
6 789101112
13141516 17 1819
2021 2223242526
27282930   

Syndicate

RSS Atom

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Wednesday, April 23rd, 2025 01:31 pm
Powered by Dreamwidth Studios