<?xml version="1.0"?>
<!-- name="generator" content="blosxom/2.0" -->
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd">

<rss version="0.91">
  <channel>
    <title>e dot dot dot 27 01 2026</title>
    <link>http://www.jamesraposa.com/index</link>
    <description>e dot dot dot - a mostly about the Internet weblog by James Raposa</description>
    <language>en</language>

  <item>
    <title>How to sort groups of rows in Excel</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#sort_groups_of_rows</link>
    <description>In my day job, I work with a software&lt;br /&gt;product that universities use to manage the&lt;br /&gt;business of running a university (such&lt;br /&gt;software packages are called ERP's, which&lt;br /&gt;stands for Enterprise Resource Planning, and&lt;br /&gt;the name of the product is Colleague, put&lt;br /&gt;out and supported by a company called&lt;br /&gt;Ellucian.)&lt;br /&gt;&lt;br /&gt;The ERP has screens (i.e. web pages)&lt;br /&gt;university staff and faculty use to access&lt;br /&gt;and maintain information in the ERP. Each&lt;br /&gt;web page/screen is accessed by either&lt;br /&gt;clicking directly on the screen's&lt;br /&gt;name/description on the ERP's UI menu, or by&lt;br /&gt;directly entering what Ellucian calls a&lt;br /&gt;mnemonic, which is usually just a short,&lt;br /&gt;unique acronym for the description of the&lt;br /&gt;screen.&lt;br /&gt;&lt;br /&gt;I keep a text file list of some of the more&lt;br /&gt;useful mnemonics and their descriptions for&lt;br /&gt;quick access to them, especially the ones I&lt;br /&gt;use infrequently.&lt;br /&gt;&lt;br /&gt;Part of the list is shown below (after I've&lt;br /&gt;pasted it into Excel):&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://www.jamesraposa.com/images/mnemonic-list-screenshot-2026-01-12 214122.png&quot; style=&quot;border: 1px dashed&quot; width=250 height=400&gt;&lt;br /&gt;&lt;br /&gt;I usually just append new entries to the&lt;br /&gt;list, but now there are so many, I felt it&lt;br /&gt;would be nice to copy the list and paste it&lt;br /&gt;into Excel and sort it, and then copy the&lt;br /&gt;sorted list back into my mnemonic list text&lt;br /&gt;file.&lt;br /&gt;&lt;br /&gt;So that's what I did, thinking it would be a&lt;br /&gt;small matter to sort it alphabetically. I&lt;br /&gt;soon learned sorting lists that look like&lt;br /&gt;what's shown in the example, is not&lt;br /&gt;something easily done in Excel.&lt;br /&gt;&lt;br /&gt;I searched Google for &quot;How to sort groups of&lt;br /&gt;rows in Excel&quot;, and what I found is that&lt;br /&gt;apparently there is nothing built into Excel&lt;br /&gt;that allows sorting groups of a fixed number&lt;br /&gt;of rows, using the first row of each group&lt;br /&gt;as what to sort by.&lt;br /&gt;&lt;br /&gt;I did find many suggestions on adding&lt;br /&gt;columns to the spreadsheet, so as to use&lt;br /&gt;them for sorting, but either nothing&lt;br /&gt;perfectly addressed what I wanted to do, or&lt;br /&gt;suggestions were overly complicated.&lt;br /&gt;&lt;br /&gt;I'll explain more about what I ended up&lt;br /&gt;doing below this next image, which resulted&lt;br /&gt;in a sorted list, using the first row of&lt;br /&gt;each group as the key, while maintaining the&lt;br /&gt;fixed number of rows for each group:&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://www.jamesraposa.com/images/mnemonic-list-screenshot 2-2026-01-12 214122.png&quot; style=&quot;border: 1px dashed&quot; width=400 height=400&gt;&lt;br /&gt;&lt;br /&gt;I did have to add two new columns (B and&lt;br /&gt;C)... there's just no way around it, but&lt;br /&gt;once I worked out the formulas, it wasn't&lt;br /&gt;very complicated at all, and I got the exact&lt;br /&gt;results I was looking for.&lt;br /&gt;&lt;br /&gt;Here is the formula for column B:&lt;br /&gt;=INDIRECT(&quot;A&quot;&amp;ROW() - ((IF(MOD(ROW()-4,7)=0,&lt;br /&gt;7, MOD(ROW()-4,7)))-1))&lt;br /&gt;&lt;br /&gt;Here is the formula for column C:&lt;br /&gt;=(IF(MOD(ROW()-4,7)=0, 7, MOD(ROW()-4,7)))&lt;br /&gt;&lt;br /&gt;Obviously, adjust the formulas if you're&lt;br /&gt;using different columns.&lt;br /&gt;Also, my list starts at row 5, and each&lt;br /&gt;group is 7 rows deep. So if your list starts&lt;br /&gt;at a different row, replace all the 4's in&lt;br /&gt;the formulas with your starting row MINUS&lt;br /&gt;ONE.&lt;br /&gt;And if your number of rows making up each&lt;br /&gt;group is more/less than 7, then change all&lt;br /&gt;the 7's with your number of rows making up&lt;br /&gt;each group to be sorted. Your list can start&lt;br /&gt;on any row (assuming you change the formulas&lt;br /&gt;accordingly), and all the groups can be any&lt;br /&gt;number of rows each, BUT EACH GROUP MUST BE&lt;br /&gt;MADE UP OF THE SAME COUNT OF ROWS.&lt;br /&gt;&lt;br /&gt;The formula for column B calculates the row&lt;br /&gt;that is the first row of any particular&lt;br /&gt;group, and pulls its column A value into&lt;br /&gt;each column B cell.&lt;br /&gt;&lt;br /&gt;The formula for column C just calculates&lt;br /&gt;which row of 7 that particular row appears&lt;br /&gt;in.&lt;br /&gt;&lt;br /&gt;Paste these formulas into columns B and C of&lt;br /&gt;the first row of the first group in the&lt;br /&gt;list, and then using Excel's Home &gt; Editing&gt;&lt;br /&gt;Fill, copy them DOWN to the rest of the&lt;br /&gt;column B/C rows/cells.&lt;br /&gt;&lt;br /&gt;Finally, to sort the list, use the Data &gt;&lt;br /&gt;Sort function, and make the dialog box that&lt;br /&gt;pops-up, look like this:&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://www.jamesraposa.com/images/mnemonic-list-screenshot3-2026-01-12 214122.png&quot; style=&quot;border: 1px dashed&quot; width=400 height=250&gt;&lt;br /&gt;&lt;br /&gt;Before actually sorting the list (i.e.&lt;br /&gt;clicking the dialogue box's &quot;OK&quot; button),&lt;br /&gt;make sure to set the &quot;My data has headers&quot;&lt;br /&gt;checkbox accordingly, and click the &quot;Sort &gt;&lt;br /&gt;Options...&quot; tab to set the &quot;Sort top to&lt;br /&gt;bottom&quot; radio button as well.&lt;br /&gt;&lt;br /&gt;Click &quot;OK&quot;, and you should end up with&lt;br /&gt;something similar to what's showing in the&lt;br /&gt;second image above.&lt;br /&gt;&lt;br /&gt;Once you're done copy all of column A, and&lt;br /&gt;paste it into your original text file, or&lt;br /&gt;just name the spreadsheet, save it, and use&lt;br /&gt;it instead.&lt;br /&gt;&lt;br /&gt;Use the comments if you have any questions&lt;br /&gt;or issues to report.&lt;br /&gt;&lt;br /&gt;Hope this helps, and thanks for reading.</description>
  </item>
  <item>
    <title>AppLovin demands short-seller CapitalWatch retract 'conspiratorial' report</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___applovin_demands_short_seller_capitalwatch_retract__conspiratorial__report</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;AppLovin's cease and desist letter to CapitalWatch called the short-seller's accusations of money laundering defamatory and baseless. &lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.cnbc.com/2026/01/27/applovin-short-seller-capitalwatch-report.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>Move over, Claude: Moonshot's new AI model lets you vibe-code from a single video upload</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___move_over__claude__moonshot_s_new_ai_model_lets_you_vibe_code_from_a_single_video_upload</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;While it's not yet clear how practically useful the capability will be for individuals and businesses, the model's &quot;coding with vision&quot; capability makes vibe coding even vibier.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.zdnet.com/article/moonshot-kimi-k2-5-model/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>Intel says it will match government's 'Trump Accounts' contribution to kids of employees</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___intel_says_it_will_match_government_s__trump_accounts__contribution_to_kids_of_employees</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The 530A program, often called &quot;Trump Accounts,&quot; passed last year as part of the administration's &quot;big beautiful bill.&quot;&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.cnbc.com/2026/01/27/intel-says-it-will-match-governments-trump-accounts-contribution.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>I tried an automatic roll-up pet door, and it was the smart home fix I didn't know I needed</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___i_tried_an_automatic_roll_up_pet_door__and_it_was_the_smart_home_fix_i_didn_t_know_i_needed</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Busy dog owners, rejoice. This clever smart pet door makes letting your dog out a breeze.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.zdnet.com/article/high-tech-pet-roll-up-door-review/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>Need to manage virtual machines on Linux? I found an easier way</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___need_to_manage_virtual_machines_on_linux__i_found_an_easier_way</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you're looking for a way to manage virtual machines on Linux and even do it remotely, Cockpit is what you want.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.zdnet.com/article/using-cockpit-as-a-virtual-machine-manager-on-linux/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>Read the memo: Amazon's grocery boss details restructuring, says more 'deliberate' strategy needed</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___read_the_memo__amazon_s_grocery_boss_details_restructuring__says_more__deliberate__strategy_needed</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Amazon's top grocery executive Jason Buechel told staff that the company needs to make more &quot;deliberate choices&quot; to win over customers.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.cnbc.com/2026/01/27/amazons-grocery-boss-details-fresh-go-restructuring-read-the-memo.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>TikTok users are deleting the app, with removals up 150% following U.S. joint venture</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___tiktok_users_are_deleting_the_app__with_removals_up_150__following_u_s__joint_venture</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;TikTok users have been deleting the app at a higher rate since the company announced that its U.S. operations would be housed in a new joint venture.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.cnbc.com/2026/01/26/tiktok-uninstalls-are-up-150percent-following-us-joint-venture.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>Microsoft's plans for 15 more data centers win approval at former Wisconsin Foxconn site</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___microsoft_s_plans_for_15_more_data_centers_win_approval_at_former_wisconsin_foxconn_site</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Microsoft intends to expand in a place where it's been welcomed, months after backing down on a rezoning attempt in an adjacent village when residents objected.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.cnbc.com/2026/01/26/microsoft-wins-approval-for-15-data-centers-at-wisconsin-foxconn-site.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>Why you need Microsoft's new emergency Windows patch - and the black-screen bug to watch for</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___why_you_need_microsoft_s_new_emergency_windows_patch___and_the_black_screen_bug_to_watch_for</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;While Microsoft has been fixing bugs caused by the Patch Tuesday update, another glitch has surfaced.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.zdnet.com/article/microsoft-second-emergency-patch-for-windows-in-january-update-now/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>How to file your taxes for free in 2026 - 4 ways to do it (despite Direct File's demise)</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___how_to_file_your_taxes_for_free_in_2026___4_ways_to_do_it__despite_direct_file_s_demise_</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The IRS's Direct File Service is no more, but most taxpayers can use one of these free options to prepare their 2025 returns - even if you itemize deductions.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.zdnet.com/article/file-2025-taxes-free-4-ways/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>The only Linux command you need for monitoring network traffic - and how to use it</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___the_only_linux_command_you_need_for_monitoring_network_traffic___and_how_to_use_it</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Recently, I needed to check on incoming and outgoing traffic to one of my Linux machines. Fortunately, there's an easy way to do just that.&lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.zdnet.com/article/monitor-network-traffic-iftop-command-linux/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  <item>
    <title>Meta to test premium subscription plans for Instagram, Facebook and WhatsApp</title>
    <link>http://www.jamesraposa.com/index/2026/01/27#auto___meta_to_test_premium_subscription_plans_for_instagram__facebook_and_whatsapp</link>
    <description>Furnished content.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Meta Platforms is set to test new subscription models across its apps, including Instagram, Facebook and WhatsApp in the coming months. &lt;br /&gt;&lt;br /&gt;Read more &lt;a class=&quot;sw_sl&quot; href=&quot;https://www.cnbc.com/2026/01/27/meta-to-test-premium-subscription-plans-for-instagram-facebook-and-whatsapp.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;</description>
  </item>
  </channel>
</rss>