Create an account


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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,126
» Latest member: tomen77
» Forum threads: 21,830
» Forum posts: 22,699

Full Statistics

Online Users
There are currently 775 online users.
» 0 Member(s) | 770 Guest(s)
Applebot, Baidu, Bing, Google, Yandex

 
  (Indie Deal) Bethesda Giveways, Cashback Sale, Designer Pro Bundle
Posted by: xSicKxBot - 11-03-2022, 01:09 PM - Forum: Deals or Specials - No Replies

Bethesda Giveways, Cashback Sale, Designer Pro Bundle

Bethesda Giveways
[www.indiegala.com]

Cashback Sale
[www.indiegala.com]
Get the best bang for your buck with the CashBack Sale! For every purchase get a little extra back until 10.10.2022 & feel like a 10/10!

https://www.youtube.com/watch?v=QNV6448e4cc
Designer Pro 6 Bundle | 9 Asset Packs | 97% OFF
[www.indiegala.com]
Instagram influencers, this pack might be just for you! Get 4200+ assets that will help any aspiring creator to express themselves & even aim for professional levels of aesthetics.

Watch_Dogs & Tom Clancy Deals ending soon
[www.indiegala.com]

Check out IndieGala on Twitter, YouTube & Facebook[www.facebook.com]


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

Print this item

  (Free Game Key) Filament and Rising Storm 2: Vietnam - Free Epic Games
Posted by: xSicKxBot - 11-03-2022, 01:09 PM - Forum: Deals or Specials - No Replies

Filament and Rising Storm 2: Vietnam - Free Epic Games

Filament
https://store.epicgames.com/p/filament-332a92

Rising Storm 2: Vietnam (repeat)
https://store.epicgames.com/p/rising-storm-2-vietnam

This game is free to keep if claimed by November 10, 2022 5:00 PM or in 7 days @everyone

Next weeks freebies:
Shadow Tactics: Blades of the Shogun
Alba: A Wildlife Adventure

We are welcoming everyone to join our discord[discord.gg]. We are more active there on finding giveaways, small or large, and there are daily raffles you can participate.

?GrabFreeGames.com ?Twitter ?Steam Curator ?Facebook[fb.me]?Discord[discord.gg]
❤️Support us: HumbleBundle Partner[www.humblebundle.com] Fanatical Affiliate[www.fanatical.com]


https://steamcommunity.com/groups/GrabFr...5454260681

Print this item

  News - Google Play Games For PC Beta Now Available In The US And Canada
Posted by: xSicKxBot - 11-03-2022, 01:08 PM - Forum: Lounge - No Replies

Google Play Games For PC Beta Now Available In The US And Canada

At last year's The Game Awards, Google announced plans to bring Google Play Games to PCs, which would allow players to enjoy top mobile titles on their home computers. The beta test launched in South Korea and other parts of Asia earlier this year, and today the company has announced the Google Play Games for PC beta test has expanded into the United States, Canada, and more.

The beta is now available to download in the US, Canada, Mexico, Brazil, Indonesia, Malaysia, Singapore, and the Philippines. The test gives participants access to 60 different mobile games, including State of Survival, Cookie Run: Kingdom, Asphalt 9: Legends, and Summoners War.

The official Android Developers blog post announcing the beta's expansion says that more features and games will be added leading up to the service's official launch, though no specific games or features were named.

Continue Reading at GameSpot

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

Print this item

  PC - The Valiant
Posted by: xSicKxBot - 11-03-2022, 01:08 PM - Forum: New Game Releases - No Replies

The Valiant



Follow the story of Theoderich von Akenburg, a former crusader knight who, after becoming disillusioned with the cruelty of war, is called back into action by events set into motion 15 years ago when he and his former brother-in-arms, Ulrich von Grevel, stumble upon a fractured piece of an ancient artifact - the Rod of Aaron.

A young monk named Malcom appears at Theoderich's doorstep, bringing him news that the Rod contains power never meant for mortals, and Ulrich has become obsessed with finding the remaining pieces and unifying the rod, an event that could bring untold evil and suffering to the world.

Embark on a journey of brotherhood and redemption in The Valiant, a squad-based RTS set in 13th Century Europe and the Middle East. Command and level-up your medieval knights as you fight through an epic SP campaign, then take your skills online in both cooperative and competitive MP modes.

Publisher: THQ Nordic

Release Date: Oct 19, 2022




https://www.metacritic.com/game/pc/the-valiant

Print this item

  [Tut] How to Open a URL in Your Browser From a Python Script?
Posted by: xSicKxBot - 11-02-2022, 04:51 PM - Forum: Python - No Replies

How to Open a URL in Your Browser From a Python Script?

5/5 – (1 vote)

To open a URL in your standard browser (Win, macOS, Linux) from your Python script, e.g., call webbrowser.open('https://google.com') to open Google. Don’t forget to run import webbrowser first. But you don’t have to install the module because it’s already in Python’s standard library.


Example


Here’s an example Python script that opens the URL 'https://finxter.com':

import webbrowser
webbrowser.open('https://finxter.com/')

A new browser tab with your default browser (Chrome, Edge, Safari, Brave — whatever you set up as standard browser in your OS settings) opens, initialized with the URL provided as a string argument of the webbrowser.open() function:


About the Webbrowser Module


The webbrowser module is already part of the Python Standard Library, so you can import it without needing to install it first.

You can also run the module from your command line or terminal by using the following command:

python -m webbrowser -t "https://finxter.com"

Good to know if you ever want to open a URL from your operating system command line or terminal (Windows, macOS, Linux, Ubuntu) because the fact that you use Python makes it portable and operating system independent!

Webbrowser open()


You can specify additional arguments to get more control over which tab is opened by means of the new argument of the webbrowser.open() function.

webbrowser.open(url, new=0, autoraise=True)

The new argument allows you to control the browser window:

  • If you set new=0 (default), you open the URL in the same browser window.
  • If you set new=1, you open a new browser window.
  • If you set new=2, you open a new browser tab.

The autoraise argument allows you to raise the window (default behavior).

Webbrowser Open in New Tab


A short way of opening a given URL in a new tab from your Python script is to call webbrowser.open_new_tab() and pass your URL string as a single argument.

import webbrowser
my_url = 'https://finxter.com'
webbrowser.open_new_tab(my_url)

Select the Webbrowser


You can also return a controller object for a given browser by calling webbrowser.get() and passing the browser type into it. Now, you can call the open() or open_new_tab() methods on this controller object to open the URL in your desired web browser.

import webbrowser
webbrowser.get("chrome").open("https://finxter.com")

Here are the supported browser types:


Type Name Class Name
'mozilla' Mozilla('mozilla')
'firefox' Mozilla('mozilla')
'netscape' Mozilla('netscape')
'galeon' Galeon('galeon')
'epiphany' Galeon('epiphany')
'skipstone' BackgroundBrowser('skipstone')
'kfmclient' Konqueror()
'konqueror' Konqueror()
'kfm' Konqueror()
'mosaic' BackgroundBrowser('mosaic')
'opera' Opera()
'grail' Grail()
'links' GenericBrowser('links')
'elinks' Elinks('elinks')
'lynx' GenericBrowser('lynx')
'w3m' GenericBrowser('w3m')
'windows-default' WindowsDefault
'macosx' MacOSXOSAScript('default')
'safari' MacOSXOSAScript('safari')
'google-chrome' Chrome('google-chrome')
'chrome' Chrome('chrome')
'chromium' Chromium('chromium')
'chromium-browser' Chromium('chromium-browser')

Thanks for Reading ❤


To keep learning, feel free to check out our email academy and download our free Python cheat sheets. ?



https://www.sickgaming.net/blog/2022/10/...on-script/

Print this item

  (Free Game Key) Internet Cafe Simulator - Free Steam Game
Posted by: xSicKxBot - 11-02-2022, 04:51 PM - Forum: Deals or Specials - No Replies

Internet Cafe Simulator - Free Steam Game

Internet Cafe Simulator - Free Steam Game

- Go to the giveaway page
- https://www.fanatical.com/en/game/internet-cafe-simulator?ref=gfg
- Add to cart (to add the game to cart)
- Proceed to Checkout button on the right
- View order
- Reveal key button (a suggestion is to reveal it and use it as soon as possible)

(it says that key expires on dec 02. but im not sure if its the revealed key or the actual key, the game on your account will remain if you activate it before then)

We are welcoming everyone to join our discord[discord.gg]. We are more active there on finding giveaways, small or large, and there are daily raffles you can participate.

?GrabFreeGames.com ?Twitter ?Steam Curator ?Facebook[fb.me]?Discord[discord.gg]
❤️Support us: HumbleBundle Partner[www.humblebundle.com] Fanatical Affiliate[www.fanatical.com]


https://steamcommunity.com/groups/GrabFr...5450251659

Print this item

  (Indie Deal) FREE Dead Hungry Diner, Boogieman Bundle & deals ending
Posted by: xSicKxBot - 11-02-2022, 04:51 PM - Forum: Deals or Specials - No Replies

FREE Dead Hungry Diner, Boogieman Bundle & deals ending

Dead Hungry Diner FREEbie
[freebies.indiegala.com]
https://www.youtube.com/watch?v=2yzzA_nZHtk
Boogieman FM Bundle | 6 Steam Keys | 94% OFF
[www.indiegala.com]
For all the Gala Ghouls listening, a spooky Halloween surprise reached the airwaves, one that will scare you with an intense frequency & a creepy modulation: Chased by Darkness, SOMNI, Deca, Krampus is Home, Boogeyman & FM.

Game Deals & more ending soon
[www.indiegala.com]
Frightening Freebies, Deadly Deals & Gruesome Giveaways are coming! Every store checkout will bring a sweet treat: a FREE Key for you to keep.
https://www.youtube.com/watch?v=H9M09U9Gz04
STC Release Trailer
https://www.youtube.com/watch?v=H8uFV2Useho&feature=emb_title


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

Print this item

  News - Sony Reveals A Bunch Of New PSVR 2 Games
Posted by: xSicKxBot - 11-02-2022, 04:51 PM - Forum: Lounge - No Replies

Sony Reveals A Bunch Of New PSVR 2 Games

PlayStation VR 2 has an official launch date and price, but that's not all. Sony has lifted the lid on 11 games that'll be available for the virtual reality hardware when it releases on February 22, 2023, and the list includes a brand-new Dark Pictures experience, roguelike action, and plenty more.

Beyond these launch games, Sony has a few other big PSVR 2 games lined up for an eventual release. Horizon Call of the Mountain, Resident Evil Village, Star Wars: Tales from the Galaxy's Edge Enhanced Edition, and The Walking Dead: Saints & Sinners Chapter 2 are all coming to the system in the future, and if you're pondering grabbing it for yourself, you can read GameSpot's feature on everything you need to know about PSVR 2.

The Dark Pictures: Switchback VR

Described as a fast-paced rollercoaster action-horror-shooter by developer Supermassive Games, The Dark Pictures: Switchback VR pits players against terrifying vampires and and distorted apparitions summoned by demonic incarnations of persecuted from 17th-century New England. There's also a serial killer out for blood, a few mysteries to solve, and multiple paths to navigate in this game where'll you choose your own nightmares.

Continue Reading at GameSpot

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

Print this item

  PC - The Last Hero of Nostalgaia
Posted by: xSicKxBot - 11-02-2022, 04:51 PM - Forum: New Game Releases - No Replies

The Last Hero of Nostalgaia



Nostalgaia, the world of videogames, is collapsing backwards into a mysterious pixelation, with every particle of fidelity bleeding away. Oblivion seemingly awaits even our most cherished gaming memories. But as the lighting dims and frames diminish, with the world on the brink of extinction, hope emerges to fight back.

As the most hideous pixelated hero to ever spawn in Nostalgaia, you must fight through an army of its mindless inhabitants, while being jeered by a cynical narrator who despises your very existence.

The Last Hero of Nostalgaia is a satirical action-adventure, driven by a dark story, set in an incredibly rich and complex world.

Featuring hard but fair combat that fans of the genre will relish, along with full character customization, unique battle armor and engaging narrative mechanics rich in lore, The Last Hero of Nostalgaia's twisted and wicked tale is prepared to send you headfirst into almost certain death around its every vertex.

Publisher: Coatsink Software

Release Date: Oct 19, 2022




https://www.metacritic.com/game/pc/the-l...nostalgaia

Print this item

  [Tut] Learn the Basics of MicroPython for Absolute Python Beginners
Posted by: xSicKxBot - 11-01-2022, 09:08 AM - Forum: Python - No Replies

Learn the Basics of MicroPython for Absolute Python Beginners

5/5 – (1 vote)

When learning how to program your Raspberry Pi Pico, you need to learn basic concepts of a limited version of the Python programming language known as MicroPython.

It’s a great way to learn Python, as it is much simpler than Python, which can be very complicated and take a long time to master.

For the purposes of using a microcontroller, you only need to know some basics to get started.

Before we jump in, let’s take a quick moment to familiarize you with your Python IDE, Thonny.

Using Thonny


To get started, there are three parts of the interface that you should be aware of — the toolbar, the editor, and the shell.


(1) Toolbar ?


The toolbar has icons that will help you do a few things, such as creating new files, opening existing ones, and saving, just like you see with most programs.

The other things you’ll want to notice are the green button, which will run your programs that you write in the editor and the stop button which will end programs that run forever.

We’ll get into that in the next tutorial.

(2) Editor ?


The editor is where you will write your programs that you will save and run by using the run button in the toolbar. You may also see or hear this referred to as the script area, as this is where you write your scripts.

(3) Shell ◼


The Python shell has two purposes.

You can run individual instructions by hitting the Enter key without having to write them in the editor and run them, but this only really is good for simple instructions. You won’t use it to write complex code.

The second purpose is to provide information about scripts that you have written, including where errors might be in your code.

This is sometimes referred to as REPL, which stands for

  • Read,
  • Evaluate,
  • Print, and
  • Loop.

In the following tutorial and video, I’ll show you how to get started with the Thonny IDE—feel free to check it out! ?

? Recommended Tutorial: Getting Started With Thonny – The Optimal IDE for the Raspberry Pi Pico

Writing Your First Code



Ok, so now that you know the parts of the interface, let’s try some code to get started.

We’ll begin with the universal first program, “Hello, World”. First, we’re going to try it in the shell since it’s only a one-line command.

Type the following command like so:

print("Hello, World!")

The results should be that the words "Hello, World!" print in the shell, but without quotation marks.

This is the syntax we use when we want to print something – print(), with whatever you want printed put inside the parentheses. If it’s words, we put them inside quotes.


Now, we’re going to run the program from the editor.

If you want to clear out anything you’ve done in the shell or just start fresh, then click in the shell and press either Command+k on a Mac or Control+k on a PC.

Personally, I like to keep my shell clean and clear when I’m doing something new.

Ok, so now that you’ve cleared the shell (if that’s what you chose to do), type the same command as before into the editor, then click the Save icon.

When prompted to decide where to save the file, choose the Raspberry Pi Pico and title your file "Hello_World.py". Don’t forget to add the ".py" to the end, as this is the file extension that denotes a Python file.

We’ll do that with every file we create with Thonny.


Once you’ve saved, click the green Run button in the toolbar, and you’ll see Hello, World! print in the shell as you did before.


There are two things going on here.

First, you are telling Thonny to print something out in the shell, and second, by using quotation marks, you are telling Thonny that what is to be printed is a string of text.

In programming languages like Python, there are what are known as “primitives”, which are basic data types to work with in your programming.

Those data types are:

  • Strings – just plain ol’ text, like "Hello World"
  • Integers – whole numbers, like 42
  • Floats – numbers with decimals, like 3.14
  • Booleans – choices between two options, like True or False

Loops and Indentation



Now you’re going to write your first loop, which is simply a term that refers to a set of instructions to be repeated.

You will be writing those instructions in a specific type of way. The reason for this is that Python programs run from top to bottom, but your interpreter is dumb.

It only knows what you tell it, so the way we give instructions to the Python interpreter is by grouping those instructions with indentations.

What we’re going to do is tell Thonny to print some text, run a loop, then print more text. When we give the instructions that are to be repeated by the loop, we will indent those instructions so that Thonny will “understand”.

There are two primary loop types, but today, we are only going to focus on what is called a “for loop”, which runs a defined number of times.

First, let’s start a new program by clicking the new file icon (the white piece of paper ?) then writing some code in the editor like so:

print("Loop starting!")
for i in range(10):

Then hit the Enter (PC) or Return (Mac) key. 

What you’re doing is assigning a variable, i, for the loop to use as a counter and telling it that i will be every number in the range of 10 as the loop is performed.

In other words, the instructions will be repeated 10 times, as defined by the range.

? Info: Python is known as a 0-indexed language, which means the default start of the range is 0 rather than 1, so 10 is not included in the range. Therefore, numbers starting with 0 is the range 0-9, so i will be the numbers 0-9 in this example.

The other thing to notice here is the colon : at the end of the line.

That tells Thonny that you are about to give it instructions for the loop you just told it will be performed. When you hit the Enter or Return key, not only will a new line be created, but it will also automatically start at an indented 4 spaces in.


This is where you’re going to tell Thonny what instructions to repeat. For the sake of this exercise, we’re simply going to print to the shell.

However, this time, we’re going to print both a string and whatever number i happens to be for each repetition of the loop.

So to do that, type 

print("Loop number", i)

We need to separate multiple data types being printed on the same line with a comma so that Thonny “knows” that there are separate things to interpret because again, your interpreter only knows what you tell it.

After that, hit Enter or Return for a new line, but this time, hit the backspace key.

We don’t want Thonny to repeat the next instructions, so we need to make sure they are outside of the loop.

Then type 

print("Loop ended!")

Your whole program will look like this:


Here for copy&paste:

print("Loop starting!")
for i in range(10): print("Loop number", i)
print("Loop ended!")

Now go to the toolbar and click the save button. We’re going to call this “Indentation.py”. Once saved, click the green Run button, and you’ll see the results:


Ok, I think that’s enough for today. Try changing the range from 10 by adding a start and stop number like this:

for i in range(x, y):

With x and y being whatever numbers you choose.

For example, if you use range(3, 14), i will print as the numbers 3-13, since the last number is never included in the loop. If you want to print 1-10 instead of 0-9, you should use range(1, 11) and so on.

Thanks for Reading!



Next time, we will try a different kind of loop and explore what are known as “conditionals” that perform actions based on whether certain criteria are met. Until then, happy coding!



https://www.sickgaming.net/blog/2022/10/...beginners/

Print this item

 
Latest Threads
Insta360 USA Coupon [INRS...
Last Post: tomen77
1 hour ago
Insta360 Coupon For Stude...
Last Post: tomen77
1 hour ago
Insta360 Content Creator ...
Last Post: tomen77
1 hour ago
Save 5% on Insta360 Produ...
Last Post: tomen77
1 hour ago
Insta360 Ace Pro 2 Promo ...
Last Post: tomen77
1 hour ago
Insta360 Coupon For Vlogg...
Last Post: tomen77
1 hour ago
Insta360 Promo [INRSG2ATO...
Last Post: tomen77
1 hour ago
Insta360 GO Ultra Coupon ...
Last Post: tomen77
1 hour ago
Shein Coupon & Promo Cod...
Last Post: udwivedi923
Yesterday, 02:29 PM
"Updated" Shein Coupon & ...
Last Post: udwivedi923
Yesterday, 02:28 PM

Forum software by © MyBB Theme © iAndrew 2016