home.social

#lotw — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #lotw, aggregated by home.social.

fetched live
  1. @K3LOE I log to a self-hosted Wavelog instance, that then sends my QSL to LoTW, QRZ.com, ClubLog, and others, so I don't have to manually do it all:

    wavelog.org/

    #HamRadio #AmateurRadio #hamr #Wavelog #QRZ #QSL #LoTW #ClubLog #HamLogging #Logging

  2. @K3LOE I log to a self-hosted Wavelog instance, that then sends my QSL to LoTW, QRZ.com, ClubLog, and others, so I don't have to manually do it all:

    wavelog.org/

    #HamRadio #AmateurRadio #hamr #Wavelog #QRZ #QSL #LoTW #ClubLog #HamLogging #Logging

  3. @K3LOE I log to a self-hosted Wavelog instance, that then sends my QSL to LoTW, QRZ.com, ClubLog, and others, so I don't have to manually do it all:

    wavelog.org/

    #HamRadio #AmateurRadio #hamr #Wavelog #QRZ #QSL #LoTW #ClubLog #HamLogging #Logging

  4. @K3LOE I log to a self-hosted Wavelog instance, that then sends my QSL to LoTW, QRZ.com, ClubLog, and others, so I don't have to manually do it all:

    wavelog.org/

    #HamRadio #AmateurRadio #hamr #Wavelog #QRZ #QSL #LoTW #ClubLog #HamLogging #Logging

  5. @K3LOE I log to a self-hosted Wavelog instance, that then sends my QSL to LoTW, QRZ.com, ClubLog, and others, so I don't have to manually do it all:

    wavelog.org/

    #HamRadio #AmateurRadio #hamr #Wavelog #QRZ #QSL #LoTW #ClubLog #HamLogging #Logging

  6. I am an old man but a new linux user. I followed these clear instructions from @db4scw to Install TQSL on Ubuntu Linux. It worked perfectly, thank you!

    db4scw.de/install-tqsl-on-ubun

    #TQSL #Ubuntu #AmateurRadio #HamRadio #LoTW

  7. I am an old man but a new linux user. I followed these clear instructions from @db4scw to Install TQSL on Ubuntu Linux. It worked perfectly, thank you!

    db4scw.de/install-tqsl-on-ubun

    #TQSL #Ubuntu #AmateurRadio #HamRadio #LoTW

  8. I am an old man but a new linux user. I followed these clear instructions from @db4scw to Install TQSL on Ubuntu Linux. It worked perfectly, thank you!

    db4scw.de/install-tqsl-on-ubun

    #TQSL #Ubuntu #AmateurRadio #HamRadio #LoTW

  9. I am an old man but a new linux user. I followed these clear instructions from @db4scw to Install TQSL on Ubuntu Linux. It worked perfectly, thank you!

    db4scw.de/install-tqsl-on-ubun

    #TQSL #Ubuntu #AmateurRadio #HamRadio #LoTW

  10. I am an old man but a new linux user. I followed these clear instructions from @db4scw to Install TQSL on Ubuntu Linux. It worked perfectly, thank you!

    db4scw.de/install-tqsl-on-ubun

    #TQSL #Ubuntu #AmateurRadio #HamRadio #LoTW

  11. First one is kinda small and simple **Trivial_Casts** 🔢➡️🔟

    > The trivial_casts lint in Rust is designed to catch what the Rust compiler considers to be "obviously unnecessary" type casts. These casts are often a result of typos or misunderstandings of how types work in Rust, and they can lead to unexpected behavior if not caught early on.

    When you cast one type to another, the compiler will automatically perform certain "trivial" casts that are considered safe and obvious. However, it might also flag cases where the cast is unnecessary because Rust can infer the correct type without any issues. These flagged cases are what the trivial_casts lint is designed to catch.

    Example:

    ```rust
    let square = Square([2; 8]);
    let square = &square as □

    ```

    #lotw

  12. First one is kinda small and simple **Trivial_Casts** 🔢➡️🔟

    > The trivial_casts lint in Rust is designed to catch what the Rust compiler considers to be "obviously unnecessary" type casts. These casts are often a result of typos or misunderstandings of how types work in Rust, and they can lead to unexpected behavior if not caught early on.

    When you cast one type to another, the compiler will automatically perform certain "trivial" casts that are considered safe and obvious. However, it might also flag cases where the cast is unnecessary because Rust can infer the correct type without any issues. These flagged cases are what the trivial_casts lint is designed to catch.

    Example:

    ```rust
    let square = Square([2; 8]);
    let square = &square as □

    ```

    #lotw

  13. First one is kinda small and simple **Trivial_Casts** 🔢➡️🔟

    > The trivial_casts lint in Rust is designed to catch what the Rust compiler considers to be "obviously unnecessary" type casts. These casts are often a result of typos or misunderstandings of how types work in Rust, and they can lead to unexpected behavior if not caught early on.

    When you cast one type to another, the compiler will automatically perform certain "trivial" casts that are considered safe and obvious. However, it might also flag cases where the cast is unnecessary because Rust can infer the correct type without any issues. These flagged cases are what the trivial_casts lint is designed to catch.

    Example:

    ```rust
    let square = Square([2; 8]);
    let square = &square as □

    ```

  14. First one is kinda small and simple **Trivial_Casts** 🔢➡️🔟

    > The trivial_casts lint in Rust is designed to catch what the Rust compiler considers to be "obviously unnecessary" type casts. These casts are often a result of typos or misunderstandings of how types work in Rust, and they can lead to unexpected behavior if not caught early on.

    When you cast one type to another, the compiler will automatically perform certain "trivial" casts that are considered safe and obvious. However, it might also flag cases where the cast is unnecessary because Rust can infer the correct type without any issues. These flagged cases are what the trivial_casts lint is designed to catch.

    Example:

    ```rust
    let x = 5; // x is an i32
    let y: f64 = x as f64; // This cast is trivial and unnecessary
    ```

    #lotw

  15. First one is kinda small and simple **Trivial_Casts** 🔢➡️🔟

    > The trivial_casts lint in Rust is designed to catch what the Rust compiler considers to be "obviously unnecessary" type casts. These casts are often a result of typos or misunderstandings of how types work in Rust, and they can lead to unexpected behavior if not caught early on.

    When you cast one type to another, the compiler will automatically perform certain "trivial" casts that are considered safe and obvious. However, it might also flag cases where the cast is unnecessary because Rust can infer the correct type without any issues. These flagged cases are what the trivial_casts lint is designed to catch.

    Example:

    ```rust
    let square = Square([2; 8]);
    let square = &square as □

    ```

    #lotw

  16. Let me introduce new weekly thread that I want to have here - Lint of the week ( #lotw ). Every week I will post a new Rust lint that in my opinion should be used by most of the rust projects. Let's start!

  17. Let me introduce new weekly thread that I want to have here - Lint of the week ( #lotw ). Every week I will post a new Rust lint that in my opinion should be used by most of the rust projects. Let's start!

  18. Let me introduce new weekly thread that I want to have here - Lint of the week ( ). Every week I will post a new Rust lint that in my opinion should be used by most of the rust projects. Let's start!

  19. Let me introduce new weekly thread that I want to have here - Lint of the week ( #lotw ). Every week I will post a new Rust lint that in my opinion should be used by most of the rust projects. Let's start!

  20. Let me introduce new weekly thread that I want to have here - Lint of the week ( #lotw ). Every week I will post a new Rust lint that in my opinion should be used by most of the rust projects. Let's start!

  21. Сегодня нужно было экпортировать сертификат LoTW из TrustedQSL в файл p12 для Wavelog и QRZ.com. И никак не могли импортировать дальше - не найдено. Хотя сертификат внутри файла есть. Помучавшись некоторое время, наконец, как индеец Зоркий глаз узрел что в тюрьме нет 4 стены, так и мы обратили внимание на настойчивое "ОБНОВИТЕСЬ". Апнули TQSL до 2.8.2, экпортировали сертификат и всё отлично прошло...

    Обновляйтесь и читайте чаще ошибки. Это сохранит время и нервы. 😀

    #lotw #wavelog

  22. Сегодня нужно было экпортировать сертификат LoTW из TrustedQSL в файл p12 для Wavelog и QRZ.com. И никак не могли импортировать дальше - не найдено. Хотя сертификат внутри файла есть. Помучавшись некоторое время, наконец, как индеец Зоркий глаз узрел что в тюрьме нет 4 стены, так и мы обратили внимание на настойчивое "ОБНОВИТЕСЬ". Апнули TQSL до 2.8.2, экпортировали сертификат и всё отлично прошло...

    Обновляйтесь и читайте чаще ошибки. Это сохранит время и нервы. 😀

    #lotw #wavelog

  23. Сегодня нужно было экпортировать сертификат LoTW из TrustedQSL в файл p12 для Wavelog и QRZ.com. И никак не могли импортировать дальше - не найдено. Хотя сертификат внутри файла есть. Помучавшись некоторое время, наконец, как индеец Зоркий глаз узрел что в тюрьме нет 4 стены, так и мы обратили внимание на настойчивое "ОБНОВИТЕСЬ". Апнули TQSL до 2.8.2, экпортировали сертификат и всё отлично прошло...

    Обновляйтесь и читайте чаще ошибки. Это сохранит время и нервы. 😀

    #lotw #wavelog

  24. Сегодня нужно было экпортировать сертификат LoTW из TrustedQSL в файл p12 для Wavelog и QRZ.com. И никак не могли импортировать дальше - не найдено. Хотя сертификат внутри файла есть. Помучавшись некоторое время, наконец, как индеец Зоркий глаз узрел что в тюрьме нет 4 стены, так и мы обратили внимание на настойчивое "ОБНОВИТЕСЬ". Апнули TQSL до 2.8.2, экпортировали сертификат и всё отлично прошло...

    Обновляйтесь и читайте чаще ошибки. Это сохранит время и нервы. 😀

    #lotw #wavelog

  25. I have 17,407 QSOs on LOTW, 13,467 confirmed for a 77% rate. Log covers the last 15 years.

    How's everyone else doing?

    #lotw #hamradio

  26. I have 17,407 QSOs on LOTW, 13,467 confirmed for a 77% rate. Log covers the last 15 years.

    How's everyone else doing?

    #lotw #hamradio

  27. I have 17,407 QSOs on LOTW, 13,467 confirmed for a 77% rate. Log covers the last 15 years.

    How's everyone else doing?

    #lotw #hamradio

  28. I have 17,407 QSOs on LOTW, 13,467 confirmed for a 77% rate. Log covers the last 15 years.

    How's everyone else doing?

    #lotw #hamradio

  29. I have 17,407 QSOs on LOTW, 13,467 confirmed for a 77% rate. Log covers the last 15 years.

    How's everyone else doing?

    #lotw #hamradio

  30. It has taken 40 years but I finally got my #WAS award. I’ve lost my old logs and had to restart keeping logs multiple times until finally via #LoTW, eQSL.cc, QRZ.com, and #jlog electronically.😆

  31. It has taken 40 years but I finally got my #WAS award. I’ve lost my old logs and had to restart keeping logs multiple times until finally via #LoTW, eQSL.cc, QRZ.com, and #jlog electronically.😆

  32. It has taken 40 years but I finally got my #WAS award. I’ve lost my old logs and had to restart keeping logs multiple times until finally via #LoTW, eQSL.cc, QRZ.com, and #jlog electronically.😆

  33. It has taken 40 years but I finally got my #WAS award. I’ve lost my old logs and had to restart keeping logs multiple times until finally via #LoTW, eQSL.cc, QRZ.com, and #jlog electronically.😆

  34. It has taken 40 years but I finally got my #WAS award. I’ve lost my old logs and had to restart keeping logs multiple times until finally via #LoTW, eQSL.cc, QRZ.com, and #jlog electronically.😆

  35. While the USA democracy is failing... I'm one state short for #qrzcom 50 State and @arrl #LOTW WAS awards! I need #QSLs from NH and WV respectively. I've reconsiled the logs so...any day now? #hamradio

  36. While the USA democracy is failing... I'm one state short for #qrzcom 50 State and @arrl #LOTW WAS awards! I need #QSLs from NH and WV respectively. I've reconsiled the logs so...any day now? #hamradio

  37. While the USA democracy is failing... I'm one state short for #qrzcom 50 State and @arrl #LOTW WAS awards! I need #QSLs from NH and WV respectively. I've reconsiled the logs so...any day now? #hamradio

  38. While the USA democracy is failing... I'm one state short for #qrzcom 50 State and @arrl #LOTW WAS awards! I need #QSLs from NH and WV respectively. I've reconsiled the logs so...any day now? #hamradio

  39. While the USA democracy is failing... I'm one state short for #qrzcom 50 State and @arrl #LOTW WAS awards! I need #QSLs from NH and WV respectively. I've reconsiled the logs so...any day now? #hamradio

  40. I finally updated my Awards page on my blog from #ARRL #LoTW and it looks like I'm three (3) states away from #WAS on #12m (digital)!

    (I had not updated this page in a *year*, lol)

    k8vsy.radio/awards.html#was-lo

    #HamRadio #hamr #AmateurRadio

  41. I finally updated my Awards page on my blog from #ARRL #LoTW and it looks like I'm three (3) states away from #WAS on #12m (digital)!

    (I had not updated this page in a *year*, lol)

    k8vsy.radio/awards.html#was-lo

    #HamRadio #hamr #AmateurRadio

  42. I finally updated my Awards page on my blog from #ARRL #LoTW and it looks like I'm three (3) states away from #WAS on #12m (digital)!

    (I had not updated this page in a *year*, lol)

    k8vsy.radio/awards.html#was-lo

    #HamRadio #hamr #AmateurRadio

  43. I finally updated my Awards page on my blog from #ARRL #LoTW and it looks like I'm three (3) states away from #WAS on #12m (digital)!

    (I had not updated this page in a *year*, lol)

    k8vsy.radio/awards.html#was-lo

    #HamRadio #hamr #AmateurRadio

  44. I finally updated my Awards page on my blog from #ARRL #LoTW and it looks like I'm three (3) states away from #WAS on #12m (digital)!

    (I had not updated this page in a *year*, lol)

    k8vsy.radio/awards.html#was-lo

    #HamRadio #hamr #AmateurRadio

  45. Got my new Logbook of the World certificate this morning, installed it, and I'm back online (with my Linux computer) with LOTW. That was a lot easier than I thought it was going to be. #hamradio #QLog #LOTW

  46. Got my new Logbook of the World certificate this morning, installed it, and I'm back online (with my Linux computer) with LOTW. That was a lot easier than I thought it was going to be. #hamradio #QLog #LOTW

  47. Got my new Logbook of the World certificate this morning, installed it, and I'm back online (with my Linux computer) with LOTW. That was a lot easier than I thought it was going to be. #hamradio #QLog #LOTW

  48. Got my new Logbook of the World certificate this morning, installed it, and I'm back online (with my Linux computer) with LOTW. That was a lot easier than I thought it was going to be. #hamradio #QLog #LOTW

  49. Got my new Logbook of the World certificate this morning, installed it, and I'm back online (with my Linux computer) with LOTW. That was a lot easier than I thought it was going to be. #hamradio #QLog #LOTW

  50. #LoTW, #clublog, and paper #QSL cards questions.

    1/ is it the case that cards sent to ARRL for checking are entered into LoTW by ARRL?

    2/ if 1/ is the case could I send a partial set of cards (ie fewer than required for an award) simply to get them in LoTW, and hence club log?

  51. #LoTW, #clublog, and paper #QSL cards questions.

    1/ is it the case that cards sent to ARRL for checking are entered into LoTW by ARRL?

    2/ if 1/ is the case could I send a partial set of cards (ie fewer than required for an award) simply to get them in LoTW, and hence club log?

  52. #LoTW, #clublog, and paper #QSL cards questions.

    1/ is it the case that cards sent to ARRL for checking are entered into LoTW by ARRL?

    2/ if 1/ is the case could I send a partial set of cards (ie fewer than required for an award) simply to get them in LoTW, and hence club log?

  53. #LoTW, #clublog, and paper #QSL cards questions.

    1/ is it the case that cards sent to ARRL for checking are entered into LoTW by ARRL?

    2/ if 1/ is the case could I send a partial set of cards (ie fewer than required for an award) simply to get them in LoTW, and hence club log?

  54. #LoTW, #clublog, and paper #QSL cards questions.

    1/ is it the case that cards sent to ARRL for checking are entered into LoTW by ARRL?

    2/ if 1/ is the case could I send a partial set of cards (ie fewer than required for an award) simply to get them in LoTW, and hence club log?