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: 21,996
» Forum posts: 22,963

Full Statistics

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

Latest Threads
[Steam Release] Cowbots a...
Forum: New Game Releases
Last Post: xSicKxBot

» Replies: 0
» Views: 9
[Dev News] September Free...
Forum: Game Development
Last Post: xSicKxBot

» Replies: 0
» Views: 10
Marvel Rivals Venom guide...
Forum: PC Discussion
Last Post: xSicKxBot

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

» Replies: 0
» Views: 15
[Steam Release] Kodon
Forum: New Game Releases
Last Post: xSicKxBot

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

» Replies: 0
» Views: 18
[PS.Blog] (For Southeast ...
Forum: Sony Discussion
Last Post: xSicKxBot

» Replies: 0
» Views: 15
[Steam Release] RAILGRADE...
Forum: New Game Releases
Last Post: xSicKxBot

» Replies: 0
» Views: 22
Fortnite Winterfest 2024 ...
Forum: PC Discussion
Last Post: xSicKxBot

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

» Replies: 0
» Views: 21

 
  [Tut] How to Convert Octal String to Integer in Python
Posted by: xSicKxBot - 12-04-2022, 08:39 AM - Forum: Python - No Replies

How to Convert Octal String to Integer in Python

5/5 – (1 vote)

Problem Formulation


Given a string in the octal form:

s = '0o77'
# or s = '77'

How to convert the octal string to an integer in Python?

For example, you want to convert the octal string 'o10' to the decimal integer 8.

Here are a few other examples:


Octal String Decimal
'0o0' 0
'0o4' 4
'0o10' 8
'0o14' 12
'0o20' 16
'0o77' 63
'0o77777' 32767

Oct String to Integer using int() with Base 8


To convert an octal string to an integer, pass the string as a first argument into Python’s built-in int() function. Use base=8 as a second argument of the int() function to specify that the given string is an octal number. The int() function will then convert the octal string to an integer with base 10 and return the result.

Here’s a minimal example:

>>> int('0o77', base=8)
63

Examples


And here’s how you can convert the additional examples shown above:

>>> int('0o0', base=8)
0
>>> int('0o4', base=8)
4
>>> int('0o10', base=8)
8
>>> int('0o14', base=8)
12
>>> int('0o20', base=8)
16
>>> int('0o77', base=8)
63
>>> int('0o77777', base=8)
32767

You actually don’t need to use the prefix '0o' because your second argument already defines unambiguously that the given string is an octal number:

>>> int('0', base=8)
0
>>> int('4', base=8)
4
>>> int('10', base=8)
8
>>> int('14', base=8)
12
>>> int('20', base=8)
16
>>> int('77', base=8)
63
>>> int('77777', base=8)
32767

However, skipping the base but leaving the prefix raises a ValueError: invalid literal for int() with base 10: '0o77':

>>> int('0o77')
Traceback (most recent call last): File "<pyshell#16>", line 1, in <module> int('0o77')
ValueError: invalid literal for int() with base 10: '0o77'

It assumes that the input string is in base 10 when in fact, it isn’t.

? Note: Even though passing a prefixed string '0o...' into the int() function is unambiguous, Python’s int() function doesn’t accept it if you don’t also define the base. This may be fixed in future versions!

In fact, you can specify the base argument as 0 to switch on base guessing—which should be the default behavior anyway! ?

Base Guessing


You can pass a prefixed string '0o...' into the int() function and set the base to 0 to switch on base guessing in Python. This uses the prefix to determine the base automatically—without you needing to set it to 16. Yet, you still have to set it to 0 so the benefit is marginal in practice.

>>> int('0o7', base=8)
7
>>> int('0o7', base=0)
7
>>> int('0o7', 0)
7

Converting Octal Literals to Int



If you don’t have an octal string but a octal number—called a literal—such as 0xff, you don’t even need the int() function because Python will automatically convert it to a decimal number:

>>> 0o743
483
>>> 0o7
7
>>> 0o10
8

Background int()


Syntax: int(value [, base]) – > int

Argument value A Python object to be converted into an integer number. The value object must have an __int__() method that returns the associated integer number—otherwise a TypeError will be raised.
base An optional integer argument base to define the base of the numerical system in the value argument. If you set the base, the value argument must be a string. The base argument determines how the string argument is interpreted.
Return Value int Returns an integer number after converting the input argument value using its required __int__() method for the conversion.

YouTube Video

Do you still need more background information about Python’s built-in int() function? No problem, read over the related tutorial.

? Related Tutorial: Python’s Built-in int() Function



https://www.sickgaming.net/blog/2022/12/...in-python/

Print this item

  (Indie Deal) Vorax Open Alpha & Development Update #2
Posted by: xSicKxBot - 12-04-2022, 08:39 AM - Forum: Deals or Specials - No Replies

Vorax Open Alpha & Development Update #2

Vorax Open Alpha is now available
[freebies.indiegala.com]
The open alpha featuring our newest build is available for a limited time to download & play on Indiegala via our client or on Steam .Play Vorax alpha 0.3 today and experience true horror.

Video 1: Chainsaw - Woodcutting
In order to build your defenses and fortifications, raw material will be needed. In the sylvan section of the island wood is easily available, from small saplings, bushes to tall and majestic trees. There is a bountiful arborical selection.

However, harvesting and gathering wood isn't such a light task. Tools are needed. While punching a tree, with one's brute force, could, in some circumstances, offer a few splinters, an axe or a hatchet would do a slightly better job. But, we have evolved beyond such primitive methods, and have found a more efficient method: the chainsaw.

A fairly hefty tool but it gets the job done: trees, logs, evergreen, wild animals and more, as long as you have the space and strength to carry, with enough fuel in your tank, you can clear out an entire forest in a jiffy.

Video 2: Close & Personal - Chainsaw Combat
Chainsaws, hatchets, hammers, etc. There are plenty of melee options that allow you to get close and personal. But, did you know that chainsaws can be used for more than just cutting trees?

Yes. Originally, the first chain saws were being used in surgery, for the excision of diseased joints or simply cutting bone. Luckily nowadays on the island, you do not need a medical degree nor take the Hippocratic Oath in order to operate a chainsaw...and there are plenty of diseased specimens that need a check-up.

If "an apple a day keeps the doctor away", a chainsaw keeps everyone away, every day.

Video 3: Circuits - "Let there be light"
Fuses, diodes, resistors, capacitors and lots of wiring. While becoming an aspiring electrical engineer can be a great prospect for the future, getting back alive from the island must come as a priority.

Completing a broken panel requires the rotation of tiles of a network trying to connect power to the grid. Generation of the grid is entirely procedural so that no playthrought has the same puzzle.

By solving the electrical puzzles, mounting enough fuses and with the right parts, entire buildings, dark hallways or even sewer sections can be illuminated.

Remember: light may maintain your sanity...but may also attract unwanted visitors.

Wishlist now:
https://store.steampowered.com/app/1874190/Vorax/
[discord.gg]


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

Print this item

  News - Assassin's Creed Mirage Reportedly Releasing in August 2023
Posted by: xSicKxBot - 12-04-2022, 08:39 AM - Forum: Lounge - No Replies

Assassin's Creed Mirage Reportedly Releasing in August 2023

While only broadly stamped with a 2023 release, a new report states Assassin's Creed Mirage is eagle eying an August launch. However, it is possible that it won't stick to that reported release window.

That's because the game has already been delayed internally twice, according to Insider Gaming. Apparently Ubisoft planned for the back-to-basics title to come out earlier next year. No specifics were noted for the holdups, though Assassin's Creed Mirage is slated for last-gen hardware. Limitations on those platforms could possibly cause headaches for development. But that is speculation at this point.

It's been more than two years since Assassin's Creed Valhalla launched, a large gap for a franchise that was heavily annualized previously. To fill in that time, the game's final update features a tie-in to Assassin's Creed Mirage. Ubisoft is also already taking pre-orders for Mirage. The standard edition costs $50, with the most expensive option retailing for $150.

Continue Reading at GameSpot

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

Print this item

  PC - Pentiment
Posted by: xSicKxBot - 12-04-2022, 08:39 AM - Forum: New Game Releases - No Replies

Pentiment



Step into a living illustrated world inspired by illuminated manuscripts and printed woodcuts in a time when Europe is at a crossroads of great religious and political change. Walk in the footsteps of Andreas Maler, a master artist who finds himself in the middle of murders, scandals, and intrigue in the Bavarian Alps. Choose your backgrounds, impact a changing world, and see the consequences of your decisions in this narrative adventure.

Publisher: Xbox Game Studios

Release Date: Nov 14, 2022




https://www.metacritic.com/game/pc/pentiment

Print this item

  [Oracle Blog] JDK 13.0.1, 11.0.5, 8u231, and 7u241 Have Been Released!
Posted by: xSicKxBot - 12-03-2022, 02:28 AM - Forum: Java Language, JVM, and the JRE - No Replies

JDK 13.0.1, 11.0.5, 8u231, and 7u241 Have Been Released!

The JDK 13.0.1, 11.0.5, 8u231, and 7u241 update releases are now available. You can download the latest JDK releases from the Java SE Downloads page. OpenJDK 13.0.1 is available on http://jdk.java.net/13/. An item of interest in the CPU release is that JDK 8u231 also includes JDK 8u231 for ARM. Info...


https://blogs.oracle.com/java/post/jdk-1...n-released

Print this item

  (Indie Deal) Vorax Development update #1
Posted by: xSicKxBot - 12-03-2022, 02:28 AM - Forum: Deals or Specials - No Replies

Vorax Development update #1


Hi all!
Starting from this week we will give you regular updates on the Vorax development every friday.

Below are our most recent YouTube videos that will give you an idea of where Vorax is in development.


Video 1: Ambush
Vorax is for the most part an open world game where you've got miles and miles to freely explore to your heart's content.
However there are also some more tightly closed spaces, claustrophobic even, like tunnels, sewers and caves.
There the mutation has peculiar aspects depending on the environment.
Certain kind of monsters are adapting to certain type of conditions, such as light or air,
therefore some types of mutations will be specific to closed and dark spaces.


Video 2: Defending The House
The majority of the enemies, especially the toughest are photosensitive.
You must balance your physical safety and your mental sanity carefully. Finding a shelter, an appropriate location where you can hide and barricade yourself will protect you, but staying too much into the darkness will slowly chip away at your sanity. Turning on the light might offer some mental comfort, however that will also, potentially, attract unwelcomed guests.

In fact, at night the hostile creatures, mostly photosensitive, come out to hunt.
So you need to exercise extreme caution when moving around.
We have planned several buildings that can be cleared, reinforced and made into a relatively safe haven for the night.
But if these safety operations are not carried out, they can be attacked by creatures.


Video 3: Tunnel
The virus contaminates the whole island, resulting in various forms of aberrations, from small to big... to massive.
What delves deep in the dark tunnels is just one of those aberrations. Dealing with it might make both your heart and the ground beneath you tremble.


Our Vision.

We have been trying for months to work on a large game area (in the alpha indiegala for now only 15% of the island is explorable) where
we want to give the feeling of a whole environment, flora, fauna, human beings… every cell contaminated by the virus.
Because the pathogen does not affect humans exclusively, other 'entities' might be infected by the virus and the resulting mutations can be abnormal.

We also focused heavily on combat system, an aspect that had left us unsatisfied in our previous title, Die Young.
The team has placed a big emphasison ranged weapons and firearms,
which is why managing the limited ammunition available will be important to survive.
But we haven't neglected hand-to-hand combat either.
In the coming weeks we will see the use of different work tools that can turn into lethal weapons.

Compared to Die Young we think we've definitely improved the survival side.
You will be able to craft almost anything you can find in the game and
also you will be able to build a large variety of structures in order to have the most personalized gaming experience possible.

Let's keep in touch next friday.



Keep an eye on ig for updates, especially next week. On the Black Friday weekend you will be able to try out the UPDATED ALPHA[freebies.indiegala.com] build. Once more, for a limited time only.
Next weekend, infact, we will update to latest features and fixes we've been working so hard in those months.

Make sure to join us on Discord[discord.gg] for exclusive news.

Wishlist now:
https://store.steampowered.com/app/1874190/Vorax/


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

Print this item

  News - The Callisto Protocol: Where To Find All Weapons
Posted by: xSicKxBot - 12-03-2022, 02:28 AM - Forum: Lounge - No Replies

The Callisto Protocol: Where To Find All Weapons

The Callisto Protocol is a survival horror game, so you'll be scrounging for ammo and supplies throughout the campaign. What you might not expect, though, is that a few of its weapons are actually completely missable if you aren't thorough in your exploration. This means that you could end the game with only two guns and a melee weapon--but that shouldn't be a problem, since we've got the locations of all story and optional weapons below.

Stun Baton

The Stun Baton is automatically obtained during the Outbreak chapter and will be your melee weapon throughout the remainder of the game. You'll snag this after a room with two giant fans and a bunch of enemies. Just crawl through the nearby shaft and you'll get the weapon during a short cutscene.

Hand Cannon

The Hand Cannon is automatically obtained during the Outbreak chapter and is the first ranged weapon you'll have access to. Late in the mission, you'll enter a room where Elias will toss you part of a pistol. Take this over to the Reforge nearby and purchase the Hand Cannon to move the story forward.

Continue Reading at GameSpot

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

Print this item

  PC - McPixel 3
Posted by: xSicKxBot - 12-03-2022, 02:28 AM - Forum: New Game Releases - No Replies

McPixel 3



McPixel 3 is a mind-blowing save-the-day adventure that sees the titular wanna-be hero avert one disaster after another at every turn using unconventional yet entertaining methods of mayhem.

Publisher: Devolver Digital

Release Date: Nov 14, 2022




https://www.metacritic.com/game/pc/mcpixel-3

Print this item

  [Oracle Blog] JDK 13 Has Been Released
Posted by: xSicKxBot - 12-02-2022, 08:43 AM - Forum: Java Language, JVM, and the JRE - No Replies

JDK 13 Has Been Released

JDK 13 is live! Download it from the Java SE Downloads page. See the JDK 13 Release Notes for detailed information about this release. The following are some of the important additions and updates in Java SE 13 and JDK 13: Application class-data sharing (ApsCDS) has been extended to allow dynamic ar...


https://blogs.oracle.com/java/post/jdk-1...n-released

Print this item

  [Tut] Python | Split String Hyphen
Posted by: xSicKxBot - 12-02-2022, 08:43 AM - Forum: Python - No Replies

Python | Split String Hyphen

Rate this post

⭐Summary: Use "given string".split('-') to split the given string by hyphen and store each word as an individual item in a list. Some other ways to split using hyphen include using a list comprehension and the regex library.

Minimal Example


text = "Violet-Indigo-Blue-Green-Yellow-Orange-Red"
# Method 1
print(text.split("-"))
# Method 2
import re
print(re.split('-', text))
# Method 3
print(list(filter(None, text.split('-'))))
# Method 4
print([x for x in re.findall(r'[^-]*|(?!-).*$', text) if x != '']) # OUTPUT: ['Violet', 'Indigo', 'Blue', 'Green', 'Yellow', 'Orange', 'Red']

Problem Formulation


?Problem: Given a string, how will you split the string into a list of words using the hyphen as a delimiter?

Example


Let’s understand the problem with the help of an example.

# Input:
text = "Violet-Indigo-Blue-Green-Yellow-Orange-Red"
# Output:
['Violet', 'Indigo', 'Blue', 'Green', 'Yellow', 'Orange', 'Red']

Now without any further ado, let’s dive into the numerous ways of solving this problem.

Method 1: Using split()


Python’s built-in split() function splits the string at a given separator and returns a split list of substrings. Here’s how the split() function works: 'finxterx42'.split('x') will split the string with the character ‘x’ as the delimiter and return the following list as an output: ['fin', 'ter', '42'].

Approach: To split a string by hyphen, you can simply pass the underscore as a separator to the split('-') function.

Code:

text = "Violet-Indigo-Blue-Green-Yellow-Orange-Red"
print(text.split("-")) # ['Violet', 'Indigo', 'Blue', 'Green', 'Yellow', 'Orange', 'Red']

?Related Read: Python String split()

Method 2: Using re.split()


Another way of separating a string by using the underscore as a separator is to use the re.split() method from the regex library. The re.split(pattern, string) method matches all occurrences of the pattern in the string and divides the string along the matches resulting in a list of strings between the matches. For example, re.split('a', 'bbabbbab') results in the list of strings ['bb', 'bbb', 'b'].

Approach: You can use the re.split() method as re.split('-', text) where '-' returns a match whenever the string contains a hyphen. Whenever any hyphen is encountered, the text gets separated and the split substring gets stored as an element within the resultant list.

Code:

import re
text = "Violet-Indigo-Blue-Green-Yellow-Orange-Red"
print(re.split('-', text)) # ['Violet', 'Indigo', 'Blue', 'Green', 'Yellow', 'Orange', 'Red']

?Related Read: Python Regex Split

Method 3: Using filter()


Note: This approach is efficient when the resultant list contains empty strings along with substrings.

Python’s built-in filter() function filters out the elements that pass a filtering condition. It takes two arguments: function and iterable. The function assigns a Boolean value to each element in the iterable to check whether the element will pass the filter or not. It returns an iterator with the elements that passes the filtering condition.

Approach: Use the filter() method to split the string by hyphen. The function takes None as the first argument and the list of split strings as the second argument. The filter() function then iterates through the list and removes any empty elements. As the filter() method returns an object, we need to use the list() to convert the object into a list.

Code:

text = "Violet-Indigo-Blue-Green-Yellow-Orange-Red" print(list(filter(None, text.split('-')))) # ['Violet', 'Indigo', 'Blue', 'Green', 'Yellow', 'Orange', 'Red']

?Related Read: Python filter()

Method 4: Using re.findall()


The re.findall(pattern, string) method scans the string from left to right, searching for all non-overlapping matches of the pattern. It returns a list of strings in the matching order- when scanning the string from left to right.

Approach: You can use the re.findall() method from the regex module to split the string by hyphen. Use ‘[^-]|(?!-).$‘ as the pattern that can be fed into the findall function to solve the problem. It simply, means a set all characters that are joined by a hyphen will be grouped together.

Code:

import re
text = "Violet-Indigo-Blue-Green-Yellow-Orange-Red" print([x for x in re.findall(r'[^_]*', text) if x != '']) # ['Python', 'Pycharm', 'Java', 'Eclipse', 'Golang', 'VisualStudio']

?Related Read: Python re.findall() – Everything You Need to Know

Python | Split String by Dot


Now that we have gone through numerous ways of solving the given problem, here’s a similar programming challenge for you to solve.

Challenge: You are given a string that contains dots in it. How will you split the string using a dot as a delimiter? Consider the code below and try to split the string by dot.

# Input:
text = "stars.moon.sun.sky" # Expected Output:
['stars', 'moon', 'sun', 'sky']

Try to solve the problem yourself before looking into the given solutions.

Solution: Here are the different methods to split a string by using the dot as a delimiter/separator:

text = "a*b*c"
# Method 1
print(text.split("*")) # Method 2
print(list(filter(None, text.split('*')))) # Method 3
import re
print([x for x in re.findall(r'[^/*]*|(?!/*).*$', text) if x != '']) # Method 4
print(re.split('[/*]', text))

Conclusion


Hurrah! We have successfully solved the given problem using as many as four different ways. We then went on to solve a similar coding challenge. I hope this article helped you. Please subscribe and stay tuned for more interesting articles!

Happy coding! ?


Do you want to master the regex superpower? Check out my new book The Smartest Way to Learn Regular Expressions in Python with the innovative 3-step approach for active learning: (1) study a book chapter, (2) solve a code puzzle, and (3) watch an educational chapter video.



https://www.sickgaming.net/blog/2022/12/...ng-hyphen/

Print this item