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,193
» Latest member: juhujbj
» Forum threads: 22,087
» Forum posts: 22,974

Full Statistics

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

 
  Microsoft - CVP Rik van der Kooi on Black History Month: Leaning in
Posted by: xSicKxBot - 02-18-2020, 12:41 PM - Forum: Windows - No Replies

CVP Rik van der Kooi on Black History Month: Leaning in

White, Dutch, male and writing about Black History Month?

As an executive at Microsoft, a resident of the United States and a human being, it is important to me to use my voice to support the many communities around me, to give back, to empower others and to be a catalyst for change. It was with that idea in mind that I reached out to Kathleen Hogan, our executive vice president of Human Resources some years ago and asked if I could be a sponsor for the Employee Resource Group that supports our black and African American community at Microsoft called Blacks at Microsoft (BAM).

Being part of BAM for the last three years as co-sponsor has been an absolute honor and a privilege. Thanks to the generosity of the BAM community, I have had the opportunity to listen and learn much more directly about what’s top of mind for the community and explore my own understandings and assumptions. I’ve learned things about black history in the United States that I knew embarrassingly little about. And I’ve been deeply impressed with the cohesion and support BAM members provide each other and the external community. For me, the opportunity to influence others by actively participating in events and tune in to learn from others, to speak up when I observe behaviors inconsistent with our values or beliefs on inclusion, and to amplify stories that need to be told to help address injustices in society is some of the most rewarding work I have done while at Microsoft.

Black History Month, in the U.S. and Canada, is an opportunity for all of us to “knock on the door” to increase our awareness and understanding – from African history to slavery to the Jim Crow South to the civil rights movement to present-day inequities. It is also an opportunity to recognize and honor more recent examples of achievement from the black community and to reflect on what it means to create a truly equitable society.

I encourage everyone – community member or ally – to set aside some time this month to better understand black history, to be intentionally inclusive and to get acquainted with those who are different, with the intention of deepening empathy and understanding. In doing so, we become aware of our own biases, get curious about other points of view and gain the courage to have challenging conversations. Let every Black History Month be an opportunity to understand a little more, to be more connected and to deepen our sense of community.

Tags: , ,



https://www.sickgaming.net/blog/2020/02/...eaning-in/

Print this item

  Fedora - How to get MongoDB Server on Fedora
Posted by: xSicKxBot - 02-18-2020, 12:41 PM - Forum: Linux, FreeBSD, and Unix types - No Replies

How to get MongoDB Server on Fedora

Mongo (from “humongous”) is a high-performance, open source, schema-free document-oriented database, which is one of the most favorite so-called NoSQL databases. It uses JSON as a document format, and it is designed to be scalable and replicable across multiple server nodes.

Story about license change


It’s been more than a year when the upstream MongoDB decided to change the license of the Server code. The previous license was GNU Affero General Public License v3 (AGPLv3). However, upstream wrote a new license designed to make companies running MongoDB as a service contribute back to the community. The new license is called Server Side Public License (SSPLv1) and more about this step and its rationale can be found at MongoDB SSPL FAQ.

Fedora has always included only free (as in “freedom”) software. When SSPL was released, Fedora determined that it is not a free software license in this meaning. All versions of MongoDB released before the license change date (October 2018) could be potentially kept in Fedora, but never updating the packages in the future would bring security issues. Hence the Fedora community decided to remove the MongoDB server entirely, starting Fedora 30.

What options are left to developers?


Well, alternatives exist, for example PostgreSQL also supports JSON in the recent versions, and it can be used in cases when MongoDB cannot be used any more. With JSONB type, indexing works very well in PostgreSQL with performance comparable with MongoDB, and even without any compromises from ACID.

The technical reasons that a developer may have chosen MongoDB did not change with the license, so many still want to use it. What is important to realize is that the SSPL license was only changed to the MongoDB server. There are other projects that MongoDB upstream develops, like MongoDB tools, C and C++ client libraries and connectors for various dynamic languages, that are used on the client side (in applications that want to communicate with the server over the network). Since the license is kept free (Apache License mostly) for those packages, they are staying in Fedora repositories, so users can use them for the application development.

The only change is really the server package itself, which was removed entirely from Fedora repos. Let’s see what a Fedora user can do to get the non-free packages.

How to install MongoDB server from the upstream


When Fedora users want to install a MongoDB server, they need to approach MongoDB upstream directly. However, the upstream does not ship RPM packages for Fedora itself. Instead, the MongoDB server is either available as the source tarball, that users need to compile themselves (which requires some developer knowledge), or Fedora user can use some compatible packages. From the compatible options, the best choice is the RHEL-8 RPMs at this point. The following steps describe, how to install them and how to start the daemon.

1. Create a repository with upstream RPMs (RHEL-8 builds)


 
$ sudo cat > /etc/yum.repos.d/mongodb.repo <<EOF
[mongodb-upstream]
name=MongoDB Upstream Repository
baseurl=https://repo.mongodb.org/yum/redhat/8Server/mongodb-org/4.2/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-4.2.asc
EOF

2. Install the meta-package, that pulls the server and tools packages


 
$ sudo dnf install mongodb-org
<snipped>
Installed:
  mongodb-org-4.2.3-1.el8.x86_64           mongodb-org-mongos-4.2.3-1.el8.x86_64  
  mongodb-org-server-4.2.3-1.el8.x86_64    mongodb-org-shell-4.2.3-1.el8.x86_64
  mongodb-org-tools-4.2.3-1.el8.x86_64          

Complete!

3. Start the MongoDB daemon


 
$ sudo systemctl status mongod
● mongod.service - MongoDB Database Server
   Loaded: loaded (/usr/lib/systemd/system/mongod.service; enabled; vendor preset: disabled)
   Active: active (running) since Sat 2020-02-08 12:33:45 EST; 2s ago
     Docs: https://docs.mongodb.org/manual
  Process: 15768 ExecStartPre=/usr/bin/mkdir -p /var/run/mongodb (code=exited, status=0/SUCCESS)
  Process: 15769 ExecStartPre=/usr/bin/chown mongod:mongod /var/run/mongodb (code=exited, status=0/SUCCESS)
  Process: 15770 ExecStartPre=/usr/bin/chmod 0755 /var/run/mongodb (code=exited, status=0/SUCCESS)
  Process: 15771 ExecStart=/usr/bin/mongod $OPTIONS (code=exited, status=0/SUCCESS)
 Main PID: 15773 (mongod)
   Memory: 70.4M
      CPU: 611ms
   CGroup: /system.slice/mongod.service
           └─15773 /usr/bin/mongod -f /etc/mongod.conf

4. Verify that the server runs by connecting to it from the mongo shell


 
$ mongo
MongoDB shell version v4.2.3
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("20b6e61f-c7cc-4e9b-a25e-5e306d60482f") }
MongoDB server version: 4.2.3
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
    http://docs.mongodb.org/
---

> _

That’s all. As you see, the RHEL-8 packages are pretty compatible and it should stay that way for as long as the Fedora packages remain compatible with what’s in RHEL-8. Just be careful that you comply with the SSPLv1 license in your use.



https://www.sickgaming.net/blog/2020/02/...on-fedora/

Print this item

  News - Nvidia Reveals Cyberpunk 2077 RTX 2080 Ti, But You Can't Buy One
Posted by: xSicKxBot - 02-18-2020, 12:41 PM - Forum: Lounge - No Replies

Nvidia Reveals Cyberpunk 2077 RTX 2080 Ti, But You Can't Buy One

Update: Nvidia has revealed the special edition Cyberpunk 2077 RTX 2080 Ti, which features the familiar Founder's Edition cooler design with bright yellow accents and the game's logo on the back. Only 77 cards are being made, with all of them being given away by Nvidia through the competition below. Nvidia says you won't be able to purchase these.

Original story as follows:

PC hardware manufacturer Nvidia is teasing a special edition Cyberpunk 2077 GPU, according to a series of tweets between their respective Twitter accounts.

Continue Reading at GameSpot

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

Print this item

  (Indie Deal) Disney 24H Flash Sale (EMEA)
Posted by: xSicKxBot - 02-18-2020, 06:39 AM - Forum: Deals or Specials - No Replies

Disney 24H Flash Sale (EMEA)

Disney, Star Wars, LucasArts Sale (EMEA), up to 75% OFF
[www.indiegala.com]
Join your favorite Disney heroes or villains in breathtaking adventures today! Don't miss this 24h FLASH SALE. Here are some highlights:

Disney Cars Classics[www.indiegala.com] $9.99 | €9.24 | £7.49 | 75%
Disney Extreme Racing Pack[www.indiegala.com] $7.49 | €6.99 | £5.74 | 75%
Disney Flight and Racing[www.indiegala.com] $9.99 | €9.24 | £7.49 | 75%
Disney Mega Pack[www.indiegala.com] $27.49 | €25.62 | £20.99 | 75%
Disney Mega Pack: Wave 2[www.indiegala.com] $14.99 | €13.74 | £11.24 | 75%
Disney Mickey's Typing Adventure[www.indiegala.com] $4.99 | €4.99 | £3.74 | 75%
Disney Other-Worldly Adventure Pack[www.indiegala.com] $17.49 | €16.24 | £13.24 | 75%
Disney Princess and Fairy Pack[www.indiegala.com] $12.49 | €11.49 | £7.49 | 75%
Disney Sky is Falling Pack[www.indiegala.com] $6.24 | €5.74 | £4.74 | 75%
Disney Toy Story Pack[www.indiegala.com] $7.49 | €6.99 | £5.74 | 75%
LucasArts Adventure Pack[www.indiegala.com] $4.49 | €2.69 | £2.09 | 70%
Lucasarts Jedi Knight Bundle[www.indiegala.com] $4.99 | €4.99 | £3.74 | 75%
Monkey Island: Special Edition Bundle[www.indiegala.com] $3.74 | €3.74 | £2.74 | 75%
Phineas and Ferb: New Inventions[www.indiegala.com] $4.99 | €4.99 | £3.74 | 75%
Star Wars Classics Collection[www.indiegala.com] $9.99 | €9.99 | £7.49 | 75%
Star Wars Collection[www.indiegala.com] $24.99 | €23.24 | £18.99 | 75%
TRON RUN/r: Ultimate Edition[www.indiegala.com] $9.99 | €9.24 | £7.49 | 75%

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


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

Print this item

  The Forge
Posted by: xSicKxBot - 02-18-2020, 02:13 AM - Forum: Game Development - No Replies

The Forge

Previously we looked at OpenGL alternatives shortly after OpenGL on Apple products was deprecated.  One of the technologies we mentioned was The Forge, a cross platform rendering solution.  It is an open source cross platform rendering framework with several game development building blocks created by Confetti.

In addition to taking are of the low level details of working with Direct3D and Vulkan, the Forge provides the following features:

  • Asynchronous Resource loading with a resource loader task system as shown in 10_PixelProjectedReflections
  • Lua Scripting System – currently used in 06_Playground to load models and textures and animate the camera
  • Animation System based on Ozz Animation System
  • Consistent Math Library based on an extended version of Vectormath with NEON intrinsics for mobile platforms
  • Extended version of EASTL
  • For loading art assets we have a modified and integrated version of Assimp
  • Consistent Memory Managament:
  • Input system with Gestures for Touch devices based on an extended version of gainput
  • Fast Entity Component System based on our internally developed ECS
  • Cross-platform FileSystem C API, supporting disk-based files, memory streams, and files in zip archives
  • UI system based on imGui with a dedicated unit test extended for touch input devices
  • Audio based on integrating SoLoud
  • Shader Translator using a superset of HLSL as the shader language. There is a Wiki page on how to use the Shader Translator
  • Various implementations of high-end Graphics Effects as shown in the unit tests below

The Forge is open source under the Apache 2.0 license and is hosted on GitHub.  You can learn more about The Forge in the video below.

[youtube https://www.youtube.com/watch?v=uFDa4M4ZBPs&w=853&h=480]

GameDev News


<!–

–>



https://www.sickgaming.net/blog/2020/02/05/the-forge/

Print this item

  News - Coronavirus Could Put Nintendo Switch in Short Supply
Posted by: xSicKxBot - 02-18-2020, 02:13 AM - Forum: Lounge - No Replies

Coronavirus Could Put Nintendo Switch in Short Supply

If you've yet to buy a Nintendo Switch, don't wait much longer. Nintendo will likely struggle to keep the system in supply this year as it struggles with component issues caused by the coronavirus.

According to Bloomberg, Nintendo's issues are primarily in Vietnam, where it has an assembly partner that requires components via China. Should the component shortage not be resolved soon, the console would run into supply issues by April. This could be just after the launch of Animal Crossing: New Horizons.

The Bloomberg report said that component issues could continue for a few more weeks before Chinese factories are expected to resume full operation. Thus far, more than 1,700 people have died from the virus, primarily within mainland China.

Continue Reading at GameSpot

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

Print this item

  [Tut] Python AND Operator On Two Objects or Lists [What’s The Result?]
Posted by: xSicKxBot - 02-17-2020, 04:47 PM - Forum: Python - No Replies

Python AND Operator On Two Objects or Lists [What’s The Result?]

You may already know Python’s and operator when applied to two Booleans:

>>> True and False
False
>>> True and True
True

Simple enough. Yet, that’s not the whole story: you can use the and operator even on complex data types such as lists or custom objects. So you may ask (and rightly so):

What If You Apply the AND Operator To Two Objects?


To understand the output, you have to understand two things:

  • How does the and operator work?
  • What’s the truth value of any object – such as a list?

Let’s answer those two questions quickly.

How does the and operator work?

Let’s start with the official documentation for Boolean operators:


Operation Definitions
x or y if x is false, then y, else x
x and y if x is false, then x, else y
not x if x is false, then True, else False

You must understand the deeper meaning of those definitions: all of them are short-circuit which means that as soon as the condition is fullfilled, they will abort further processing.

In the x and y operation, if the value of x is evaluated to True, Python simply returns the value of y. It doesn’t even look at what the value of y actually is. If you’re using Boolean operators x and y, this is expected behavior because if x is True, then the y determines whether x and y is True.

This leads to the interesting behavior: if x and y are objects, the result of the operation x and y will be an object, too! (And not a Boolean value.)

In combination with the next piece of Python knowledge, this leads to an interesting behavior:

What’s the truth value of any object – such as a list?

The Python convention is simple: if the object is “empty”, the truth value is False. Otherwise, it’s True. So an empty list, an empty string, or a 0 integer value are all False. Most other values will be True.

Now, you’re equipped with the basics to understand the answer to the following question:

What If You Apply the AND Operator To Two Objects?

Say, you’ve got two non-Boolean objects x and y. What’s the result of the operation x and y?

The answer is simple: the result is y if x is non-empty (and, thus, evaluates to True).

What If You Apply the AND Operator To Two Lists?

Here’s an example for two list objects:

>>> [1, 2, 3] and [0, 0, 0, 0]
[0, 0, 0, 0]

The first argument of the and operation is non-empty and evaluates to True. Therefore, the result of the operation is the second list argument [0, 0, 0, 0].

But what if the first argument is empty?

>>> [] and [0, 0, 0, 0]
[]

The result is the first argument (and not a Boolean value False). If you’re in doubt why, consult the above definition again:

x and y: if x is false, then x, else y

Summary


You’ve learned that the and operator returns the first operand if it evaluates to False, otherwise the second operand.

You’ve also learned that you can use the and operator even for non-Boolean types in which case the result will be an object, not a Boolean value.

Finally, you’ve also learned that an empty object usually evaluates to False.

If you find this interesting, feel free to check out my upcoming Python book that shows you hundreds of small Python tricks like this one:


Python One-Liners [No Starch Press]

Get your book!



https://www.sickgaming.net/blog/2020/02/...he-result/

Print this item

  (Indie Deal) ?ACE COMBAT 7 & TEKKEN 7 Jacks + GalaQuiz
Posted by: xSicKxBot - 02-17-2020, 04:47 PM - Forum: Deals or Specials - No Replies

?ACE COMBAT 7 & TEKKEN 7 Jacks + GalaQuiz

TEKKEN 7 at 75% OFF
[www.indiegala.com]
A well balanced fighting game featuring a diversity of characters at a strong discount!

ACE COMBAT 7: SKIES UNKNOWN, a historical deal!
[www.indiegala.com]
Aerial combat has never been priced, looked or felt better!

The 136th GalaQuiz will be LIVE soon, win up to $100:dollars: in GalaCredit!
[www.indiegala.com]
The GalaQuiz will take place in less than 10 minutes from this announcement
Today's GalaQuiz[www.indiegala.com] hints are up. The theme will be Oscars 2020.

Happy Hour
Today's Happy Hour is LIVE for Honeymoon on Mars Bundle[www.indiegala.com]!

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


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

Print this item

  Unreal Engine February 2020 Marketplace Giveaway
Posted by: xSicKxBot - 02-17-2020, 04:47 PM - Forum: Game Development - No Replies

Unreal Engine February 2020 Marketplace Giveaway

It’s the first Tuesday of the month, meaning its time for the monthly Unreal Engine Marketplace giveaway! Every month Epic Games gives away several assets from the Unreal Engine marketplace, so long as the assets are “purchased” before the start of next month’s giveaway.

The February 2020 giveaway includes:

· Amplify LUT Pack

· Auto Settings

· Combat Systems – Constructor

· First Person Puzzle Template

· Open World AI Spawn System

Additionally, the following asset has been made available as part of the permanently free collection:

· Advanced Locomotion System V4

You can learn more about the monthly giveaway on the Unreal Engine blog and by watching the video available below.

[youtube https://www.youtube.com/watch?v=uDaVZM-iYIs&w=853&h=480]

GameDev News


<!–

–>



https://www.sickgaming.net/blog/2020/02/...-giveaway/

Print this item

  AppleInsider - Apple Music Replay has been updated to create a 2020 Replay playlist
Posted by: xSicKxBot - 02-17-2020, 04:47 PM - Forum: Apples Mac and OS X - No Replies

Apple Music Replay has been updated to create a 2020 Replay playlist

 

Apple Music’s Replay service generates a curated playlist based on your year of listening so far, and has just been updated to support 2020.

The website still features the 2019 playlist, but the 2020 playlist is found at the bottom of the page

The website still features the 2019 playlist, but the 2020 playlist is found at the bottom of the page

After missing out on the month of January, Apple Music appears to be ready for 2020’s Replay. Used to generate a top 100 playlist, the service uses your listening history to update the playlist every Sunday through the year. This is a unique feature when compared to Spotify’s own “Wrapped” service, which only provides the playlist and other data at the end of the year.

Apple first released Replay in November of 2019. The service uses Apple’s beta Apple Music website to generate the playlist for the first time. From here users can add all the playlists available back to the 2015 launch of Apple Music. The older playlists are interesting as they are no longer updated after the year ends, and provide a unique insight to your taste in music for a given year.

Since it is so early in the year, some users may not have enough history to populate a full playlist. My own 2020 Replay has only 68 songs.

Apple Music is one of Apple’s subscription services and has become a very important source of income for the company. Expect more updates to come as they continue to compete against Spotify.



https://www.sickgaming.net/blog/2020/02/...-playlist/

Print this item

 
Latest Threads
[BiGeSt] Temu Discount C...
Last Post: juhujbj
1 hour ago
[BiGeSt] Temu Coupon Cod...
Last Post: juhujbj
1 hour ago
[BiGeSt] Temu Coupon Cod...
Last Post: juhujbj
1 hour ago
[BiGeSt] Temu Coupon Cod...
Last Post: juhujbj
1 hour ago
[BiGeSt] Temu Coupon Cod...
Last Post: juhujbj
1 hour ago
[BiGeSt] Temu Coupon Cod...
Last Post: juhujbj
1 hour ago
TℰℳU Promo Code ⌈ALD8299...
Last Post: juhujbj
1 hour ago
[BesT ►{{90% off}}Temu Di...
Last Post: das210
1 hour ago
Today's TℰℳU Coupon Code...
Last Post: juhujbj
1 hour ago
Today's TℰℳU Coupon Code...
Last Post: juhujbj
1 hour ago

Forum software by © MyBB Theme © iAndrew 2016