Revision as of 18:13, 28 December 2024 edit2.28.124.91 (talk) →File disambiguators (1): Explorer/W11: Polygnotus← Previous edit | Latest revision as of 12:55, 17 January 2025 edit undoGnu779 (talk | contribs)181 edits →Miraheze Stuff: ReplyTags: Mobile edit Mobile web edit Reply | ||
(108 intermediate revisions by 30 users not shown) | |||
Line 8: | Line 8: | ||
</noinclude> | </noinclude> | ||
= |
= January 4 = | ||
== Zoomify == | |||
== Where can I find a thesis of recently released Gemini 2.0? == | |||
Is it possible to download the map that is shown via Zoomify?--] (]) 22:48, 4 January 2025 (UTC) | |||
For , I find its ]. | |||
:Yes, if you google "download zoomify image" you will see various ways. ] (]) 23:44, 4 January 2025 (UTC) | |||
::Ah, of course I googled before and found that but was not successful. So I asked here.--] (]) 11:31, 5 January 2025 (UTC) | |||
:::Please mention what you've already tried before and what did not work and what happened instead (e.g. error messages). ] (]) 04:57, 6 January 2025 (UTC) | |||
::::Tried and of course also the dezoomify tool but got immediately stuck because I was not able to find an URL. Very few programming skills, none regarding HTML, that's why I ask here.--] (]) 10:46, 6 January 2025 (UTC) | |||
:{{Outdent}} | |||
:@]: | |||
:I wasn't able to download the file as it was taking forever, but URL appeared to download the files for 30+ minutes on a fast internet. Let us know if this works. <span style="font-family:monospace; font-weight: bold"> <span style="color:ForestGreen;font-size:1.15em"> ]</span> (<span style="color:#324c80">she/they</span> {{pipe}} ]) </span> 03:19, 8 January 2025 (UTC) | |||
::I've successfully taken images off the ] via their source code and dezoomify, but I'm puzzled as to how to extract images here, as Dezoomify appears to be perpetually stuck on 'preparing tiles load'. The longest I've seen it take for large images in the past is a couple of minutes. Like Antemister, I've little programming knowledge, but I think the following elements in the code are related: | |||
::<code> | |||
::<!--Zoomify--><script type="text/javascript" src="ZoomifyImageViewerFree-min.js"></script> | |||
::<!--Zoomify--><script type="text/javascript"> Z.showImage("myContainer", "images/France_LD"); </script> | |||
::</code> | |||
::On going to http://cartesmich.free.fr/images/France_LD/ I get ]. Perhaps this website is savvy about theft of its most high-resolution public domain images. Maybe someone has the patience to hunt about in the browser console. ''']]''' 04:51, 8 January 2025 (UTC) | |||
::: If they're public domain images, it's not "theft". Please avoid such misleading and perjorative language. <span class="vcard"><span class="fn">]</span> (<span class="nickname">Pigsonthewing</span>); ]; ]</span> 10:52, 8 January 2025 (UTC) | |||
::::It's still potentially in violation of their ToS (not that I much care) and could, per my reading of my law (assuming this is an american website, which it isn't) run afoul of something like the Computer Fraud and Abuse Act. | |||
::::<br> | |||
::::The ToS is a reasonable concern, which is why I said theft. ''']]''' 15:53, 8 January 2025 (UTC) | |||
:::::Even if all you say were true (It's highly doubtful; there appear to be no published terms of service - much less any that a user agrees to before viewing the site; and in any case we are not all in the USA), it's ''still'' not theft. <span class="vcard"><span class="fn">]</span> (<span class="nickname">Pigsonthewing</span>); ]; ]</span> 16:11, 8 January 2025 (UTC) | |||
::::::You're right--there are no terms (though the host website, free.fr, appears to have a TOS page). ''']]''' 16:53, 8 January 2025 (UTC) | |||
Yes, I came to that cited code, but had no idea to open that container | |||
Also tried again dezoomify, and also waited a long time, and after 1-2 hours i get an error message. And it includes a link, , if you alter the numbers you can find various tiles of the map.is it possible to proceed with that, download that folder?--] (]) 22:34, 8 January 2025 (UTC) | |||
:Hmm! So I pasted this conversation into ChatGPT, and told it to generate code for use in Google Colab. The code is (it doesn't really do what it's supposed to, at all, but a start). | |||
What about recently released ? ] (]) 21:53, 13 December 2024 (UTC) | |||
:The really screwed-up image it generated is . Hopefully these are of help to someone with more Python experience than I.''']]''' 02:35, 9 January 2025 (UTC) | |||
{{od}} | |||
:? --] 21:55, 14 December 2024 (UTC) | |||
I gave this another try. This time it was able to actually download the image correctly, but only a horizontal section. The code is collapsed below. I think it needs only some slight tweaking. | |||
::OK That's Gemini 2.0 release information. ] (]) 16:52, 15 December 2024 (UTC) | |||
{{collapse top}} | |||
= December 15 = | |||
<nowiki> import os | |||
==Questions About New Laptop Computer== | |||
::import requests | |||
My old laptop computer developed problems with the power, so that it wouldn't start when connected to regular line current. It would start when connected to high-amperage current in an electronics store, but that wasn't useful, and it was time to replace it after five years. I now have some questions about problems with a new laptop computer. The new laptop computer is an HP running Windows 11. ] (]) 04:43, 15 December 2024 (UTC) | |||
::from PIL import Image | |||
::# Base URL and directory setup | |||
===Cursor Jumping Randomly=== | |||
::BASE_URL = "http://cartesmich.free.fr/images/France_LD/TileGroup8/" | |||
Sometimes when I am typing in a Word document or editing Misplaced Pages in a source window, I discover that the cursor isn't where I think it should be. The cursor has jumped to somewhere else on the screen, apparently randomly. I have to do a Ctrl-Z to undo what I typed in the wrong place, and then move the cursor back to where I want it. If this is caused by line noise, how do I minimize the impact? How likely is that a new mouse would resolve the problem? Are there any settings that I should diddle with? | |||
::OUTPUT_DIR = "tiles" | |||
] (]) 04:43, 15 December 2024 (UTC) | |||
::MERGED_IMAGE = "merged_image.jpg" | |||
::# Ensure the output directory exists | |||
::os.makedirs(OUTPUT_DIR, exist_ok=True) | |||
::# Function to download a tile | |||
::def download_tile(url, save_path): | |||
:: response = requests.get(url) | |||
:: if response.status_code == 200: | |||
:: with open(save_path, "wb") as f: | |||
:: f.write(response.content) | |||
:: return True | |||
:: return False | |||
::# Function to stitch the tiles together | |||
::def stitch_tiles(tiles, tile_size): | |||
:: max_x = max(x for x, y in tiles.keys()) + 1 | |||
:: max_y = max(y for x, y in tiles.keys()) + 1 | |||
:: # Create a blank canvas for the final image | |||
:: merged_image = Image.new("RGB", (max_x * tile_size, max_y * tile_size)) | |||
:: # Paste tiles onto the canvas | |||
:: for (x, y), tile_path in tiles.items(): | |||
:: tile_image = Image.open(tile_path) | |||
:: merged_image.paste(tile_image, (x * tile_size, y * tile_size)) | |||
:: return merged_image | |||
::# Set parameters for downloading tiles | |||
::tile_size = 256 # Assume each tile is 256x256 | |||
::x_range = range(36, 50) # Adjust based on your needs (x-coordinate range) | |||
::y_range = range(24, 40) # Adjust based on your needs (y-coordinate range) | |||
::# Dictionary to store downloaded tile paths | |||
::downloaded_tiles = {} | |||
::# Download tiles | |||
::for x in x_range: | |||
:: for y in y_range: | |||
:: tile_url = f"{BASE_URL}6-{x}-{y}.jpg" | |||
:: tile_path = os.path.join(OUTPUT_DIR, f"6-{x}-{y}.jpg") | |||
:: if download_tile(tile_url, tile_path): | |||
:: downloaded_tiles = tile_path | |||
:: print(f"Downloaded: {tile_url}") | |||
:: else: | |||
:: print(f"Tile not found: {tile_url}") | |||
::# Stitch the tiles into a single image | |||
::if downloaded_tiles: | |||
:: merged_image = stitch_tiles(downloaded_tiles, tile_size) | |||
:: merged_image.save(MERGED_IMAGE) | |||
:: print(f"Merged image saved as {MERGED_IMAGE}") | |||
::else: | |||
:: print("No tiles were downloaded!") </nowiki> | |||
{{collapse bottom}} | |||
:First thing I would do is give the mouse and mousepad a good clean and disconnect and reconnect it. ]|] 09:14, 15 December 2024 (UTC) | |||
:Possibly due to your hand brushing the trackpad while typing. If you have a mouse, you could experiment with disabling the trackpad: . Or even just try turning it off while typing. This erratic ] jumping used to happen to me a lot, too, when my laptop was new, until I found the key to disable the trackpad. | |||
:The term ''caret'' or ''insertion point'' is useful to exclude the mouse cursor (the pointer) from searches. ] ] 12:54, 15 December 2024 (UTC) | |||
::Thank you, ]. I disabled the touchpad. For users who always use a mouse, the touchpad is a complication. ] (]) 19:06, 15 December 2024 (UTC) | |||
:::I now have a possibly useless question. The documentation referred to an option that disables the touchpad when there is a mouse, but the only option that I found in the settings is the option that always disables the touchpad. I would like to specify that the touchpad is disabled when there is a mouse, and enable it if there is no mouse. This makes very little difference because I will always use a mouse. Is it possible that that option isn't available on my computer? This isn't important. ] (]) 02:38, 17 December 2024 (UTC) | |||
::::Possibly true, your system vendor might not have put any software on there to do that automatically. The general rule with computers is, you can make it do what you want, it's just a question of how much effort is involved in that. To do stuff automatically when hardware is (dis)connected, you have to set up something that subscribes to ] events: Windows's thing for letting all interested parties know "hey some new device just showed up". Here's an answer for how to run a script when a device is connected: , if you really want to put in the effort. Alternatively if you just want something quicker and simpler but not automatic, you can install ] (quite useful program) and set a shortcut key on the keyboard to disable/enable touchpad. --] (]) 19:11, 26 December 2024 (UTC) | |||
-- ''']]''' 16:09, 9 January 2025 (UTC) | |||
===Network File Sharing=== | |||
With the old laptop, I had set up network file sharing, so that the laptop computer could view and edit files in shared folders on my desktop computer, a Dell, also running Windows 11, if they were both within range of my wireless router (and the desktop computer always is). The desktop computer could also access files in shared folders on the laptop, if the laptop was I have tried to set up network file sharing with the new laptop computer. I tried calling the technical support offered by the electronics chain that I bought the computers from, and I made seven calls to them, none of which worked, and I have concluded that their technical support people don't know what they are doing, and, worse, don't know the limits of their knowledge. Does anyone have advice on a book that will tell me how to set up network file sharing with Windows 11, that has neither too little nor too much information for a retired database engineer? | |||
] (]) 04:43, 15 December 2024 (UTC) | |||
:Oh, again some progress! What horizontal slide? Maybe iterate through the TileGroup folders?--] (]) 16:56, 9 January 2025 (UTC) | |||
:@] Did you try ? <span style="font-family:monospace; font-weight: bold"> <span style="color:ForestGreen;font-size:15px"> ]</span> (<span style="color:#324c80">she/they</span> {{pipe}} ]) </span> 20:21, 16 December 2024 (UTC) | |||
:], it was one of the bottom sections of the map, I have some silly ] on my devices and can't access the one I ran it on for a couple of hours. You should be able to run the above code in Colab and ask ChatGPT (or Gemini) for further help. ''']]''' 17:02, 9 January 2025 (UTC) | |||
::] - Thank you. That describes the basics, and describes what I had done successfully with the previous laptop computer. I need either a much greater level of detail, or a troubleshooting guide, or something like that. That was helpful in that it doesn't point out anything that I am doing wrong. ] (]) 02:31, 17 December 2024 (UTC) | |||
::First heard about Colab but tried, and it seems the Code does something. What is the Folder you got the files downlaoded?--] (]) 17:30, 9 January 2025 (UTC) | |||
:::Asking for clarification: you did all the steps in the section "How do I troubleshoot sharing files and folders" on that page, on the new laptop? After doing those steps, you still don't "see" your desktop in File Explorer on laptop? (Restart the laptop just in case.) ] (]) 04:24, 26 December 2024 (UTC) | |||
:Check that all the computers are on the same network. See if all the IP addresses are different. See if the wifi has the network profile set to Private. See if file explorer shows it in Network, or \\newlaptopname . You may have to check file wall settings ] (]) 07:29, 26 December 2024 (UTC) | |||
{{od}} | |||
= December 19 = | |||
] In a new cell, type <code> | |||
from google.colab import files | |||
files.download('merged_image.jpg')</code> Apologies for putting all of this inside a hat template, I can't figure out how to correct it. ''']]''' 18:15, 9 January 2025 (UTC) | |||
:Again progress, have gotten such a merged image that shows a part of the map. The iteration is just a guess... Shouldnt there be a possibility to list all the files in the folder?--] (]) 22:58, 9 January 2025 (UTC) | |||
::@], I very nearly got it to work, the final image is 12,000x12,000px but has errors. import os | |||
::import requests | |||
::from PIL import Image | |||
::from concurrent.futures import ThreadPoolExecutor | |||
::# Base URL and output setup | |||
::BASE_URL = "http://cartesmich.free.fr/images/France_LD/" | |||
::OUTPUT_DIR = "tiles" | |||
::MERGED_IMAGE = "merged_image.jpg" | |||
::# Ensure output directory exists | |||
::os.makedirs(OUTPUT_DIR, exist_ok=True) | |||
::# Function to download a tile | |||
::def download_tile(group, x, y): | |||
::url = f"{BASE_URL}TileGroup{group}/6-{x}-{y}.jpg" | |||
::save_path = os.path.join(OUTPUT_DIR, f"TileGroup{group}_6-{x}-{y}.jpg") | |||
::try: | |||
::response = requests.get(url, timeout=10) | |||
::if response.status_code == 200: | |||
::with open(save_path, "wb") as f: | |||
::f.write(response.content) | |||
::print(f"Downloaded: {url}") | |||
::return (group, x, y, save_path) | |||
::else: | |||
::print(f"Tile not found: {url}") | |||
::except Exception as e: | |||
::print(f"Error downloading {url}: {e}") | |||
::return None | |||
::# Function to download all tiles (no detection, brute force) | |||
::def download_all_tiles(groups, x_range, y_range): | |||
::tiles = | |||
::print("Starting brute force tile download...") | |||
::with ThreadPoolExecutor(max_workers=10) as executor: | |||
::futures = | |||
::for group in groups: | |||
::for x in x_range: | |||
::for y in y_range: | |||
::futures.append(executor.submit(download_tile, group, x, y)) | |||
::for future in futures: | |||
::result = future.result() | |||
::if result: | |||
::tiles.append(result) | |||
::return tiles | |||
::# Function to stitch tiles together | |||
::def stitch_tiles(tiles, tile_size): | |||
::if not tiles: | |||
::print("No tiles to stitch.") | |||
::return None | |||
::# Determine the range of x and y coordinates | |||
::all_coords = | |||
::min_x = min(x for x, y in all_coords) | |||
::max_x = max(x for x, y in all_coords) | |||
::min_y = min(y for x, y in all_coords) | |||
::max_y = max(y for x, y in all_coords) | |||
::# Create a blank canvas for the final image | |||
::width = (max_x - min_x + 1) * tile_size | |||
::height = (max_y - min_y + 1) * tile_size | |||
::merged_image = Image.new("RGB", (width, height)) | |||
::# Paste tiles onto the canvas | |||
::for group, x, y, tile_path in tiles: | |||
::tile_image = Image.open(tile_path) | |||
::merged_image.paste( | |||
::tile_image, ((x - min_x) * tile_size, (y - min_y) * tile_size) | |||
::) | |||
::return merged_image | |||
::# Main script execution | |||
::tile_size = 256 # Assume each tile is 256x256 | |||
::groups = range(0, 16) # TileGroup0 to TileGroup15 | |||
::x_range = range(0, 50) # x-coordinates: 0–49 | |||
::y_range = range(0, 50) # y-coordinates: 0–49 | |||
::tiles = download_all_tiles(groups, x_range, y_range) | |||
::# Stitch the tiles into a single image | |||
::if tiles: | |||
::merged_image = stitch_tiles(tiles, tile_size) | |||
::if merged_image: | |||
::merged_image.save(MERGED_IMAGE) | |||
::print(f"Merged image saved as {MERGED_IMAGE}") | |||
::else: | |||
::print("No tiles were downloaded!") ''']]''' 03:31, 11 January 2025 (UTC) | |||
:::Here's the link. https://limewire.com/d/50995585-f881-4ff5-9186-e0eb55978a5e#Tcw-4kZBQKVH0GS9yZPb-vUvH8t-V04gV-t8MQp8O7k ''']]''' 03:38, 11 January 2025 (UTC) | |||
::::Thank you, that is sufficient, what I need is the ceasefire/demarcation line. Can you sent me the code with correct formatting? Maybe I can use it in future, to download other zoomified images.--] (]) 14:18, 11 January 2025 (UTC) | |||
:::::Here you are: https://pastebin.com/gPKrd1cj ''']]''' 18:04, 11 January 2025 (UTC) | |||
= January 13 = | |||
== Absolute value inequality == | |||
A meteorite is 600ft from a satellite and travelling toward the satellite at 42ft/sec. At what times will the meteorite be less than 50ft away from the satellite? Write an appropriate absolute value inequality for the given situation and solve: | |||
Let|42t-600|<50 and 42t-600<50 and 42t-600>-50. Thus, 13.10<t<15.48. ] (]) 22:21, 13 January 2025 (UTC) | |||
:What is the question? | |||
:The given data do not specify where the meteorite is at time {{nowrap|1=t = 0}}, and also not with which speed the satellite is moving. Your solution is based on the (not unreasonable) assumptions that the person who drew up this assignment meant {{nowrap|1=t = 0}} to be the initial moment when the meteorite is 600ft away from the satellite, and that the speed of 42ft/s is the speed of the meteorite relative to the satellite. Your solution assumes that the meteorite will not hit the satellite, but pass by it. Under these assumptions, the derived inequations are correct, as is your solution, although not with exact values but with numeric values rounded to two decimals. | |||
:If the meteorite hits the satellite, we don't know what happens after {{nowrap|1=t = 14.29}}. If the satellite disintegrates, the notion of the distance between the bodies becomes meaningless. --] 23:59, 13 January 2025 (UTC) | |||
:] '''Please ].''' | |||
:Welcome to {{#ifeq:{{BASEPAGENAME}}|Help desk|]|{{#ifeq:{{BASEPAGENAME}}|Reference desk|]|Misplaced Pages}}}}. Your question appears to be a homework question. I apologize if this is a misinterpretation, but it is ] not to do people's homework for them, but to merely aid them in doing it themselves. Letting someone else do your homework does not help you learn nearly as much as doing it yourself. Please attempt to solve the problem or answer the question yourself first. If you need help with a specific part of your homework, feel free to tell us where you are stuck and ask for help. If you need help grasping the concept of a problem, by all means let us know.<!--Template:Dyoh--> | |||
:This is additionally the Reference desk for computing and electronics-related topics, not mathematics. --] (]) 06:11, 15 January 2025 (UTC) | |||
::But is it homework? Homework formulates an exercise, often in the form of a problem, asking for its solution. It is not usual for homework to contain the detailed solution to a stated problem. What is then the exercise? --] 10:32, 15 January 2025 (UTC) | |||
:::Maybe they forgot the rest of the problem? Or maybe it's just someone/somebot sloppily copy-pasting stuff from the Web to try and waste people's time. --] (]) 05:18, 16 January 2025 (UTC) | |||
::::I think it's not homework. They might be sending stuff into space. ] (]) 12:22, 16 January 2025 (UTC) | |||
= January 15 = | |||
== What is this character? == | |||
] has several characters that my computer renders as little boxes. For example: | |||
*''a'' <⃥͏ ''a'' (]) — '''after the first italic a''' | |||
* if ''a'' < ''b'', then ''b'' <⃥͏ ''a'' (]) — '''after the second italic b''' | |||
What are they? In both cases that I copied, the box is seemingly the same character as the lesser-than sign, since I can't highlight one without the other. I figured I could get the answer from Google (there are enough Unicode charts online), but I get just four results for the combined lesser-than-and-box: the inequality article, two Reddit pages, and something in Thai. When I put the combined lesser-than-and-box into the URL, I'm shown ], which makes sense for a title containing a standalone < character, but not for one where the < elements are part of a special character. ] (]) 20:29, 15 January 2025 (UTC) | |||
: A less-than with two combining codes: | |||
index chr codepoint utf8 cat name | |||
0 < U+003c 3c Sm LESS-THAN SIGN | |||
1 ⃥ U+20e5 e283a5 Mn COMBINING REVERSE SOLIDUS OVERLAY | |||
2 ͏ U+034f cd8f Mn COMBINING GRAPHEME JOINER | |||
: -- ]'''··–·'''] 22:56, 15 January 2025 (UTC) | |||
::In other words, it's a "not less than" sign. Unicode's single character for that is hex 226E or ≮, although it uses a slash rather than a backslash ("reverse solidus") to overstrike the < sign. --] (]) 02:47, 16 January 2025 (UTC) | |||
:::Latex also uses <math>\,\nless\,.</math> The use of a forward slash, as in <math>\,a\!\not{\!\text{R}}~b\,,</math> to mean <math>\neg(a~\text{R}~b),</math> is standard. I can't think of a reason for using the backslashed symbol <math>\,<\!\!\!\!\!\setminus~</math> instead and have replaced <\ by ≮. --] 09:27, 16 January 2025 (UTC) | |||
= January 16 = | |||
== Miraheze Stuff == | |||
] What should I do if my wiki is approved on Miraheze? ] (]) 12:21, 16 January 2025 (UTC) | |||
:That should depend on the scope and goals of the wiki you have requested, which we don't know. Do you already have a small team of dedicated volunteers who will supply a non-trivial amount of relevant content? An empty wiki is not conducive to attracting new contributors. --] 23:56, 16 January 2025 (UTC) | |||
:Does it have to do with ]? --] 00:12, 17 January 2025 (UTC) | |||
::No, my friend in interested in YBS. It's not me. He told me from a distant place that he wants a wiki. And I have another wiki personally on my kernel. ] (]) 12:55, 17 January 2025 (UTC) | |||
== Temp Files on C: Drive == | |||
I have a Dell Inspiron 3910 running Windows 11. It has a C: drive with what is shown as either 216 GB or 232,783,867,904 bytes. (So those are 216 binary gigabytes, of 2**30 bytes each.) Anyway, This PC usually shows that it has between 20 GB and 45 GB free. If the free storage becomes less than 10%, it displays a red bar in This PC. One parameter that I am familiar with that changes is the size of pagefile.sys, which starts as 12 GB and often increases as it runs up to 24 GB or even 28 GB. I sometimes see the free storage on the C: drive drop to as low as 16 GB, which doesn't bother me, even if it bothers This PC. I don't need unlimited free storage on my C: drive; I need enough free storage on my C: drive. What happened yesterday is that it began displaying that about 5.5 GB was free, much less than I have seen before. I hadn't done anything that should have filled up the C: drive, such as importing video clips from my phone. (I know that video clips are large because they are three-dimensional because time is the third dimension.) I found a few folders on my C: drive that were at least 1 GB and I wasn't using, and I moved them to the E: drive, which is a great monster of a 4TB solid-state device. I thought that might free up a few gigabytes, and it didn't change anything. At about this point Windows Update told me that operating system updates were ready to install, and so I needed to schedule a time for a system restart. After the restart, my C: drive shows as having 44.9 GB free. That is, approximately 39 GB was reclaimed during the restart. I know that approximately 10 GB of that was pagefile.sys. Where did it get more than 25GB of free disk storage from? Is there a way that I can free up this disk storage other than by a restart? I know that some of this was temporary files created by Google Chrome and Microsoft Edge and a few other standard programs. Is there a utility that I can use that frees up temporary storage without restarting Windows? | |||
==Scanning all available streams== | |||
] (]) 18:10, 16 January 2025 (UTC) | |||
:@] I don't know of any program that finds temp files, but a good guideline I have in general is to use something like WinDirStat or WizTree (preferably the latter), as both show a graphical display of the biggest files on your drive, and may help in this case. <span style="font-family:monospace; font-weight: bold"> <span style="color:ForestGreen;font-size:1.15em"> ]</span> (<span style="color:#324c80">she/they</span> {{pipe}} ]) </span> 21:44, 16 January 2025 (UTC) | |||
Hello there. I'm have a question: How to scan all available online streams from a specified server and port given? For example, I've found a Wowza Streaming Engine server at 115.79.46.164 and port 1935. I want to know which website or software can help me to find all active streams on this server. Thanks for reading. ] (]) 14:22, 16 December 2024 (UTC) | |||
::Thank you, ]. I had already been using Disk Space Analyzer Max, which showed me the directories that were using a lot of space, and that didn't help much. What I saw was that Google Chrome had a large amount of data, for instance, but I didn't know what Google Chrome data was useful to it and what was temporary. As I said, I tried moving a few directories, each of which was about 1 GB, from C: to tertiary storage, and that didn't help. I thought it would make about 3 GB free, but maybe it took Windows a while to catch on. Obviously the restart found and freed up a lot of storage. So I am asking whether there is some way other than restarting the system to get it to find and free up the storage. Maybe I am looking for something that either does not exist or is buried somewhere, like treasure. ] (]) 22:19, 16 January 2025 (UTC) | |||
:::If it's Google Chrome that's the culprit, have you tried clearing your cache and browsing history? For me, caching and history have led to many GiBs being used in Chrome in the past. <span style="font-family:monospace; font-weight: bold"> <span style="color:ForestGreen;font-size:1.15em"> ]</span> (<span style="color:#324c80">she/they</span> {{pipe}} ]) </span> 23:07, 16 January 2025 (UTC) | |||
::::Whoops forgot ping @] <span style="font-family:monospace; font-weight: bold"> <span style="color:ForestGreen;font-size:1.15em"> ]</span> (<span style="color:#324c80">she/they</span> {{pipe}} ]) </span> 03:01, 17 January 2025 (UTC) | |||
:Install (free), boom, gives you an overview of everything stored on your storage volumes. Also lets you manage said stuff. | |||
:Anything called "]" or "temp" can be safely nuked. A cache is just copies of things stored for speeding things up and can always be regenerated. In fact I suggest just making your browser shut off disk caching, which is largely unneeded these days unless you're on a slow connection, and eats away at the lifetime of ]s, which it sounds like your primary drive is. Web search "<name of browser> disable disk caching" | |||
:{{tpq|So I am asking whether there is some way other than restarting the system to get it to find and free up the storage.}} It's hard to give a useful general answer to this without knowing what is taking up said storage to begin with. Remember we're not there with you looking at your computer screen; we can't see what's on your drives. The most generic answer is "sure there is as long as the things taking up space aren't locked Windows system files, which require a restart in order to modify/delete them." Software can always be configured to run periodically to go through deleting stuff "in the background". | |||
:For one you mentioned ]—the Windows ], which you probably have Windows "managing" the size of on its own (the default). Windows likes to be generous with its size and reserve more than you probably need, which then sits there taking up space. If you have no plans to use ], on a typical modern PC you can usually get away with just disabling it altogether, though you might want to leave a bit of margin and set it to half your RAM size. For this Web search: "Windows change page file size". --] (]) 04:12, 17 January 2025 (UTC) | |||
== install a specific version of OSX == | |||
: ] -- ]'''··–·'''] 17:02, 16 December 2024 (UTC) | |||
:nmap is just going to let you toss packets to the server and inspect the packets that server decides to send you back in reply. Which is great for networking analysis, but we want to speak ] here and talk with the "streaming" software on the remote host. Does help at all? (You will need ] if not already installed.) Do take note, the party which owns the server could always have configured it to restrict the information it will give out to the public. --] (]) 19:32, 26 December 2024 (UTC) | |||
Hi. I am trying to replicate the steps described here: https://stackoverflow.com/questions/71241711/is-there-a-way-to-access-your-own-airtag-data-via-api | |||
== .kp domains == | |||
The instructions specify: "You need macOS 14.3.1 or earlier for this to work. Items.data is encrypted in 14.4 and later." | |||
How many .kp domains are there? ] (]) 13:10, 19 December 2024 (UTC) | |||
:Did you see ]? ] (]) 19:10, 19 December 2024 (UTC) | |||
:https://www.northkoreatech.org/the-north-korean-website-list/ is a bit outdated but has more background info. ] (]) 19:20, 19 December 2024 (UTC) | |||
::It's ok, bro. I can still view the outdated ones with the Wayback Machine at the Internet Archive. Thanks, ] (]) 16:10, 20 December 2024 (UTC) | |||
I currently do not have any Apple hardware, so I plan to purchase a "mac mini, m1, 2020" machine. After I receive the machine, I plan to factory reset it for security. | |||
After a factory reset, is it possible to install a specific version, such as 14.3.1 onto the machine? | |||
(My understanding that if I just use the regular "system update" path, it would it me directly to the latest OSX, which is currently 15.2.) ] (]) 21:42, 16 January 2025 (UTC) | |||
= December 24 = | |||
:I would presume so. Thing is though, if you give the system Internet access it'll probably keep "trying" to update you to the latest OS X version. ] If you're already willing to spend money on the problem, why not just buy some different tracking device not from Apple that lets you talk to it however you want? What's the ultimate goal you're trying to accomplish here? --] (]) 04:22, 17 January 2025 (UTC) | |||
== |
== duplicate tab in Firefox == | ||
In Firefox (on MacOS) I sometimes accidentally hit a combination of keys that makes a new tab, same as the current tab, appear at the right. Naturally I have not been able to reproduce this behavior intentionally, nor find it in a list of Firefox keyboard shortcuts. Am I dreaming? ] (]) 21:54, 16 January 2025 (UTC) | |||
I searched for the keywords: "Israel Folau" "Margaret Court" "David Tyree", then Google shows me . Is this bug?] (]) 22:35, 24 December 2024 (UTC) | |||
:If I do the same search, this question shows up (twice, due to how the refdesk is organized) plus a link to Stuff. So, it doesn't seem to be a bug. I tried the same format search with much more famous people and got hundreds of links. ] (]) 13:20, 25 December 2024 (UTC) | |||
::Remember that Google has numerous servers that can respond to your search, and they do not necessarily all behave the same. --] (]) 22:17, 27 December 2024 (UTC) | |||
:Right click tab, select "Duplicate Tab"? <span style="font-family:monospace; font-weight: bold"> <span style="color:ForestGreen;font-size:1.15em"> ]</span> (<span style="color:#324c80">she/they</span> {{pipe}} ]) </span> 22:50, 16 January 2025 (UTC) | |||
: {{keypress|ctrl}} and drag on the tab will duplicate it; I've done that by accident; I can't see a non-mouse way of doing it. -- ]'''··–·'''] 22:51, 16 January 2025 (UTC) | |||
= December 28 = | |||
: And it is not which apparently means delete page to Misplaced Pages! ] (]) 23:46, 16 January 2025 (UTC) | |||
: {{keypress|Alt}}-{{keypress|Enter}} with the address bar highlighted will open its contents in a new tab, which is often functionally a tab duplication. So maybe you wrangled a {{keypress|Ctrl}}-{{keypress|L}}, {{keypress|Alt}}-{{keypress|Enter}}? (Sorry, not exactly sure what these map to on MacOS.) ] (]) 09:08, 17 January 2025 (UTC) | |||
== File disambiguators (1): Explorer/W11 == | |||
= January 17 = | |||
Óla! So Explorer adds (''n'') to a file with a duplicate name to an existing one. Do you have suggestions how to easily identify and delete them? The search option doesn't recognize parentheses, so a search would merely identify files with that number in the title. The reason for asking is that if a folder has a large number of duplicates that should be deleted, it would be easier to sort/select/delete rather than ctrl+click individually. Thank you! ] (]) 16:31, 28 December 2024 (UTC) | |||
:https://www.alldup.de/alldup_help/alldup.php and then set it to compare 100% of the content. ] (]) 17:16, 28 December 2024 (UTC) | |||
::Thank you ], that's great, and freeware too. It looks like it might take some getting used to! Cheers, ] (]) 18:13, 28 December 2024 (UTC) |
Latest revision as of 12:55, 17 January 2025
Welcome to the computing sectionof the Misplaced Pages reference desk. skip to bottom Select a section: Shortcut Want a faster answer?
Main page: Help searching Misplaced Pages
How can I get my question answered?
- Select the section of the desk that best fits the general topic of your question (see the navigation column to the right).
- Post your question to only one section, providing a short header that gives the topic of your question.
- Type '~~~~' (that is, four tilde characters) at the end – this signs and dates your contribution so we know who wrote what and when.
- Don't post personal contact information – it will be removed. Any answers will be provided here.
- Please be as specific as possible, and include all relevant context – the usefulness of answers may depend on the context.
- Note:
- We don't answer (and may remove) questions that require medical diagnosis or legal advice.
- We don't answer requests for opinions, predictions or debate.
- We don't do your homework for you, though we'll help you past the stuck point.
- We don't conduct original research or provide a free source of ideas, but we'll help you find information you need.
How do I answer a question?
Main page: Misplaced Pages:Reference desk/Guidelines
- The best answers address the question directly, and back up facts with wikilinks and links to sources. Do not edit others' comments and do not give any medical or legal advice.
January 4
Zoomify
Is it possible to download the map La ligne de démarcation that is shown via Zoomify?--Antemister (talk) 22:48, 4 January 2025 (UTC)
- Yes, if you google "download zoomify image" you will see various ways. Polygnotus (talk) 23:44, 4 January 2025 (UTC)
- Ah, of course I googled before and found that but was not successful. So I asked here.--Antemister (talk) 11:31, 5 January 2025 (UTC)
- Please mention what you've already tried before and what did not work and what happened instead (e.g. error messages). Polygnotus (talk) 04:57, 6 January 2025 (UTC)
- Tried and of course also the dezoomify tool but got immediately stuck because I was not able to find an URL. Very few programming skills, none regarding HTML, that's why I ask here.--Antemister (talk) 10:46, 6 January 2025 (UTC)
- Please mention what you've already tried before and what did not work and what happened instead (e.g. error messages). Polygnotus (talk) 04:57, 6 January 2025 (UTC)
- Ah, of course I googled before and found that but was not successful. So I asked here.--Antemister (talk) 11:31, 5 January 2025 (UTC)
- @Antemister:
- I wasn't able to download the file as it was taking forever, but this URL appeared to download the files for 30+ minutes on a fast internet. Let us know if this works. TheTechie@enwiki (she/they | talk) 03:19, 8 January 2025 (UTC)
- I've successfully taken images off the IWM via their source code and dezoomify, but I'm puzzled as to how to extract images here, as Dezoomify appears to be perpetually stuck on 'preparing tiles load'. The longest I've seen it take for large images in the past is a couple of minutes. Like Antemister, I've little programming knowledge, but I think the following elements in the code are related:
- <script type="text/javascript" src="ZoomifyImageViewerFree-min.js"></script>
- <script type="text/javascript"> Z.showImage("myContainer", "images/France_LD"); </script>
- On going to http://cartesmich.free.fr/images/France_LD/ I get error 403. Perhaps this website is savvy about theft of its most high-resolution public domain images. Maybe someone has the patience to hunt about in the browser console. JayCubby 04:51, 8 January 2025 (UTC)
- If they're public domain images, it's not "theft". Please avoid such misleading and perjorative language. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 10:52, 8 January 2025 (UTC)
- It's still potentially in violation of their ToS (not that I much care) and could, per my reading of my law (assuming this is an american website, which it isn't) run afoul of something like the Computer Fraud and Abuse Act.
- The ToS is a reasonable concern, which is why I said theft. JayCubby 15:53, 8 January 2025 (UTC)
- Even if all you say were true (It's highly doubtful; there appear to be no published terms of service - much less any that a user agrees to before viewing the site; and in any case we are not all in the USA), it's still not theft. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 16:11, 8 January 2025 (UTC)
- You're right--there are no terms (though the host website, free.fr, appears to have a TOS page). JayCubby 16:53, 8 January 2025 (UTC)
- Even if all you say were true (It's highly doubtful; there appear to be no published terms of service - much less any that a user agrees to before viewing the site; and in any case we are not all in the USA), it's still not theft. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 16:11, 8 January 2025 (UTC)
- If they're public domain images, it's not "theft". Please avoid such misleading and perjorative language. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 10:52, 8 January 2025 (UTC)
Yes, I came to that cited code, but had no idea to open that container Also tried again dezoomify, and also waited a long time, and after 1-2 hours i get an error message. And it includes a link, , if you alter the numbers you can find various tiles of the map.is it possible to proceed with that, download that folder?--Antemister (talk) 22:34, 8 January 2025 (UTC)
- Hmm! So I pasted this conversation into ChatGPT, and told it to generate code for use in Google Colab. The code is here (it doesn't really do what it's supposed to, at all, but a start).
- The really screwed-up image it generated is here. Hopefully these are of help to someone with more Python experience than I.JayCubby 02:35, 9 January 2025 (UTC)
I gave this another try. This time it was able to actually download the image correctly, but only a horizontal section. The code is collapsed below. I think it needs only some slight tweaking.
Extended content |
---|
import os ::import requests ::from PIL import Image ::# Base URL and directory setup ::BASE_URL = "http://cartesmich.free.fr/images/France_LD/TileGroup8/" ::OUTPUT_DIR = "tiles" ::MERGED_IMAGE = "merged_image.jpg" ::# Ensure the output directory exists ::os.makedirs(OUTPUT_DIR, exist_ok=True) ::# Function to download a tile ::def download_tile(url, save_path): :: response = requests.get(url) :: if response.status_code == 200: :: with open(save_path, "wb") as f: :: f.write(response.content) :: return True :: return False ::# Function to stitch the tiles together ::def stitch_tiles(tiles, tile_size): :: max_x = max(x for x, y in tiles.keys()) + 1 :: max_y = max(y for x, y in tiles.keys()) + 1 :: # Create a blank canvas for the final image :: merged_image = Image.new("RGB", (max_x * tile_size, max_y * tile_size)) :: # Paste tiles onto the canvas :: for (x, y), tile_path in tiles.items(): :: tile_image = Image.open(tile_path) :: merged_image.paste(tile_image, (x * tile_size, y * tile_size)) :: return merged_image ::# Set parameters for downloading tiles ::tile_size = 256 # Assume each tile is 256x256 ::x_range = range(36, 50) # Adjust based on your needs (x-coordinate range) ::y_range = range(24, 40) # Adjust based on your needs (y-coordinate range) ::# Dictionary to store downloaded tile paths ::downloaded_tiles = {} ::# Download tiles ::for x in x_range: :: for y in y_range: :: tile_url = f"{BASE_URL}6-{x}-{y}.jpg" :: tile_path = os.path.join(OUTPUT_DIR, f"6-{x}-{y}.jpg") :: if download_tile(tile_url, tile_path): :: downloaded_tiles = tile_path :: print(f"Downloaded: {tile_url}") :: else: :: print(f"Tile not found: {tile_url}") ::# Stitch the tiles into a single image ::if downloaded_tiles: :: merged_image = stitch_tiles(downloaded_tiles, tile_size) :: merged_image.save(MERGED_IMAGE) :: print(f"Merged image saved as {MERGED_IMAGE}") ::else: :: print("No tiles were downloaded!") |
-- JayCubby 16:09, 9 January 2025 (UTC)
- Oh, again some progress! What horizontal slide? Maybe iterate through the TileGroup folders?--Antemister (talk) 16:56, 9 January 2025 (UTC)
- User:Antemister, it was one of the bottom sections of the map, I have some silly 2FA on my devices and can't access the one I ran it on for a couple of hours. You should be able to run the above code in Colab and ask ChatGPT (or Gemini) for further help. JayCubby 17:02, 9 January 2025 (UTC)
- First heard about Colab but tried, and it seems the Code does something. What is the Folder you got the files downlaoded?--Antemister (talk) 17:30, 9 January 2025 (UTC)
Antemister In a new cell, type
from google.colab import files
files.download('merged_image.jpg')
Apologies for putting all of this inside a hat template, I can't figure out how to correct it. JayCubby 18:15, 9 January 2025 (UTC)
- Again progress, have gotten such a merged image that shows a part of the map. The iteration is just a guess... Shouldnt there be a possibility to list all the files in the folder?--Antemister (talk) 22:58, 9 January 2025 (UTC)
- @Antemister, I very nearly got it to work, the final image is 12,000x12,000px but has errors. import os
- import requests
- from PIL import Image
- from concurrent.futures import ThreadPoolExecutor
- Base URL and output setup
- BASE_URL = "http://cartesmich.free.fr/images/France_LD/"
- OUTPUT_DIR = "tiles"
- MERGED_IMAGE = "merged_image.jpg"
- Ensure output directory exists
- os.makedirs(OUTPUT_DIR, exist_ok=True)
- Function to download a tile
- def download_tile(group, x, y):
- url = f"{BASE_URL}TileGroup{group}/6-{x}-{y}.jpg"
- save_path = os.path.join(OUTPUT_DIR, f"TileGroup{group}_6-{x}-{y}.jpg")
- try:
- response = requests.get(url, timeout=10)
- if response.status_code == 200:
- with open(save_path, "wb") as f:
- f.write(response.content)
- print(f"Downloaded: {url}")
- return (group, x, y, save_path)
- else:
- print(f"Tile not found: {url}")
- except Exception as e:
- print(f"Error downloading {url}: {e}")
- return None
- Function to download all tiles (no detection, brute force)
- def download_all_tiles(groups, x_range, y_range):
- tiles =
- print("Starting brute force tile download...")
- with ThreadPoolExecutor(max_workers=10) as executor:
- futures =
- for group in groups:
- for x in x_range:
- for y in y_range:
- futures.append(executor.submit(download_tile, group, x, y))
- for future in futures:
- result = future.result()
- if result:
- tiles.append(result)
- return tiles
- Function to stitch tiles together
- def stitch_tiles(tiles, tile_size):
- if not tiles:
- print("No tiles to stitch.")
- return None
- Determine the range of x and y coordinates
- all_coords =
- min_x = min(x for x, y in all_coords)
- max_x = max(x for x, y in all_coords)
- min_y = min(y for x, y in all_coords)
- max_y = max(y for x, y in all_coords)
- Create a blank canvas for the final image
- width = (max_x - min_x + 1) * tile_size
- height = (max_y - min_y + 1) * tile_size
- merged_image = Image.new("RGB", (width, height))
- Paste tiles onto the canvas
- for group, x, y, tile_path in tiles:
- tile_image = Image.open(tile_path)
- merged_image.paste(
- tile_image, ((x - min_x) * tile_size, (y - min_y) * tile_size)
- )
- return merged_image
- Main script execution
- tile_size = 256 # Assume each tile is 256x256
- groups = range(0, 16) # TileGroup0 to TileGroup15
- x_range = range(0, 50) # x-coordinates: 0–49
- y_range = range(0, 50) # y-coordinates: 0–49
- tiles = download_all_tiles(groups, x_range, y_range)
- Stitch the tiles into a single image
- if tiles:
- merged_image = stitch_tiles(tiles, tile_size)
- if merged_image:
- merged_image.save(MERGED_IMAGE)
- print(f"Merged image saved as {MERGED_IMAGE}")
- else:
- print("No tiles were downloaded!") JayCubby 03:31, 11 January 2025 (UTC)
- Here's the link. https://limewire.com/d/50995585-f881-4ff5-9186-e0eb55978a5e#Tcw-4kZBQKVH0GS9yZPb-vUvH8t-V04gV-t8MQp8O7k JayCubby 03:38, 11 January 2025 (UTC)
- Thank you, that is sufficient, what I need is the ceasefire/demarcation line. Can you sent me the code with correct formatting? Maybe I can use it in future, to download other zoomified images.--Antemister (talk) 14:18, 11 January 2025 (UTC)
- Here's the link. https://limewire.com/d/50995585-f881-4ff5-9186-e0eb55978a5e#Tcw-4kZBQKVH0GS9yZPb-vUvH8t-V04gV-t8MQp8O7k JayCubby 03:38, 11 January 2025 (UTC)
January 13
Absolute value inequality
A meteorite is 600ft from a satellite and travelling toward the satellite at 42ft/sec. At what times will the meteorite be less than 50ft away from the satellite? Write an appropriate absolute value inequality for the given situation and solve: Let|42t-600|<50 and 42t-600<50 and 42t-600>-50. Thus, 13.10<t<15.48. Afrazer123 (talk) 22:21, 13 January 2025 (UTC)
- What is the question?
- The given data do not specify where the meteorite is at time t = 0, and also not with which speed the satellite is moving. Your solution is based on the (not unreasonable) assumptions that the person who drew up this assignment meant t = 0 to be the initial moment when the meteorite is 600ft away from the satellite, and that the speed of 42ft/s is the speed of the meteorite relative to the satellite. Your solution assumes that the meteorite will not hit the satellite, but pass by it. Under these assumptions, the derived inequations are correct, as is your solution, although not with exact values but with numeric values rounded to two decimals.
- If the meteorite hits the satellite, we don't know what happens after t = 14.29. If the satellite disintegrates, the notion of the distance between the bodies becomes meaningless. --Lambiam 23:59, 13 January 2025 (UTC)
- Please do your own homework.
- Welcome to the Misplaced Pages Reference Desk. Your question appears to be a homework question. I apologize if this is a misinterpretation, but it is our aim here not to do people's homework for them, but to merely aid them in doing it themselves. Letting someone else do your homework does not help you learn nearly as much as doing it yourself. Please attempt to solve the problem or answer the question yourself first. If you need help with a specific part of your homework, feel free to tell us where you are stuck and ask for help. If you need help grasping the concept of a problem, by all means let us know.
- This is additionally the Reference desk for computing and electronics-related topics, not mathematics. --Slowking Man (talk) 06:11, 15 January 2025 (UTC)
- But is it homework? Homework formulates an exercise, often in the form of a problem, asking for its solution. It is not usual for homework to contain the detailed solution to a stated problem. What is then the exercise? --Lambiam 10:32, 15 January 2025 (UTC)
- Maybe they forgot the rest of the problem? Or maybe it's just someone/somebot sloppily copy-pasting stuff from the Web to try and waste people's time. --Slowking Man (talk) 05:18, 16 January 2025 (UTC)
- I think it's not homework. They might be sending stuff into space. Gnu779 (talk) 12:22, 16 January 2025 (UTC)
- Maybe they forgot the rest of the problem? Or maybe it's just someone/somebot sloppily copy-pasting stuff from the Web to try and waste people's time. --Slowking Man (talk) 05:18, 16 January 2025 (UTC)
- But is it homework? Homework formulates an exercise, often in the form of a problem, asking for its solution. It is not usual for homework to contain the detailed solution to a stated problem. What is then the exercise? --Lambiam 10:32, 15 January 2025 (UTC)
January 15
What is this character?
Inequality (mathematics) has several characters that my computer renders as little boxes. For example:
- a <⃥͏ a (irreflexivity) — after the first italic a
- if a < b, then b <⃥͏ a (asymmetry) — after the second italic b
What are they? In both cases that I copied, the box is seemingly the same character as the lesser-than sign, since I can't highlight one without the other. I figured I could get the answer from Google (there are enough Unicode charts online), but I get just four results for the combined lesser-than-and-box: the inequality article, two Reddit pages, and something in Thai. When I put the combined lesser-than-and-box into the URL, I'm shown MediaWiki:Badtitletext, which makes sense for a title containing a standalone < character, but not for one where the < elements are part of a special character. Nyttend (talk) 20:29, 15 January 2025 (UTC)
- A less-than with two combining codes:
index chr codepoint utf8 cat name 0 < U+003c 3c Sm LESS-THAN SIGN 1 ⃥ U+20e5 e283a5 Mn COMBINING REVERSE SOLIDUS OVERLAY 2 ͏ U+034f cd8f Mn COMBINING GRAPHEME JOINER
- In other words, it's a "not less than" sign. Unicode's single character for that is hex 226E or ≮, although it uses a slash rather than a backslash ("reverse solidus") to overstrike the < sign. --142.112.149.206 (talk) 02:47, 16 January 2025 (UTC)
- Latex also uses The use of a forward slash, as in to mean is standard. I can't think of a reason for using the backslashed symbol instead and have replaced <\ by ≮. --Lambiam 09:27, 16 January 2025 (UTC)
- In other words, it's a "not less than" sign. Unicode's single character for that is hex 226E or ≮, although it uses a slash rather than a backslash ("reverse solidus") to overstrike the < sign. --142.112.149.206 (talk) 02:47, 16 January 2025 (UTC)
January 16
Miraheze Stuff
What should I do if my wiki is approved on Miraheze? Gnu779 (talk) 12:21, 16 January 2025 (UTC)
- That should depend on the scope and goals of the wiki you have requested, which we don't know. Do you already have a small team of dedicated volunteers who will supply a non-trivial amount of relevant content? An empty wiki is not conducive to attracting new contributors. --Lambiam 23:56, 16 January 2025 (UTC)
- Does it have to do with Yangon Bus Service? --Lambiam 00:12, 17 January 2025 (UTC)
- No, my friend in interested in YBS. It's not me. He told me from a distant place that he wants a wiki. And I have another wiki personally on my kernel. Gnu779 (talk) 12:55, 17 January 2025 (UTC)
Temp Files on C: Drive
I have a Dell Inspiron 3910 running Windows 11. It has a C: drive with what is shown as either 216 GB or 232,783,867,904 bytes. (So those are 216 binary gigabytes, of 2**30 bytes each.) Anyway, This PC usually shows that it has between 20 GB and 45 GB free. If the free storage becomes less than 10%, it displays a red bar in This PC. One parameter that I am familiar with that changes is the size of pagefile.sys, which starts as 12 GB and often increases as it runs up to 24 GB or even 28 GB. I sometimes see the free storage on the C: drive drop to as low as 16 GB, which doesn't bother me, even if it bothers This PC. I don't need unlimited free storage on my C: drive; I need enough free storage on my C: drive. What happened yesterday is that it began displaying that about 5.5 GB was free, much less than I have seen before. I hadn't done anything that should have filled up the C: drive, such as importing video clips from my phone. (I know that video clips are large because they are three-dimensional because time is the third dimension.) I found a few folders on my C: drive that were at least 1 GB and I wasn't using, and I moved them to the E: drive, which is a great monster of a 4TB solid-state device. I thought that might free up a few gigabytes, and it didn't change anything. At about this point Windows Update told me that operating system updates were ready to install, and so I needed to schedule a time for a system restart. After the restart, my C: drive shows as having 44.9 GB free. That is, approximately 39 GB was reclaimed during the restart. I know that approximately 10 GB of that was pagefile.sys. Where did it get more than 25GB of free disk storage from? Is there a way that I can free up this disk storage other than by a restart? I know that some of this was temporary files created by Google Chrome and Microsoft Edge and a few other standard programs. Is there a utility that I can use that frees up temporary storage without restarting Windows? Robert McClenon (talk) 18:10, 16 January 2025 (UTC)
- @Robert McClenon I don't know of any program that finds temp files, but a good guideline I have in general is to use something like WinDirStat or WizTree (preferably the latter), as both show a graphical display of the biggest files on your drive, and may help in this case. TheTechie@enwiki (she/they | talk) 21:44, 16 January 2025 (UTC)
- Thank you, User:TheTechie. I had already been using Disk Space Analyzer Max, which showed me the directories that were using a lot of space, and that didn't help much. What I saw was that Google Chrome had a large amount of data, for instance, but I didn't know what Google Chrome data was useful to it and what was temporary. As I said, I tried moving a few directories, each of which was about 1 GB, from C: to tertiary storage, and that didn't help. I thought it would make about 3 GB free, but maybe it took Windows a while to catch on. Obviously the restart found and freed up a lot of storage. So I am asking whether there is some way other than restarting the system to get it to find and free up the storage. Maybe I am looking for something that either does not exist or is buried somewhere, like treasure. Robert McClenon (talk) 22:19, 16 January 2025 (UTC)
- If it's Google Chrome that's the culprit, have you tried clearing your cache and browsing history? For me, caching and history have led to many GiBs being used in Chrome in the past. TheTechie@enwiki (she/they | talk) 23:07, 16 January 2025 (UTC)
- Whoops forgot ping @Robert McClenon TheTechie@enwiki (she/they | talk) 03:01, 17 January 2025 (UTC)
- If it's Google Chrome that's the culprit, have you tried clearing your cache and browsing history? For me, caching and history have led to many GiBs being used in Chrome in the past. TheTechie@enwiki (she/they | talk) 23:07, 16 January 2025 (UTC)
- Thank you, User:TheTechie. I had already been using Disk Space Analyzer Max, which showed me the directories that were using a lot of space, and that didn't help much. What I saw was that Google Chrome had a large amount of data, for instance, but I didn't know what Google Chrome data was useful to it and what was temporary. As I said, I tried moving a few directories, each of which was about 1 GB, from C: to tertiary storage, and that didn't help. I thought it would make about 3 GB free, but maybe it took Windows a while to catch on. Obviously the restart found and freed up a lot of storage. So I am asking whether there is some way other than restarting the system to get it to find and free up the storage. Maybe I am looking for something that either does not exist or is buried somewhere, like treasure. Robert McClenon (talk) 22:19, 16 January 2025 (UTC)
- Install WizTree (free), boom, gives you an overview of everything stored on your storage volumes. Also lets you manage said stuff.
- Anything called "cache" or "temp" can be safely nuked. A cache is just copies of things stored for speeding things up and can always be regenerated. In fact I suggest just making your browser shut off disk caching, which is largely unneeded these days unless you're on a slow connection, and eats away at the lifetime of SSDs, which it sounds like your primary drive is. Web search "<name of browser> disable disk caching"
So I am asking whether there is some way other than restarting the system to get it to find and free up the storage.
It's hard to give a useful general answer to this without knowing what is taking up said storage to begin with. Remember we're not there with you looking at your computer screen; we can't see what's on your drives. The most generic answer is "sure there is as long as the things taking up space aren't locked Windows system files, which require a restart in order to modify/delete them." Software can always be configured to run periodically to go through deleting stuff "in the background".- For one you mentioned pagefile.sys—the Windows page file, which you probably have Windows "managing" the size of on its own (the default). Windows likes to be generous with its size and reserve more than you probably need, which then sits there taking up space. If you have no plans to use hibernation, on a typical modern PC you can usually get away with just disabling it altogether, though you might want to leave a bit of margin and set it to half your RAM size. For this Web search: "Windows change page file size". --Slowking Man (talk) 04:12, 17 January 2025 (UTC)
install a specific version of OSX
Hi. I am trying to replicate the steps described here: https://stackoverflow.com/questions/71241711/is-there-a-way-to-access-your-own-airtag-data-via-api
The instructions specify: "You need macOS 14.3.1 or earlier for this to work. Items.data is encrypted in 14.4 and later."
I currently do not have any Apple hardware, so I plan to purchase a "mac mini, m1, 2020" machine. After I receive the machine, I plan to factory reset it for security.
After a factory reset, is it possible to install a specific version, such as 14.3.1 onto the machine?
(My understanding that if I just use the regular "system update" path, it would it me directly to the latest OSX, which is currently 15.2.) Epideurus (talk) 21:42, 16 January 2025 (UTC)
- I would presume so. Thing is though, if you give the system Internet access it'll probably keep "trying" to update you to the latest OS X version. Are you sure pursuing this line of action is the best way to go about accomplishing what you want? If you're already willing to spend money on the problem, why not just buy some different tracking device not from Apple that lets you talk to it however you want? What's the ultimate goal you're trying to accomplish here? --Slowking Man (talk) 04:22, 17 January 2025 (UTC)
duplicate tab in Firefox
In Firefox (on MacOS) I sometimes accidentally hit a combination of keys that makes a new tab, same as the current tab, appear at the right. Naturally I have not been able to reproduce this behavior intentionally, nor find it in a list of Firefox keyboard shortcuts. Am I dreaming? —Tamfang (talk) 21:54, 16 January 2025 (UTC)
- Right click tab, select "Duplicate Tab"? TheTechie@enwiki (she/they | talk) 22:50, 16 January 2025 (UTC)
- ctrl and drag on the tab will duplicate it; I've done that by accident; I can't see a non-mouse way of doing it. -- Finlay McWalter··–·Talk 22:51, 16 January 2025 (UTC)
- And it is not which apparently means delete page to Misplaced Pages! Graeme Bartlett (talk) 23:46, 16 January 2025 (UTC)
- Alt-↵ Enter with the address bar highlighted will open its contents in a new tab, which is often functionally a tab duplication. So maybe you wrangled a Ctrl-L, Alt-↵ Enter? (Sorry, not exactly sure what these map to on MacOS.) Emberfiend (talk) 09:08, 17 January 2025 (UTC)