User lillq - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:24:26Z http://stackoverflow.com/feeds/user/2064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles 105 What are the best programming articles? lillq 2008-11-25T05:46:59Z 2009-12-21T18:40:21Z <p>Part of being a good software developer is keeping current with what people are saying in the community. There are many good articles out there on the internet about the wide subject of computer programming. What articles have you found worth your time?</p> <p>Please provide the article's title, author and a link if possible.</p> http://stackoverflow.com/questions/1888927/how-could-i-justify-text-in-a-textbox-in-prawn/1889662#1889662 0 Answer by lillq for How could I justify text in a text_box in Prawn? lillq 2009-12-11T17:38:42Z 2009-12-11T17:38:42Z <p>Here is where the documentation for text_box is: <a href="http://prawn.majesticseacreature.com/docs/prawn-core/classes/Prawn/Document.html#M000114" rel="nofollow">Class::Prawn::Document</a></p> <p>The text box is like most other prawn functions and takes the data and then the options.</p> <pre><code>#text_box(text,options) pdf.text "Here is some text for this text entry", :size =&gt; 16, :align =&gt; :left </code></pre> <p>Using the <code>:align</code> option is what I think you need.</p> <p>The Rails Cast did an episode on Prawn that may also be useful. Check that out <a href="http://railscasts.com/episodes/153-pdfs-with-prawn" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1826727/rails-and-json-a-beginners-question/1827562#1827562 0 Answer by lillq for Rails and JSON: a beginner's question lillq 2009-12-01T17:04:54Z 2009-12-01T17:04:54Z <p>One site to check out is <a href="http://flori.github.com/json/" rel="nofollow">JSON implementation for Ruby</a>. This site offers a gem you can install for a much faster C extension variant.</p> <p>With the benchmarks given their <a href="http://flori.github.com/json/doc/index.html" rel="nofollow">documentation page</a> they claim that it is 21.500x faster then <code>ActiveSupport::JSON.decode</code></p> <p>The code would be the same as Milan Novota's answer with this gem, but the parsing would just be:</p> <pre><code>parsed_json = JSON(your_json_string) </code></pre> http://stackoverflow.com/questions/1821699/typecasting-base-class-models-in-single-table-inheritencesti-scenario/1824025#1824025 0 Answer by lillq for Typecasting base class models in Single Table Inheritence(STI) scenario lillq 2009-12-01T04:36:26Z 2009-12-01T04:36:26Z <p>You can always get a Consumer as such:</p> <pre><code>u = Consumer.find(id) </code></pre> http://stackoverflow.com/questions/1823301/preserve-object-ruby-on-rails/1823908#1823908 7 Answer by lillq for preserve object ruby on rails lillq 2009-12-01T03:56:40Z 2009-12-01T03:56:40Z <p>If you set it up as follows:</p> <pre><code>class ApplicationController &lt; ActionController::Base before_filter :set_user protected def set_user @user = User.find_by_id(session[:user_id]) end end </code></pre> <p>Then in all of controller, since they all inherits from <code>ApplicationController</code>, will have the <code>@user</code> value set.</p> <p><strong>Note:</strong> this will set the @user to nil if the session[:user_id] as not been set for this session.</p> <p>For more on filters and the :before_filter, check this link out: <a href="http://api.rubyonrails.org/classes/ActionController/Filters/ClassMethods.html" rel="nofollow">Module:ActionController::Filters::ClassMethods</a></p> http://stackoverflow.com/questions/1782469/model-relation-issue-with-ruby-on-rails 1 Model relation issue with Ruby on Rails lillq 2009-11-23T11:10:11Z 2009-11-24T18:24:12Z <p>I have a few models:</p> <pre><code>class StatsParent &lt; ActiveRecord::Base class CourseStat &lt; StatsParent class PlayerCourseStat &lt; CourseStat </code></pre> <p>I have the <code>Course</code> model set up as such:</p> <pre><code>class Course &lt; ActiveRecord::Base has_one :course_stat has_many :player_course_stats def update_stats(plyr_rnd) puts self.course_stat # this puts #&lt;PlayerCourseStat:0x000001015c54e0&gt; if self.course_stat self.course_stat.add_player_round(plyr_rnd) else self.course_stat = CourseStat.new(plyr_rnd) end end #...rest of the class </code></pre> <p>The issue I am running into: In the course I check to see if the <code>course_stat</code> exists and if it doesn't to create it. But in the model it is saying that it exists because there is a <code>player_course_stat</code> associated with this instance.</p> <p>When I dive into the <code>ruby script/console</code> and check to see the <code>course_stat</code> relationship it is nil.</p> <pre><code>&gt; ruby script/console Loading development environment (Rails 2.3.3) &gt;&gt; course = Course.find(1) =&gt; #&lt;Course id: ...&gt; &gt;&gt; course.course_stat =&gt; nil &gt;&gt; course.player_course_stats =&gt; [#&lt;PlayerCourseStat id: 1, ...&gt;] </code></pre> <ol> <li>Is there a problem with the way I have the relationships for the Course model set? </li> <li>Why is <code>course_stat</code> nil in the console but not in the application as it is running?</li> </ol> <p><strong>Update:</strong></p> <p>Looking into this a bit further I looked through the logs to get the SQL statements that are generated for the console and the application.</p> <pre><code># from console: course.course_stat CourseStat Load (0.2ms) SELECT * FROM "stats_parents" WHERE ("stats_parents".course_id = 1) AND ( ("stats_parents"."type" = 'CourseStat' ) ) LIMIT 1 # from app: course.course_stat CourseStat Load (0.3ms) SELECT * FROM "stats_parents" WHERE ("stats_parents".course_id = 3) AND ( ("stats_parents"."type" = 'CourseStat' OR "stats_parents"."type" = 'PlayerCourseStat' ) ) LIMIT 1 </code></pre> <p>I want a query like the console creates to be used. Is there a way for me to do this with out having to write the sql out in full?</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/398772#398772 0 Answer by lillq for What are the best programming articles? lillq 2008-12-29T21:42:15Z 2009-11-22T18:35:56Z <p><a href="http://www.acm.org/ubiquity/views/t%5Fburns%5F1.html" rel="nofollow">Effective Unit Testing</a> by Tim Burns.</p> <p><em>Careful programmers test early and test often.</em></p> http://stackoverflow.com/questions/1773367/linkto-issue-with-inherited-active-record-class 0 link_to issue with inherited Active Record class. lillq 2009-11-20T21:31:18Z 2009-11-21T00:12:59Z <p>Here are the classes as I have them set up:</p> <pre><code>class Stat &lt; ActiveRecord::Base belongs_to :stats_parent end class TotalStat &lt; Stat belongs_to :stats_parent end #The StatsParent class is just to show how I use the relation. class StatsParent &lt; ActiveRecord::Base has_one :total_stat has_many :stats end </code></pre> <p>For the Stats Controller index action:</p> <pre><code>def index @stats = Stat.all respond_to do |format| format.html # index.html.erb format.xml { render :xml =&gt; @stat } end end </code></pre> <p>In the index view for stats there is this bit of code:</p> <pre><code>&lt;% @stats.each do |stat| %&gt; ... &lt;td&gt;&lt;%= link_to 'Show', stat %&gt;&lt;/td&gt; &lt;% end %&gt; </code></pre> <p>And I get this error:</p> <pre><code>undefined method `total_stat_path' for #&lt;ActionView::Base:0x0000010324c1f8&gt; </code></pre> <p>Why cant the link_to work here? Do I need to create a separate controller to handle the <code>TotalStat</code>? </p> http://stackoverflow.com/questions/1759969/ruby-on-rails-hosting/1760398#1760398 0 Answer by lillq for Ruby on Rails Hosting lillq 2009-11-19T01:45:26Z 2009-11-19T01:56:53Z <p>Here are 2 SO questions you can check for more info:</p> <ol> <li><a href="http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects">Who are good web hosts for Ruby on Rails projects?</a></li> <li><a href="http://stackoverflow.com/questions/162144/what-is-a-good-ruby-on-rails-hosting-service">What is a good Ruby on Rails hosting service?</a></li> </ol> http://stackoverflow.com/questions/1673793/merging-array-items-in-ruby/1675784#1675784 1 Answer by lillq for merging array items in ruby lillq 2009-11-04T18:36:43Z 2009-11-04T20:43:40Z <p><strong>Edit:</strong> Martin DeMello code was fixed.</p> <p>When running Martin DeMello code (the accepted answer) I get:</p> <pre><code>[["B", "C", "E", "F"], ["A", "B", "C", "D"], ["F", "G"]] =&gt; [["B", "C", "E", "F", "A", "D", "G"], ["A", "B", "C", "D"], ["F", "G"]] and [["B", "C", "E", "F"], ["A", "B", "C", "D"], ["G"], ["G", "H"]] =&gt; [["B", "C", "E", "F", "A", "D"], ["A", "B", "C", "D"], ["G", "H"], ["G", "H"]] </code></pre> <p>which does not seem to meet your spec.</p> <p>Here is my approach using a few of his ideas:</p> <pre><code>a = [["B", "C", "E", "F"], ["A", "B", "C", "D"], ["F", "G"]] b = [["B", "C", "E", "F"], ["A", "B", "C", "D"], ["G"], ["G", "H"]] def reduce(array) h = Hash.new {|h,k| h[k] = []} array.each_with_index do |x, i| x.each do |j| h[j] &lt;&lt; i if h[j].size &gt; 1 # merge the two sub arrays array[h[j][0]].replace((array[h[j][0]] | array[h[j][1]]).sort) array.delete_at(h[j][1]) return reduce(array) # recurse until nothing needs to be merged end end end array end puts reduce(a).to_s #[["A", "B", "C", "D", "E", "F", "G"]] puts reduce(b).to_s #[["A", "B", "C", "D", "E", "F"], ["G", "H"]] </code></pre> http://stackoverflow.com/questions/1501554/running-into-an-issue-with-rails-2-3-4-and-ruby-1-9-1-undefined-method 1 Running into an issue with Rails 2.3.4 and Ruby 1.9.1: undefined method `^' lillq 2009-10-01T02:07:38Z 2009-10-25T15:33:46Z <p>I am trying to test to see if a simple run of a rail application with a database will work and I am running in to an issue.</p> <p>Here are the steps I am taking:</p> <pre><code>&gt; mkdir MyApp &gt; cd MyApp &gt; rails myapp ... &gt; rake db:create ... &gt; ruby script/generate scaffold user first_name:string last_name:string active:boolean ... &gt; rake db:migrate ... &gt; ruby script/server ... </code></pre> <p>From here, the first time I open <a href="http://localhost:3000/users" rel="nofollow">http://localhost:3000/users</a> the page will open and then I click "New User". Then I get this error:</p> <p>NoMethodError in Users#index<br /> Showing app/views/layouts/users.html.erb where line #12 raised:</p> <pre><code>undefined method `^' for "7":String </code></pre> <p>RAILS_ROOT: /Users/lillq/MyApp</p> <pre><code>/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-2.3.4/lib/active_support/message_verifier.rb:46:in `block in secure_compare' /usr/local/lib/ruby/gems/1.9.1/gems/activesupport-2.3.4/lib/active_support/message_verifier.rb:45:in `each' ... /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-2.3.4/lib/action_view/base.rb:197:in `flash' /Users/lillq/MyApp/app/views/layouts/users.html.erb:12:in `_run_erb_app47views47layouts47users46html46erb' /Users/lillq/MyApp/app/controllers/users_controller.rb:7:in `index' </code></pre> <p>So, first I thought that the versions might not be compatible, but there are several questions that say that 1.9.1 and rails are compatible. </p> <ul> <li><a href="http://stackoverflow.com/questions/1000495/is-rails-now-working-with-ruby-1-9">Is Rails now working with Ruby 1.9?</a> </li> <li><a href="http://stackoverflow.com/questions/783651/is-it-possible-to-run-ruby-on-rails-with-ruby-1-9x">Is it possible to run Ruby on Rails with Ruby 1.9x?</a></li> </ul> <p>Both say that Rail and Ruby 1.9 should work.</p> <p>So here are the versions that I am running:</p> <pre><code>lillq:~/MyApp &gt; ruby --version ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-darwin10.0.0] lillq:~/MyApp &gt; gem --version 1.3.5 lillq:~/MyApp &gt; gem list *** LOCAL GEMS *** actionmailer (2.3.4) actionpack (2.3.4) activerecord (2.3.4) activeresource (2.3.4) activesupport (2.3.4) mysql (2.8.1) rack (1.0.0) rails (2.3.4) rake (0.8.7) sqlite3-ruby (1.2.5) </code></pre> <p>So from what I can find online, all things are telling me that this should run. What am I missing?</p> http://stackoverflow.com/questions/1501554/running-into-an-issue-with-rails-2-3-4-and-ruby-1-9-1-undefined-method/1501812#1501812 1 Answer by lillq for Running into an issue with Rails 2.3.4 and Ruby 1.9.1: undefined method `^' lillq 2009-10-01T03:51:24Z 2009-10-25T15:33:46Z <p>Thanks to <a href="http://stackoverflow.com/users/88340/statenjason">statenjason</a> for link to <a href="https://rails.lighthouseapp.com/projects/8994/tickets/3144-undefined-method-for-string-ror-234" rel="nofollow">undefined method `^' for String - RoR 2.3.4</a> which provides the solution.</p> <p>A link to the patch is <a href="https://rails.lighthouseapp.com/projects/8994/tickets/3144/a/261015/0001-ruby-1.9-friendly-secure%5Fcompare.patch" rel="nofollow">here</a>.</p> <p>From this document I took the code and made the change to the file:</p> <p><strong>lib/ruby/gems/1.9.1/gems/activesupport-2.3.4/lib/active_support/message_verifier.rb</strong></p> <p>message_verifier.rb <strong>old</strong> secure_compare:</p> <pre><code> def secure_compare(a, b) if a.length == b.length result = 0 for i in 0..(a.length - 1) result |= a[i] ^ b[i] end result == 0 else false end end </code></pre> <p>message_verifier.rb <strong>new</strong> secure_compare:</p> <pre><code> def secure_compare(a, b) if a.respond_to?(:bytesize) # &gt; 1.8.6 friendly version if a.bytesize == b.bytesize result = 0 j = b.each_byte a.each_byte { |i| result |= i ^ j.next } result == 0 else false end else # &lt;= 1.8.6 friendly version if a.size == b.size result = 0 for i in 0..(a.length - 1) result |= a[i] ^ b[i] end result == 0 else false end end end </code></pre> <p>After making this change, the issue is solved.</p> http://stackoverflow.com/questions/52550/what-does-the-operator-do-in-c 14 What does the ',' operator do in C? lillq 2008-09-09T18:34:09Z 2009-09-04T01:27:03Z <p>What does the ',' operator do in C?</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/1370793#1370793 175 Answer by lillq for Worst UI You've Ever Used lillq 2009-09-02T23:59:50Z 2009-09-03T16:19:38Z <p>This is my favorite:</p> <p><img src="http://blog.lanesloft.com/wp-content/uploads/blog.lanesloft.com/2009/09/up%5Fdown%5Felevator.jpg" alt="Elevator" /></p> http://stackoverflow.com/questions/1368186/bash-script-to-archive-files-and-then-copy-new-ones/1368249#1368249 2 Answer by lillq for Bash script to archive files and then copy new ones. lillq 2009-09-02T15:01:51Z 2009-09-02T15:08:06Z <p>A good refference for any bash scripting is <a href="http://tldp.org/LDP/abs/html/" rel="nofollow">Advanced Bash-Scripting Guide</a>.</p> <p>This guide explains every thing bash scripting.</p> <p>The basic approach I would take is:</p> <pre><code>Move the files you want to zip to a directory your create. (commands mv and mkdir) zip the directory. (command gzip, I assume) Copy the new files to the desired location (command cp) </code></pre> <p>In my experience bash scripting is mainly knowing how to use these command well and if you can run it on the command line you can run it in your script.</p> <p>Another command that might be useful is</p> <pre><code>pwd - this returns the current directory </code></pre> http://stackoverflow.com/questions/1358232/why-use-macros-in-c/1358264#1358264 4 Answer by lillq for Why use Macros in C? lillq 2009-08-31T16:41:19Z 2009-08-31T16:41:19Z <p>Macros can have many different uses other than function like things.</p> <p>It is very useful to use macros for anything magic number or string related.</p> <pre><code>#define MY_MAGIC_NUM 57 /*MY_MAGIC_NUM used all through out the code*/ </code></pre> http://stackoverflow.com/questions/1264402/what-is-the-best-way-to-explain-bit-manipulation-to-the-students/1281787#1281787 2 Answer by lillq for What is the best way to explain bit manipulation to the students? lillq 2009-08-15T12:17:08Z 2009-08-17T12:15:52Z <p>Start with the basics and work up.</p> <p><strong>Basic Boolean Algebra</strong></p> <p>Practice Boolean Algebra with Truth Tables. Write column of all inputs and break down the steps to calculate.</p> <p><a href="http://en.wikipedia.org/wiki/Logical%5Foperator#All%5Fbinary%5Flogical%5Fconnectives" rel="nofollow">Binary Logical Connectives</a></p> <p><strong>Not</strong></p> <pre><code>A | Not A --+------- 0 | 1 1 | 0 </code></pre> <p><strong>And</strong></p> <pre><code>A | B | A And B --+---+-------- 0 | 0 | 0 0 | 1 | 0 1 | 0 | 0 1 | 1 | 1 </code></pre> <p><strong>Or</strong></p> <pre><code>A | B | A Or B --+---+------- 0 | 0 | 0 0 | 1 | 1 1 | 0 | 1 1 | 1 | 1 </code></pre> <p><strong>Xor</strong></p> <pre><code>A | B | A Xor B --+---+-------- 0 | 0 | 0 0 | 1 | 1 1 | 0 | 1 1 | 1 | 0 </code></pre> <p>An Exercise:</p> <pre><code>(A And B) Or (B And C) A | B | C | A And B | B And C | (A And B) Or (B And C) --+---+---+---------+---------+----------------------- 0 | 0 | 0 | 0 | 0 | 0 0 | 0 | 1 | 0 | 0 | 0 0 | 1 | 0 | 0 | 0 | 0 0 | 1 | 1 | 0 | 1 | 1 1 | 0 | 0 | 0 | 0 | 0 1 | 0 | 1 | 0 | 0 | 0 1 | 1 | 0 | 1 | 0 | 1 1 | 1 | 1 | 1 | 1 | 1 </code></pre> <p><strong>Binary Representations</strong></p> <p>Hexadecimal Representation</p> <pre><code>Hex | Binary ----+------- 0 | 0000 1 | 0001 2 | 0010 3 | 0011 4 | 0100 5 | 0101 6 | 0110 7 | 0111 8 | 1000 9 | 1001 A | 1010 B | 1011 C | 1100 D | 1101 E | 1110 F | 1111 So, 1A6 = 0001 1010 0110 </code></pre> <p><strong>Logical Statement Reduction</strong></p> <p><a href="http://en.wikipedia.org/wiki/Logical%5Foperator#All%5Fbinary%5Flogical%5Fconnectives" rel="nofollow">Properties of Boolean Algebra</a></p> <p><a href="http://en.wikipedia.org/wiki/De%5FMorgan%27s%5Flaws" rel="nofollow">De Morgan's Laws</a></p> <pre><code>Not (A Or B) = (Not A) And (Not B) Not (A And B) = (Not A) Or (Not B) </code></pre> <p><strong>Examples of and code for Bit Manipulation Uses</strong></p> <p>There is a very good article on many uses for Bit Manipulation Uses called <a href="http://graphics.stanford.edu/~seander/bithacks.html" rel="nofollow">Bit Twiddling Hacks</a> by Sean Eron Anderson.</p> http://stackoverflow.com/questions/350942/what-is-your-experience-of-devtrack/351726#351726 3 Answer by lillq for What is your experience of Devtrack? lillq 2008-12-09T03:58:57Z 2009-08-16T07:03:58Z <p>We use Devtrack as our current bug tracking system, and I would say you can do a lot better. A comment I would add to Joel's post is searching is not implemented well and is very slow.</p> <p>One other solution I might look into is <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Jira</a></p> http://stackoverflow.com/questions/108728/suggestions-for-implementation-of-a-command-line-interface 10 Suggestions for implementation of a command line interface lillq 2008-09-20T16:56:06Z 2009-07-26T08:42:11Z <p>I am redesigning a command line application and am looking for a way to make its use more intuitive. Are there any conventions for the format of parameters passed into a command line application? Or any other method that people have found useful?</p> http://stackoverflow.com/questions/53426/memory-leak-detectors-for-c 11 Memory leak detectors for C? lillq 2008-09-10T04:47:57Z 2009-07-07T00:38:05Z <p>What memory leak detectors have people had a good experience with?</p> <p>Here is a summary of the answers so far:</p> <p><a href="http://valgrind.org/" rel="nofollow">Valgrind</a> - Instrumentation framework for building dynamic analysis tools.</p> <p><a href="http://directory.fsf.org/project/ElectricFence/" rel="nofollow">Electric Fence</a> - A tool that works with GDB</p> <p><a href="http://splint.org/" rel="nofollow">Splint</a> - Annotation-Assisted Lightweight Static Checking</p> <p><a href="http://www.glowcode.com/" rel="nofollow">Glow Code</a> - This is a complete real-time performance and memory profiler for Windows and .NET programmers who develop applications with C++, C#, or any .NET Framework</p> <p>Also see this <a href="http://stackoverflow.com/questions/45627/how-do-you-detectavoid-memory-leaks-in-your-unmanaged-code">stackoverflow post</a>.</p> http://stackoverflow.com/questions/11514/is-it-possible-to-be-ambikeyboardrous/53412#53412 6 Answer by lillq for Is it possible to be ambikeyboardrous? lillq 2008-09-10T04:21:55Z 2009-06-23T19:50:53Z <h2>Web</h2> <p>For your situation of being at a public computer that you cannot switch the keyboard layout on, you can go to this website: <a href="http://www.geocities.com/malibu_malv/convert.html" rel="nofollow">http://www.geocities.com/malibu_malv/convert.html</a></p> <p>Use this to translate your typing and then use copy paste. I found this very useful when I was out of the country and had to write a bunch of emails at public computers.</p> <h2>USB Drive</h2> <p>Put this <a href="http://typedvorak.com/2007/07/22/the-best-way-to-use-dvorak-on-windows-dvassist/" rel="nofollow">Dvorak Utility</a> on your USB drive. </p> <p>Run this app and it will put a icon in the system tray on windows. This icon will switch the computer between the two keyboard layouts and it works. (If you have tried switching back and forth from dvorak to qwerty you will know what I mean. Windows does the worst job of this one bit of functionality.)</p> http://stackoverflow.com/questions/50525/c-implicit-casting-and-interger-overflowing-in-the-evaluation-of-expressions 2 C: Implicit casting and interger overflowing in the evaluation of expressions lillq 2008-09-08T19:57:12Z 2009-06-14T10:54:50Z <p>Lets take the code</p> <pre><code>int a, b, c; ... if ((a + b) &gt; C) </code></pre> <p>If the values of a and b add to exceed the max value of an int will the integrity of the comparison be compromised? I was thinking that there might be an implicit up cast or overflow bit checked and factored into the evaluation of this expression. </p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/735333#735333 1 Answer by lillq for What are the best programming articles? lillq 2009-04-09T18:16:19Z 2009-04-10T21:25:59Z <p><strong><a href="http://blog.stackoverflow.com/2009/04/what-stack-overflow-can-teach-you/" rel="nofollow">What Stack Overflow Can Teach You</a></strong> by Jeff Atwood.</p> <p>This article describes eloquently the way that feedback helps you grow as a programmer, and shows how that is a key to success. </p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/738919#738919 0 Answer by lillq for What are the best programming articles? lillq 2009-04-10T21:25:02Z 2009-04-10T21:25:02Z <p><strong><a href="http://www.itu.dk/~slauesen/Papers/SixStyles.pdf" rel="nofollow">Six Styles for Usability Requirements</a></strong> by Soren Lauesen &amp; Houman Younessi</p> <p>I was looking into how to define usability as a requirement and came across this article. It is well written and was very helpful.</p> <p><strong>Abstract.</strong> A system can have adequate functionality, but inadequate usability because it is too difficult to use. The purpose of usability requirements is to guard against that. This paper shows six styles for usability requirements seen in practice or recommended by experts. For each style we discuss how we can verify the requirements, how we can use them during development, how we elicit the data for the specification, and to what extent the style covers the essence of usability.</p> http://stackoverflow.com/questions/562303/the-definitive-c-book-guide-and-list 17 The Definitive C Book Guide and List lillq 2009-02-18T18:32:02Z 2009-03-25T20:52:22Z <p>To follow the example of <a href="http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list">The Definitive C++ Book Guide and List</a> for C Books here is a wiki post for organization.</p> <p>A tag search for "C" and "Books" returns no complete book list results as of writing this question. That search is <a href="http://stackoverflow.com/questions/tagged/books%20c">here.</a></p> <p>This post is to providing QUALITY books and an approximate skill level. Maybe we can add a short blurb/description about each book that you have personally read / benefited from. Feel free to debate quality, headings, etc.</p> <p><strong>Reference Style - All Levels</strong></p> <ol> <li><a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a> (also known as: K &amp; R) - Brian W. Kernighan and Dennis M. Ritchie </li> <li><a href="http://rads.stackoverflow.com/amzn/click/013089592X" rel="nofollow">C: A Reference Manual</a> - Samuel P. Harbison and Guy R. Steele</li> </ol> <p><strong>Beginner</strong></p> <ol> <li><a href="http://rads.stackoverflow.com/amzn/click/0672326965" rel="nofollow">C Primer Plus</a> - Stephen Prata</li> <li><a href="http://knking.com/books/c/" rel="nofollow">C Programming: A Modern Approach</a> - K. N. King</li> </ol> <p><strong>Intermediate</strong></p> <ol> <li><a href="http://www.planetpdf.com/codecuts/pdfs/ooc.pdf" rel="nofollow">Object-oriented Programming with ANSI-C</a> - Axel-Tobias Schreiner</li> <li><a href="http://www.cs.princeton.edu/software/cii/" rel="nofollow">C Interfaces and Implementations</a> - David R. Hanson</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0201604612" rel="nofollow">The C Puzzle Book</a> - Alan R. Feuer</li> </ol> <p><strong>Above Intermediate</strong></p> <ol> <li><a href="http://rads.stackoverflow.com/amzn/click/0131774298" rel="nofollow">Expert C Programming: Deep C Secrets</a> - Peter van der Linden</li> </ol> http://stackoverflow.com/questions/449101/iphone-development-books/569949#569949 1 Answer by lillq for iPhone development books lillq 2009-02-20T15:21:59Z 2009-02-20T15:21:59Z <p>For general cocoa programing check out <a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">Cocoa Programming for Mac</a>. This is a bit more general purpose but helps with iPhone Development.</p> http://stackoverflow.com/questions/563588/do-you-save-the-code-you-wrote-at-your-previous-jobs/563705#563705 0 Answer by lillq for Do you save the code you wrote at your previous jobs? lillq 2009-02-19T02:14:40Z 2009-02-19T19:13:12Z <p>There are two question that discuss this topic that you may want to check out.</p> <p>As to the <strong>If so, how do you organize it?</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/550260/what-do-you-do-with-your-toolbox-when-changing-jobs">What do you do with your “toolbox” when changing jobs?</a></li> </ul> <p>As to the <strong>Are there ethical implications?</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/81797/is-it-ethical-legal-to-bring-your-favorite-code-with-you-after-a-job">Is it ethical/legal to bring your favorite code with you after a job?</a></li> </ul> http://stackoverflow.com/questions/561739/whats-are-good-books-for-learning-c-c/561751#561751 0 Answer by lillq for Whats are good books for learning C/C++ lillq 2009-02-18T16:09:09Z 2009-02-18T16:09:09Z <p><a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">K and R</a> is the best.</p> http://stackoverflow.com/questions/542906/looking-for-input-on-software-development-best-practices/542997#542997 0 Answer by lillq for Looking for input on Software Development best practices lillq 2009-02-12T20:03:17Z 2009-02-12T20:19:11Z <p>I would start on <a href="http://stackoverflow.com/questions/tagged?tagnames=best-practices&amp;sort=votes&amp;pagesize=50">SO best-practices Tag, by highest votes</a>. There is a ton of stuff there.</p> http://stackoverflow.com/questions/540822/allocating-memory-for-triple-pointer/541850#541850 0 Answer by lillq for Allocating memory for triple pointer lillq 2009-02-12T15:40:11Z 2009-02-12T15:40:11Z <p>There are two use cases for a funciton like your someFunction() that I would use.</p> <p><strong>For initialization:</strong></p> <pre><code>{ tchar **returnErrors; initErrors(tchar &amp;returnErrors); /* now returnErrors has a place in memory*/ } int initErrors(tchar ***returnErrors) { *returnErrors = malloc(sizeof(tchar *) * SIZE1) for (i = 0; i &lt; NUM_ELEMENTS; i++) (*returnErrors)[i] = malloc(sizeof(tchar) * SIZE2); /*add checks for malloc failures*/ } </code></pre> <p><strong>Array passing to a function:</strong></p> <pre><code>{ returnErrors[SIZE1][SIZE2][SIZE3]; someFunciton(returnErrors); } int someFunciton(tchar ***returnErrors) { /*assuming that this is a valid index*/ tchar x = returnErrors[1][1][1]; /*return errors is used as a triple array*/ } </code></pre> http://stackoverflow.com/questions/1078065/most-readable-programming-language-to-simulate-10-000-chutes-and-ladders-game-pla/1078162#1078162 Comment by lillq on most readable programming language to simulate 10,000 chutes and ladders game plays? lillq 2009-12-01T18:11:30Z 2009-12-01T18:11:30Z I made a few fixes in the code so that it should now run. http://stackoverflow.com/questions/1782469/model-relation-issue-with-ruby-on-rails/1791669#1791669 Comment by lillq on Model relation issue with Ruby on Rails lillq 2009-11-25T00:12:18Z 2009-11-25T00:12:18Z Thanks. This seems to be the most simple solution even though it seems redundant. http://stackoverflow.com/questions/1782469/model-relation-issue-with-ruby-on-rails Comment by lillq on Model relation issue with Ruby on Rails lillq 2009-11-23T22:56:22Z 2009-11-23T22:56:22Z Maybe I should create a named scope to select where &quot;stats_parents&quot;.&quot;type&quot; = 'CourseStat' for a Course? http://stackoverflow.com/questions/1782469/model-relation-issue-with-ruby-on-rails Comment by lillq on Model relation issue with Ruby on Rails lillq 2009-11-23T22:53:29Z 2009-11-23T22:53:29Z I added an update to show the queries that are run. I hope that helps for clarification. http://stackoverflow.com/questions/1782469/model-relation-issue-with-ruby-on-rails/1783042#1783042 Comment by lillq on Model relation issue with Ruby on Rails lillq 2009-11-23T22:51:18Z 2009-11-23T22:51:18Z The only real difference between a PlayerCourseStat and a CourseStat is that a PlayerCourseStat is associated with a user and a CourseStat is not. Since they are both updated the same way it make sense to me to have the PlayerCourseStat inherit from the CourseStat to prevent duplicated code of the update method. http://stackoverflow.com/questions/1773367/linkto-issue-with-inherited-active-record-class/1773597#1773597 Comment by lillq on link_to issue with inherited Active Record class. lillq 2009-11-20T23:27:23Z 2009-11-20T23:27:23Z Thanks a bunch! http://stackoverflow.com/questions/1773367/linkto-issue-with-inherited-active-record-class/1773597#1773597 Comment by lillq on link_to issue with inherited Active Record class. lillq 2009-11-20T22:49:07Z 2009-11-20T22:49:07Z The method stat_path() is generated somewhere. Could you point me to any doc that describes what method like this are generated for me? http://stackoverflow.com/questions/282534/what-are-great-programming-related-online-talks-videos Comment by lillq on What are great programming-related online talks / videos? lillq 2009-11-08T18:37:07Z 2009-11-08T18:37:07Z Can you make this a community wiki? http://stackoverflow.com/questions/1673793/merging-array-items-in-ruby/1675680#1675680 Comment by lillq on merging array items in ruby lillq 2009-11-04T20:44:22Z 2009-11-04T20:44:22Z Nice and simple. I like it. http://stackoverflow.com/questions/1673793/merging-array-items-in-ruby/1675057#1675057 Comment by lillq on merging array items in ruby lillq 2009-11-04T18:37:47Z 2009-11-04T18:37:47Z [[&quot;B&quot;, &quot;C&quot;, &quot;E&quot;, &quot;F&quot;], [&quot;A&quot;, &quot;B&quot;, &quot;C&quot;, &quot;D&quot;], [&quot;F&quot;, &quot;G&quot;]] =&gt; [[&quot;B&quot;, &quot;C&quot;, &quot;E&quot;, &quot;F&quot;, &quot;A&quot;, &quot;D&quot;, &quot;G&quot;], [&quot;A&quot;, &quot;B&quot;, &quot;C&quot;, &quot;D&quot;], [&quot;F&quot;, &quot;G&quot;]] which does not meet is spec outlined above. This should be [[&quot;A&quot;, &quot;B&quot;, &quot;C&quot;, &quot;D&quot;, &quot;E&quot;, &quot;F&quot;, &quot;G&quot;]]. http://stackoverflow.com/questions/1635388/metaprogramming-ruby-request-to-use-quote-in-book Comment by lillq on Metaprogramming Ruby: Request to use quote in book lillq 2009-10-28T05:56:12Z 2009-10-28T05:56:12Z This is not a question about programing or really even really a question. Please read the FAQ for this site. http://stackoverflow.com/questions/1200466/c-free-question/1200673#1200673 Comment by lillq on c free question lillq 2009-10-25T15:27:07Z 2009-10-25T15:27:07Z That would lead to a mem leak. http://stackoverflow.com/questions/1147160/being-someone-new-to-ajax-what-would-be-a-good-place-to-start Comment by lillq on Being someone new to AJAX, what would be a good place to start? lillq 2009-10-06T16:34:03Z 2009-10-06T16:34:03Z Book recommendation posts should be community wiki posts. http://stackoverflow.com/questions/1418840/how-much-math-do-you-use-as-a-computer-scientist Comment by lillq on How much math do you use as a computer scientist? lillq 2009-09-13T22:03:55Z 2009-09-13T22:03:55Z Dup of <a href="http://stackoverflow.com/questions/157354/is-mathematics-necessary-for-programming" rel="nofollow" title="is mathematics necessary for programming">stackoverflow.com/questions/157354/&hellip;</a> and <a href="http://stackoverflow.com/questions/451771/whats-the-highest-level-math-youve-used-in-the-real-world" rel="nofollow" title="whats the highest level math youve used in the real world">stackoverflow.com/questions/451771/&hellip;</a> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used Comment by lillq on Worst UI You've Ever Used lillq 2009-09-09T00:02:04Z 2009-09-09T00:02:04Z Bad UI is easy with lots of buttons and features, but when the task is simple and the UI is bad it truly shows poor design.