🏆 Game Professional | 🛍️ eBay | Up to 50% off gaming gear. Shop Xbox, PlayStation and more.

2024.11.29 00:00 GameProfessional 🏆 Game Professional | 🛍️ eBay | Up to 50% off gaming gear. Shop Xbox, PlayStation and more.

🏆 Game Professional | 🛍️ eBay | Up to 50% off gaming gear. Shop Xbox, PlayStation and more. submitted by GameProfessional to GameProfessional [link] [comments]


2024.11.29 00:00 Spirited-Search7839 Why aren't there lobbies in MK1

Can someone please explain to me why they didn't even bother... was it because they don't have time and are working on other things? I just dont understand.
submitted by Spirited-Search7839 to MortalKombat [link] [comments]


2024.11.29 00:00 Complex_Web_1006 If you’re a popular md subredditor follow me!

If you’re a popular md subredditor follow me! Happy thanksgiving to everyone out there!
submitted by Complex_Web_1006 to MurderDronesOfficial [link] [comments]


2024.11.29 00:00 JustJBong What is your most listened to album?

Can be MGB or just MB. Bonus: Has it changed over the years? Why?
submitted by JustJBong to Mattgood [link] [comments]


2024.11.29 00:00 umgrad2k19 December Monthly

Sticking with my favorite monthly layout! I like to keep it simple but would love to branch out and try some new things, what are your recommendations?
submitted by umgrad2k19 to bulletjournal [link] [comments]


2024.11.29 00:00 Independent-Height87 Anbennar meets Equestria

Anbennar meets Equestria submitted by Independent-Height87 to equestriaatwar [link] [comments]


2024.11.29 00:00 emozle The correct answer to yesterday's Emozle

Ed Harris: 🎬 🏆 🖌️ 🚀 🇺🇸
Let us know your opinion 💬👇
submitted by emozle to emozle [link] [comments]


2024.11.29 00:00 AutoModerator Casual Discussion Fridays - Week of November 29, 2024

This is a weekly thread to get to know /anime's community. Talk about your day-to-day life, share your hobbies, or make small talk with your fellow anime fans. The thread is active all week long so hang around even when it's not on the front page!
Although this is a place for off-topic discussion, there are a few rules to keep in mind:

  1. Be courteous and respectful of other users.
  2. Discussion of religion, politics, depression, and other similar topics will be moderated due to their sensitive nature. While we encourage users to talk about their daily lives and get to know others, this thread is not intended for extended discussion of the aforementioned topics or for emotional support. Do not post content falling in this category in spoiler tags and hover text. This is a public thread, please do not post content if you believe that it will make people uncomfortable or annoy others.
  3. Roleplaying is not allowed. This behaviour is not appropriate as it is obtrusive to uninvolved users.
  4. No meta discussion. If you have a meta concern, please raise it in the Monthly Meta Thread and the moderation team would be happy to help.
  5. All /anime rules, other than the anime-specific requirement, should still be followed.
  6. Happy 10th Anniversary Shirobako!
submitted by AutoModerator to anime [link] [comments]


2024.11.29 00:00 AutoModerator Voxel Vendredi 29 Nov 2024

This is the place to show off and discuss your voxel game and tools. Shameless plugs, progress updates, screenshots, videos, art, assets, promotion, tech, findings and recommendations etc. are all welcome.

submitted by AutoModerator to VoxelGameDev [link] [comments]


2024.11.29 00:00 Acceptable-Issue2123 THE ACCURACY 😂

submitted by Acceptable-Issue2123 to KaiCenat [link] [comments]


2024.11.29 00:00 OfficerTruth Trading Psychology Tip

“Markets can remain irrational longer than you can remain solvent.”
submitted by OfficerTruth to InvestingandTrading [link] [comments]


2024.11.29 00:00 Dynamicoctopus6447 Give me a monster and I'll draw it! (Image related)

Give me a monster and I'll draw it! (Image related) Rares and epics are allowed, no fanmades allowed.
submitted by Dynamicoctopus6447 to MySingingMonsters [link] [comments]


2024.11.29 00:00 ReinoStudios348 Day 6: Where are you? Episode Contest

Day 6: Where are you? Episode Contest Man, the vote was tense but due to the difference of one vote in the end we have A Tiki Scare Is No Fair as the next eliminated, having the 21st position, thus having the five most hated episodes in the community, we will see what happens in the following ones days.
Hello, beautiful community, here I want to experiment by creating a contest of which is the most beloved episode of this series.
Rules: 1 comment = 1 vote, Each day you must choose 1 EPISODE that is your least favorite, the episode with the most votes will be eliminated from the contest and so on each day, you must also vote by default if you like an episode but consider that the others They are better.
If there is a tie, then an exclusive post will be made to break the tie between those two episodes.
The vote will now last 23 hours and 40 minutes.
Remember to respect the opinions of others and express yourself respectfully.
Share your opinions and enjoy, I will be happy to read them
submitted by ReinoStudios348 to Scoobydoo [link] [comments]


2024.11.29 00:00 RealJoshUniverse [11/29] What are some creative ways you've modified traditional biohacking techniques to better fit your personal goals?

submitted by RealJoshUniverse to Biohackers [link] [comments]


2024.11.29 00:00 livia2lima Day 20 - Scripting

INTRO Today is the final session for the course. Pat yourself on the back if you worked your way through all lessons!
You’ve seen that a continual emphasis for a sysadmin is to automate as much as possible, and also how in Linux the system is very “transparent” - once you know where to look!
Today, on this final session for the course, we’ll cover how to write small programs or “shell scripts” to help manage your system.
When typing at the Linux command-line you're directly communicating with "the command interpreter", also known as "the shell". Normally this shell is bash, so when you string commands together to make a script the result can be called either a '"shell script", or a "bash script".
Why make a script rather than just typing commands in manually?
YOUR TASKS TODAY START WITH A SHEBANG! Scripts are just simple text files, but if you set the "execute" permissions on them then the system will look for a special line starting with the two characters “#” and “!” - referred to as the "shebang" (or "crunchbang") at the top of the file.
This line typically looks like this:
 #!/bin/bash 
Normally anything starting with a "#" character would be treated as a comment, but in the first line and followed by a "!", it's interpreted as: "please feed the rest of this to the /bin/bash program, which will interpret it as a script". All of our scripts will be written in the bash language - the same as you’ve been typing at the command line throughout this course - but scripts can also be written in many other "scripting languages", so a script in the Perl language might start with #!/usbin/perl and one in Python #!/usbin/env python3
YOUR FIRST SCRIPT You'll write a small script to list out who's been most recently unsuccessfully trying to login to your server, using the entries in /valog/auth.log.
Use vim to create a file, attacker, in your home directory with this content:
 #!/bin/bash # # attacker - prints out the last failed login attempt # echo "The last failed login attempt came from IP address:" grep -i "disconnected from" /valog/auth.log|tail -1| cut -d: -f4| cut -f7 -d" " 
Putting comments at the top of the script like this isn't strictly necessary (the computer ignores them), but it's a good professional habit to get into.
To make it executable type:
chmod +x attacker
Now to run this script, you just need to refer to it by name - but the current directory is (deliberately) not in your $PATH, so you need to do this either of two ways:
 /home/support/attacker ./attacker 
Once you're happy with a script, and want to have it easily available, you'll probably want to move it somewhere on your $PATH - and /uslocal/bin is a normally the appropriate place, so try this:
sudo mv attacker /uslocal/bin/attacker
...and now it will Just Work whenever you type attacker
EXTENDING THE SCRIPT You can expand this script so that it requires a parameter and prints out some syntax help when you don't give one. There are a few new tricks in this, so it's worth studying:
 # ## topattack - list the most persistent attackers # if [ -z "$1" ]; then echo -e "\nUsage: `basename $0`  - Lists the top  attackers by IP" exit 0 fi echo " " echo "Persistant recent attackers" echo " " echo "Attempts IP " echo "-----------------------" grep "Disconnected from authenticating user root" /valog/auth.log|cut -d: -f 4 | cut -d" " -f7|sort |uniq -c |sort -nr |head -$1 
Again, use vim to create "topattack", chmod to make it executable and mv to move it into /uslocal/bin once you have it working correctly.
(BTW, you can use whois to find details on any of these IPs - just be aware that the system that is "attacking" you may be an innocent party that's been hacked into).
A collection of simple scripts like this is something that you can easily create to make your sysadmin tasks simpler, quicker and less error prone.
If automating and scripting many of your daily tasks sounds like something you really like doing, you might also want to script the setup of your machines and services. Even though you can do this using bash scripting like shown in this lesson, there are some benefits in choosing an orchestration framework like ansible, cloudinit or terraform. Those frameworks are outside of the scope of this course, but might be worth reading about.
And yes, this is the last lesson - so please, feel free to write a review on how the course went for you and what you plan to do with your new knowledge and skills!
RESOURCES PREVIOUS DAY'S LESSON Some rights reserved. Check the license terms here
submitted by livia2lima to linuxupskillchallenge [link] [comments]


2024.11.29 00:00 AutoModerator Nightly Discussion Thread - November 29, 2024

Hello Nightshift!
Welcome to tonight's discussion thread.
Anything new with y'all tonight? Something you want to share but didn't quite want to make a post? Well here's a thread to talk about it!

Feel free to stop by our Discord for some live chat!
submitted by AutoModerator to Nightshift [link] [comments]


2024.11.29 00:00 Inevitable_Coffee273 Link for Link

Here’s mine https://www.tiktok.com/t/ZTYk7psRT/ doing any that replies to me
submitted by Inevitable_Coffee273 to PKMNTikTokDeals [link] [comments]


2024.11.29 00:00 Wild_Honey_TA ¿PPK es limeño neto o no?

View Poll
submitted by Wild_Honey_TA to Lima_Peru [link] [comments]


2024.11.29 00:00 Mean-Mud-3465 Let’s trade

Let’s trade https://mply.io/0WrTxQ
submitted by Mean-Mud-3465 to MonopolyGoTrading [link] [comments]


2024.11.29 00:00 BroMandi [B&H Photo Video] 1TB Samsung 990 EVO PCIe 4.0 x4 / 5.0 x2 M.2 Internal SSD $60 + free s/h [Deal: $60.00, Actual: $120.00]

[B&H Photo Video] 1TB Samsung 990 EVO PCIe 4.0 x4 / 5.0 x2 M.2 Internal SSD $60 + free s/h [Deal: $60.00, Actual: $120.00] submitted by BroMandi to RedditShoppingDeals [link] [comments]


2024.11.29 00:00 Opposite_Anxiety_223 Cozy Kitty.

Cozy Kitty. submitted by Opposite_Anxiety_223 to Catbun [link] [comments]


2024.11.29 00:00 diy-guy- Great Christmas gift for any gardener

Do you have someone in your family who loves gardening? Here's a cool gift idea I came across. Bonus points if they watch the TV show Alone because it was created by Nicole who's been on the show twice (if you haven't seen the show you should give it a try, it's an interesting concept).
It's a gardening kit with seeds for 10 different plants that can be used to make various herbal remedies. It also comes with a book written by Nicole where she goes over everything you can make with the plants from ointments and teas all the way to essential oils and infusions. It's not something you'd find in a normal store so it makes for a unique gift especially if the person you're buying it for is a fan of natural remedies.
I ordered a kit for my Mom's birthday earlier in the year and she was a massive fan of it. She now makes her grandkids sleepy tea before bed whenever they sleep over and always offers us some substance she makes from the feverfew if we complain about a headache. I think she's probably made every recipe in the book and it's only been 9 months.
Here's the link to the website if you want to check it out: https://medicinalkit.com/
submitted by diy-guy- to NovaScotiaGardening [link] [comments]


2024.11.29 00:00 diy-guy- Great Christmas gift for any gardener

Do you have someone in your family who loves gardening? Here's a cool gift idea I came across. Bonus points if they watch the TV show Alone because it was created by Nicole who's been on the show twice (if you haven't seen the show you should give it a try, it's an interesting concept).
It's a gardening kit with seeds for 10 different plants that can be used to make various herbal remedies. It also comes with a book written by Nicole where she goes over everything you can make with the plants from ointments and teas all the way to essential oils and infusions. It's not something you'd find in a normal store so it makes for a unique gift especially if the person you're buying it for is a fan of natural remedies.
I ordered a kit for my Mom's birthday earlier in the year and she was a massive fan of it. She now makes her grandkids sleepy tea before bed whenever they sleep over and always offers us some substance she makes from the feverfew if we complain about a headache. I think she's probably made every recipe in the book and it's only been 9 months.
Here's the link to the website if you want to check it out: https://medicinalkit.com/
submitted by diy-guy- to LasCruces [link] [comments]


2024.11.29 00:00 AjRoker Week of Sketching

Week of Sketching Hi everyone!
This week, I decided to put energy into learning to draw for the first time. It’s been both challenging and exciting, and I’m proud of what I’ve accomplished so far. These are all the sketches I made this week in my sketchbook.
I’d love to hear your thoughts, feedback, or tips for a beginner like me.
submitted by AjRoker to drawing [link] [comments]


2024.11.29 00:00 Magical_Gollum I don't wanna be number 20

I don't wanna be number 20 submitted by Magical_Gollum to counciloftherings [link] [comments]


https://google.com/