Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,946
» Latest member: blackopsdlc
» Forum threads: 22,012
» Forum posts: 22,979

Full Statistics

Online Users
There are currently 2861 online users.
» 0 Member(s) | 2856 Guest(s)
Applebot, Baidu, Bing, Facebook, Google

Latest Threads
When does Godzilla releas...
Forum: PC Discussion
Last Post: xSicKxBot

» Replies: 0
» Views: 7
[WoW Retail News] Ula'tek...
Forum: World of Warcraft
Last Post: xSicKxBot

» Replies: 0
» Views: 11
[DevBlog MS] Microsoft is...
Forum: C#, Visual Basic, & .Net Frameworks
Last Post: xSicKxBot

» Replies: 0
» Views: 16
[WoW Retail News] BlizzCo...
Forum: World of Warcraft
Last Post: xSicKxBot

» Replies: 0
» Views: 18
What is Celestial Codex i...
Forum: PC Discussion
Last Post: xSicKxBot

» Replies: 0
» Views: 18
[Ubuntu News] Fine tune y...
Forum: Linux, FreeBSD, and Unix types
Last Post: xSicKxBot

» Replies: 0
» Views: 15
[WoW Retail News] Xal'ata...
Forum: World of Warcraft
Last Post: xSicKxBot

» Replies: 0
» Views: 33
[Ubuntu News] Scaling And...
Forum: Linux, FreeBSD, and Unix types
Last Post: xSicKxBot

» Replies: 0
» Views: 25
[WoW Retail News] Comment...
Forum: World of Warcraft
Last Post: xSicKxBot

» Replies: 0
» Views: 25
How to unlock Maya Aguina...
Forum: PC Discussion
Last Post: xSicKxBot

» Replies: 0
» Views: 32

 
  News - Faster Load Times Are Now Possible For Windows PC Games, Sort Of
Posted by: xSicKxBot - 03-17-2022, 04:33 PM - Forum: Lounge - No Replies

Faster Load Times Are Now Possible For Windows PC Games, Sort Of

DirectStorage, one of the Xbox Series X's biggest tech advancements, has now arrived on PC--well, sort of. Microsoft has announced in a blog post that the Xbox's DirectStorage API is now available on PC, but it may be a while until players can get their hands on PC games that actually use the tech, The Verge reports.

Microsoft's DirectStorage technology cuts down on game load times and gives developers the potential to build even more detailed game worlds, by streaming data straight from a NVMe solid state drive to the GPU, without the CPU needing to decompress it first.

While DirectStorage for PC was first touted as a benefit for gamers thinking about upgrading to Windows 11, the most recent blog post says DirectStorage will in fact be compatible with Windows 10 after all--though Microsoft still strongly recommends the newest version of Windows for keen gamers. The blog even says that gamers don't necessarily need to have an NVMe SSD installed to see improvements from DirectStorage, but that "installing games to an NVMe SSD will maximize your IO performance and help you more fully experience the benefits of DirectStorage."

Continue Reading at GameSpot

https://www.gamespot.com/articles/faster...01-10abi2f

Print this item

  Protect DirectAdmin from Brute Force Attacks
Posted by: SickProdigy - 03-10-2022, 01:48 AM - Forum: Linux, FreeBSD, and Unix types - No Replies

A common method of gaining access over a server is to use a technique called a brute force attack, or dictionary attack.  What the attacker will do, is use a script to try and login to an account with every possible password combination.  This tends to require tens of thousands of login attempts, but eventually, the right combination will be found, and they can login normally. This guide was written for CentOS primarily and FreeBSD secondarily. It may work on other operating systems but may require some tweaking.

Mean Servers makes no guarantee or warranty regarding this article and comes as-is with no support what so ever unless implemented by Mean Servers personnel. A competent Linux system administrator should implement this tutorial as severe and irreversible server damage may result from improper use. Mean Servers can secure your server for a one time fee of $39. Contact the sales department for more information.

To prevent this, we can use a brute force login detection system.  DirectAdmin has 2 such systems for these attacks.

1) The original feature was created in DA 1.25.5, and will detect and block login attempts on DA itself (port 2222):
http://www.directadmin.com/features.php?id=573

This feature only applies to port 2222. It only blocks IPs on this port. It does not block IPs from other ports.

To enable this feature, go to:

Admin Level -> Admin Settings -> Blacklist IPs for excessive login attempts
use a value around 10-20.  Note that accessing the login page counts as one failed login, since it's an unauthorized access.  Keep that in mind when chosing a number.

2) The newer system works in tandem with the previous, and will scan the logs for the other services (apache, dovecot, exim, proftpd, sshd).
When an attack is detected DA will notify the Admins on the box that the attack is in progress.
DA will not block the IPs since that would require a firewall, and DA doesn't manage firewalls (see block_ip.sh below).

To enable the detection reporting, go to:

Admin Level -> Admin Settings -> Parse service logs for brute force attacks
The brute force monitor (BFM) page can be viewed at:

Admin Level -> Brute Force Monitor
Automating Blocking of Brute Force Attempts (CentOS 5 & 6)

1) The first part of this guide will outline how to setup the actual firewall for the block_ip.sh to use.  Note that we're not able to offer any support for this setup, so use it at your own risk. Also, this file is written for a CentOS/Fedora type system and has not been tested on Debian or FreeBSD (it may work on Debian, not sure).

    cd /etc/init.d
    mv iptables iptables.backup
    wget http://files.directadmin.com/services/al...0/iptables
    chmod 755 iptables

*** Note that it opens ssh on port 22, so make sure you either change it manually, or have physical access to your server if you're running ssh on some other port.

You'll want to test this out to ensure it works for you:

    /etc/init.d/iptables restart

to make sure you can still connect to everything ok.  If not, you may need to head to the data center to shut it off (partly why we don't offer support for firewalls)

2) The second step is to install the block_ip.sh so you can create a file that lists the IPs to be blocked.  A sample block_ip.sh can be found here.
To install this file, type:

    cd /usr/local/directadmin/scripts/custom
    wget -O block_ip.sh http://files.directadmin.com/services/all/block_ips/2.0/block_ip.sh
    wget -O show_blocked_ips.sh http://files.directadmin.com/services/all/block_ips/2.0/show_blocked_ips.sh
    wget -O unblock_ip.sh http://files.directadmin.com/services/all/block_ips/2.0/unblock_ip.sh
    chmod 700 block_ip.sh show_blocked_ips.sh unblock_ip.sh

This should activate the button in DA at:
Admin Level -> Brute Force Monitor -> IP Info -> Block IP

This particular block_ip.sh script will check to ensure that the IP you're blocking does not already exist in the list.
It will also generate the output from "iptables -nL" which should show you everything that is current blocked in the list. (iptables -nL is also output in the event the IP is already blocked, so you can see your iptables list without doing anything)

3) Create the empty block list and exempt list files:

    touch /root/blocked_ips.txt
    touch /root/exempt_ips.txt

4) This last step is optional and should only be used after you've tested the above setup for a while to get comfortable that you're not going to block yourself.  The block_ip.sh is only used for an active "click" by the Admin, it does not automate blocking.  To automate blocking, install the following script:

    cd /usr/local/directadmin/scripts/custom
    wget -O brute_force_notice_ip.sh http://files.directadmin.com/services/al...tice_ip.sh
    chmod 700 brute_force_notice_ip.sh

Automating Blocking of Brute Force Attempts (CentOS 7)

1) The first part of this guide will outline how to setup the actual firewall for the block_ip.sh to use.  Note that we're not able to offer any support for this setup, so use it at your own risk.    Also, this file is written for a CentOS/Fedora type system and has not been tested on Debian or FreeBSD (it may work on Debian, not sure).

    systemctl mask firewalld
    systemctl stop firewalld
    yum -y install iptables-services
    systemctl enable iptables

    cd /usr/libexec/iptables
    mv iptables.init iptables.init.backup
    wget -O iptables.init http://files.directadmin.com/services/al...1/iptables
    chmod 755 iptables.init

*** Note that it opens ssh on port 22, so make sure you either change it manually, or have physical access to your server if you're running ssh on some other port.

You'll want to test this out to ensure it works for you:

    systemctl reload iptables

to make sure you can still connect to everything ok.  If not, you may need to head to the data center to shut it off (partly why we don't offer support for firewalls)

2) The second step is to install the block_ip.sh so you can create a file that lists the IPs to be blocked.  A sample block_ip.sh can be found here.
To install this file, type:

    cd /usr/local/directadmin/scripts/custom
    wget -O block_ip.sh http://files.directadmin.com/services/all/block_ips/2.1/block_ip.sh
    wget -O show_blocked_ips.sh http://files.directadmin.com/services/all/block_ips/2.1/show_blocked_ips.sh
    wget -O unblock_ip.sh http://files.directadmin.com/services/all/block_ips/2.1/unblock_ip.sh
    chmod 700 block_ip.sh show_blocked_ips.sh unblock_ip.sh

This should activate the button in DA at:
Admin Level -> Brute Force Monitor -> IP Info -> Block IP

This particular block_ip.sh script will check to ensure that the IP you're blocking does not already exist in the list.
It will also generate the output from "iptables -nL" which should show you everything that is current blocked in the list. (iptables -nL is also output in the event the IP is already blocked, so you can see your iptables list without doing anything)

3) Create the empty block list and exempt list files:

    touch /root/blocked_ips.txt
    touch /root/exempt_ips.txt

4) This last step is optional and should only be used after you've tested the above setup for a while to get comfortable that you're not going to block yourself. The block_ip.sh is only used for an active "click" by the Admin, it does not automate blocking. To automate blocking, install the following script:

    cd /usr/local/directadmin/scripts/custom
    wget -O brute_force_notice_ip.sh http://files.directadmin.com/services/al...tice_ip.sh
    chmod 700 brute_force_notice_ip.sh


Automating Blocking of Brute Force Attempts (FreeBSD)

If you're running FreeBSD with ipfw, you'd skip steps 1, 2 and 3, and instead, add the following code to the file:

/usr/local/directadmin/scripts/custom/block_ip.sh

    #!/bin/sh
    echo "Blocking $ip with ipfw ...
";
    ipfw add deny ip from $ip to any
    exit $?

and don't forget to chmod the block_ip.sh to 755.

This knowledgebase article was taken from multiple articles on the DirectAdmin knowledge base located at http://help.directadmin.com/. All credit goes to DirectAdmin for this article.

Print this item

  Updates 2/9/22
Posted by: SickProdigy - 02-10-2022, 01:15 AM - Forum: SG Official Info - No Replies

We have switched hosts.

Have found a cheaper solutions elsewhere, and support staff seemed so eager to drop us.

Slight roll back on the database. Now have better backup solutions to prevent something like this in the future.

Should be teaming up with our new host to bring cheap hosting solutions to our members.

Still have to add the plugins back. Should be done in a few days.

Sorry for the inconvenience.

Print this item

  Best Mining Method for CASH, how to get the best bang for you buck FAST (>=4gb/gpu)
Posted by: SickProdigy - 11-06-2021, 10:51 PM - Forum: Crypto and Mining - No Replies

Hello, this tutorial will be quick and straight forward.

I've done lots of strenuous testing for best mining method for getting daily pay outs.

2miners now offers the solution.

You can mine eth for nano by setting your wallet address as your nano address instead of eth.

Nano has NO fees. (relatively)

**So how do I start mining?**
\/

Well you need a wallet, nano is offered through binance.us + binance.com, get an account there.
Link: https://accounts.binance.us/en/register?ref=53261843
**It's not recommended to mine straight to binance or any exchange because they could change your address at any moment.
I was using atomic wallet for nano, but since figured out they keep copies of keys. So stopped using it.
Trust wallet supports nano, much rather trust it. 0 hacks. Or just go with any example here: https://hub.nano.org/wallets

Now get the deposit address for NANO, save it for your EASY miner setup.

Download the miner:
AMD/Nvidia
Gminer
NBminer
PhoenixMiner
Trex 0.19.x-0.24.x
SG Miner (Based on CG miner)

AMD GPU
SRB Miner

I usually google "gminer github" grab the official github link and download releases. Here is your quick shot.
https://github.com/develsoftware/GMinerRelease/releases

As of writing 2.7.0 is the newest.
https://i.imgur.com/IYJmmt9.png

I'm on windows so clicking

gminer_2_70_windows64.zip


Download, extract:

It give you a dozen or so pre-formatted .bat files that are easy 1 click miner solutions basically. Most miners come with some already setup, you just have to right click the file / Edit with notepad, or open with notepad. I use notepadd++ so i navigate to it. Probably drag and drop on a notepad.

You get this.

miner.exe --algo ethash --server eth.2miners.com:2020 --user 0xB8816B94Eee05614Da401F3EdE31152e6719DDB5

pause


Where --user is what comes next is the wallet for ethereum you will usually see 0xblahblahblah 0x signifying that it's an ethereum based wallet.

Well toss that crap aside we got nano.

miner.exe --algo ethash --server eth.2miners.com:2020 --user nano_3o8jkhyrwdrumrt4med7nh7uzh6z4azcgg8um8x5qt5h9q4trae4eqqoew4y

pause



If you want to get a little more spicy and have a larger gb size card, try dual mining.


miner.exe --algo ethash --server eth.2miners.com:2020 --user nano_3o8jkhyrwdrumrt4med7nh7uzh6z4azcgg8um8x5qt5h9q4trae4eqqoew4y --pass zil1lkx25lcj7af4cvux5f77jv2yh43dskvgdmtvl5@eu.ezil.me:5555

pause

You can create a text document change the extension to .bat and it will work the same. Just make sure the miner.exe is in the same folder so the program starts with the supplied params.

And wait for it to cash out. Mining nano you will get daily payouts.
Eth payouts are ridicilous right now but its the HIGHEST paying mined coin. So get it in NANO or ZIL at binance, change it to USD and be able to cashout once you get 20$ or take it to a different coin and you can withdraw at 10$ from app.

Some people don't feel comfortable holding it in exchanges. Atomic wallet is a great multi walllet software available on app store and windows 10. They have nano wallets + zil. You can also exchange to other coins within the app.

If you don't want to mess with exchanges feel free to message me. I have discord and can help you out with almost anything.

Enjoy guys!

Print this item

  Welcome to Crypto and Mining (Official Links)
Posted by: SickProdigy - 11-06-2021, 10:24 PM - Forum: Crypto and Mining - No Replies

Hello everyone, I will be posting trusted official links here for our trusted crypto and mining websites.

All sites posted here we have used extensively.
We have used these to either mine to or cash out from.


Exchanges:

Binance: https://binance.us/en/register
Bitmart: https://www.bitmart.com
Bittrex: https://bittrex.com/
Cashapp: https://cash.app/
Changelly: https://changelly.com
ChangeNow: https://changenow.io
Coinbase: https://www.coinbase.com/
Gateio: https://www.gate.io/
Paxful: https://paxful.com/



Pools:

Print this item

  Updates 10/25/21 SickGaming.net
Posted by: xSicKx - 10-25-2021, 06:58 PM - Forum: SG Official Info - No Replies

Hello everyone, we should be back full throttle.

All posts should be back, all users.

Everything except for the plugins. Importing them today also.

Thanks for your continued support.

SickGaming Staff

Print this item

  News - These Were The Best-Selling Switch Indie Games Of 2020
Posted by: xSicKxBot - 12-30-2020, 02:23 PM - Forum: Nintendo Discussion - No Replies

These Were The Best-Selling Switch Indie Games Of 2020


It’s been a brilliant year for indie games, if nothing else, and Nintendo’s latest Indie World video is proof. With metroidvanias, side-scrolling brawlers, co-op party games and in-depth RPG adventure games all represented on their 16-game long list of bestsellers, it’s a pretty good year to own a Nintendo Switch. Well, we say that every year, but we mean it!

Here’s the full list, which doesn’t appear to be in any particular order:

Hades
Streets of Rage 4
Spiritfarer

Moving Out

Ori and the Will of the Wisps

Carrion
What The Golf?
Shantae and the Seven Sirens

Super Mega Baseball 3
Superliminal
The Jackbox Party Pack 7

Sakuna: Of Rice and Ruin

Kentucky Route Zero: TV Edition

CrossCode
Bloodstained: Curse of the Moon 2
Neon Abyss

The list does seem to stretch the meaning of “indie” quite far, given that Ori and the Will of the Wisps is a Microsoft-published game, and Streets of Rage 4 is licensed out by Sega, but we’re not here to complain, we’re here to enjoy video games!

Are there any games you’re surprised to see on the list? Anything you’re disappointed not to see on the list? Air out your grievances in the comments below!



https://www.sickgaming.net/blog/2020/12/...s-of-2020/

Print this item

  [Tut] Python — How to Import Modules From Another Folder?
Posted by: xSicKxBot - 12-30-2020, 08:08 AM - Forum: Python - No Replies

Python — How to Import Modules From Another Folder?

The most Pythonic way to import a module from another folder is to place an empty file named __init__.py into that folder and use the relative path with the dot notation. For example, a module in the parent folder would be imported with from .. import module. The __init__.py file signals to Python that the folder should be treated as package.

Problem: How to import a file or a module from another folder or directory in Python?

Example: Say, you’ve given the following folder structure:

application ├── app │ └── folder │ └── file_1.py └── app2 └── some_folder └── file_2.py

Your goal is to import functions from file_1.py in file_2.py.

Method 1: sys.path.append()


The first method appends the path of the file_1.py to the system’s path variable.

# file_2.py
import sys
sys.path.append('/.../application/app/folder') import file_1

Note that you need to replace the first three dots in '/…/application/app/folder' with the concrete path to the applications folder.

Method 2: sys.path.insert()


A similar alternative is to insert the path of file_1.py to position 1 of the system’s path variable. This ensures that it’s loaded with higher priority and avoids some naming conflicts:

# file_2.py
import sys
sys.path.insert(1, '/.../application/app/folder') import file

Again, replace the first three dots in '/…/application/app/folder' with the concrete path to the applications folder.

Method 3: Dot Notation with __init__.py


You can also do the following trick—creating a new package.

# file_2.py
from application.app.folder.file_1 import func_name

However, you need to make sure to include an empty __init__.py file in the directory. This file tells Python to treat the directory as a package. It is considered to be the most Pythonic way of solving this problem.

Method 4: Importlib


A not-so Pythonic alternative is to use the importlib module:

import importlib.util
spec = importlib.util.spec_from_file_location("file_2", '/.../application/app/folder')
lib = importlib.util.module_from_spec(spec)
spec.loader.exec_module(foo)
lib.function()

References

Where to Go From Here?


Enough theory, let’s get some practice!

To become successful in coding, you need to get out there and solve real problems for real people. That’s how you can become a six-figure earner easily. And that’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?

Practice projects is how you sharpen your saw in coding!

Do you want to become a code master by focusing on practical code projects that actually earn you money and solve problems for people?

Then become a Python freelance developer! It’s the best way of approaching the task of improving your Python skills—even if you are a complete beginner.

Join my free webinar “How to Build Your High-Income Skill Python” and watch how I grew my coding business online and how you can, too—from the comfort of your own home.

Join the free webinar now!

The post Python — How to Import Modules From Another Folder? first appeared on Finxter.



https://www.sickgaming.net/blog/2020/12/...er-folder/

Print this item

  (Indie Deal) FREE 7,62 High Calibre, Outer Worlds & Broken Sword Deals
Posted by: xSicKxBot - 12-30-2020, 08:08 AM - Forum: Deals or Specials - No Replies

FREE 7,62 High Calibre, Outer Worlds & Broken Sword Deals

7,62 High Calibre FREEbie
[freebies.indiegala.com]
?The season of giving just keeps on giving, the latest freebie is a tactical action game some of you might already know and others discover it now: 7.62 High Calibre

Crypto Sale Day 3: Private Division Winter Sale
[www.indiegala.com]
? Happy Holidays! Get a FREE Steam Key scratchy for any store purchase.
Get a second BONUS, a Die Young Steam Key, if you spend $10/€9/£8 or more.
Ancestors: The Humankind Odyssey[www.indiegala.com] | 68%
Ancestors: The Humankind Odyssey (Steam)[www.indiegala.com] | 68%
Disintegration[www.indiegala.com] | 50%
Kerbal Space Program[www.indiegala.com] | 78%
The Outer Worlds[www.indiegala.com] | 60%
The Outer Worlds[www.indiegala.com] | 60%
The Outer Worlds: Non-Mandatory Corporate-Sponsored Bundle[www.indiegala.com] | 42%

Revolution Winter Sale, up to -75
[www.indiegala.com]
Gameplay Giveaway & GalaQuiz today
[www.indiegala.com][blog.indiegala.com]

Stay Inside, Stay Safe and Enjoy Good Games.
Check out IndieGala on Twitter, YouTube & Facebook[www.facebook.com]


https://steamcommunity.com/groups/indieg...1310671343

Print this item

  News - Level-5 Boss Teases 2021 Announcement, Says He Loves Cyberpunk 2077
Posted by: xSicKxBot - 12-30-2020, 08:08 AM - Forum: Nintendo Discussion - No Replies

Level-5 Boss Teases 2021 Announcement, Says He Loves Cyberpunk 2077


Professor LaytonLevel-5

Forgive us this moment of subjective praise in a news story, but Level-5 really is one of the best studios out there. They brought us our beloved, behatted mystery-solver, Professor Layton, as well as the underrated gem that is Fantasy Life, and somehow they also managed to develop Ni No Kuni, Yo-Kai Watch, and the Inazuma Eleven series all in the span of their 22-year career. That’s a lot of great games for one studio!

However, the Japanese studio began to scale back its American offices back in 2019, and shut them down completely in 2020, with a source confirming that this meant “no future plans” for Level-5’s games coming to the West any time soon. The last Level-5 game to make it over was the 2018 title Snack World: The Dungeon Crawl, which came to the West earlier this year, and a localised Yo-Kai Watch 4 has been announced for Switch, but no release date has been given.

Speaking to Japanese gaming site, 4Gamer, Level-5 president Akihiro Hino spoke of the company’s plans for 2021. In a translation provided by The Gamer, Hino says that Level-5 is “preparing an unreleased new work,” as well as speaking about his positive experience with CD Projekt Red’s Cyberpunk 2077. He’s spent 60 hours with CD Projekt’s game so far and hasn’t fallen foul of any serious bugs, but he acknowledges that hasn’t been the case for everyone.

However, they’re not ready to say any more about the new game. “I can’t talk about the details yet,” Hino says, “but we are steadily proceeding, so please look forward to it.”

Since it’s unlikely that the new game – whatever it is – is going to be localised into English, we might as well use that headstart to start learning Japanese. Can’t be that hard, right?

What would you like to see next from Level-5? Drop your favourite title in the comments, or tell us what new concept you think Level-5 might try next!



https://www.sickgaming.net/blog/2020/12/...punk-2077/

Print this item