Re: need advice on getting a new computer

2020-09-28 Thread AudioGames . net Forum — Off-topic room : simba via Audiogames-reflector


  


Re: need advice on getting a new computer

Good morning.If you decide to go the Mac side in combination with Windows, I would shell out the extra money and get a MacBook Pro instead of the Air.You see, I currently have a MBA for testing and if you do more intense things with it, you really notice that it's just a machine for light work such as surfing, word processing and what not.Also, if you say that the machine should have decent performance, do keep in mind that if the computer has to be light weight and portable, you will always have compromises.The 2020 MBA has an i7 configuration for example, but when you run it through benchmarks, it can't even use all the power the i7 has to offer and the machine starts throttling immediately.The MacBook Pro, or MBP is also as portable as the MBA, maybe half a centimeter thicker than the MBA, but has more processor cores and the cooling unit is generally positioned better, so you can actually use the performance the machine has to offer.If you want to dual boot, get a large enough SSD, or put Windows on an external SSD if that is possible.I haven't checked the surface pro, but again, if you need more performance, try looking at the surface book. The most recent one is the Surface Book 3, but reading reviews, the version 2 is still as performant as ever and the new one doesn't really hold any advantages, so you can get the v2 for cheaper.Hope I could help a bit.Greetings moritz.

URL: https://forum.audiogames.net/post/575268/#p575268




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : hanif via Audiogames-reflector


  


Re: Copypasta thread

Although primarily known for playing Hikaru Sulu in the television series Star Trek (1966) and the first six features, George Takei has had a varied career acting in television, feature films, live theater and radio. He also is a successful writer and community activist.George Takei was born Hosato Takei on April 20, 1937, in Boyle Heights, Los Angeles, California. His mother, Fumiko Emily (Nakamura), was born in Sacramento, to Japanese parents, and his father, Takekuma Norman Takei, worked in real estate and was born in Japan's Yamanashi Prefecture. Following the attack on Pearl Harbor, George and his family were relocated from Los Angeles to the Rohwer Relocation Center in Arkansas, and later, as the war was ending they were moved to a camp at Tule Lake in Northern California. Takei's first-hand knowledge of the unjust internment of 120,000 Japanese Americans in World War II, poignantly chronicled in his autobiography, created a lifelong interest in politics and community affairs. After graduating from Los Angeles High School in 1956, George studied architecture at UC Berkeley. An ad in a Japanese community paper led to a summer job on the MGM lot dubbing eight characters from Japanese into English for Sora no daikaijû Radon (1956) (aka "Rodan"). With the acting bug kindled in him, he transferred to UCLA as a theater arts major. Contacting an agent he had met at MGM led to Takei's appearance as an embittered soldier in postwar Japan in the Playhouse 90 (1956) production "Made in Japan" even before starting classes at UCLA. Being spotted in a UCLA theater production by a Warner Bros. casting director led to George's feature film debut in Ice Palace (1960), various roles in Hawaiian Eye (1959) and other feature work. In June 1960, he completed his degree at UCLA and studied that summer at the Shakespeare Institute at Stratford-Upon-Avon in England.After starting a Master's degree program at UCLA, George was cast in the socially relevant stage musical production, "Fly Blackbird!" but was replaced when the show moved to New York. He took odd jobs until returning to his role at the end of the run. Getting little work in Manhattan, George returned to Los Angeles to continue his studies at UCLA, once again appearing in television series and feature films. He earned his Master's degree in 1964. Wanting a multi-racial crew, Gene Roddenberry cast him in "Where No Man Has Gone Before", the second Star Trek (1966) pilot. Mr. Sulu remained as a regular character when the series went into production. In the hiatus after the end of shooting the first season, he worked on The Green Berets (1968), playing a South Vietnamese Special Forces officer.After Star Trek (1966) was cancelled, Takei did guest stints in several television series, voiced Sulu for the animated Star Trek series and regularly appeared at Star Trek conventions. He also produced and hosted a public affairs show, "_expression_ East/West" aired in Los Angeles from 1971 to 1973. In 1973, he ran for the Los Angeles City Council. Although he lost by a small margin, Mayor Tom Bradley appointed him to the board of directors of the Southern California Rapid Transit District, where he served until 1984 and contributed to plans for the subway. During this period, he co-wrote a sci-fi novel, "Mirror Friend, Mirror Foe". He campaigned to get more respect for his character in the Star Trek features, resulting in Sulu finally obtaining the rank of captain in Star Trek VI: The Undiscovered Country (1991), a role reprised in the Star Trek: Voyager (1995) episode "Flashback".George has run several marathons and was in the 1984 Los Angeles Olympic Torch Relay. He gained a star on Hollywood Boulevard's Walk of Fame in 1986 and left his signature and hand print in cement at the Chinese Theater in 1991. His 1994 autobiography, "To the Stars", was well-received by more than just Star Trek fans. He remains active as a stage, television and film actor and as an advocate for the interests of Japanese-Americans.

URL: https://forum.audiogames.net/post/575267/#p575267




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Menu description requests

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Deucalion via Audiogames-reflector


  


Re: Menu description requests

# 8 thanks for everything. I was thinking about the MK 11, because I heard that it would be the most accessible, but the previous versions would be fine if you don't have it.

URL: https://forum.audiogames.net/post/575266/#p575266




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Pyglet help

2020-09-28 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: Pyglet help

The setup seems mostly right, but your checking for directories, not files. You need to swap the entry.is_dir() for entry.is_file(). import os.path
import glob

types = [".mp3", ".wav", ".flac", ".mp4", ".mpg", ".avi", ".m4a"]
types = str(types)

path = input("Enter the path to your music folder.")
letter = input("Name of the song? ")

#list directories
with os.scandir(path) as it:
for entry in it:
if not entry.name.startswith('.') and entry.is_file():
if entry.name[:len(letter)] == letter:
if entry.name[-4:] in types:
print(entry.name)
if entry.name[-5:] == '.flac':
print(entry.name)

URL: https://forum.audiogames.net/post/575265/#p575265




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


need advice on getting a new computer

2020-09-28 Thread AudioGames . net Forum — Off-topic room : mechaSkyGuardian via Audiogames-reflector


  


need advice on getting a new computer

helloit has come to the time where I need to get a new computer because my old one was a piece of shit. now, I’m debating on a couple options but I’d like to know if there are more. I do not want to turn this into a Mac versus windows thing but I was thinking of getting a MacBook Air. But on the other hand I was also thinking of getting A surface Pro. The reason I want to choose one of these computers is because of their portable nature. Many people have told me that macOS isn’t the best but I was going to install windows on it anyways. I would’ve used the Mack OS side of it for something but it really doesn’t matter. The criteria for the computer i choose are as follows. It Hass to be lightweight and portable so that I can take it around to places like the park or a café when those open up again and it Hass to be decent in terms of processor and RAM capabilities. If you think there are other computers that I would like please let me know

URL: https://forum.audiogames.net/post/575264/#p575264




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Wilson via Audiogames-reflector


  


Re: Copypasta thread

■ Just because I look nice, you think I ain't for real?■ Grove Street ain't a gang!■ I don't want a nightstick up the ass!■ Ain't that a shame; you've been knocked out the game!■ Gravity's a bitch, huh?

URL: https://forum.audiogames.net/post/575263/#p575263




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : Berenion via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

BTW it's not just this community. I follow a few mainstream streamers with sighted audiences. Every time they show a new game, you can be sure, that a number of people will ask: "Is this game free?"Why would it be free? I blame freaking Fortnight.

URL: https://forum.audiogames.net/post/575262/#p575262




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: do any one have camlorn audio zip or archive or camlorn audio repo clo

2020-09-28 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector


  


Re: do any one have camlorn audio zip or archive or camlorn audio repo clo

kk thanks so much. keep developing your great project synthizer camlorn. i think your making reverb effects soon in synthizer.

URL: https://forum.audiogames.net/post/575261/#p575261




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Wilson via Audiogames-reflector


  


Re: Copypasta thread

■ I'm a punk with a gun, fool!

URL: https://forum.audiogames.net/post/575260/#p575260




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Moving to Twitter for game releases

2020-09-28 Thread AudioGames . net Forum — Off-topic room : titan_of_war via Audiogames-reflector


  


Re: Moving to Twitter for game releases

i can't even figger out how to use the link that 9 gave

URL: https://forum.audiogames.net/post/575259/#p575259




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Urgent advice needed!

2020-09-28 Thread AudioGames . net Forum — Off-topic room : RTT entertainment via Audiogames-reflector


  


Re: Urgent advice needed!

@Defender, what are these sites for?Also, is fixing books for a braille display a service?I mean, could I go to them and ask them to fix it for me?

URL: https://forum.audiogames.net/post/575258/#p575258




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Socheat via Audiogames-reflector


  


Re: Entombed has too many bugs

Have you tried reinstalling DirectX again?

URL: https://forum.audiogames.net/post/575257/#p575257




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Garr via Audiogames-reflector


  


Re: Entombed has too many bugs

@49 have runtime x64 and x86 and windows media player but only 1.02k runs.And, now I can't put the full version or even go to the site, not even the player's guide.This just sucks 

URL: https://forum.audiogames.net/post/575256/#p575256




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: stuf about temtem

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : stirlock via Audiogames-reflector


  


Re: stuf about temtem

Sadly my machine won't run temtem, shame as it sounds like just my kind of game

URL: https://forum.audiogames.net/post/575255/#p575255




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : Xvordan via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

@amir tajik: Oh no! What will we ever do! How dare people want to get some money for a game they made! Why the inhumanity! The horror! The cruelty of it all! How will you live because you can't play this game which isn't free! The world is just so unfair! Right?At the risk of being a bit rude, it's people like this that made me stop visiting this site for a long time.

URL: https://forum.audiogames.net/post/575254/#p575254




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Artus' "Extended Clok mod"! Mush-z and mushclient.

2020-09-28 Thread AudioGames . net Forum — New releases room : mata via Audiogames-reflector


  


Re: Artus' "Extended Clok mod"! Mush-z and mushclient.

Sigh...Not to say I'm upset or anything. I've already stated a billion times both in game and in this topic that I don't know anything about coding, and I don't have it uploaded on any website. I don't know anything about working with executables, let alone making updater.This doesn't apply to only the above comment, but also everyone here who keeps asking for updater. Guys, if you really would like it, I suggest helping me do so would be better that simply request. My knowledge is very, very limited. Working on this pack is the only code wise thing I know how to do, and that is still me knowing nothing at all about any code language, generally or mushclient wise.About Clok log, I don't know. I never use log myself. If I want to save output, I just do. And it's supposed to be where you save it.

URL: https://forum.audiogames.net/post/575253/#p575253




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Bokurano Daibouken 3 : secondary topic

2020-09-28 Thread AudioGames . net Forum — New releases room : Wilson via Audiogames-reflector


  


Re: Bokurano Daibouken 3 : secondary topic

Wel it works like how you would expect. Press spacebar  in the direction you want to fire.

URL: https://forum.audiogames.net/post/575252/#p575252




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : mata via Audiogames-reflector


  


Re: Entombed has too many bugs

Don't ever go to the next floor until you manage to explore every inch of it. Ground items are erased whenever you enter the next floor. You may miss a chance to get legendary steel arrows or that healing potion you really, really need.And if you play necro and have no adventurer in your party, have adventurer corpse beside you until you can get locate secret scroll. After that you can banish your adventurer however you want.Anyone wanna hear my fortune teller playthrough? No commentary though.

URL: https://forum.audiogames.net/post/575251/#p575251




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Castaways, roleplaying strategy game, by Aprone

2020-09-28 Thread AudioGames . net Forum — New releases room : pool via Audiogames-reflector


  


Re: Castaways, roleplaying strategy game, by Aprone

what's wrong with making your games payed anyways, if they're good, they deserve it.

URL: https://forum.audiogames.net/post/575250/#p575250




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Using Hyper-V

2020-09-28 Thread AudioGames . net Forum — Off-topic room : camlorn via Audiogames-reflector


  


Re: Using Hyper-V

O right, sorry, nevermind.  Forgot this was about Linux.  In that case your best bet is probably Pulseaudio over localhost instead, assuming the Pulseaudio Windows implementation is low latency.

URL: https://forum.audiogames.net/post/575249/#p575249




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Using Hyper-V

2020-09-28 Thread AudioGames . net Forum — Off-topic room : camlorn via Audiogames-reflector


  


Re: Using Hyper-V

99% of people who want a VM don't want or need audio.  We're kind of the odd ones out, in that for us audio is essential, but most sighted people could care less.  Most VM usage is the server/cloud/programmer industry.VMWare isn't going to do you much good either.  The audio latency is terrible and as far as I know the old hacks that let us get it down no longer do anything.Your best bet for this is NVDA Remote over localhost with VMWare audio to set it up initially, but I use VMs for work which means primarily Linux, haven't done it in a while, and thus don't have useful info for you.

URL: https://forum.audiogames.net/post/575248/#p575248




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Jayde via Audiogames-reflector


  


Re: Entombed has too many bugs

No, I'm not saying don't take dangerous quests. What I'm saying is, load over and over again till you get quests with good rewards. Sometimes, a quest can be really easy and yield great rewards. Sometimes it can be really difficult and its rewards are crap. Also, beware of things like named imp necromancers or, lower down, things like named harpy assassins or named half-giant brawlers. They can really ruin your day, and they always seem to do crazy damage.

URL: https://forum.audiogames.net/post/575247/#p575247




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Jayde via Audiogames-reflector


  


Re: A proper discussion on critical race theory

If you really want the other side's perspective, watch this:https://www.youtube.com/watch?v=kIZ_3-i5FY4=5s

URL: https://forum.audiogames.net/post/575246/#p575246




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: a question about rs...

2020-09-28 Thread AudioGames . net Forum — Off-topic room : matthew2004 via Audiogames-reflector


  


Re: a question about rs...

ya, redspot is gone forever

URL: https://forum.audiogames.net/post/575245/#p575245




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: a question about rs...

2020-09-28 Thread AudioGames . net Forum — Off-topic room : matthew2004 via Audiogames-reflector


  


Re: a question about rs...

ya, redspot is gon forever

URL: https://forum.audiogames.net/post/575245/#p575245




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Translating Dreamy Train and List Of Keyboard Commands

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Orin via Audiogames-reflector


  


Re: Translating Dreamy Train and List Of Keyboard Commands

Does Google translate have the ability to upload an audio file to translate it into text? I wonder if there's machine learning services that'll do it for free at the cost of quality.

URL: https://forum.audiogames.net/post/575244/#p575244




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Long post ahead, please try to read all the way through. Before I begin however, do not attempt to misconstrue any of the following I say as support of one side or the other in this, because it is not. Let my words speek for themselves.First let me respond to the following. Jayde wroteI mean, sit back and look at it for a second. I think that if you actually go across the whole world, there are more non-whites than whites. So why did English become so dominant? Why have whites been so historically ugly to non-whites? There has got to be a reason for it, even if it's a bad one. Why aren't non-whites responding with racism equal to or greater than that shown by white people? I'm obviously not advocating for that at all, but still. It sort of begs the question why we started being awful, as a group, in the first place, and why we're so touchy when it's pointed out. Quote end.I think a post I made a few weeks ago address is this point well, although I'm going to add to it's meaning here. Bear with me.Post start. People of color are responsible for plenty of atrocities. The reason why white people are responsible for more is because it was them who got to the best weaponry first, and thus,them who Would do much of the invading and conquering we have seen over the last couple hundred years. Only when advanced fire arms were developed were they able to colonize on a larger scale. Most of Africa for example had little trouble in keeping out Europeans up to this point. Large scale colonization of Africa only began in the late 19th early 20th century. Other components such as disease were responsible for the success of earlier colonization efforts in other parts of the world. Post end.To summarize. I Believe Europeans became as they are because they created the most efficient weaponry first, allowing them to be dicks to every one else with impunity. But this isn’t speaking to the nature of Europeans, it is speaking to the nature of human beings. And the remnants of the empires which Europe once controlled are still here. They are ever present in some of our attitudes, the language as we speak, the music that we play and listen to, and much more. This is so with any empire.Second off, rant incoming, I absolutely hate the term race. I’ve been coming to hate it more and more over the last few months. It’s so vague. So outdated. I fucking hate it. What the hell does it even mean? Are we grouping people by continent? Are all people on the African continent one race? Are all Europeans one race? Are all people who happen to live in Asia of one race? Are all so-called Hispanics one race? No, they are not. They're really fucking not. Humans are so mixed that this term loses its meaning. It becomes completely invalid. We cannot be separated by race because there is not enough distinction among many peoples to classify them as one or another. It’s bullshit.that having been said, it’s time that we face the facts. Discrimination and oppression are still alive and well whether we like it or not. Let’s not deny things because they inconvenience our pretty little world views.

URL: https://forum.audiogames.net/post/575241/#p575241




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Long post ahead, please try to read all the way through. Before I begin however, do not attempt to misconstrue any of the following I say as support of one side or the other in this, because it is not. Let my words speek for themselves.First let me respond to the following. Jayde wroteI mean, sit back and look at it for a second. I think that if you actually go across the whole world, there are more non-whites than whites. So why did English become so dominant? Why have whites been so historically ugly to non-whites? There has got to be a reason for it, even if it's a bad one. Why aren't non-whites responding with racism equal to or greater than that shown by white people? I'm obviously not advocating for that at all, but still. It sort of begs the question why we started being awful, as a group, in the first place, and why we're so touchy when it's pointed out. Quote end.I think a post I made a few weeks ago address is this point well, although I'm going to add to it's meaning here. Bear with me.Post start. People of color are responsible for plenty of atrocities. The reason why white people are responsible for more is because it was them who got to the best weaponry first, and thus,them who Would do much of the invading and conquering we have seen over the last couple hundred years. Only when advanced fire arms were developed were they able to colonize on a larger scale. Most of Africa for example had little trouble in keeping out Europeans up to this point. Large scale colonization of Africa only began in the late 19th early 20th century. Other components such as disease were responsible for the success of earlier colonization efforts in other parts of the world. Post end.To summarize. I Believe Europeans became as they are because they created the most efficient weaponry first, allowing them to be dicks to every one else with impunity. But this isn’t speaking to the nature of Europeans, it is speaking to the nature of human beings.Second off, rant incoming, I absolutely hate the term race. I’ve been coming to hate it more and more over the last few months. It’s so vague. So outdated. I fucking hate it. What the hell does it even mean? Are we grouping people by continent? Are all people on the African continent one race? Are all Europeans one race? Are all people who happen to live in Asia of one race? Are all so-called Hispanics one race? No, they are not. They're really fucking not. Humans are so mixed that this term loses its meaning. It becomes completely invalid. We cannot be separated by race because there is not enough distinction among many peoples to classify them as one or another. It’s bullshit.that having been said, it’s time that we face the facts. Discrimination and oppression are still alive and well whether we like it or not. Let’s not deny things because they inconvenience our pretty little world views.

URL: https://forum.audiogames.net/post/575241/#p575241




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Long post ahead, please try to read all the way through. Before I begin however, do not attempt to misconstrue any of the following I say as support of one side or the other in this, because it is not. Let my words speek for themselves.First let me respond to the following. Jayde wroteI mean, sit back and look at it for a second. I think that if you actually go across the whole world, there are more non-whites than whites. So why did English become so dominant? Why have whites been so historically ugly to non-whites? There has got to be a reason for it, even if it's a bad one. Why aren't non-whites responding with racism equal to or greater than that shown by white people? I'm obviously not advocating for that at all, but still. It sort of begs the question why we started being awful, as a group, in the first place, and why we're so touchy when it's pointed out. Quote end.I think a post I made a few weeks ago address is this point well, although I'm going to add to it's meaning here. Bear with me.Post start. People of color are responsible for plenty of atrocities. The reason why white people are responsible for more is because it was them who got to the best weaponry first, and thus,them who Would do much of the invading and conquering we have seen over the last couple hundred years. Only when advanced fire arms were developed were they able to colonize on a larger scale. Most of Africa for example had little trouble in keeping out Europeans up to this point. Large scale colonization of Africa only began in the late 19th early 20th century. Other components such as disease were responsible for the success of earlier colonization efforts in other parts of the world. Post end.To summarize. I Believe Europeans became as they are because they created the most efficient weaponry first, allowing them to be dicks to every one else with impunity. But this isn’t speaking to the nature of Europeans, it is speaking to the nature of human beings.Second off, rant incoming, I absolutely hate the term race. I’ve been coming to hate it more and more over the last few months. It’s so vague. So outdated. I fucking hate it. What the hell does it even mean? Are we grouping people by continent? Are all people on the African continent one race? Are all Europeans one race? Are all people who happen to live in Asia of one race? Are all so-called Hispanics one race? No, they are not. They're really fucking not. Humans are so mixed that this term loses its meaning. It becomes completely invalid. We cannot be separated by race because there is not enough distinction among many peoples to classify them as one or another. It’s bullshit.that having been said, it’s time that we face the facts. Discrimination and oppression are still alive and well whether we like it or not. Let’s not deny things because the inconvenience our pretty little world views.

URL: https://forum.audiogames.net/post/575241/#p575241




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Long post ahead, please try to read all the way through. Before I begin however, do not attempt to misconstrue any of the following I say as support of one side or the other in this, because it is not. Let my words speek for themselves.First let me respond to the following. Jayde wroteI mean, sit back and look at it for a second. I think that if you actually go across the whole world, there are more non-whites than whites. So why did English become so dominant? Why have whites been so historically ugly to non-whites? There has got to be a reason for it, even if it's a bad one. Why aren't non-whites responding with racism equal to or greater than that shown by white people? I'm obviously not advocating for that at all, but still. It sort of begs the question why we started being awful, as a group, in the first place, and why we're so touchy when it's pointed out. Quote end.I think a post I made a few weeks ago address is this point well, although I'm going to add to it's meaning here. Bear with me.Post start. People of color are responsible for plenty of atrocities. The reason why white people are responsible for more is because it was them who got to the best weaponry first, and thus,them who Would do much of the invading and conquering we have seen over the last couple hundred years. Only when advanced fire arms were developed were they able to colonize on a larger scale. Most of Africa for example had little trouble in keeping out Europeans up to this point. Large scale colonization of Africa only began in the late 19th early 20th century. Other components such as disease were responsible for the success of earlier colonization efforts in other parts of the world. Post end.To summarize. I Believe Europeans became as they are because they created the most efficient weaponry first, allowing them to be dicks to every one else with impunity. But this isn’t speaking to the nature of Europeans, it is speaking to the nature of human beings.Second off, rant incoming, I absolutely hate the term race. I’ve been coming to hate it more and more over the last few months. It’s so vague. So outdated. I fucking hate it. What the hell does it even mean? Are we grouping people by continent? Are all people on the African continent one race? Are all Europeans one race? Are all people who happen to live in Asia of one race? Are all so-called Hispanics one race? No, they are not. They're really fucking not. Humans are so mixed that this term loses its meaning. It becomes completely invalid. We cannot be separated by race because there is not enough distinction among many peoples to classify them as one or another. It’s bullshit.that having been said, it’s time that we face the facts. Racism is still alive and well whether we like it or not. And it's almost everywhere.

URL: https://forum.audiogames.net/post/575241/#p575241




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : KenshiraTheTrinity via Audiogames-reflector


  


Re: A proper discussion on critical race theory

I think what i wanted was the other side's perspective.

URL: https://forum.audiogames.net/post/575243/#p575243




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Anyone tried iOS 14 to see if any games are more accessible?

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : buu420 via Audiogames-reflector


  


Re: Anyone tried iOS 14 to see if any games are more accessible?

Interesting, I mean it has gotten more playable, and I was actually thinking of making a new tutorial in the ffrk topic, although I know that the beginning tutorials, tend to break things for new users. Since I don't have another phone or fb account or anything I can't make a new account to figure out the tutorial portion. But yeah anytime I turn off voice over, and try to hit any buttons at the bottom of my screen it doesn't work, and what I'm guessing is happening is it's doing the half the screen bug, where the game only appears on half the screen. Usually turning on voice over and clicking anywhere on the screen will fix it, but it's not doing it for me. Anytime I turn off voice over I instantly have to restart ffrk to use the back button, and then I only get to use it a few times before me turning on and off VO breaks it again. Really irritating as I am pretty far, working on 5 star magesite dungeons, and beating most of the 280 torment dungeons.

URL: https://forum.audiogames.net/post/575242/#p575242




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Long post ahead, please try to read all the way through. Before I begin however, do not attempt to misconstrue any of the following I say as support of one side or the other in this, because it is not. Let my words speek for themselves.First let me respond to the following. Jayde wroteI mean, sit back and look at it for a second. I think that if you actually go across the whole world, there are more non-whites than whites. So why did English become so dominant? Why have whites been so historically ugly to non-whites? There has got to be a reason for it, even if it's a bad one. Why aren't non-whites responding with racism equal to or greater than that shown by white people? I'm obviously not advocating for that at all, but still. It sort of begs the question why we started being awful, as a group, in the first place, and why we're so touchy when it's pointed out. Quote end.I think a post I made a few weeks ago address is this point well, although I'm going to add to it's meaning here. Bear with me.Post start. People of color are responsible for plenty of atrocities. The reason why white people are responsible for more is because it was them who got to the best weaponry first, and thus,them who Would do much of the invading and conquering we have seen over the last couple hundred years. Only when advanced fire arms were developed were they able to colonize on a larger scale. Most of Africa for example had little trouble in keeping out Europeans up to this point. Large scale colonization of Africa only began in the late 19th early 20th century. Other components such as disease were responsible for the success of earlier colonization efforts in other parts of the world. Post end.To summarize. I Believe Europeans became as they are because they created the most efficient weaponry first, allowing them to be dicks to every one else with impunity. But this isn’t speaking to the nature of Europeans, it is speaking to the nature of human beings.Second off, rant incoming, I absolutely hate the term race. I’ve been coming to hate it more and more over the last few months. It’s so vague. So outdated. I fucking hate it. What the hell does it even mean? Are we grouping people by continent? Are all people on the African continent one race? Are all Europeans one race? Are all people who happen to live in Asia of one race? No, they are not. They're really fucking not. Humans are so mixed that this term loses its meaning. It becomes completely invalid. We cannot be separated by race because there is not enough distinction among many peoples to classify them as one or another. It’s bullshit.that having been said, it’s time that we face the facts. Racism is still alive and well whether we like it or not. And it's almost everywhere.

URL: https://forum.audiogames.net/post/575241/#p575241




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Menu description requests

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : KenshiraTheTrinity via Audiogames-reflector


  


Re: Menu description requests

Do you happen to have a copy of dissidia nt for pc or ps4? Would love to have a menu guide for that. I'm particularly interested to know what all is in the options, and if there's a way to optimize or play in command mode like in the other games. Whatever else you can put together would be great as well. Its partially an rpg so I know there are probably gonna be a lot to go through.

URL: https://forum.audiogames.net/post/575240/#p575240




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Using Hyper-V

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Chris via Audiogames-reflector


  


Re: Using Hyper-V

If there's no audio support, or enabling audio requires jumping through ridiculous hoops, it's not worth it. I mainly want to use GUI operating systems, so I'll stick to VMware Player. I wonder why audio isn't supported natively out of the box? Is it because the main use for Hyper-V involves running servers which don't generally require audio? Maybe this is something Microsoft can improve upon in the future.

URL: https://forum.audiogames.net/post/575239/#p575239




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Using Hyper-V

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Chris via Audiogames-reflector


  


Re: Using Hyper-V

If there's no audio, it's not worth it. I mainly want to use GUI operating systems, so I'll stick to VMware Player. I wonder why audio isn't supported natively out of the box? Is it because the main use for Hyper-V involves running servers which don't generally require audio? Maybe thisi s something Microsoft can imporve upon in the future.

URL: https://forum.audiogames.net/post/575239/#p575239




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Chris via Audiogames-reflector


  


Re: Entombed has too many bugs

For the person still having errors with the 1.05 version, make sure Windows Media Player is installed. Go to the optional Features to install it if it's not already installed.

URL: https://forum.audiogames.net/post/575238/#p575238




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Jayde via Audiogames-reflector


  


Re: A proper discussion on critical race theory

I just think it's important to realize that the woman from the video really doesn't know a whole lot about CRT. I mean sure, she can read a definition, but then she starts kind of cherry-picking pieces of it and ignoring it.If you want an unbiased look at Trump's ban of CRT, this wasn't it.

URL: https://forum.audiogames.net/post/575237/#p575237




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : jamestoh via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

Haha i would play more but i am always lazy to plugin my controler

URL: https://forum.audiogames.net/post/575236/#p575236




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: slay the spire now accessible!

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : stewie via Audiogames-reflector


  


Re: slay the spire now accessible!

Sorry, I meant to say make sure not to have more than one character mod enabled at a time. Installed mods don't effect the game in any way unless they're enabled in mod the spire.

URL: https://forum.audiogames.net/post/575235/#p575235




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: slay the spire now accessible!

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : stewie via Audiogames-reflector


  


Re: slay the spire now accessible!

Sorry, I meant to say make sure not to have more than one character mod enabled at a time. Installed mods don't effect the game in any way unless they're active in mod the spire.

URL: https://forum.audiogames.net/post/575235/#p575235




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : enes via Audiogames-reflector


  


Re: Entombed has too many bugs

Jayde, actually, I use a slightly different stratigy. I always take all quests, regardless of how dangerous they are. You can always buy overpowered eq from the bazaar and use that to bulldoze your way through the game. I once found a legendary steel maul on the fifth floor, with 27 base damage. That was wild, as was the legendary ax I got from a quest with 32 base damage.

URL: https://forum.audiogames.net/post/575234/#p575234




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : KenshiraTheTrinity via Audiogames-reflector


  


Re: A proper discussion on critical race theory

@5 thanks. I said most of what I said in the other topic. Just wanted to see if more light could be shed on the issue and if the discussion could be taken further than it could have gone in the other thread without derailing it entirely.I think 6 introduces an 8nteresting element into the discussion, since as a blind persiob, I am completely oblivious to skin color, so I always thought it weird when I heard someone saying something racist as a kid, because i didn't think people were any different.

URL: https://forum.audiogames.net/post/575233/#p575233




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Jayde via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Personally, I do think that is an element for a lot of people. We don't just take skin colour, we take large enough difference of any kind, but accent is one of those things. Many black people in America have a particular way of speaking (though by no means all), and because racism has penetrated so deeply into consciousness in North America, it may be unconscious.We don't have the snap judgment when we see a photo, because we, uh, can't see photos. We also know that we can be wrong about accents, and that some black folks don't have an accent at all. Hell, I had a drama teacher for three years in high school, and only learned he was black two years ago. Changed absolutely nothing for me, but the point is, we lack a critical part of that perception.So yes, I do think blind people can be assumptive and can be racist about folks on short notice, even in those small, almost unconscious ways. I'm not afraid to tell you I've done it myself. I try very hard not to...but yeah, I've done it. We just can't do it based on actual skin colour. For us, it's more about what we know of the race in question. If we don't know a person is of that race, then our lack of knowledge means we're operating without a full understanding, and so we might be perceived as less racist when the truth is that we're less perceptive.Now, as for whether, all things otherwise considered equal, blind people are less racist? Frankly I don't know. I haven't read any studies on this, so I don't know how much racism is tied to visual processing, vs. other types of processing. "You look different, therefore you're worse than me"...I don't know how hard-coded that is...but to take an abrupt about-face there, I don't really see that as a prevalent factor from black folks. While there are absolutely black folks who dislike whites out of proportion to objective reality, it doesn't seem to be as prevalent as when you flip it around.I mean, sit back and look at it for a second. I think that if you actually go across the whole world, there are more non-whites than whites. So why did English become so dominant? Why have whites been so historically ugly to non-whites? There has got to be a reason for it, even if it's a bad one. Why aren't non-whites responding with racism equal to or greater than that shown by white people? I'm obviously not advocating for that at all, but still. It sort of begs the question why we started being awful, as a group, in the first place, and why we're so touchy when it's pointed out.

URL: https://forum.audiogames.net/post/575232/#p575232




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Nocturnus via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Hey, Jayde? Honest question; as someone who has studied this stuff, what role, if any, do you think blindness plays in this whole thing?  From my perspective it's actually been hard to see; no pun intended... I just didn't grow up around blind people/spend a lot of time around blind/VI people until roughly o9 or there abouts.  Do you think being stripped of sight tends to strip away that particular aspect of the prejudicial presumption/assumption?  I think we can agree that even blind men are/can be sexist and vice versa, but since we don't generally see skin tone or other physical features associated with other ethnicities and can't base on these physical visuals, do we still hold those concepts in some other form we're not aware of?for my part, I can honestly say I've tried not to ever assume someone was white or black based on the way they spoke/presented themselves verbally.  That having been said, I think it would be foolish to scate around the fact that accents for us, at least, are hard to ignore, and I wonder if sometimes we use them to stereotype people without even realizing it?

URL: https://forum.audiogames.net/post/575230/#p575230




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Pitch Black: A Detective's Demise

2020-09-28 Thread AudioGames . net Forum — New releases room : azure via Audiogames-reflector


  


Re: Pitch Black: A Detective's Demise

will the game be available on android too?

URL: https://forum.audiogames.net/post/575231/#p575231




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Nocturnus via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Hey, Jayde? Honest question; as someone who has studied this stuff, what role, if any, do you think blindness plays in this whole thing?  From my perspective it's actually been hard to see; no pun intended... I just didn't grow up around blind people/spend a lot of time around blind/VI people until roughly o9 or there abouts.  Do you think being stripped of sight tends to strip away that particular aspect of the prejudicial presumption/assumption?  I think we can agree that even blind men are/can be sexist and vice versa, but since we don't generally see skin tone or other physical features associated with other ethnicities and can't base on these physical visuals, do we still hold those concepts in some other form we're not aware of?for my part, I can honestly say I've tried not to ever assume someone was white or black based on the way they spoke/presented themselves verbally.  That having been said, I think it would be foolish to say that accents are hard to ignore, and I wonder if sometimes we use them to stereotype people without even realizing it?

URL: https://forum.audiogames.net/post/575230/#p575230




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Jayde via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Notes on the video:1. The speaker explains CRT as a "fringe theory" which was borne out of gender studies classrooms.Incorrect. Quick research shows it actually came out of law schools in the 1980s, from a racial angle, because law professors refused to teach law from anything but a white-centric perspective.2. The speaker defines CRT on her own terms, and gets it mostly right. Systemic racism is real, and you can't talk about racism without talking about power. Spot on.3. Analysis of J.P. Morgan-Chase and the "fighter". Someone who will combat prejudice and sees it everywhere. ...Yup. Welcome to reality. Prejudice -is everywhere. Combat it where you can. I see nothing wrong with this.4. It is at this point in the video where the speaker's bias is very clear. Her main argument at this point appears to be that if you want to dislike someone, or want to find examples of prejudice, you'll find them if you look hard enough. The implication is that where these things do not in fact exist, they'll be invented to fit a narrative. This simply ignores objective truth. When most people are upset by injustice or prejudice, it's because it's real, not because they've actually been primed to see it where it does not reside.5. Strawman alert. Nobody is going to realistically persecute you for wearing an orange T-shirt. This is a technique where the speaker is trying to make accusations of racism look absurd by using absurd non-examples. So that's two for two. First she pretends that racism is being invented. Now she's pretending that people are being persecuted for wearing orange T-shirts.6. An attack on White Fragility is not an attack on critical race theory.7. The assertion that racism is everywhere and has permeated everything isn't just "identity politics" (note the speaker's clear verbal disdain for the term? It's fact. Things are getting better all the time, but they're still unbalanced.8. Hypocrisy alert. Speaker is concerned about history is going to be "rewritten", but she appears unconcerned at how history has already been extensively whitewashed, and how narratives in most areas have championed white people and their way of life over virtually everything else. CRT does not suggest that we rewrite history or make things up; it suggests that we re-examine events, as they are understood, with a more race-critical perspective.9. First clause of executive order is fine. Don't teach that one race/gender is superior to any other. No problem.10. Second point in the executive order, people being inherently racist/sexist/oppressive. I've talked about this before. Speaker thinks it's garbage, but she's already been using fallacious reasoning to prop up her point of view. We know systemic racism exists. We know that people experience it. We know white privilege exists in America. We know that whites experience it, whether they want to or not. This order bans training which discusses it, which is tantamount to pretending it's a non-issue.11. Third point is another good thing. If it were only points 1 and 3, I'd be fine with it; that should've gone without saying, really.12. Arguing semantics about colour-blindness. If you are colour-blind and saying you won't treat someone differently based on their race, then you are refusing to accept that their race is a part of their identity. This means that any potential injustice they've experience, or may be continuing to experience, cuts zero ice with you if you're colour-blind. You cannot selectively ignore parts of a person's identity because it's convenient.13. Government is trying to insist on a colour-blind stance for federal employees or federal contracts. See 12. Unfortunately, while it would be lovely if we could remove race from our treatment of people, we aren't at that point yet. When we hit a point where racism is truly dead, where injustice is punished, where the prison systems aren't predominantly filled by people of colour, where city planning doesn't favour white people, then perhaps this stance will be more palatable. Right now, it's just a smokescreen. Trump is trying to pretend that this problem does not exist, and is forcing people in high positions to ignore a critical aspect of a large segment of the American populace. It sounds good on paper. It breaks down utterly in practice.14. Segregated training. Yup, makes sense. If you're dealing with a white vs. non-white dynamic, it makes sense that the message you want to send to whites will differ from the message you want to send to non-whites. She's using the word "segregated" here to try and harken back to actual meaningful/harmful segregation. It's a bad ploy and it doesn't work. Black people don't need to be taught how not to be racist to black people. White people don't walk out their doors with a conscious understanding of the impact of their skin colour, for the most part; black people do. Two groups, two different forms of training. It's logical. 

Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : staticmaster via Audiogames-reflector


  


Re: Copypasta thread

S D G H J 2 3 5 6 7 9 0C4 C5 C6Z X C V B N M Q W E R T Y U I Ojxvvv

URL: https://forum.audiogames.net/post/575228/#p575228




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : SirBadger via Audiogames-reflector


  


Re: Entombed has too many bugs

@1 the game is free now so if you payed for it using paypal you should be able to claim your money back.

URL: https://forum.audiogames.net/post/575227/#p575227




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Pitch Black: The 'AAA' Audio Game

2020-09-28 Thread AudioGames . net Forum — New releases room : tayo . bethel via Audiogames-reflector


  


Re: Pitch Black: The 'AAA' Audio Game

No one would say no to a free,  high quality game, don't get me wrong. Unfortunately, quality costs money, and a team of three can't afford to turn out a free, high quality game; the funds for  development and maintenance of the game have to come from somewhere. I understand if you don't have PayPal and the like; neither do I at the moment. However,if you ask around someone might be willing to purchase the game for you; in fact, if I don't have funds on hand at the game launch that's just what I'm going to do myself. But asking for a game of this quality to be free at launch comes across as entitled and selfish, even if, more than likely, you had no intention whatsoever of sounding that way.

URL: https://forum.audiogames.net/post/575226/#p575226




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : tayo . bethel via Audiogames-reflector


  


Re: Entombed has too many bugs

Thanks. Should I just ignore the overlevelled  drake and come back for it later ot try to defeat it at level 7 or so?

URL: https://forum.audiogames.net/post/575225/#p575225




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Menu description requests

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : MichaelJ via Audiogames-reflector


  


Re: Menu description requests

Can you describe to me the menus of GTA Five?

URL: https://forum.audiogames.net/post/575224/#p575224




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: slay the spire now accessible!

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Wensber via Audiogames-reflector


  


Re: slay the spire now accessible!

@blindndangerousI think it is less the number of character mods and more that some of them alter the UI and multiple of those can break it. A surefire way to ensure the UI isn't broken is to just run 1 character at a time but if you tried multiple and it works then there isn't a reason to change anything.

URL: https://forum.audiogames.net/post/575223/#p575223




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: slay the spire now accessible!

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : blindndangerous via Audiogames-reflector


  


Re: slay the spire now accessible!

Wait really? I have...a lot of them.

URL: https://forum.audiogames.net/post/575222/#p575222




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Idlespace, another building and battling incremental game

2020-09-28 Thread AudioGames . net Forum — New releases room : blindndangerous via Audiogames-reflector


  


Re: Idlespace, another building and battling incremental game

I know that the people on the RSBattle Discord were talking about this one, they seemed to enjoy it for a while too I think.  Might be worth getting with the dev of this one as well, I'm sure it can't be that hard to fix up the issues.

URL: https://forum.audiogames.net/post/575221/#p575221




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Idlespace, another building and battling incremental game

2020-09-28 Thread AudioGames . net Forum — New releases room : blindndangerous via Audiogames-reflector


  


Re: Idlespace, another building and battling incremental game

I know that the people on the RSBattle Discord were talking about this one, they seemed to enjoy it for a while too I think.  Might be worth getting tiwh the dev of this one as well, I'm sure it can't be that hard to fix up the issues.

URL: https://forum.audiogames.net/post/575221/#p575221




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : blindndangerous via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

@death, crap you got to it before I could. As for strageties in the last page, I'd recommend people check out a youtuber I found called Happieruphere.  He does each of the dailies, and is a pretty great player, regularly making it to the end of the spire.  I've picked up quite a few tips by watching him play.

URL: https://forum.audiogames.net/post/575220/#p575220




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Menu description requests

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : blindndangerous via Audiogames-reflector


  


Re: Menu description requests

Depending on which MK it is, I might be able to help.  Also, their's this as an extra resource. https://github.com/devinprater/accessib … es-list.md

URL: https://forum.audiogames.net/post/575219/#p575219




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Anyone tried iOS 14 to see if any games are more accessible?

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : death via Audiogames-reflector


  


Re: Anyone tried iOS 14 to see if any games are more accessible?

Strange, I've been able to play it better than I ever have before.

URL: https://forum.audiogames.net/post/575218/#p575218




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Translating Dreamy Train and List Of Keyboard Commands

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Munawar via Audiogames-reflector


  


Re: Translating Dreamy Train and List Of Keyboard Commands

@Nidza07: you can get the whole file in Google Translate if you upload it instead of copying and pasting. This gave me the entire readme.So much helpful information there that they don't cover in the driving tutorial.To upload it, just switch the tab to "document" instead of "text." Then upload the readme.txt file.

URL: https://forum.audiogames.net/post/575217/#p575217




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Jayde via Audiogames-reflector


  


Re: A proper discussion on critical race theory

CRT doesn't actually teach that whites are racist by default or that men are sexist by default. That's a strawman meant to make CRT look worse.As I understand it, CRT teaches that whites usually enjoy historical advantage due to their skin colour, and may implicitly be racist based not on their overt actions toward non-whites, but due to their reliance upon and support of a system which benefits them. Here's an example. If you believe that blacks commit more crimes than whites, that's actually a racist assumption. If you then go and try to make or support policy or programs which fall in line with this racist assumption, then all of your policies and programs are going to have racist elements to them (assumption, bias, consequence). Likewise, if you believe that women are inherently more emotional than men, and thus not suited to management positions, that's a sexist assumption. If you're a man who passes over a woman for promotion due to that assumption, then you're sexist.Not all whites or all men hold that viewpoint of course, but let me put this another way. I have not yet met a single white person who hasn't been racist in some way. And I haven't yet met a single man who isn't sexist in some way. The good ones will recognize it and work to correct it. The bad ones will pretend it's a non-issue or will insist that it's being blown out of proportion.So while I wouldn't go quite so far as to say that all white people are racist, I absolutely -would go so far as to say that all white people will undoubtedly say or do something racist eventually. Same with men vs. women.And please don't talk to me about "reverse racism", especially not in America. Sure, there are non-whites out there who will show unrealistic prejudice toward whites, I won't deny that. But part of the definition of racism is that it is prejudicial or oppressive treatment perpetrated by a dominant ethnic group over a nondominant ethnic group. By definition, it's not possible to be racist against a white person in America.Sexism is a little more complicated, and there are definitely folks out there who hate men beyond reason (and hate women beyond reason as well, let's be clear). They're out there. It is possible to be sexist against any gender.

URL: https://forum.audiogames.net/post/575216/#p575216




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Gamepads/controllers

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : ironcross32 via Audiogames-reflector


  


Re: Gamepads/controllers

More precise joystick input with less jutter. Better, less squeaky triggers. More solid and less rattly feel. Supports wireless and wired. Impulse trigger rumbles for games that support it - admittedly few.

URL: https://forum.audiogames.net/post/575215/#p575215




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : KenshiraTheTrinity via Audiogames-reflector


  


Re: A proper discussion on critical race theory

Ok, so can you address the specific points  that are being listed as banned in the video, and why you object to them being banned? I think you kinda did it broadly, and I get the sense that the person behind the video is not against racial awareness training, just not the brand offered by crt. However, i just don't see the problem for instance, in stopping people from teaching others that a specific race or sex  is superior to everyone else, or that white people are racist by default and that men are sexist by default.

URL: https://forum.audiogames.net/post/575214/#p575214




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Menu description requests

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : NortheasternGorilla via Audiogames-reflector


  


Re: Menu description requests

Aron happy to do so,Deucalion, which Mortal Kombat?

URL: https://forum.audiogames.net/post/575213/#p575213




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Request a name change version 2

2020-09-28 Thread AudioGames . net Forum — Site and forum feedback : ilyas booneehee via Audiogames-reflector


  


Re: Request a name change version 2

hi. i would like to change my name to subdragon

URL: https://forum.audiogames.net/post/575212/#p575212




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : Jayde via Audiogames-reflector


  


Re: Entombed has too many bugs

Human fighter-assassin: train up sneak attack and flurry and critical hits. Game over. Also, dual-wield and use those goblin king swords. They're not insane in late game, but should wreck early to mid game.Don't feel obligated to take quests every time you can, and don't settle for the first quests you find. When you're ready to take some quests, save the game right beforehand, load the quests, and if you get stuff you like, keep it; otherwise, reload and try again. You can get some named gear this way eventually, and it'll make your playthrough much easier.

URL: https://forum.audiogames.net/post/575211/#p575211




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Jayde via Audiogames-reflector


  


Re: A proper discussion on critical race theory

I hit this in another post a couple of weeks back, but let's dig into this.Critical race theory originated as a black pushback against white-run education. Everything in law had a white bias in America, so critical race theory definitely began there and has its roots there.However, it has spread since then to include others besides people of colour. There are sub-disciplines of critical race theory which approach from a Latinx or Asian perspective, for instance. As has also been pointed out previously, not all white-skinned Americans are treated equally, and not all experiences are the same.Properly applied, critical race theory is just that. It's critical. It's not inflammatory, it's not rigged, it's not meant to make people feel bad. It's meant to make people who may not have been aware of certain problems more cognizant of those problems, in an effort to better include all perspectives insofar as it's possible.I've said it before, and will no doubt say it again. If someone is deliberately trying to make a person feel like slime because of the colour of their skin, that is never, ever okay, regardless of who and where it comes from, and regardless of who is being made to feel bad.However - and this is where I need you to actually sit back and listen with an open mind - if being made aware of real problems makes you feel bad, that doesn't mean that critical race theory is doing a bad job, or that it's unwanted. Unfortunately, some of the racial truths we live with are uncomfortable, and most would probably rather push them gently away and pretend that they don't apply. I promise you, however, that if you're a white American, they do apply to you in some fashion. If you're a white American who is not a part of another visible minority, you have benefited from a system that is rigged to give you a leg up. That system isn't your fault. You getting a leg up now and then isn't your fault. But it is happening, and being aware of the imbalance is crucial if we're going to address it.Banning the use of critical race theory at the federal level serves absolutely no good, and adds the potential for all kinds of bad. Boiled down, what it does is to allow for apologism. People in the workplace at the federal level are not including racial training even though they may be dealing with racialized individuals, which makes them less armed and less qualified to deal with situations in a culturally sensitive manner. So when they inevitably say or do something that could have been avoided with better training, they can trot out that old saw about how they see all colours equally. Except...they don't. They see all colours as white, basically, and that's just not the case.It's colour-blindness vs. colour-consciousness. I hope I don't have to explain this further.If you have more specific arguments you want to make or address, please go ahead. I spent two years learning about intersectionality, and have done plenty of my own work and reflection since then.

URL: https://forum.audiogames.net/post/575210/#p575210




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: stuf about temtem

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : fredd via Audiogames-reflector


  


Re: stuf about temtem

i would guess if more of us blind people got in contact with the dev of temtem, that ajdding at the very least wall sounds would be a huge possibility

URL: https://forum.audiogames.net/post/575209/#p575209




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : arnold18 via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

agreed with camlorn here 

URL: https://forum.audiogames.net/post/575208/#p575208




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: stuf about temtem

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : ilyas booneehee via Audiogames-reflector


  


Re: stuf about temtem

oh oh steam. how do i get you? the machine that i want to run you on doesn't know how to handle your ram consuming well, and you are not accessible. there are a lot of audio games and accessible vid games on it wich i want to get, but it's not accessible unless i do something wich i don't know how to do, plus the ram consuming. litterally i have 2 gigs of ram and a pentium micro junk, so yeah, shame

URL: https://forum.audiogames.net/post/575207/#p575207




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : camlorn via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

Glad to see that this community is equal opportunity when starting in on the "I might have to pay money for the thing" discussion.  At least it's not just audiogames.

URL: https://forum.audiogames.net/post/575206/#p575206




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Pitch Black: The 'AAA' Audio Game

2020-09-28 Thread AudioGames . net Forum — New releases room : Dragons via Audiogames-reflector


  


Re: Pitch Black: The 'AAA' Audio Game

If you dont have money than ask people on here to purchase for you. A lot of them are very nice. I see things happened on here. Rather than wanted for free. If everything's for free I would be happy. But the true is it's not.

URL: https://forum.audiogames.net/post/575205/#p575205




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : death via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

Okay, I won't tell you.

URL: https://forum.audiogames.net/post/575204/#p575204




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Pitch Black: The 'AAA' Audio Game

2020-09-28 Thread AudioGames . net Forum — New releases room : amir tajik via Audiogames-reflector


  


Re: Pitch Black: The 'AAA' Audio Game

and, i'm From:, iran

URL: https://forum.audiogames.net/post/575203/#p575203




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Pitch Black: The 'AAA' Audio Game

2020-09-28 Thread AudioGames . net Forum — New releases room : amir tajik via Audiogames-reflector


  


Re: Pitch Black: The 'AAA' Audio Game

@ 157 158 159 what if there is no internashenol cards here, what if gift kodds don't work, what if there is know paypal?thats my problems, bub

URL: https://forum.audiogames.net/post/575202/#p575202




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : amir tajik via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

hi, don't fucking tell me that the game is not free

URL: https://forum.audiogames.net/post/575201/#p575201




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : stasp via Audiogames-reflector


  


Re: Copypasta thread

In VirtualReality, Inc., each employee can choose:to be an artist in a creative atmosphere or a clerk in a bureaucratic one;the role of a manager or a project player;to join an easy-going group or a cruel troll;to make a living working on your boat or in your boat.Silk Road Project, the founder of VirtualReality, Inc., is a charismatic leader offering a playground for virtual human interaction. His purpose is to create a unique setting for managers and technology developers to build interpersonal relationships. He proclaims:"There are plenty of games! Too bad there is a shortage of games with real people in them. Mods are in the place! We have come a long way since the games were about shooters. Now we are facing VirtualReality. Get to know yourself by meeting your own mods."Your stageThe stage is here. The act is yours. The rest is up to you. There is no better time than the present.Silk Road Project, the founder of VirtualReality, Inc., tests your style and sense of tie. He likes national teams because they allow the strong to make mistakes and help the weak to grow.His brands are:TeamTalk 5 - the open source branch with the classic 5.6 code. Virtatalk 5 - the Twitter-like private messaging service. Virtaload - the live feed from the people you know. Virtaload 2.0 - the most revolutionary application for corporate and public communication.To acknowledge your unique talents, VirtualNiches are organized according to virtual niches, namely:VirtaTeams Classic: the classic team of human and mod users in telecommunicator teams;VirtaTeams Mod: the mod team of mod users;VirtaTeams Other: the diversity team;Contributors:BranToForge: the project leader for building team environments.BranVision: the technical lead for the communications development.BranKellBell (Bell) and BranGeier (Kell): virtual managers of the Leadership and Business units.BranAllen (Allen) and BranDavid (David): virtual doctors of the Medical and IntraPsychic units.BranAndrey (Andrey) and BranAngela

URL: https://forum.audiogames.net/post/575200/#p575200




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


A proper discussion on critical race theory

2020-09-28 Thread AudioGames . net Forum — Off-topic room : KenshiraTheTrinity via Audiogames-reflector


  


A proper discussion on critical race theory

Hi guys!I didnt want to drag up the whole sad to read thread for this discussion because I  felt that it was convoluted and unfocused when this discussion came about, so I figured I'd start fresh.This video addresses specifically what is being targeted with the government bann on the teaching of critical race theory.I'm going to go ahead and say that I can't find anything listed objectionable, but I'm still trying to understand in light of this information why crytical race theory is ok. If this is something you want to discuss, watch this video through to the end, find me some evidence on the other side, and let's talk. Note: I'm not trying to stir up drama by talking about the current president of the states, i'm just trying to better  understand the validity of critical race theory. Lets keep it civil. Sound off in the comments below.

URL: https://forum.audiogames.net/post/575199/#p575199




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Translating Dreamy Train and List Of Keyboard Commands

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : assault_freak via Audiogames-reflector


  


Re: Translating Dreamy Train and List Of Keyboard Commands

Or just use notepad ++, which works fine with multiple languages.

URL: https://forum.audiogames.net/post/575198/#p575198




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Nocturnus via Audiogames-reflector


  


Re: Copypasta thread

Taylor Davis - Game of Thrones Theme - Violin Cover

URL: https://forum.audiogames.net/post/575197/#p575197




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Gamepads/controllers

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : defender via Audiogames-reflector


  


Re: Gamepads/controllers

What are the advantages to using a Xbox 1 controller over a Xbox 360 Controller with my computer if I don't mind keeping it plugged in all the time rather than using wireless?

URL: https://forum.audiogames.net/post/575196/#p575196




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Urgent advice needed!

2020-09-28 Thread AudioGames . net Forum — Off-topic room : defender via Audiogames-reflector


  


Re: Urgent advice needed!

Have you tried doing a google search for websites like libgen or b-ok or scihub?  Other sites like that also exist if those don't have it.And if you have a braille display you might be able to read math and science books that way as well, or if they aren't formatted right, it would probably cost allot less to have a third party fix them than it would to print new braille books.

URL: https://forum.audiogames.net/post/575195/#p575195




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : Xvordan via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

@stewie Ah boo. I guess I'll actually have to plug in my DS4 then. My fightstick can emulate the left/right stick, but only with a switch toggle, and I have a feeling playing it like that's going to be awkward at best. Thanks for the response.

URL: https://forum.audiogames.net/post/575194/#p575194




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Translating Dreamy Train and List Of Keyboard Commands

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : nidza07 via Audiogames-reflector


  


Re: Translating Dreamy Train and List Of Keyboard Commands

Yep, that is exactly what I meant by uploading it to Google translate. Even this has a limit though, and I don't know of a way to continue past this limit. That's why the Chrome method seems to be easiest, even if you don't want to use Chrome installing it to read a document translated shouldn't be too big of a problem.

URL: https://forum.audiogames.net/post/575193/#p575193




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Artus' "Extended Clok mod"! Mush-z and mushclient.

2020-09-28 Thread AudioGames . net Forum — New releases room : flameAlchemist via Audiogames-reflector


  


Re: Artus' "Extended Clok mod"! Mush-z and mushclient.

would it be possible to make a auto updater? also, where is my Clok log stored, I think I have it saved in the alter aeon folder but not sure where to find it to move it to the right place.

URL: https://forum.audiogames.net/post/575192/#p575192




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Gardening, Foraging, Basket Weaving and More!

2020-09-28 Thread AudioGames . net Forum — New releases room : jescat277 via Audiogames-reflector


  


Re: Gardening, Foraging, Basket Weaving and More!

The mush pack will be getting updates once a piece of code related to ambiances is updated.

URL: https://forum.audiogames.net/post/575191/#p575191




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Castaways, roleplaying strategy game, by Aprone

2020-09-28 Thread AudioGames . net Forum — New releases room : imaginingstuff via Audiogames-reflector


  


Re: Castaways, roleplaying strategy game, by Aprone

Hello,Recently I had to re-install windows. Now, even after running and completely the check.exe I still get runtime error 5 invalid procedure.I love castaways and am very sad it won't run.Any suggestions from you tech folk?Thank you,A

URL: https://forum.audiogames.net/post/575190/#p575190




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: One of the saddest documentaries I have ever watched. What do you thin

2020-09-28 Thread AudioGames . net Forum — Off-topic room : Jeffb via Audiogames-reflector


  


Re: One of the saddest documentaries I have ever watched. What do you thin

Yep it sure is.

URL: https://forum.audiogames.net/post/575189/#p575189




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : mojsior via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

hmm do i need to hit play with mod option every time when I want to play with modsIf I understand correctly I need to run the game from desktop if I want to synchronize my score with steam cloud.I have dowload a cmd file  but it looks that it run mds launcher.

URL: https://forum.audiogames.net/post/575182/#p575182




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : stewie via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

You do if you're launching it from within the steam window.

URL: https://forum.audiogames.net/post/575188/#p575188




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : moaddye via Audiogames-reflector


  


Re: Copypasta thread

volmurt

URL: https://forum.audiogames.net/post/575187/#p575187




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Entombed has too many bugs

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : tayo . bethel via Audiogames-reflector


  


Re: Entombed has too many bugs

So, I've started a new play-through of Entombed. Maybe I can actually make it to the 25th floor this time ... maybe. I'm playing as a human fighter assassin fighter. Any tips for this job combo?

URL: https://forum.audiogames.net/post/575186/#p575186




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best iOS voice recording software?

2020-09-28 Thread AudioGames . net Forum — Off-topic room : bryant via Audiogames-reflector


  


Re: Best iOS voice recording software?

I actually really like audio memos and did purchase the subscription. The only thing that slightly irritates me is the fact that even though I have the setting enabled to where controls appear on the lock screen, they are not appearing at all.

URL: https://forum.audiogames.net/post/575185/#p575185




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Copypasta thread

2020-09-28 Thread AudioGames . net Forum — Off-topic room : zenothrax via Audiogames-reflector


  


Re: Copypasta thread

Hey, everyone, listen up, your attention if you please.Really wanna give you a warning, 'cause I found out this morning about a dangerous, insidious computer virus.If you should get an email with the subject, 'stinky cheese', better not go taking your chances.Under no circumstances, should you open itOr else it will...Translate your documents into SwahiliMake your TV record GigliNeuter your pets,and give your laundry static cling

URL: https://forum.audiogames.net/post/575184/#p575184




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: my microsoft flight simulator 2020 findings and opinion

2020-09-28 Thread AudioGames . net Forum — General Game Discussion : hadi . gsf via Audiogames-reflector


  


Re: my microsoft flight simulator 2020 findings and opinion

MCE beta is out for fs2020.If you own MCE and would like to participate, send a mail to their support email.You'll find out about my findings  and  i am optimistic that i would be able to fly  from startup to shutdown with the aircrafts systems themselves, MCE and TFM.more to follow.

URL: https://forum.audiogames.net/post/575183/#p575183




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : mojsior via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

hmm do i need to hit play with mod option every time when I want to play with mods

URL: https://forum.audiogames.net/post/575182/#p575182




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: wsl function and ubuntu. do I can browse internet with it?

2020-09-28 Thread AudioGames . net Forum — Developers room : arbuz via Audiogames-reflector


  


Re: wsl function and ubuntu. do I can browse internet with it?

I don't get why would you need to browse internet by using WSL. If you mean to have an internet connection (to use apt-get install whatever, yes you can. If you mean to use browser, no, you don't. You can browse by using curl for instance (by reading output in your terminal), but that's the different topic.

URL: https://forum.audiogames.net/post/575181/#p575181




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Urgent advice needed!

2020-09-28 Thread AudioGames . net Forum — Off-topic room : RTT entertainment via Audiogames-reflector


  


Re: Urgent advice needed!

@Munawar, thanks, that would help a huge amount.@Dark, the history isn't availible in digital form.If it isn't aavailible in digital form, I highly doubt that there is an audio version.

URL: https://forum.audiogames.net/post/575180/#p575180




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Say the Spire, a Slay the Spire Accessibility Mod

2020-09-28 Thread AudioGames . net Forum — New releases room : stewie via Audiogames-reflector


  


Re: Say the Spire, a Slay the Spire Accessibility Mod

@mojsior Sorry, I should have put this in the readme but I've only encountered this problem once; I didn't think it would be an issue in future. Apparently if you don't launch the game from steam directly (either from the steam program or the start menu shortcut for a game), it won't interact with Steam's cloud API. If you're running the game via Mod the Spire which is a separate program, it doesn't automatically upload your data to the steam cloud. Therefore when you switched computers it used old steam cloud data. To fix this in future, run the game independently and use OCR to upload data whenever you want to transfer computers or back up.@Xvordan You will need the right stick in order to access the mod's buffer and map viewing systems, unless you can find a way to remap. You need something for navigation (either left stick or d-pad), the four face buttons and four triggers, another button for settings, another button for a map key, and a right stick click and movement. Eventually you will need to be able to map something equivalently to pressing in the left stick, too.

URL: https://forum.audiogames.net/post/575179/#p575179




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


  1   2   3   >