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,125
» Latest member: udwivedi923
» Forum threads: 21,822
» Forum posts: 22,691

Full Statistics

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

 
  [Oracle Blog] Advanced Management Console (AMC) 2.14 Release is Now Available
Posted by: xSicKxBot - 11-26-2022, 06:39 AM - Forum: Java Language, JVM, and the JRE - No Replies

Advanced Management Console (AMC) 2.14 Release is Now Available

The Advanced Management Console (AMC) 2.14 release is now available. This release of AMC 2.14 is a documentation and bug fix release. AMC 2.14 is a commercial product licensed as part of Java SE Advanced, SE Advanced Suite and Java SE Subscriptions. The Advanced Management Console is available to cu...


https://blogs.oracle.com/java/post/advan...-available

Print this item

  [Tut] Python | Split String and Count Results
Posted by: xSicKxBot - 11-26-2022, 06:39 AM - Forum: Python - No Replies

Python | Split String and Count Results

Rate this post

✨Summary: Split the string using split and then use len to count the results.

Minimal Example

print("Result Count: ", len('one,two,three'.split(',')))
# Result Count: 3

Problem Formulation


?Problem: Given a string. How will you split the string and find the number of split strings? Can you store the split strings into different variables?

Example


# Given String
text = '366NX-BQ62X-PQT9G-GPX4H-VT7TX'
# Expected Output:
Number of split strings: 5
key_1 = 366NX
key_2 = BQ62X
key_3 = PQT9G
key_4 = GPX4H
key_5 = VT7TX

In the above problem, the delimiter used to split the string is “-“. After splitting five substrings can be extracted. Therefore, you need five variables to store the five substrings. Can you solve it?


Solution


Splitting the string and counting the number of results is a cakewalk. All you have to do is split the string using the split() function and then use the len method upon the resultant list returned by the split method to get the number of split strings present.

Code:

text = '366NX-BQ62X-PQT9G-GPX4H-VT7TX'
# splitting the string using - as separator
res = text.split('-')
# length of split string list
x = len(res)
print("Number of split strings: ", x)

Approach 1



  • The idea here is to find the length of the results and then use this length to create another list containing all the variable names as items within it. This can be done with a simple for loop.
  • Now, you have two lists. One that stores the split strings and another that stores the variable names that will store the split strings.
  • So, you can create a dictionary out of the two lists such that the keys in this dictionary will be the items of the list containing the variable names and the values in this dictionary will be the items of the list containing the split strings. Read: How to Convert Two Lists Into A Dictionary

Code:

text = '366NX-BQ62X-PQT9G-GPX4H-VT7TX'
# splitting the string using - as separator
res = text.split('-')
# length of split string list
x = len(res) # Naming and storing variables and values
name = []
for i in range(1, x+1): name.append('key_'+str(i)) d = dict(zip(name, res))
for key, value in d.items(): print(key, "=", value)

Approach 2


Almost all modules have a special attribute known as __dict__ which is a dictionary containing the module’s symbol table. It is essentially a dictionary or a mapping object used to store an object’s (writable) attributes.

So, you can create a class and then go ahead create an instance of this class which can be used to set different attributes. Once you split the given string and also create the list containing the variable names (as done in the previous solution), you can go ahead and zip the two lists and use the setattr() method to assign the variable and their values which will serve as the attributes of the previously created class object. Once, you have set the attributes (i.e. the variable names and their values) and attached them to the object, you can access them using the built-in __dict__ as object_name.__dict__

Code:

text = '366NX-BQ62X-PQT9G-GPX4H-VT7TX'
# splitting the string using - as separator
res = text.split('-')
# length of split string list
x = len(res)
print("Number of split strings: ", x) # variable creation and value assignment
name = []
for i in range(1, x + 1): name.append('key_' + str(i)) class Record(): pass r = Record() for name, value in zip(name, res): setattr(r, name, value)
print(r.__dict__) for key, value in r.__dict__.items(): print(key, "=", value)

Approach 3


Caution: This solution is not recommended unless this is the only option left. I have mentioned this just because it solves the purpose. However, it is certainly not the best way to approach the given problem.

Code:

text = '366NX-BQ62X-PQT9G-GPX4H-VT7TX'
# splitting the string using - as separator
res = text.split('-')
# length of split string list
x = len(res)
print("Number of split strings: ", x)
name = []
for i in range(1, x + 1): name.append('key_' + str(i)) for idx, value in enumerate(res): globals()["key_" + str(idx + 1)] = value
print(globals())
x = 0
for i in reversed(globals()): print(i, "=", globals()[i]) x = x+1 if x == 5: break

Explanation: globals() function returns a dictionary containing all the variables in the global scope with the variable names as the key and the value assigned to the variable will be the value in the dictionary. You can reference this dictionary and add new variables by string name (globals()['a'] = 'b' sets variable a equal to "b"), however this is generally a terrible thing to do.

Since global returns a dictionary containing all the variables in the global scope, a workaround to get only the variables we assigned is to extract the last “N” key-value pairs from this dictionary where “N” is the length of the split string list.

Conclusion


I hope the solutions mentioned in this tutorial have helped you. Please stay tuned and subscribe for more interesting reads and solutions in the future. Happy coding!




https://www.sickgaming.net/blog/2022/11/...t-results/

Print this item

  (Indie Deal) Vorax Development update #1
Posted by: xSicKxBot - 11-26-2022, 06:37 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

  (Free Game Key) STAR WARS™: Squadrons - Free Epic Game
Posted by: xSicKxBot - 11-26-2022, 06:37 AM - Forum: Deals or Specials - No Replies

STAR WARS™: Squadrons - Free Epic Game

❤️ STAR WARS™: Squadrons
Store Page[store.epicgames.com]

The game is free to keep if claimed by Thursday, 1st December 2022 16:00 UTC

Next weeks freebies:
Fort Triumph

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...9363022980

Print this item

  News - Get An Awesome Pro-Style Xbox Controller For Only $50
Posted by: xSicKxBot - 11-26-2022, 06:37 AM - Forum: Lounge - No Replies

Get An Awesome Pro-Style Xbox Controller For Only $50

It's always handy to have a wired controller on standby, and for Black Friday, you can grab a great backup peripheral that also has a competitive edge to it. The PowerA Fusion Pro 2 for Xbox Series X|S normally sells for $90, but at Amazon, it's available for just $50.

No Caption Provided

The controller can also be used on PC thanks to the USB-C connection, and it features the usual array of buttons that you'd expect for an Xbox device, including the always useful Share button.

Continue Reading at GameSpot

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

Print this item

  PC - Football Manager 2023
Posted by: xSicKxBot - 11-26-2022, 06:37 AM - Forum: New Game Releases - No Replies

Football Manager 2023



In Football Manager 2023, it's not just about picking tactics or crafting a team. It's about taking on challenges and breaking new ground as you establish your own style.

Delve into unrivalled depth and detail as you take charge at your club. You'll join the elite by writing your own headlines, earning the love and respect of the fans and dominating the competition.

Publisher: Sega

Release Date: Nov 08, 2022




https://www.metacritic.com/game/pc/footb...nager-2023

Print this item

  [Tut] Easiest Way to Convert List of Hex Strings to List of Integers
Posted by: xSicKxBot - 11-25-2022, 11:54 AM - Forum: Python - No Replies

Easiest Way to Convert List of Hex Strings to List of Integers

5/5 – (1 vote)

? Question: Given a Python list of hexadecimal strings such as ['ff', 'ef', '0f', '0a', '93']. How to convert it to a list of integers in Python such as [255, 239, 15, 10, 147]?

Easiest Answer



The easiest way to convert a list of hex strings to a list of integers in Python is the list comprehension statement [int(x, 16) for x in my_list] that applies the built-in function int() to convert each hex string to an integer using the hexadecimal base 16, and repeats this for each hex string x in the original list.

Here’s a minimal example:

my_list = ['ff', 'ef', '0f', '0a', '93']
my_ints = [int(x, 16) for x in my_list] print(my_ints)
# [255, 239, 15, 10, 147]

The list comprehension statement applies the expression int(x, 16) to each element x in the list my_list and puts the result of this expression in the newly-created list.

The int(x, 16) expression converts a hex string to an integer using the hexadecimal base argument 16. A semantically identical way to write this would be int(x, base=16).

In fact, there are many more ways to convert a hex string to an integer—each of them could be used in the expression part of the list comprehension statement.

However, I’ll show you one completely different approach to solving this problem without listing each and every combination of possible solutions. ?

For Loop with List Append


You can create an empty list and add one hex integer at a time in the loop body after converting it from the hex string x using the eval('0x' + x) function call. This first creates a hexadecimal string with '0x' prefix using string concatenation and then lets Python evaluate the string as if it was real code and not a string.

Here’s an example:

my_list = ['ff', 'ef', '0f', '0a', '93'] my_ints = []
for x in my_list: my_ints.append(eval('0x' + x)) print(my_ints)
# [255, 239, 15, 10, 147]

You use the fact that Python automatically converts a hex value of the form 0xff to an integer 255:

>>> 0xff
255
>>> 0xfe
254
>>> 0x0f
15

You may want to check out my in-depth guide on this important function for our solution:

? Recommended Tutorial: Python eval()



https://www.sickgaming.net/blog/2022/11/...-integers/

Print this item

  (Indie Deal) BF Cashback 10%, FREE Larry 3D ending, Giveaways & more
Posted by: xSicKxBot - 11-25-2022, 11:54 AM - Forum: Deals or Specials - No Replies

BF Cashback 10%, FREE Larry 3D ending, Giveaways & more

Black Friday Cashback Sale
[www.indiegala.com]
Black Friday brings not only MASSIVE savings, new giveaways, surprise FREEbies & fresh gameplay challenge prizes, but also UNLIMITED cash back for all of your purchases. During this special period only, get a BONUS 10% CASHBACK in GalaCredit to spend on thousands of deals, here are just a few highlights:
https://www.youtube.com/watch?v=CMRBuagwRb4
Final Larry Freebie is about to be gone
[freebies.indiegala.com]
[www.indiegala.com]
https://youtu.be/AzDxERW_lK4


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

Print this item

  News - Netflix's Wednesday: Will Tim Burton Be Back For Season 2?
Posted by: xSicKxBot - 11-25-2022, 11:54 AM - Forum: Lounge - No Replies

Netflix's Wednesday: Will Tim Burton Be Back For Season 2?

Now that Wednesday is streaming on Netflix, viewers are getting to see what, exactly, a TV show directed by the legendary Tim Burton is like. Turns out that it's a silly, creepy, gothic thriller that harkens back to the director's glory days of the '80s and early '90s. While Burton only directed the first four episodes, he was very involved in bringing the show to life, even beyond the episodes he helmed, as an executive producer. What comes next, though?

While Wednesday has yet to be renewed for a second season, viewers have to be wondering if Burton would return to direct more episodes. While the answer isn't concrete just yet, it certainly sounds like the door is wide open for his return to the series.

Warning: The following contains mild spoilers for the Season 1 finale of Wednesday. If you haven't watched it yet, you should stop reading now.

Continue Reading at GameSpot

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

Print this item

  (Free Game Key) Garfield Kart - Furious Racing - Free Steam Game
Posted by: xSicKxBot - 11-25-2022, 11:54 AM - Forum: Deals or Specials - No Replies

Garfield Kart - Furious Racing - Free Steam Game

Garfield Kart - Furious Racing

- Login / Register on fanatical.com
- Subscribe to the fanatical newsletter
- Link steam account to fanatical in the settings (my guess is only unlimited steam accounts are valid)
- Go to the giveaway page:
- https://www.fanatical.com/en/game/garfield-kart-furious-racing?ref=gfg
- Add the game to cart, checkout
- Activate the game on your steam account as soon as possible

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...9362760784

Print this item

 
Latest Threads
Shein Coupon & Promo Cod...
Last Post: udwivedi923
7 hours ago
"Updated" Shein Coupon & ...
Last Post: udwivedi923
7 hours ago
"Updated" Shein Coupon & ...
Last Post: udwivedi923
7 hours ago
[40% OFF 【Shein Coupon &...
Last Post: udwivedi923
7 hours ago
[$200 OFF 【Shein Coupon ...
Last Post: udwivedi923
7 hours ago
[$300 OFF 【Shein Coupon ...
Last Post: udwivedi923
7 hours ago
[$50 OFF 【Shein Coupon &...
Last Post: udwivedi923
7 hours ago
"Updated" Shein Coupon & ...
Last Post: udwivedi923
7 hours ago
{SPECIAL} Shein Coupon Co...
Last Post: udwivedi923
7 hours ago
{SPECIAL} Shein Coupon Co...
Last Post: udwivedi923
7 hours ago

Forum software by © MyBB Theme © iAndrew 2016