Re: Most accessible web builders, let's list them

2020-07-19 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Most accessible web builders, let's list them Django really isn't all that bad; you can get a lot done quickly with it. In terms of tools, all you need is a text editor, a terminal, and access to documentation for your framework. URL: https://forum.audiogames.net/post/553695/#p553695

Re: How do I install BGT under Ubuntu-Wine?

2017-07-03 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: How do I install BGT under Ubuntu-Wine? I actually did get Adventure at C: working as an experiment back in the day, but I used bottles from winetricks. I forget which ones I used, sadly; games can be made to run, though. And adding in SAPI might make them speak. URL:

Re: Research on videogame development for blind users

2017-06-02 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Research on videogame development for blind users I wrote you an email. URL: http://forum.audiogames.net/viewtopic.php?pid=313600#p313600 ___ Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: Let's Talk About Common Lisp!

2017-04-20 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Let's Talk About Common Lisp! I used to think the same thing. It is much easier when you use an interface like SLIME for Emacs; it will keep track of your parenthesis, give you documentation for function calls, and a whole host of other things. URL:

Let's Talk About Common Lisp!

2017-04-17 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Let's Talk About Common Lisp! Hi,I heard about this awesome language from a friend in college. And it has been a joy to use, albeit a bit weird to get the syntax. Basically, instead of making a function call like foo(bar, baz, qux), you put the parenthesis out front and the function name

Writing TinTin++ Scripts

2017-03-21 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Writing TinTin++ Scripts Hi,I am planning to write an Aardwolf pack for TinTin++, but I don't know where to begin with scripting. Are there any good tutorials around that might give me pointers on where to start? URL: http://forum.audiogames.net/viewtopic.php?pid=303277#p303277

Re: Kali linux, How accessible is that?

2017-02-19 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Kali linux, How accessible is that? My Skype link is still available I think. Once you have the distro installed, it works like Debian, so Speakup and/or Orca should start automatically on boot. URL: http://forum.audiogames.net/viewtopic.php?pid=298467#p298467

Re: Kali linux, How accessible is that?

2017-02-16 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Kali linux, How accessible is that? Kali Linux has speakup vailable. At the boot prompt, press s and enter to get speakup to speak. As for installation, you may want to read the official Kali documentations; they will advise you as to how to operate the distro. URL:

Re: programming for android if you are blind?

2017-02-16 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: programming for android if you are blind? Interesting. If only this accessibility support worked in Linux, but I think that is the fault of java-atk-wrapper not working with JDK 8. URL: http://forum.audiogames.net/viewtopic.php?pid=29#p29

Re: Getting started with game developing

2016-12-12 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Getting started with game developing Hmm. Print is not a syntax. That sounds like you are trying to write code in Python 2 when you should use 3, or 3 when you need to use 2. Check your library and ensure that you have the proper packages installed. URL:

What Language Features Does Ruby Provide for Game Development

2016-12-04 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
What Language Features Does Ruby Provide for Game Development Hi,In the world of Python, as I understand it, we have PyGame and I believe Pyglet may also be used for gaming. But given that I have used Python a lot in university, I want to try out something new and thus am choosing Ruby for

Showing the Number of Correct but Out of Place Character in Java

2016-09-18 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Showing the Number of Correct but Out of Place Character in Java Hi,I have been working on this for quite some time now, and I'm devilishly stuck for no apparent reason. I am trying too put together a method that will, be given two arguments: one will be a correct string, and another will

Re: How to Determine a Column Conflict in Python

2016-03-25 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: How to Determine a Column Conflict in Python Eurika! Thanks much, @magurp244. I now have a working solution. URL: http://forum.audiogames.net/viewtopic.php?pid=255027#p255027 ___ Audiogames-reflector mailing list

Re: How to Determine a Column Conflict in Python

2016-03-25 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: How to Determine a Column Conflict in Python I wonder if I can take your implementation of the eight queens and adjust it to fit an arbitrary m by n board?It looks like we're doing length(board)-1 for diagonal cases. Is this just an observation for this particular case, or would this

Re: How to Determine a Column Conflict in Python

2016-03-24 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: How to Determine a Column Conflict in Python Hmm. I think I confuse you a bit, my apoligies.The board is of arbritrary length, and we want a location of queens relative to the given location.diagonal_conflict([[True, True], [False, False]], 0, 1)My coords function would take this input

Re: How to Determine a Column Conflict in Python

2016-03-24 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: How to Determine a Column Conflict in Python The object is to see if a queen occupies a diagonal that is in line with the specified (row, column) parameter. The queens are booleans, True means there is a queen, False means there is not a queen. URL:

How to Determine a Column Conflict in Python

2016-03-23 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
How to Determine a Column Conflict in Python Hello,I am trying to see if there is a column conflict given a board of queens and a given row and column. Aside from creating the function that returns a list of tuples of coordinates, I am stuck as to what to do next, which is quite laughable,

Re: Removing First Duplicate in python

2016-03-05 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Removing First Duplicate in python Awesome! Thanks much. URL: http://forum.audiogames.net/viewtopic.php?pid=252659#p252659 ___ Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Removing First Duplicate in python

2016-03-04 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Removing First Duplicate in python Hi gang. I have been driven insane by this for quite some time now. What we essentally want to do is remove the first duplicate in a string, but if there is space between characters, that would not be a duplicate. Thus, bookkeeper would return bokeper.My

Re: Is Learning 2 Programming languages at once possible?

2015-06-02 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Re: Is Learning 2 Programming languages at once possible? It is very possible. I have learned three so far: C#, Java, and Python. I am now working on C++. URL: http://forum.audiogames.net/viewtopic.php?pid=218648#p218648 ___

Can Someone Help Me Rationalize This?

2014-09-11 Thread AudioGames . net ForumDevelopers room : king gamer222 via Audiogames-reflector
Can Someone Help Me Rationalize This? Hi guys. I want to make a command-line all-in-one package manager, which will check to see if you are using Ubuntu, Arch, Gentoo, etc. Then, you can use one command to install, upgrade, and search for packages. But whats the point? Why bother? I dont