This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Messages - Michael_Lee
Pages: 1 ... 6 7 [8] 9 10 ... 70
106
« on: September 05, 2011, 12:08:26 am »
and doesn't act as normal to gravity as other models.
lolwut? I don't know much about asm, but this sounds pretty interesting. Hmm, I wonder... What if Axe was ported to every calculator TI ever made? Pretty unlikely though, methinks.
107
« on: September 03, 2011, 05:33:38 pm »
A few more problems:
1. It's really hard to read the gray font. Perhaps shift it to the side and give it a white background?
2. I can't click on another key when the text covers it. Again, try shifting it to a different location.Edit: Scratch that, I had to maximize my window. That solved it
108
« on: September 03, 2011, 05:25:07 pm »
I can't get it to work -- it lists a huge bunch of warnings in gray at the top. Warning: DOMDocument::load(): Unescaped '<' not allowed in attributes values in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): attributes construct error in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): Couldn't find end of Start Tag k line 2 in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): error parsing attribute name in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): attributes construct error in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): Couldn't find end of Start Tag i line 2 in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): expected '>' in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): Opening and ending tag mismatch: c line 2 and i in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4 Warning: DOMDocument::load(): Extra content at the end of the document in /home/deepthought/public_html/resources/keypad/conf.xml, line: 2 in /home/deepthought/public_html/resources/keypad/index.php on line 4
Edit: Ninja'd
109
« on: August 29, 2011, 03:42:02 pm »
For me I can run stuff from USB stick and run EXEs. I'm Python programming in IDLE in school right now.
Which portable python version are you using/what's the name?
110
« on: August 28, 2011, 09:55:03 pm »
House of Leaves(Daneilewski is another fantastically creative writer. his work is of a slightly different flavour, but no less enjoyable. he also does some stream of consciousness work, like Only Revolutions).
Fix'd I have to agree -- that was an awesome book. I can't believe I forgot about it.
111
« on: August 28, 2011, 01:35:32 am »
If only there was a website that could access other sites through it...
*coughproxiescoughpersonalwebsitecough*
>.>
Here is what you do... go to http://portableapps.com/ Download either FF or Chrome to your flash drive. (and make sure the default for proxies is none) run at school. FREEDOM
Just an fyi, that doesn't work on all schools -- I tried, on mine.
Why doesn't it work?
My school chokes the internet connection itself. It doesn't matter what browser I use, or how I configure the computer -- it's already been filtered upstream where I can't change anything.
112
« on: August 28, 2011, 01:03:52 am »
If only there was a website that could access other sites through it...
*coughproxiescoughpersonalwebsitecough* >.> Here is what you do... go to http://portableapps.com/ Download either FF or Chrome to your flash drive. (and make sure the default for proxies is none) run at school. FREEDOM
Just an fyi, that doesn't work on all schools -- I tried, on mine.
113
« on: August 28, 2011, 12:01:19 am »
The Ender's Shadow series was a lot better than the original ender's game sequels. Just FYI.
The ones about Bean? I concur wholeheartedly.
114
« on: August 27, 2011, 11:57:55 pm »
Books/authors I like: - Neuromancer - Anything by Terry Pratchett - The Hitchhiker's Guide to the Galaxy - Anything by Garth Nix (but especially the Abhorsen series) - Pillars of the Earth - Anything by Ayn Rand -- personally, I disagree with her politics, but I've always felt her books have a compelling rhythm in them. - The Slaughterhouse - Anything by Agatha Christie - Anything by Neil Gaiman (try "Neverwhere" or "Coraline") - Anything by Cory Doctorow (although he has a tendency to lecture) - Anything by H. P. Lovecraft (try "Color Out of Space" or "At the Mountains of Madness") - 1984 Books/authors I agree with: - Catch-22 - A Wrinkle in Time - Watership Down - Ender's Game (the rest of them are 'meh') - Lord of the Flies - The House of the Scorpion - The Hunger Games (series) - Pendragon series (mostly because of the last books, which were epic) - Harry Potter - Nearly anything about Eoin Colfer (he was my favorite author when I was younger) - Anything by Cornelia Funke (especially the Inkheart saga (Inkdeath was AWESOME)) - Gödel Escher Bach - Anything relating to Sherlock Holmes I haven't read a lot of the books on here -- I know what I'm going to be doing for the next few weeks
115
« on: August 24, 2011, 12:23:56 pm »
I'm not sure why everyone has been using Zeros(pointer,size) in their code. This is not valid syntax. Zeros() only takes a single argument, and that is size. You want to use Zeros(size)→pointer instead.
Erm, I was copying Deep Thought who (I suspect) was copying Qwerty. >.> *Michael hides
116
« on: August 24, 2011, 11:59:57 am »
Try making the length of Str1 much larger then you need it to be -- I don't think it's easy to change the size of a constant after it's declared.
Zeros(50)->Str1
Copy("String 1",Str1,8) Copy("The next string",Str1,15)
Alternatively, you could use either a buffer (like L1, L2, etc.) or an appvar. This might not work/probably needs tweaking, but try something like:
Zeros(700)->L1 "Hello World!"->L1 Text(10,10,L1) "Goodbye"[00]->L1 Text(10,20,L1)
(The [00] adds a null byte, just in case)
Also, I'm trying to remember -- if you compile as an app, can you rewrite program memory like Str1 or Pic02?
Edit: Changed 'Zero(pointer,size)' to 'Zero(size)->pointer'
117
« on: August 24, 2011, 11:46:38 am »
A suggestion -- did you make Wabbitemu create a ROM image, or are you using one copied/some_other_verb from your physical calculator?
I've generally found that getting the ROM directly from the calculator is much more bug-free.
118
« on: August 22, 2011, 10:17:12 am »
I remember somebody bringing up Meyers Briggs earlier, so I merged the two. I seem to test around INTJ or INTP, although as of late I've been (consciously) trying to work on my 'S' side. I personally like this test because it actually allows you to chose somewhere around the middle.
119
« on: August 20, 2011, 05:14:14 pm »
Every word that the user writes gets added to the list (a temporary list, it's over when the file is closed). Why? Because a lot of times we need to write the same thing more than once. In Axe, it's not so usual, because we don't have long variable names, but it's still useful sometimes with strings and commnts.
Hmm, maybe it might be better to focus on recalling names of constants or labels/subroutines? I don't think it'll be worth caching things in strings or comments, given that those are relatively unique. That way, I don't have to work as hard remembering the names of functions, appvars, or constants, which are usually just cryptic combinations of 5 letters (I think 5 is the new limit in Axe?)
120
« on: August 18, 2011, 06:02:19 pm »
Welcome to Omnimaga!
Pages: 1 ... 6 7 [8] 9 10 ... 70
|