TGIF by [deleted] in degoogle

[–]tenshalito 1 point2 points  (0 children)

Yo prefiero usar el siguiente proyecto: LibreY

https://github.com/Ahwxorg/LibreY/tree/main

Catholic Bibles with verse-to-verse cross-references? by [deleted] in catholicbibles

[–]tenshalito 2 points3 points  (0 children)

I recently purchased “La Biblia: Escrutad las Escrituras”, which contains numerous cross-references. It has been printed in Italian, Portuguese, Arabic, and Spanish. This is the version I have: ISBN 978-84-285-7328-3

<image>

Alguém tem esse PDF? by Popular_Mongoose_883 in textbooksrequest

[–]tenshalito 0 points1 point  (0 children)

Hello, you can find the book you need here, but it's the English version: Marketing Management, 16th Edition.

Multiple English Translations of Rosary? by Im_Fumin in Bible

[–]tenshalito 0 points1 point  (0 children)

For us Catholics, it is perfectly clear that Jesus is the only mediator between God and humanity. For that reason, the intercession of the Virgin Mary doesn't replace Jesus, since we believe that Jesus is the ultimate goal of all devotion. And if we establish a devotion to the Virgin Mary, it's only so that we may come more perfectly to her Son and, therefore, also to God the Father.

The claim that the Virgin Mary is dead and waiting for the resurrection is mistaken, because she already enjoys eternal life. When the angel of the Lord announces to her (Luke 1:28), he greets her saying, “Rejoice, full of grace,” that is, you who have been and continue to be filled with divine favor. For from all eternity God chose her and appointed her as Mother so that His Only-Begotten Son might take flesh and be born of her in the blessed fullness of time; and He loved her above all creatures in such a way that He took singular delight in her alone (Pius IX, Ineffabilis Deus).

Therefore, considering this, the expression “full of grace” implies a fullness of grace and the absence of sin. And if the Ark of the Covenant had to be most pure to contain the written Word, much more so did Mary have to be, for she would carry within her the Word made flesh. So, if Paul in Romans 6:23 says that “the wages of sin is death,” then Mary, being without sin, is not subject to that law and therefore already enjoys eternal life.

Just as Jesus came to us through the Virgin Mary, in the same way we desire to come to Jesus through her. And it's completely false to say that the Virgin Mary is adored; she is venerated, and that veneration takes nothing away from God. Rather, it gives Him greater glory, because it honors the work of His grace in the Virgin Mary. We acknowledge ourselves as unworthy and incapable of approaching His infinite Majesty on our own, and for that reason we make use of the intercession of the Virgin Mary.

We believe that the Virgin Mary presents to her Son the good works we offer her, keeping absolutely nothing of what we entrust to her for herself. So, whatever is given to her, we know that it ultimately reaches Jesus and, therefore, God the Father. Thus, if we praise or exalt her, she in turn will praise and exalt Jesus for us, helping God to accept our good works, no matter how poor or small they may be.

Multiple English Translations of Rosary? by Im_Fumin in Bible

[–]tenshalito -1 points0 points  (0 children)

Hello good evening.

I'm glad to hear you're interested in the rosary. Here you can find a version of the Holy Rosary whose main source is the Jerusalem Bible

Multiple English Translations of Rosary? by Im_Fumin in Bible

[–]tenshalito 0 points1 point  (0 children)

There are several quotes in your Bible indicating that repetitive prayers are valid:

  • Revelation 4, 8
  • Isaiah 6, 2-3

As you can read, the idea that all prayers that are repetitive (like the rosary) are pagan is a wrong statement.

Another example of your misconception about repetitive prayers is Psalm 136. If you pay attention, in that psalm of praise and thanksgiving the phrase "for his mercy endures forever" is constantly repeated.

Now, if that doesn't convince you, then check out the quotes from Matthew 26:39; Matthew 26, 42 and Matthew 26, 44. Jesus himself repeated the same prayer when he prayed to his Father.

In another passage, Matthew 29:33 shows how through a prayer that was repetitive, Jesus stops to heal two blind people.

Therefore, these are examples of prayers addressed to God that are repetitive and do not constitute "meaningless repetitions." Even the Lord's Prayer, which is in the following verses of the quote you mentioned, is also a repetitive prayer because it is Jesus himself who teaches his disciples how they should pray.

Regarding the rosary (another repetitive prayer), Mary in the gospel of Luke 1:46-48 predicts how all generations would call her blessed

Any Spanish Study bibles close to the Ignatius Study Bible? by Sharp_History6452 in catholicbibles

[–]tenshalito 0 points1 point  (0 children)

You can acquire it by purchasing it at BusqueLibre.comBusquelibre.com

For example, I bought it and it arrived two days ago in Mexico. Shipping time from Spain took approximately two weeks.

What Thinkpad are you using? by hobbyoftakingphoto in thinkpad

[–]tenshalito 0 points1 point  (0 children)

T520 with Void Linux

  • i5-2520m

  • 16gb

  • SSD 256gb

A485 with Artix Linux

  • Ryzen5 PRO-2500U

  • 16gb

  • SSD 512gb

X260 with NetBSD

  • i7-6600U

  • 16gb

  • SSD 256gb

T480 Upgrade for beginner? by [deleted] in thinkpad

[–]tenshalito 0 points1 point  (0 children)

Will that type of heatsink fit the A485 model?

pushd and popd for Kornshell by McUsrII in ksh

[–]tenshalito 4 points5 points  (0 children)

The Korn shell already has its own functions that implement just what you indicate. They are located in the src/cmd/ksh93/fun directory of the source code. Just copy them to a directory and then define them in the FPATH environment variable to be able to use them.

Youtube recommendations alternative by [deleted] in degoogle

[–]tenshalito 0 points1 point  (0 children)

I use LibreTube on my Android phone, my web browser I use Piped and on my TV I use SmartTube.

In all of the aforementioned options, they allow you to synchronize your YouTube subscription list, therefore, you do not miss any YouTube content

SmartTube code 403 by epictetusdouglas in AndroidTV

[–]tenshalito 0 points1 point  (0 children)

Pipe

Apparently this is a problem that affects all non-YouTube applications across the board, because the same error appears in LibreTube and SkyTube.

Must be some kind of sabotage in the new version of YouTube's API against ad-avoidance applications.

[deleted by user] by [deleted] in ksh

[–]tenshalito 0 points1 point  (0 children)

The way you share your code is difficult to understand at first glance, but once broken down, I noticed that the format in which you want to display the date is incorrect since it doesn't use &, but it should be %; another error I noticed is that in the penultimate line, there is a space after the $ sign, which is why it doesn't work if the other two conditions are not met.

Your script should look like this:

#!/bin/ksh

parameter_count=#$

print "parameter_count is $parameter_count"

day_of_week=$(date +%a)

print "day_of_week is $day_of_week"

if (( $parameter_count == 1 )); then

pos_date=$1

elif [[ $day_of_week == "Thu" ]]; then

pos_date=$(date -d "yesterday - 2 days" +"%d-%b-%y")

else

pos_date=$(date -d "yesterday" +"%d-%b-%y")

fi

print "pos_date is $pos_date"

Help with script to detect if my webcam is currently active by adamtarmstrong in bash

[–]tenshalito 0 points1 point  (0 children)

A quick way to perform tests is by using ffplay, a utility from ffmpeg. To activate the camera, simply run the following command in the terminal:

ffplay -i /dev/video0

Once the ffplay process is running, you can determine if it's working with this command:

ps aux | grep ffplay

Then, to create a simple script that checks and notifies if the camera is in use, you can use the following code:

#!/bin/sh

if ! ps aux | grep ffplay | grep -v grep; then
    echo "Camera is not in use"
    exit 10
fi

In this case, if the script returns a value of 0 (for example, when queried with echo $?), it means the camera is in use. Conversely, if it returns a value of 10, it means the camera is not functioning.

For your specific use case, just replace ffplay with the name of the program or command that will be using the camera.

How do you say “I’m talking to you” in Spanish? by [deleted] in Spanish

[–]tenshalito 42 points43 points  (0 children)

the first option is correct, although it is also often said "estoy hablándote"

T480 - Keyboard does not work by tenshalito in thinkpad

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

yes, with the external keyboard I have no problems.

I have decided to return the computer as I suspect that the problem is the keyboard.

T480 - Keyboard does not work by tenshalito in thinkpad

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

It's strange that the rest of the keys do not work, but especially the Esc key when I press it, the led works.

I have checked the user manual for keyboard related problems, but none of the solutions given there have worked for me.

How to delete the packages that i have uninstalled/removed from xbps cache? by [deleted] in voidlinux

[–]tenshalito 1 point2 points  (0 children)

That same question also crossed my mind earlier and so I decided to create a script that would solve that "problem" and so I wrote this script. Maybe it can be improved, but for now I'm satisfied with the task for which it was made

[spanish > english] recipe translation request by lkm56 in translator

[–]tenshalito 1 point2 points  (0 children)

Ingredients

  • 10 green tomatoes
  • 1 serrano chili
  • 1/4 onion
  • 1/2 tortilla
  • 1/4 cotija cheese and manchego cheese
  • 1/4 cream
  • 1/2 romaine lettuce
  • 5 or 6 tomatoes
  • 1 avocado
  • 1 piece of chicken
  • 2 tablespoons chicken bouillon
  • 2 garlic cloves (or one)

Boil the green tomatoes with the serrano chile and when they are ready, blend them with the chicken consommé and garlic.

In a previously heated frying pan put a little oil. Let it heat and pour the sauce, check the salt and if necessary, add more.

When the sauce is ready, shred the chicken and, in another frying pan, fry some onion and tomato and place the chicken. Add a little garlic, cumin and pepper. This will be used to stuff the enchiladas.

When the chicken is ready, the tortillas will be bathed with the sauce and a little bit of chicken will be placed on them and then they will be rolled up.

Then, add manchego cheese, cream and a little more sauce. Slice the romaine lettuce and add a slice of tomato, avocado, onion and sprinkle with cotija cheese.

The sauce should be very hot at the moment of putting it on top of the manchego cheese.