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,127
» Latest member: imzt22darz
» Forum threads: 21,832
» Forum posts: 22,701

Full Statistics

Online Users
There are currently 736 online users.
» 1 Member(s) | 730 Guest(s)
Applebot, Baidu, Bing, Google, Yandex, imzt22darz

 
  (Indie Deal) HALLOWEEN Scratchy Sale with spooky treats
Posted by: xSicKxBot - 10-26-2022, 01:36 AM - Forum: Deals or Specials - No Replies

HALLOWEEN Scratchy Sale with spooky treats

https://www.youtube.com/watch?v=uTakymdvFRg
HALLOWEEN SCRATCHY SALE
[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.
[www.indiegala.com]
https://www.youtube.com/watch?v=0IO6Ou84VmI
Check out IndieGala on Twitter, YouTube & Facebook[www.facebook.com]


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

Print this item

  News - Dark Souls: Prepare To Die Servers PC Will Be Staying Offline
Posted by: xSicKxBot - 10-26-2022, 01:36 AM - Forum: Lounge - No Replies

Dark Souls: Prepare To Die Servers PC Will Be Staying Offline

Bandai Namco has announced that, thanks to an "aging" system, PC servers for Dark Souls: Prepare to Die Edition will remain offline. While this will bring an end to online functions for that game, PC servers for Dark Souls II: Scholar of the First Sin have been reactivated and online functions for the base edition of Dark Souls II and Dark Souls: Remastered will be restored in the future.

"We have determined that we will not be able to support online services for the PC version of Dark Souls: Prepare to Die Edition that was released in 2012, due to an aging system," Bandai Namco tweeted through the official Dark Souls account. "We apologize for the long wait and ask for your understanding in this matter."

Continue Reading at GameSpot

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

Print this item

  PC - Sunday Gold
Posted by: xSicKxBot - 10-26-2022, 01:36 AM - Forum: New Game Releases - No Replies

Sunday Gold



Once bustling and full of life, the city of London is in a dark and dismal state. Unemployment and homelessness are at an all-time high. Ethical boundaries are being stretched to their limit and corrupt billionaire, Kenny Hogan, is up to no good. It's up to ragtag band of criminals Frank, Sally, and Gavin, to put a wrench in Kenny Hogan's plans and bring him to his knees. But this is no simple job and there'll be a smattering of obstacles they'll have to face along the way...

Sunday Gold is a point-and-click, turn-based adventure game set in grim, dystopian future. Play as a ragtag trio of criminals to hunt down and expose the dark secrets of an evil mega-corporation and the malevolent billionaire behind it.

Publisher: Team17

Release Date: Oct 13, 2022




https://www.metacritic.com/game/pc/sunday-gold

Print this item

  [Tut] Solidity Bytes and String Arrays, Concat, Allocating Memory, and Array Literals
Posted by: xSicKxBot - 10-25-2022, 09:13 AM - Forum: Python - No Replies

Solidity Bytes and String Arrays, Concat, Allocating Memory, and Array Literals

Rate this post
YouTube Video

? With this article, we’ll discover a new and fascinating world of bytes and strings, as well as ways to manipulate them, allocate memory arrays, and use array literals.

It’s part of our long-standing tradition to make this (and other) articles a faithful companion, or a supplement to the official Solidity documentation, starting with these docs for this article’s topics.

Types bytes and string



Besides the arrays we’ve already discussed, there are also some unique arrays, such as bytes and string arrays.

We have to note that the bytes type is very similar to bytes1[], however, the difference is that a bytes array is tightly packed in memory areas calldata and memory.

Furthermore, string is equal to bytes, but does not have a length property or support for index access.

Solidity doesn’t have string manipulation functions compared to other commonly used programming languages, but this can be worked around by including third-party string libraries.

With vanilla Solidity, we can concatenate two strings, e.g. string.concat(s1, s2), and compare two strings by using their keccak-256 hash, e.g.

keccak256(abi.encodePacked(s1)) == keccak256(abi.encodePacked(s2)).

Regarding the preferred use (we could consider this a design pattern), the bytes type is better than bytes1[], because bytes1[] is more expensive due to padding additional 31 bytes between the elements when used in memory.

The padding is absent in storage because of the tight packing used (docs).

? Note: A rule of thumb says that bytes should be used for arbitrary-length raw byte data and string for arbitrary-length string data in UTF-8.

? Note: If our data can be stored in a variable containing a number of bytes up to 32, it is better to use one of the value types bytes1 ... bytes32, due to their low cost.

To access a byte representation of a string s, we could use the following construct: bytes(s)[7] = 'x'; with regard to the string length, bytes(s).length, e.g.

// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; /** * @title String modification * @dev Demonstrates how to modify a string represented as bytes. */
contract StringModification { string public s = "Some string"; function modifyString() public { bytes(s)[7]='Q'; }
}

? Note: By using this approach, we’re accessing bytes of the UTF-8 representation, not the individual characters.

Functions bytes.concat() and string.concat()



Concatenation is a synonym for joining or gluing together.

? Recommended Tutorial: String Concatenation in Solidity

String Concatenation


The function string.concat() enables us to concatenate any number of string values.

The result of using the string.concat() function is a single-string memory array containing the concatenated strings without any added spacing or padding.

If we’d like to use function parameters of other types that are not implicitly convertible to the string type, we first have to convert them to the string type.

Byte Concatenation


In the same manner, the bytes.concat() function enables us to concatenate any number of bytes or bytes1 ... bytes32 values.

The function result is a single bytes memory array containing the arguments without padding.

If we’d like to use string parameters or other types not implicitly convertible to bytes type, we first convert them to the bytes type.

Example


Let’s use an example to show how a function performs both string and bytes concatenation:

// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.12; contract C { string s = "Storage"; function f(bytes calldata bc, string memory sm, bytes16 b) public view { string memory concatString = string.concat(s, string(bc), "Literal", sm); assert((bytes(s).length + bc.length + 7 + bytes(sm).length) == bytes(concatString).length); bytes memory concatBytes = bytes.concat(bytes(s), bc, bc[:2], "Literal", bytes(sm), b); assert((bytes(s).length + bc.length + 2 + 7 + bytes(sm).length + b.length) == concatBytes.length); }
}

By calling bytes.concat(...) and string.concat(...) without arguments, a result is an empty array.

Allocating Memory Arrays


We can dynamically resize the storage arrays by adding elements via the .push() member function.

In contrast, memory arrays cannot be dynamically resized and the .push() member function is not available.

However, by using the alternative approach, we can create dynamic-length memory arrays by using the new operator. Just before using the new operator, we have to calculate the required size in advance or create a new, empty array and populate it by copying all elements.

? Note: Following the same rule of default values, the elements of freshly allocated arrays are initialized with their default values (docs).

Here we have an example showing arrays a and b, initialized by either a constant size or a parameter-given size.

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.16 <0.9.0; contract C { function f(uint len) public pure { uint[] memory a = new uint[](7); bytes memory b = new bytes(len); assert(a.length == 7); assert(b.length == len); a[6] = 8; }
}

Array Literals


Array literal is represented by a comma-separated list of any number of expressions, which are listed in square brackets, e.g. [1, a, f(3)].

The array literal type is determined in the following way:

  1. The array literal is a statically-sized memory array, and its length is the number of expressions listed in the brackets;
  2. The base type of the array is determined by the type of the first expression T in the list that satisfies the condition: all other expressions must be implicitly convertible to T. If it’s not possible to find such an expression, a type error is thrown;
  3. Besides the convertibility condition (point 2.), one of the expressions must be of the T type.

The following example will clarify what the points above mean; the type of an array literal [1, 2, 3] is uint8[3] memory, because each of the expressions is of type uint8.

If we want to change the result to type uint[3] memory, we have to convert the first element to uint.

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.16 <0.9.0; contract C { function f() public pure { g([uint(1), 2, 3]); } function g(uint[3] memory) public pure { // ... }
}

In contrast, the array literal [1, -2] is invalid because it doesn’t comply with point 2., stating that the first expression’s type is a target type T for implicit conversion of other expressions.

Since our first expression is of type uint8, and the second expression is of type int8 (including the negative numbers), the second expression cannot be implicitly converted to uint8.

To avoid a type error, we can declare our array literal as [int8(1), -1], forcing the first expression to be of compatible type int8.

In a more specific case of using, e.g. two-dimensional array literals, we’d step on a problem of fixed-size memory arrays that cannot be converted into each other, regardless of the compatibility of base types.

We can get around this problem by explicitly specifying a common base:

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.16 <0.9.0; contract C { function f() public pure returns (uint24[2][4] memory) { uint24[2][4] memory x = [[uint24(0x1), 1], [0xffffff, 2], [uint24(0xff), 3], [uint24(0xffff), 4]]; // The following does not work, because some of the inner arrays are not of the right type. // uint[2][4] memory x = [[0x1, 1], [0xffffff, 2], [0xff, 3], [0xffff, 4]]; return x; }
}

We cannot assign fixed-size memory arrays to dynamically-sized memory arrays, as shown by the example:

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.0 <0.9.0; // This will not compile.
contract C { function f() public { // The next line creates a type error because uint[3] memory // cannot be converted to uint[] memory. uint[] memory x = [uint(1), 3, 4]; }
}

To initialize dynamically-sized arrays, we’d have to resort to assigning the elements individually, as in the example:

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.16 <0.9.0; contract C { function f() public pure { uint[] memory x = new uint[](3); x[0] = 1; x[1] = 3; x[2] = 4; }
}

Conclusion


In this article, we learned even more about reference types, in particular, bytes and string arrays and concatenation, memory array allocation, and array literals.

  1. First, we explained the uniqueness of the arrays based on bytes and string types, and also touched on some of the similarities with the akin types.
  2. Second, we’ve peeked into how to do string concatenation, comparison, and bytes concatenation.
  3. Third, we discovered the specifics of allocating memory arrays and got introduced to the new operator.
  4. Fourth, we got to know array literals with rules for determining the array literal base type. We also became aware of the invalid array literals and what can be done to make them valid.

What’s Next?


This tutorial is part of our extended Solidity documentation with videos and more accessible examples and explanations. You can navigate the series here (all links open in a new tab):



https://www.sickgaming.net/blog/2022/10/...-literals/

Print this item

  (Indie Deal) Fantasy Idols Bundle, HITMAN Deals, Cities Radio Raffles
Posted by: xSicKxBot - 10-25-2022, 09:13 AM - Forum: Deals or Specials - No Replies

Fantasy Idols Bundle, HITMAN Deals, Cities Radio Raffles

Cities Radio Giveaways
[www.indiegala.com]

Fantasy Idols Bundle | 14 Adult Games | 94% OFF
[www.indiegala.com]
Behold our biggest and most exquisite erotic game selection for daring anime fans & idol connoisseurs. (Adult 18+)

HITMAN, Fireshine, Akupara Sales
[www.indiegala.com]
Pre-Order: Hearts of Iron IV: By Blood Alone
[www.indiegala.com]
https://www.youtube.com/watch?v=KzPi2mGjP4M
Happy Hour: Jazzy Beats #2 Bundle
[www.indiegala.com]
Gloomhaven - Solo Scenarios: Mercenary Challenges
https://www.youtube.com/watch?v=UJeVYYfYyM4
New Release![www.indiegala.com]


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

Print this item

  PC - CULTIC
Posted by: xSicKxBot - 10-25-2022, 09:12 AM - Forum: New Game Releases - No Replies

CULTIC



Death is only the beginning. Crawl from your grave and gear up to fight your way through the ranks of a mysterious and twisted cult. You, your guns, and your dynamite will have to shoot, slide, blast, duck, dodge, and maybe throw a gib or two to survive in this old-school-inspired shooter.

Publisher: 3D Realms

Release Date: Oct 13, 2022




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

Print this item

  [Tut] How to Convert Pandas DataFrame/Series to NumPy Array?
Posted by: xSicKxBot - 10-24-2022, 02:13 PM - Forum: Python - No Replies

How to Convert Pandas DataFrame/Series to NumPy Array?

5/5 – (1 vote)

? Programming Challenge: Given a Pandas DataFrame or a Pandas Series object. How to convert them to a NumPy array?

How to Convert Pandas DataFrame/Series to NumPy Array?

In this short tutorial, you’ll learn (1) how to convert a 1D pandas Series to a NumPy array, and (2) how to convert a 2D pandas DataFrame to an array. Let’s get started with the first! ?

Convert Pandas Series to NumPy Array


First, let’s create a Pandas Series.

import pandas as pd # create dataframe df df = pd.Series([22,21,20,14], name= 'GSTitles', index= ['Nadal','Djokovic','Federer','Sampras'])
print(df)

Here’s the resulting Series df:

Nadal 22
Djokovic 21
Federer 20
Sampras 14
Name: GSTitles, dtype: int64

Now that we have our Pandas Series, you can convert this to a NumPy Array using the DataFrame.to_numpy() method.

Like so:

print(df.to_numpy())
# [22 21 20 14]

The resulting object is a NumPy array:

print(type(df.to_numpy()))
# <class 'numpy.ndarray'>

⚡ Attention: There is also the .values() method, but that is being deprecated now – when you look at the Pandas documentation, there is a warning “We recommend using DataFrame.to_numpy instead”.

With this method, only the values in the DataFrame or Series will return. The index labels will be removed.

Here’s how that’ll work:

print(df.values)
# [22 21 20 14]

This was a 1-dimensional array or a Series. Let’s move on to the 2D case next. ???

Convert DataFrame to NumPy Array


? Question: Let’s try with a two-dimensional DataFrame — how to convert it to a NumPy array?

First, let’s print the dimension of the previous Series to confirm that it was, indeed, a 1D data structure:

print(df.ndim)
# 1

Next, you create a 2D DataFrame object:

import pandas as pd # Create a 2D DataFrame object
df2 = pd.DataFrame(data={'Nadal': [2, 14, 2, 4], 'Djokovic': [9, 2, 7, 3], 'Federer': [6, 1, 8, 5], 'Sampras': [2, 0, 7, 5]}, index=['AO', 'F', 'W', 'US']) print(df2)

Here’s the resulting DataFrame:


Nadal Djokovic Federer Sampras
AO 2 9 6 2
F 14 2 1 0
W 2 7 8 7
US 4 3 5 5

Now, let’s dive into the conversion of this DataFrame to a NumPy array by using the DataFrame.to_numpy() method.

# Convert this DataFrame to a NumPy array
print(df2.to_numpy())

The output shows a NumPy array from the 2D DataFrame — great! ?

[[ 2 9 6 2] [14 2 1 0] [ 2 7 8 7] [ 4 3 5 5]]

You can see that all indexing metadata has been stripped away from the resulting NumPy array!

Convert Specific Columns from DataFrame to NumPy Array


You can also convert specific columns of a Pandas DataFrame by accessing the columns using pandas indexing and calling the .to_numpy() method on the resulting view object.

Here’s an example:

print(df2[['Djokovic', 'Federer']].to_numpy())

The output:

[[9 6] [2 1] [7 8] [3 5]]

Summary


You can convert a Pandas DataFrame or a Pandas Series object to a NumPy array by means of the df.to_numpy() method. The indexing metadata will be removed.

You can also convert specific columns of a Pandas DataFrame by accessing the columns using pandas indexing and calling the .to_numpy() method on the resulting view object.


Thanks for reading through the whole tutorial! ?



https://www.sickgaming.net/blog/2022/10/...mpy-array/

Print this item

  (Indie Deal) FREE SuperTotalCarnage, Uncharted, Anno & Tropico Deals
Posted by: xSicKxBot - 10-24-2022, 02:12 PM - Forum: Deals or Specials - No Replies

FREE SuperTotalCarnage, Uncharted, Anno & Tropico Deals

SuperTotalCarnage FREEbie
[supertotalcarnage.indiegala.com]
Welcome to SuperTotalCarnage, our new a fast-paced time survival game where you face endless enemies! This new freebie is up for an indefinite period of time, in anticipation of the Steam early access release coming soon.

https://www.youtube.com/watch?v=eYJMMLg2FpU
Overcooked & Tropico & Anno Sales
[www.indiegala.com]
https://www.youtube.com/watch?v=pIvZzyzGEhs
Check out IndieGala on Twitter, YouTube & Facebook[www.facebook.com]


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

Print this item

  News - How Long Is Call Of Duty: Modern Warfare 2's Campaign?
Posted by: xSicKxBot - 10-24-2022, 02:12 PM - Forum: Lounge - No Replies

How Long Is Call Of Duty: Modern Warfare 2's Campaign?

Call of Duty: Modern Warfare 2's campaign is currently available in early access, featuring the familiar face of Captain Price and a fully-assembled Task Force 141 on a brand-new blockbuster mission to stop stolen missiles from being used in a revenge plot against the United States. If you're looking to set aside some time to play Modern Warfare 2's campaign, here's everything you need to know.

How long does it take to beat CoD: MW2's campaign?

Call of Duty: Modern Warfare 2's campaign includes 17 story missions, and you can expect to carve out around five to six hours of game time to complete the campaign on the Regular "normal" difficulty setting. This doesn't steer too far away from Modern Warfare 2019, which featured a campaign length of about 5 hours.

For my first experience, playing Modern Warfare 2 on Regular difficulty did take me a bit beyond the six-hour mark, and that's longer than my usual campaign efforts. This year's story features some missions that are less linear than we've seen in previous campaigns, as you sometimes have more open-world environments to explore and choose how you want to approach your objectives.

Continue Reading at GameSpot

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

Print this item

  PC - The Case of the Golden Idol
Posted by: xSicKxBot - 10-24-2022, 02:12 PM - Forum: New Game Releases - No Replies

The Case of the Golden Idol



The Case of the Golden Idol is a wryly amusing detective game set in the 18th century, brought to life with striking hand-drawn artwork. The game tests your ability to piece together clues and reconstruct the events leading up to some mysterious deaths.

Investigate a series of mysterious deaths. Explore hand-drawn locations set in the 18th century, where some mysterious deaths have taken place.

Reconstruct the events with a unique drag-and-drop mechanic. Gather verbal evidence and visual clues, then apply your deduction skills to figure out what actually happened and how each victim died.

Explore a greater mystery that spans centuries. Start revealing a larger overarching story that connects all the individual tales.

Publisher: Playstack

Release Date: Oct 13, 2022




https://www.metacritic.com/game/pc/the-c...olden-idol

Print this item

 
Latest Threads
Temu Coupon Code 30% Off ...
Last Post: imzt22darz
1 minute ago
[Verified] £100 Off Temu ...
Last Post: imzt22darz
2 minutes ago
(Indie Deal) Free Blackli...
Last Post: xSicKxBot
39 minutes ago
News - Xbox’s New Plan Af...
Last Post: xSicKxBot
39 minutes ago
Insta360 USA Coupon [INRS...
Last Post: tomen77
3 hours ago
Insta360 Coupon For Stude...
Last Post: tomen77
3 hours ago
Insta360 Content Creator ...
Last Post: tomen77
3 hours ago
Save 5% on Insta360 Produ...
Last Post: tomen77
3 hours ago
Insta360 Ace Pro 2 Promo ...
Last Post: tomen77
3 hours ago
Insta360 Coupon For Vlogg...
Last Post: tomen77
3 hours ago

Forum software by © MyBB Theme © iAndrew 2016