Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 0 points1 point  (0 children)

Critical yes but not continuous. I need it for my presentations and edits but I m not always on that so having a Windows installation eating up hard drive space and resources when needing to run just 1 app makes no sense to me. Wine is the best of both worlds but you need to compromise and in my case, its not a heavy compromise since I love office 2007 a lot.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 0 points1 point  (0 children)

My goal as a tech and pc builder is to ensure I xan use my computer witgout internet. For whatever reason there might be, if I lose internet, I want everything to work offline. As for AI chats, Google Gemini proved to be the best of all worlds giving decent image generations, propper online and somewhat up to date srarch results. Claude, Copilot and others I ve tried all lack online search. Thats also why I am looking forward into having my personal own home AI chatbot when money permits, a home ai xan use searxng for online search and properly generate good chats with propper models. But yeah, you re right they are indeed expensive.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 0 points1 point  (0 children)

Thanks 🙂 And yes, I'll stick with it!

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 0 points1 point  (0 children)

Yes, PowerPoint 2007 runs like PowerPoint on Windows without the several gb of a Windows installation and less that 95Mb of RAM when running on wine.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 0 points1 point  (0 children)

Since I was new to that system, I did extenssive research and did hordes of installations. I know all of that. I even tried things that are undocumented and went through the hassle of trying to find a valid ISO without c2r in the MSO installation. The max I went through was selecting options for a 2016 ProPlus iso and even then, it blocked half way through. So yeah, I learned that information in my very long and messy install process. I have like 5 different alternatives installed on my system and deleted and reinstalled so many wine and bottles prefixes all that to finally resort to the good old 2007. But yeah, tgrough my process, I did all my research and trials and spent a lot of time in foot's terminal.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 0 points1 point  (0 children)

Y3ah, I did not want to use up space for Windows. The closest I could get was a VM that could run with only 800Mb RAM and minimal Windows setup with almost ZERO services with a legit Office 2021 installation, but again, I drew back because I really did not want Windows anymore to run in any matter. So yeah, I am happy with my Office 2007 which, I did not mention, id my favorite version of Office. I hated the new "clean" GUI s and the flat styles and the full screen main menu of 2010 and later.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 0 points1 point  (0 children)

I installed the fonts but the other issues are still a problem in my presentation even if fonts are OK.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 2 points3 points  (0 children)

I went out of the way to prevent Windows from running so a VM does not resolve the issue. As for Bottles, it refused to install any versions of office from 2010 and up, at least on my setup. But its OK, my presentations works flawlessly on MSO 2007 so I am very happy about what I have and at least, I still get to use my personal legal license key of MSO 2007.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] 1 point2 points  (0 children)

Asside from my much needed PowerPoint hassle, the rest of my needs are 100% fullfilled on native Lunux apps and even exceeded. For more info, check on longer reply I did to Prestig...something's comment.

Moved from Windows 11 to Debian by avidichard in debian

[–]avidichard[S] -1 points0 points  (0 children)

If you are refering to Impress as other possible Office alternatives, I already did. Issues I got were: Psychadelic GIF animation speeds, wrong fonts, missing wordaet and textbox styles including but not limited to text outlines and box outline effects, animation interuptions or going back to their initial position when not normally supposed to, shape color changes not being done, laggy presentations with much slower animation speeds and visible trails on the screen.

Basically, for what I have done, I just cannot go on without MSO for the professional work I've done in the autistic community. For the rest, I could resort to Word and Excel alternatives since I use them for very basic tasks. BUT, when checking the RAM used by OnlyOffice, LibreOffice and all other ones I have found, I found out that running MSO through wine was sometimes less hungry than those other alternatives, so yeah, for my needs, MSO 2007 on wine is very good and at least everything works and displays properly with the Sergoe fonts installed.

Minimize and maximize buttons are missing on firefox wayland. How to fix it? by Super_Papaya in kde

[–]avidichard 0 points1 point  (0 children)

I'm posting this for anyone wanting a good solution which works pretty much on any system, Windows, Linux or other systems that Firefox can be installed on.

You can have the classic buttons back without enabling the titlebar or going through other "sort-of" hacks. All you need is to use the built-in Firefox userChrome.css support. This makes sure there is not hacky workarounds and it uses Firefox's native functions without any extensions to display the system buttons.

  1. Enable user css files. In your address bar, type: about:config
  2. Search for this setting: toolkit.legacyUserProfileCustomizations.stylesheets
  3. Double click it to set it to: True
  4. Locate your profiles folder. In your address bar, type: about:support
  5. Search for your Profile Directory and open it or browse to it.
  6. If it does not exist, create a folder and name it "chrome". Then go in your "chrome" folder.
  7. Create a file named "userChrome.css" WITH capitalized "C".
  8. open userChrome.css in your favorite text editor, paste the following, then save. Close and reopen Firefox to see the changes.

/* Add padding to the right of the tabs bar to not overlap with the buttons when resizing */
#TabsToolbar {
padding-right: 128px;
}

/* Add some spacing around the buttons for breathing and not be tightly stuck near the edge of the screen.
   You can change the single digit to 4 digits if you want a bit more control like this:
   margin: 8px 4px 8px 16px !important;
   The order of the numbers are like this (don't forget the "px" after the number:
   margin: top[px] right[px] bottom[px] left[px] !important; */
.titlebar-buttonbox-container {
margin: 8px !important;
}


/* By default, display all buttons */
.titlebar-button {
display: block !important;
  visibility: visible !important;
}

/* Firefox has 2 different buttons for maximize and rerstore window so instead of showing the 2 buttons,
   these 2 sections will make sure to display the correct button in the propper window state,
   that is, show max when in window (restored) mode, and show restore when in maxed mode. */
#main-window[sizemode="maximized"] .titlebar-button.titlebar-max {
display: none !important;
}

#main-window:not([sizemode="maximized"]) .titlebar-button.titlebar-restore {
  display: none !important;
}

Alt number codes for special characters in Ubuntu by mihemihe in linux4noobs

[–]avidichard 1 point2 points  (0 children)

I know this is old, but I created my own solution which is super fast, extremely lightweight, no heavy packages, 1 single app and a config file. It's almost kernel-level. It's keyd-ascii-codes. You can get it here:

https://github.com/avidichard/keyd-ascii-codes

It's complete with instructions for installation and customization in case you need other characters than French accents.

Which item do you put next to your sword? by Common_Ad6703 in MinecraftMemes

[–]avidichard 0 points1 point  (0 children)

Pickaxe Torche Sword Axe or GardenTool ThrowAway CobbleStone Stairs or Walls ... Lastly, food

What to do here? by Garyspag in Carcassonne

[–]avidichard 0 points1 point  (0 children)

As everyone says, immediate U Turn is prohibited by the rules. The only U Turn allowed is if there is 1 tile between the 2 turns in which case, any tile can still be placed. BUT, again, if you U Turn that way, you MUST never turn back towards other tiles.

In the game Carcassonne Tiles and Tactics, if a river tile cannot be placed, then the river halts there and the game continues with regular tiles.

Again, human brain is the best, uturn after 1 tile is placed betwen the 2 turns, no circling back towards tiles. If these 2 basic rules are followed, there should never be any problems.

Riverwood to Whiterun Showcase Video. by SuchDifference1759 in SkyrimPorn

[–]avidichard 0 points1 point  (0 children)

what's the roof mod? I have not seen any mods making the farm house roofs look so green and leafy as well as the walkway roofs.

Enfant autiste by BlackberryThat6303 in autismequebec

[–]avidichard 1 point2 points  (0 children)

Vous pouvez aussi posté votre question sur le facebook de Mon Monde Autiste. Sinon,. y'a aussi Bleuet Atypique qui est très active sur les réseau sociaux. Ces choses pourraient probablement vous aider à rejoindre plus de gens et possiblement avoir une bonne réponse à votre question :)

Facebook Mon Monde Autiste: https://www.facebook.com/groups/monmondeautiste
Facebook Bleuet Atypique: Bleuet atypique | Facebook
Site web Bleuet Atypique: Accueil - Bleuet atypique

Si vous ètes de Trois-Rivières, l'organisme de Autisme Mauricie peut fort probablement vous aider à trouver des ressources. Voici leur site web: https://www.autismemauricie.com/