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.
Topics - flyingfisch
31
« on: February 08, 2012, 12:36:40 pm »
KermMartian posted this link on Cemetech which he found on casio's FB page. LinkAccording to the link, if you finish all the assessments, you will get a FREE Prizm! To get a ClassPad you have to be a teacher though.
32
« on: February 01, 2012, 09:28:41 pm »
I just received 2 1GB sticks RAM I bought online for my eMachines T2482. I got it from pcprogress.com. When I try to boot up my monitor does not come out of powersave mode, but beeps until I hard power off. Knowing a little bit of POST, I know this means there is no RAM recognised by the computer. So, this makes me think that my RAM is incompatible, since its unlikely for 2 sticks to be bad. I tried putting them in one at a time in each slot, still no help. OTHER INFO: I currently have 2 sticks of 512MB RAM. The new sticks' stickers look like this: NETLIST NL9127RD12042 - D21JSB 1GB DDR RDIMM PC2100 - 200436 0197 - 97B - 255BDL
BARCODE
The par that says "DDR RDIMM" is what I'm wondering about. Is RDIMM different than DIMM or SDRAM? Will a computer that uses DDR DIMM/SDRAM be compatible with RDIMM? If these stick are indeed incompatible, is it worth it to pay $60 from crucial for the guaranteed stuff? (I got these sticks for $9.98 from pc progress) Thx in advance
33
« on: January 29, 2012, 10:10:12 pm »
Hi. I have 2GB of RAM being shipped to my house ATM and while I'm in the mood of upgrading an old PC... I thought it might be fun to overclock the CPU (If its possible without extensive cooling systems).
So...
MY SPECS: eMachines T2482 with stock motherboard and fans AMD Athlon 2400+ (2.0GHz) 512MB RAM (2GB on the way, the most my board will recognise) 510MB Swap/Virtual Memory
Ubuntu 11.10/WinXP Pro
Can I OC this without replacing the fans? Is there a linux program to check CPU temp at 100%? Will my BIOS let me OC?
Is it worth it?
I only want to OC it to about 2.3GHZ or so.
34
« on: January 09, 2012, 11:40:43 am »
Post the most interesting experience you have had. Here's mine: In august '11 I jammed my finger in a car jack and got the whole tip of it torn off. Had to go to the hospital to get a tetanus shot and to get it cleaned. It was Friday night and it had to be about the most interesting experience I had. There was a guy who got shot, but didnt want to file any charges, had no idea how he got shot, where he got shot or who shot him , a guy who got in a fight and had a different story every time he told it, and i guy on drugs. I got out at about 4AM. lol BTW: I chatted on omnomirc with one hand anyway!
35
« on: January 06, 2012, 03:57:28 pm »
I dont have a prizm, but if someone would like to post the seconds it takes for prizm to finish the 9-queens problem (code below) we could compare its speed to other calcs10->J Lbl 2 1.0000001->A A->B 27->I Lbl 1 A*A->A B^2.01->B Dsz I:Goto 1 Dsz J:Goto 2 "A=":A, "B=":B,
36
« on: January 06, 2012, 11:59:46 am »
I have found that if you use code that looks like this: [ code]some code[ /code]
or this: [ code] some code[ /code]
The numbers will turn out wrong. However, doing this type of code: [ code] some code [ /code]
Makes the number aligned, but also adds a new line to the end of the codeblock. Just thought that information would be useful
37
« on: January 05, 2012, 10:16:28 am »
NOTE: I am posting this in PRIZM projects, but since there is no LuaFX for PRIZM yet, it would be nice to have a LuaFX/AFX projects section I have been meaning to make a GUI library for a while and have only now found the time, so here it is in alpha-of-an-alpha Available functions: * Lua Classes (thanks to adriweb for code) * Input text (missing in the originl luaFX) Planned functions to be included: * Buttons * Window Manager * EZ Menus * Dialog boxes * Radio Buttons * Check Boxes * More Since this project is free and open source, and you are free to fork it if you want, here is the code: EDIT: Added a GitHub repo-- locals local line = graydraw.line local wait = misc.wait local setcolor = graydraw.setcolor local text = graydraw.text local exitprog = misc.exit local print = nbdraw.print local find = string.find local setCursor = nbdraw.setcursor local strsub = string.sub local strlen = string.len
--[[-- CalGUI (Pronounced Cal-gew-ey), a GUI library for LuaFX By flyingfisch Last Updated 1/05/2012 This project is free and open source. --]]--
--[[-- Class definition system Borrowed from LuaNspire Thanks to adriweb for code --]]-- class = function(prototype) local derived = {} local derivedMT = { __index = prototype, __call = function(proto, ...) local instance = {} local instanceMT = { __index = derived, __call = function() return nil, "ERROR: Attempt to invoke an instance of a class" end, } setmetatable(instance, instanceMT) if instance.init then instance:init(...) end return instance end, } setmetatable(derived, derivedMT) return derived end
--[[-- Input text system --]]-- function input() setcolor(false) --set 5-color mode "false" i = 1 parse = "" print(parse .. "_") --keystrokes while not key(5) do repeat --non-alpha: if alpha == 0 then if key(1) then parse = parse .. "0" end if key(2) then parse = parse .. "." end if key(4) then parse = parse .. "-" end if key(6) then parse = parse .. "1" end if key(7) then parse = parse .. "2" end if key(8) then parse = parse .. "3" end if key(9) then parse = parse .. "+" end if key(10) then parse = parse .. "-" end if key(11) then parse = parse .. "4" end if key(12) then parse = parse .. "5" end if key(13) then parse = parse .. "6" end if key(14) then parse = parse .. "*" end if key(15) then parse = parse .. "/" end if key(16) then parse = parse .. "7" end if key(17) then parse = parse .. "8" end if key(18) then parse = parse .. "9" end if key(19) then parse = strsub(parse,1,#parse-1) end if key(33) then alpha = 1 end --alpha: else if key(1) then parse = parse .. "z" end if key(2) then parse = parse .. " " end if key(3) then parse = parse .. [["]] end if key(6) then parse = parse .. "u" end if key(7) then parse = parse .. "v" end if key(8) then parse = parse .. "w" end if key(9) then parse = parse .. "x" end if key(10) then parse = parse .. "y" end if key(11) then parse = parse .. "p" end if key(12) then parse = parse .. "q" end if key(13) then parse = parse .. "r" end if key(14) then parse = parse .. "s" end if key(15) then parse = parse .. "t" end if key(16) then parse = parse .. "m" end if key(17) then parse = parse .. "n" end if key(18) then parse = parse .. "o" end if key(19) then parse = strsub(parse,1,#parse-1) end if key(21) then parse = parse .. "g" end if key(22) then parse = parse .. "h" end if key(23) then parse = parse .. "i" end if key(24) then parse = parse .. "j" end if key(25) then parse = parse .. "k" end if key(26) then parse = parse .. "l" end if key(27) then parse = parse .. "a" end if key(28) then parse = parse .. "b" end if key(29) then parse = parse .. "c" end if key(30) then parse = parse .. "d" end if key(31) then parse = parse .. "e" end if key(32) then parse = parse .. "f" end if key(34) then parse = parse .. "r" end if key(33) then alpha = 0 end end wait(2) --interrupt until key(0)
clear nil setCursor(1,1) print(parse .. "_")
refresh
if key(5) then break end --check for EXE wait(3) end end
38
« on: January 04, 2012, 03:09:21 pm »
I have heard people mention folding@home on the forums and I have no idea what it is. Could someone enlighten me?
39
« on: December 31, 2011, 12:15:41 pm »
Just a thought: Could Gravatar be integrated into the forum?
40
« on: December 31, 2011, 12:04:52 pm »
41
« on: December 29, 2011, 12:41:22 pm »
Does anyone know of a calc<=>PC transfer program that is native to linux? All I can find are windows programs, which don't detect the calculator.
42
« on: December 20, 2011, 03:13:50 pm »
How do I compile luaFX source in linux? I used Veb's luac.exe in windows, but I dont know how to run it in linux
43
« on: December 19, 2011, 01:05:46 pm »
I can't speak french, so, rather than post on Planet-Casio, I have decided to post here. Is anyone working on an on-calc editor for LuaFX (maybe even built-in to the luaFX addin). If not, is there anyone who would want to make one? Edit V1.1 doesn't work for this (some problem with EOF or something, I finally gave up).
45
« on: December 16, 2011, 10:53:20 am »
Has anyone tried using FX-Manager with WINE? Does it work very well?
|