Re: Accessibility vs design Digital Media UI / UX Design by rproffitt In the news: > [Trump Administration Withdraws ADA Guidance ](https://www.disabilityscoop.com/2025/03/20/trump-administration-withdraws-ada-guidance/31368/) Looks like it's no longer a problem. Accessibility vs design Digital Media UI / UX Design by Dani … have worked for you? Secondly, do you give priority to ADA compliance in UX design? Specifically, [the WCAG](https://en.wikipedia… Ada Dart throwing program Programming Computer Science by skorm909 … Carlo Integration. -- --------------------------------------------------------- WITH Ada.Text_IO; USE Ada.Text_IO; WITH Ada.Integer_Text_IO; USE Ada.Integer_Text_IO; WITH Ada.Float_Text_IO; USE Ada.Float_Text_IO; WITH Ada.Numerics.Float_Random; USE Ada.Numerics.Float_Random… Ada: resize CLI Programming Software Development by Cerberus Hi, does anyone know if there is any way to maximize the standard CLI in Ada. Thanks. RPN calcualtor in ADA Programming Software Development by bigred50 … I need to make a RPN calc in ada that instantiate a couple packages and they are… expect for natural numbers. with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; package body BigNumPkg is… one would expect for natural numbers. with Ada.Text_IO; use Ada.Text_IO; package BigNumPkg is type BigNum is … array based stack in the ada language Programming Computer Science by Kyle Willett …this in c++ but am having problems doing it in ada. here is my code: package stackPkg is MAX : constant… end stackPkg; and the main is: with ada.Text_IO, stackpkg, ada.integer_text_io; use stackPkg, Ada.Text_IO ,ada.integer_text_io; procedure main is s: stack; temp… Re: RPN calcualtor in ADA Programming Software Development by TrustyTony [url]http://www.math.bas.bg/bantchev/place/rpn/rpn.ada.html[/url] Re: array based stack in the ada language Programming Computer Science by rubberman Whew! I haven't coded any ADA for about 7 years, so it will take me a bit of refresher time to help you on this. Be patient! :-) Re: array based stack in the ada language Programming Computer Science by rubberman Ok. I think your logic for push() and pop() is somewhat inverted. In push(), you set the top of the stack to the new element (S(top) = item), and then you set top to the previous entry (top = top + 1). Why line 11 in main() is generating the error (push(s, 5), I am not sure. Let me think on all of this some more, and review my old ADA texts... :-) Re: array based stack in the ada language Programming Computer Science by Kyle Willett … guys. here is the c++ code that I based this ada code segment on. template <class T> class mystack… Re: array based stack in the ada language Programming Computer Science by Kyle Willett I just figure out how to fix my problem with the ada implimentation. I had tried switching the top:= top + 1; and the S (top):= item; lines before and it didn't work but I deleted all the object code and tried again with just the source files and it now works correctly! Thanks for the help guys. Lady Ada Lovelace Programming Computer Science by cproger I am doing a math research on mathematcians. I searched up Lady Ada Lovelace on wikipedia and many other websites and all it says is, "Lady Ada Lovelace made the first computer" If you know nything about her contributing to math please respond. Please help if you can Thanks Re: Your thoughts regarding AdA Programming Software Development by alc6379 … forum for this? Mind telling us a bit more about Ada? If it doesn't belong in the Scripting forum, I… computers and languages... Until I get some more information about Ada, I'm tempted to keep the thread here. Re: Your thoughts regarding AdA Programming Software Development by Ludootje … forum for this? Mind telling us a bit more about Ada? If it doesn't belong in the Scripting forum, I… computers and languages... Until I get some more information about Ada, I'm tempted to keep the thread here.[/QUOTE] It… Re: Lady Ada Lovelace Programming Computer Science by aVar++ It was just an answer on wikianswers. I googled "What did ada lovelace have to do with maths?". Re: Lady Ada Lovelace Programming Computer Science by happygeek See also: http://www.sonoma.edu/math/faculty/falbo/adabyron.html http://plus.maths.org/content/ada-lovelace-visions-today and (with a ton of links to further resources about here) http://womenshistory.about.com/cs/sciencemath1/a/bio_lovelace.htm Re: Lady Ada Lovelace Programming Computer Science by ddanbe SEarch [this archive](http://www-history.mcs.st-and.ac.uk/) for Ada Lovelace. Lots of info! Your thoughts regarding AdA Programming Software Development by WEATHER CHANNEL Ada95 is a very capable, full featured language & is not just limited to DoD work.Any thoughts?Anyone ever used it? We need a AdA forum, you know some real stuff not just limited to simple things in life like C(ect) :lol: Re: Your thoughts regarding AdA Programming Software Development by Eico what exactly is Ada? Never really heard of it. Re: Your thoughts regarding AdA Programming Software Development by samaru It's not a maintream language. If we were to go with another language, I would go with Python, Pascal, or even heck, Assembly. No Ada though. This is the second time I actually hear it of it. Sorry! Re: Your thoughts regarding AdA Programming Software Development by WEATHER CHANNEL … so loose and it is easy to be slopy, unlike AdA. ;) Here is a great book [size=2][color=#0000ff][url… Re: Your thoughts regarding AdA Programming Software Development by WEATHER CHANNEL I guess you took over cissa's job? I'm glad you want to learn about AdA but it's not new. I put it here to test the level of knowledge that the CompScience people had around these parts. But here is AdA95 in a nutshell PDF .....ALC did you get those links I posted on security & whatnot? Re: Ada Dart throwing program Programming Computer Science by noelthefish ok my maths have not been tested in 20 years but I am sure that what you are producing here should follow this p = m/n Pi = (approx) p * 4 <- this is the line you are missing. you only ouput the ratio. Penjelasan Program Programming Software Development by fiizaar.baiikk Ada Yang Bisa Bantu Agan2 Master mau tanya penjelasan dari baris … Re: array based stack in the ada language Programming Computer Science by TrustyTony For me looks like your stack exposes the implementation detail of stacks array index, which does not make any kind of sense. I would suggest to check first of all to check your logic, can you show proof that your c++ version works? Re: array based stack in the ada language Programming Computer Science by Kyle Willett Ok, I tried to change the code of the push and pop function as suggested and still got the same error but I think that it should stay as in the orginal code because top is basically just a variable to store the index in. If I push a value onto the stack I need to store the next value pushed into the next index in the array, so top = top + 1. Re: array based stack in the ada language Programming Computer Science by TrustyTony This pseudocode is supposed to print 5, show that it does in your C++ implementation: push(3) push(2) print pop() + pop() Re: array based stack in the ada language Programming Computer Science by Kyle Willett My code dosn't if I use it like your psudeo code, because the pop function return true or false on rather the pop was successful, so it ouputs 2 not 5, but I tried the stl stack and it dosn't work like your psudo code either. However I cand do it with my code with the following: mystack<int> s; s.push(3); s.push(2); int … Re: Lady Ada Lovelace Programming Computer Science by aVar++ I found this - Her contributions to math consisted of translating an article about the analytical machine created by charlie brown and writing her own notes predicting what it could do making 1893 computers possible. Might be worth looking up the analytical machine created by charlie brown. Hope this helps, mat. Re: Lady Ada Lovelace Programming Computer Science by cproger Thanks, but where did you get that? I am doing the best I can with my research and can't find a lot.