Messages - Tuxman [ switch to compact view ]

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 489next
51
Living Room / Re: ChatGPT Adventures
« on: December 14, 2022, 06:45 PM »
I'm surprised no one seems to have mentioned ChatGPT here yet.

ChatGPT requires an OpenAI account which, in turn, requires my phone number for no good reason at all. Pass.

52
Found Deals and Discounts / Re: WordPerfect Office 2021: 60% off
« on: November 29, 2022, 11:09 AM »
It does, and Corel slowly starts to care about it again, or at least they actively ask for feedback now. :)

53
Found Deals and Discounts / WordPerfect Office 2021: 60% off
« on: November 27, 2022, 07:01 PM »

54
Coding Snacks / Celsius <-> Fahrenheit in PowerShell
« on: November 22, 2022, 05:15 PM »
I had a request to myself: I want to convert Fahrenheit <-> Celsius on Windows without having to install a whole bunch of GNU utilities (which would have been the easiest way, I presume). So I wrote a converter for Powershell which I use anyway. :)

Code: PowerShell [Select]
  1. function FtoC([double]$fahrenheit) {
  2.         $celsius = ($fahrenheit - 32) * (5/9)
  3.         "{0} °F = {1} °C" -f $fahrenheit,[math]::Round($celsius,3)
  4. }
  5.  
  6. function CtoF([double]$celsius) {
  7.         $fahrenheit = ($celsius * (9/5)) + 32
  8.         "{0} °C = {1} °F" -f $celsius,[math]::Round($fahrenheit,3)
  9. }

Usage:

> FtoC(32)
32 °F = 0 °C
> CtoF(0)
0 °C = 32 °F

55
Mini-Reviews by Members / Re: Nushell, "a new type of shell".
« on: November 04, 2022, 10:23 PM »
The UNC problems mentioned in the "needs improvement" section are probably gone with the next version (0.71):
https://github.com/nushell/nushell/pull/6824

Needs to be verified yet.

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 489next
Go to full version