[00:00] ...yeah [00:00] the schematic is more confusing than it needs to be [00:03] HazRPG: arduino http://tinkerlog.com/wp-content/uploads/2008/01/clone02_l.png [00:04] you can also hack your own one, http://tinkerlog.com/2008/01/07/arduino-on-a-prototype-board/ [00:04] (note lack of usb port lol) [00:04] all these boards are basically the same though [00:05] and the reason for that is the AVR chip is pretty much a whole computer in one chip [00:05] you don't need anything else [00:05] its main function is the a->d and pwm [00:05] all the "clever" stuff about arduino is done in the firmware and the IDE [00:05] What chip do pirates use for hobby electronics? [00:06] it is a little computer, a 4hz computer :D [00:06] actually 4-24mhz [00:06] A V Arrrrrrrrrrrrrrrr [00:06] lmao [00:06] lol [00:06] avr is the chip in most modchips too [00:07] well, the old ones at least [00:07] they are good chips [00:07] i dunno what they use thesedays [00:07] i hear push through is dead though [00:07] all smt chips soon [00:07] hmm, so best starting point for a newbie like me? [00:07] you mean through hole? [00:07] * HazRPG having looked at everything and thinking they all look very similar [00:08] avr is available in both package types [00:08] arduino is just plug-in and program [00:10] the trouble with arduino is it's all lock-in [00:10] "lock-in"? [00:10] they have their own programming language, their own communication protocol, their own bootloader method [00:10] sure, most of it is open source [00:10] but it just gets in the way [00:11] it depends what you want out of it [00:11] if you want to play with microcontrollers and basic electronics, they are all good [00:13] well I guess since I haven't done much, just getting to grips with it all for starters [00:14] however I would like to move on to making something similar to a HardSID [00:14] or even a CF reader for my C64 [00:14] ali1234: obviously you not used it much, arduino runs c++ [00:14] C++ on a microcontroller ... [00:14] compiled.. [00:15] I was going to say, I thought arduino used c++ [00:15] it's not "real" C++ [00:15] why? [00:15] it's their cut down version of it [00:15] you can import anything you like [00:15] just have 32k to work with [00:15] the full C++ stdlib is about 100000 times too big to fit on an avr flash memory [00:16] exactly [00:16] not to mention that 90% of it is useless for microcontroller programming [00:16] and you dont like it because they excluded that stuff? [00:16] i don't like it because C++ is a bad tool for the job in the first place [00:17] java... :D [00:17] :-o [00:17] ali1234: what is it that cypress uses? [00:17] java on microcontrollers is slightly more sensible as long as you choose one that has hardware support for java [00:17] ali1234: you want assembler? [00:18] you can run just about anything that can compile on them [00:18] HazRPG: all microcontrollers use machine code, it's up to you to choose whatever compiler you want to use (unless you have an arduino, then you are pretty much stuck with their compiler - lock-in) [00:19] ali1234: that is only if you use their boot loader, you can use another/your own etc [00:19] sure. and then you have a generic AVR development board... [00:19] ye [00:19] because the arduino hardware is not special in any way [00:19] which is more fun ;) [00:19] its not [00:20] but its easy for noobs like me and HazRPG :D [00:20] its like runing ubuntu vs compiling linux kernals from source [00:20] not really [00:21] it is like comparing ubuntu with slackware ;) [00:21] it's more like learning to driver in an automatic car [00:21] when you want to drive a manual, you have tolearn all over again [00:21] its can still do most the other things, with some bloat to do the boring stuff [00:21] should have just learned in a manual in the first palce [00:21] ali1234: yeah, but you'll have a knowledge of the electronics that fit round it [00:22] \o/ [00:22] scrap all this programming and just use electronics [00:22] ;) [00:22] ali1234: that is the same as saying if you want to learn how to drive a manual, you have to build the engine first [00:22] believe it or not, you can learn the electronics without any fancy microcontrollers [00:22] its just a bunch of switches [00:23] pretty much :P [00:23] not to mention that the electronics part is almost completely unrelated to programming a mcu [00:23] I made a fuel and pit stop simulator for scalextric, using none programable stuff [00:23] ali1234: If you want to play with mcs, you need some electroics roundit. Something like arduino allows you to actually build something quickly and easily [00:24] its more than enough for beginners projects [00:24] and you can do the analogue to digital with resistors [00:24] er... [00:25] how? ;) [00:26] arduino is the way to learn imo, but it is important to not get lazy and miss basic electronic stuff [00:26] if you want to learn electronics anyway [00:27] using flip-flops is something you should not miss [00:27] ;) [00:29] http://www.vanityfair.com/politics/features/2007/12/aristotle200712. < this is the guy I debating with tomorrow [00:29] Should be fun [00:30] just look at him and say "who the fk are you?" ;) [00:31] "u mad?" [00:31] Lol that is gonna go down well at Oxford Uni lol [00:32] guess Hull Uni was different kinda class... [00:32] ;) [00:32] lol [00:32] Wish I had thought to data mine a profile about him for the debate [00:33] oh btw guys [00:33] Would have been funny to expose his life to the room [00:33] I figured out the problem with my 3rd comp [00:33] vibrations from my bass drum kept causing the gfx card to lose connection [00:34] lol [00:34] didn't really think about it much before [00:35] but it always had problems when I was shaking everything [00:37] hamitron: huh? [00:37] you just sit with a bass drum running all day long? [00:37] it used to just restart on me [00:37] no, only when I am drumming [00:38] but I also have a habbit of tapping my foot to music near my comp too [00:38] hmm, if the arduino doesn't have a proper USB stack... does that mean I couldn't use it as a standalone USB device? [00:38] correct [00:38] unless that USB device happens to be one that works like a serial port [00:39] so you can't use it to make a midi device, keyboard or other HID, usb storage, or anything else that works on usb... [00:40] well that's just pants! [00:40] couldn't you program the outputs/inputs? [00:40] I'm guessing you could add a usb stack board to the arduino... surely... [00:40] no, it doesn't have the right crystal for software USB [00:40] yeah you could add an external USB chip... [00:40] but that will cost more than the arduino board [00:41] and be extremely difficult to work with === tsimpson_ is now known as tsimpson [00:42] ali1234: you know anything off the shelf I could use as a base for a phone type device? [00:43] 300mhz or greater cpu [00:43] "phone type"? [00:43] ali1234: does the cypress come with decent documentation? [00:43] HazRPG: if you like reading TRMs... [00:43] yeh, gsm, gps, display [00:43] hamitron: an N900... [00:44] that is boring [00:44] :/ [00:44] ali1234: I'm guessing I don't, since I haven't a clue what that is :P [00:44] don't mind it been slightly larger, and modular [00:45] hamitron: you get either a phone, or a phone dev board that costs 10x as much and is as big as a PC motherboard [00:46] dev board would mean single for many years [00:46] ;) [00:47] there is/was some open phone project [00:48] but felt like loads of broken links [00:49] hamitron: what is it your trying to do? Build your own mobile? [00:50] sort of [00:50] I don't want a phone as such [00:50] but it would be nice to be portable [00:50] there is a severe lack of good quality open source mobile phone UIs anyway [00:50] if you want to make phone calls with open source software android is basically your only choice at this time [00:51] everything else is either half finished or complete vapourware [00:51] the gsm chips look interesting [00:52] doesn't it have something to do with the fact that its not easy to make a GSM compliant chip at home? Or would I be badly mistaken for thinking that [00:52] the GSM chip I looked at was 60 quid [00:52] "completely impossible" would be closer to the truth [00:52] and that is before I consider anything else to make it usable [00:53] maybe a display off a PSP ;) [00:53] hamitron: you could just rip one out of an old phone? [00:53] hamitron: I've not thrown away a single phone I've ever had... [00:53] I still use my ngage :( [00:54] hamitron: I still own an ngage :P [00:54] siiiiiiiide talkin [00:54] qd is a brick atm [00:54] :( [00:54] really need to try flashing it sometime [00:55] ali1234: I found it more comfortable to use the ngage then most phones [00:55] qd is better [00:55] the only annoying thing was if you wanted to use your two hands for anything [00:55] qd is the best phone ever.... [00:55] ;/ [00:55] apart from the auto bricking feature [00:55] but the qd was basically a regular phone (in terms of how you held it) [00:55] with game controls... [00:56] brighter screen [00:56] and you didn't have to take the thing apart to change game [00:56] ;) [00:56] hamitron: I put all my games into one card :/ [00:56] lol... games... on removable media... [00:56] how quaint [00:56] also... [00:57] normal ngage is too long [00:57] if you wear tight jeans, it can poke you in nasty places [00:57] * HazRPG hates tight jeans [00:57] don't see the point in them [00:58] not skin tight [00:58] but not baggy [00:58] ;/ [00:58] oh [00:58] heh, pocket fail then [00:58] I always make sure the pockets are deep - because my wallets are usually huge [00:58] the ngage was a terrible gaming device. put the rose-tinted glasses away [00:59] plus I like to keep cigs, phone, wallet in my pockets [00:59] last thing you need is an ngage giving you a good poking whilst you are trying to race a car whilst on a motorbike [00:59] directhex: and? ;) [00:59] I liked it as a phone [00:59] and it is better than most phones for gaming [01:00] you have proper gaming buttons [01:00] hamitron: didn't they take the FM radio out of the QD? [01:00] ;/ [01:00] yes [01:00] hamitron: something I use to use a lot [01:00] i take mp3 [01:00] :) [01:00] hamitron: that'll be the other reason I didn't like it then :P [01:00] hamitron: FSVO "proper" [01:00] FSVO? [01:01] for small versions of [01:01] errrr [01:01] what you mean? ;) [01:01] i mean it was a crap game controller [01:02] better than a keypad [01:02] ;/ [01:02] directhex: ... it was a D-Pad, I don't see how that was crap? [01:02] herpes is better than aids, but that doesn't make it desirable [01:03] tbh, there has been no good gaming phone yet [01:03] jsut the ngage is the best so far :/ [01:03] HazRPG: entire encyclopardias have been written on the relative merits of different d-pad implementations. entire industries have sprung up around it. the ngage's was crap [01:03] the qd has better D-pad [01:03] had a seperate select button [01:03] :) [01:04] yay I'm saved from my invalid power supply decision :P [01:04] Azelphur: ? [01:04] my friend has the correct power supply and is selling it to me for £5 :D [01:04] and it's a nice antec one too. [01:04] score :p [01:04] ooh, antec [01:04] if sony weren't such cocks, I'd consider their new gaming phone [01:04] :) [01:05] ohhhhhhhhhh [01:05] i'm not remotely convinced by that either [01:05] maybe I should make a mod for psp [01:05] add gsm.... [01:05] me either... I'm not convinced the "PSPhone" is going to be any good :/ [01:05] i think you should glue a nokia 3210 to a classic gameboy [01:06] ali1234: +1 [01:06] you would then have made the best gaming phone ever [01:06] ali1234: sounds like my theory on camera phones [01:06] honestly? right now, the best gaming phone is the iphone. they haven't badly attempted to glue one form factor into another - instead, developers have been making complete use of the new form factor [01:06] ngage was better than gameboy ;/ [01:06] yup, all cameraphones are terrible [01:06] phone + camera + duct-tape = camera phone winner! [01:07] hamitron: except for the quality of the games, and the d-pad [01:07] I prefer the d-pad on the ngage qd [01:07] :/ [01:07] then you have absolutely terrible taste ^_^ [01:07] quality of games I will give ya [01:08] there's a reason nintendo fiercely guard their d-pad patents, and have left the design pretty much unchanged since the famicom [01:08] but to me, a standard handheld console is useless [01:08] hamitron: you're a special case though [01:08] I want a device as a phone, with some hardcore gaming :) [01:08] guess so [01:09] also must have an open development platform [01:09] the thing is, the use-case for home consoles and portable consoles is different, which is why you don't just put console games on portables [01:09] that's what's killed the PSP [01:09] I hate the whole "cram everything into one device" [01:09] me too HazRPG [01:09] because one part always suffers because of a result of another [01:09] and similarly, the use-case for a handheld console and a mobile phone game is different [01:10] HazRPG: I would personally be willing to side talk on a netbook, if it was a netbook with a phone function :) [01:10] directhex: yep [01:10] the ngage was absolutely terrible because a company with no experience with handheld gaming, nokia, attempted to staple a low-quality chinese knock-off of a gameboy colour into a mobile phone. things like the cartridge slot snafu show just how much lack of thought went into the device [01:10] guess I don't want a phone with games, I want a handheld toy that functions as a phone [01:11] hamitron: sounds like n900 territory? [01:11] yeah [01:11] partly, yes [01:11] :/ [01:11] except for that it has a keyboard that is useless for gaming, and a resistive screen that is also useless for gaming [01:12] if the PSPhone is running android.... [01:12] the iphone has become a serious gaming platform, as far as publishers are concerned. and that burns me up as a hardcore gamer, because the games going onto it are games for mobile phone users. snake, for the HD era. [01:12] it may be an option [01:12] hamitron: it is [01:12] jeff minter is making iphone games now [01:12] he just ported llamatron [01:12] ali1234: good example [01:12] it has hardcore mode [01:12] although jeff's always been a bit weird [01:12] he backed NUON [01:13] * hamitron wants a d-pad [01:13] it HAS to have game controls [01:13] :) [01:13] hamitron: D-Pad for the PC? [01:13] hamitron: so playstation phone for you, then [01:13] directhex: except sony are a-holes? [01:13] HazRPG: sony or bust, if you want a d-pad. [01:14] if sony hadn't put me off getting a PS3, I would probably not be questioning it [01:14] directhex: what do you want as a hardcore gamer? [01:14] directhex: lies, solder + mobile phone + snes controller is all one needs [01:14] I wouldn't have an LG tv in here either [01:14] i mean what's wrong with llamatron? tempest? etc [01:15] ali1234: ultimately, the type of game experience i enjoy isn't one offered by minter. and i say that having spent money on space giraffe. [01:15] it doesn't get much more hardcore than that stuff imo [01:15] directhex: sure... there would be a wire sticking out of your phone... but still, small price to pay. If your going to be gaming on the go, you'll be sat down anyways... [01:16] psp2 could be very interesting [01:16] psp2 is hardcore, but no phone function :/ [01:16] in terms of graphics power at least [01:16] ali1234: right. but ironically enough, that stuff is also highly casual. it's played in short bursts, it's completely ephemeral. it's more *skilled* than Fruit Ninja, but it appeals to the same sensations [01:16] hamitron: psp2 is the phone PSP dude [01:16] HazRPG: nope [01:16] NGP then [01:16] ;/ [01:16] HazRPG: negative [01:16] is it not? [01:16] psp2 is the NGP [01:17] if it had option to make calls, and cost under 300 quid, it would of been mine [01:17] directhex: so... what is it that you do want? [01:18] but I am still sulking with sony, so they can wait 10 years before I buy anything from them again [01:18] the NGP isn't meant to be an iphone replacement, its gonna be for gaming [01:18] ali1234: stories. adventures. experiences that are poorly suited to any mobile platform, really. [01:18] Seeker`: a shame it doesn't ahve basic voice calls though [01:19] PWM is the capability for fans to be automatically controlled by the motherboard right? [01:19] hamitron: not really. I've got a phone for that. [01:19] Seeker`: I can't carry so many devices! [01:19] Azelphur: context? [01:19] lack of pockets :/ [01:19] Seeker`: computer fans [01:19] specifically case ones. [01:19] Azelphur: usually, yes [01:19] seems to me that oldschool graphic adventures could work quite well on mobile [01:19] hamitron: get better clothes [01:20] so now that I understand that part, anyone know a reasonably cheap not crap 120mm fan with PWM? :D [01:20] ali1234: yes. but better with a touchscreen rather than d-pad rubbish. which is why you can get monkey island and broken sword on iphone [01:20] (and scummvm for android and webos) [01:20] ali1234: define "oldschool"? [01:20] Seeker`: 90s golden age of graphic adventures [01:20] Seeker`: anything made before doom [01:21] Seeker`: I like my leathers! [01:21] There isn't much hope of new consoles any time soon, and graphics chips are catching up fast [01:21] ali1234: or after. let's not ignore full throttle plz. [01:22] keys, money, wallet, phone.... all need seperate pockets [01:22] personally, I feel that the whole reason consoles are so popular is the "insert cartridge/disc and play" feature... why doesn't the PC have the same ability (other than the fact that no two hardware is exactly the same) [01:22] nah [01:22] HazRPG: because thats not what PCs are designed for :P [01:23] HazRPG: because it's hard. [01:23] I am surprised the idea of making a game into a live cd hasn't taken off [01:23] with a limited hardware list [01:23] hamitron: bundled with drivers for a billion combinations? [01:23] console games are designed for very specific hardware in very specific conditions [01:23] Seeker`: yeah, but if someone made an "insert game disc" application - it would rock, place in your game and away you go! [01:23] hamitron: pc gaming is already a niche. gotta maximize your market. [01:23] and they are heavily optimized for that hardware [01:24] i remember when PC games were actually different from console games [01:24] now they're all the same [01:24] directhex: I was thinking of an open source console type thing [01:24] :) [01:24] except the console version works better, and the PC version has mods [01:24] ali1234: games cost tens of millions to make. how many units need to ship to break even? [01:25] some games cost tens of millions [01:25] ali1234: i don't blame companies for making cross-platform games, to increase the likelihood of profit [01:25] ali1234: I would disagree, UT3 for the PS3 was sooooo much buggier than the PC version [01:25] * hamitron neither [01:25] I never did get my UT3 linux client! [01:25] :( [01:25] hamitron: yeah, that's disappointing when it's been ported [01:25] the problem is that a lot of cross platform games sit in the ugly middle ground [01:26] ali1234: it takes a little more time & effort to really work the platforms individually for a cross-platform game. dragon age is a good example, the pc version has completely pc-centric controls instead of being a straight port [01:26] ali1234: how so? [01:26] for example, se every cross platform FPS game ever made [01:26] most don't bother. deadlines, etc [01:27] I've lost interest in PC gaming since F1 2010 [01:27] :/ [01:27] i have every platform. i pick & choose where to get my games [01:27] to buy a game and find bugs will be fixed in F1 2011 is annoying [01:27] generally, i favour PC for first person, console for third person [01:27] hamitron: I fail to see that, my sonic games have never been better on my PC :) [01:28] "third person" is now a category of game? [01:28] ali1234: it's distinct enough in how it "feels" [01:28] gears of war is not unreal tournament [01:28] hamitron: especially thanks to my bluetooth dongle and my PS3 controller interacting together with QtSixA [01:28] HazRPG: I feel ripped off [01:29] i remember when not all games were about space marines too [01:29] I paid for F1 2010, not to fund the release of F1 2011 [01:29] ali1234: doom was about space marines! [01:29] ali1234: third person always was a genre... expect they called them "adventure/platform" games [01:29] yeah [01:30] hamitron: heh I can understand that [01:30] directhex: ID software basically "solved" the problem of PC gaming with doom, and 90% of all PC games since are just clones of it [01:31] hamitron: what was wrong with F1 2010? [01:31] ultimately, i have 27 years of gaming history on my shelves, accumulated over the past 22 years. and i really feel rose-tinted glasses are overrated. modern gaming is brilliant. [01:31] Seeker`: a long list of things [01:31] 2011 is a brilliant year to be a gamer. better than 2010, which was better than 2009, etc [01:31] at least doom and quake 1 had a somewhat unique setting, unlike all the following games which just go back to "weird mutant aliens" [01:31] most annoying to me is the pit stop issue [01:32] you know, thing I like about ID software is, most of their software gets released as multiplatform (e.g. works on linux), shame more companies don't do the same [01:32] or even worse, "red space marine vs blue space marine" [01:32] the current console generation has given us completely new and fantastic experiences. dead rising? assassin's creed? you could *never* have done those games on the previous generation of kit [01:32] assassin's creed is completely boring [01:32] it's GTA without cars [01:33] no cars! :( [01:33] there is the odd horse and carriage, but i don't think you can steal them [01:33] shoot the horses? [01:33] not in AC1 [01:33] AC1 was really a tech demo [01:33] well that's the only one i played [01:33] i heard 2 was just more of the same [01:34] AC2 addressed every major criticism against the game [01:34] first versions should NOT be a tech demo :/ [01:34] hamitron: why not? [01:34] Is'nt that what crysis was? [01:34] hamitron: less priase for iD then. quake 3 was totally a sales pitch for the engine ;) [01:34] OR Portal [01:34] and Portal was a damn cool game [01:34] portal was actually good [01:34] AC to me felt like I was playing Prince of Persia... except in 3D... with extra gimmicks [01:35] if you buy a game, it shouldn't be half assed [01:35] only about 20% as good as any random zelda game though === PalaPad_ is now known as PalaPad [01:35] hamitron: they already did PoP in 3d. with the critically acclaimed Sands of Time [01:35] the jewel of the last generation [01:35] I've just started playing AC1 this evening, and I quite like it [01:35] ali1234: zelda as a franchise is tired [01:36] it's nowhere near as tired as "space marines in space" [01:36] perhaps [01:36] but at least those have been improving and evolving [01:36] anyone played mass effect? [01:36] evolving isn't quite how i would describe it [01:36] i just gave up on twilight princess. it was just bad compared to other zelda-esque games like okami [01:36] playing through that for the first time, and thats good too [01:36] Seeker`: finished both. [01:36] twilight princess was bad, i will give you that [01:36] i gave up on it too [01:36] I can sum up most games over the recent years as ... "War! HUH! What is it good for!? Absolutely nothing! Say it again now..." [01:37] but windwaker was probably the best of the rest [01:37] don't think I've played console since n64 :/ [01:37] HazRPG: dont play them then [01:37] let me frame my historic feelings about zelda: http://apebox.org/wordpress/wp-content/gallery/miscellaneous-junk/zelda3.jpg [01:37] directhex: yeah, I didn't like the new PoP's... should have left him as a 2D game [01:37] but the problem with TP was that they put in too much of the things that make other games suck these days... like quick time events [01:37] HazRPG: i loved SoT. [01:38] ali1234: shenmue has a lot to answer for [01:38] also being a wolf sucked [01:38] i mean it *really* sucked [01:38] being a wolf is awesome in okami though. yay okami. [01:38] brb [01:38] the rest of the game was fine [01:39] Seeker`: I don't! I just can't stand the number of "war, shoot shoot shoot, brain feel numb now... shoot shoot shoot" games [01:39] depends on how good the story is [01:39] war's never been so much fun [01:39] war. war never changes [01:39] YES! HIGH FIVE! [01:40] bk [01:40] it went quiet [01:40] HazRPG: i want to care about my protagonist and the world in which they engage. i want stories of fantastic deeds and faraway places. ultimately, i don't much enjoy multiplayer, and i don't like "realistic" war games [01:40] :/ [01:41] to me, multiplayer if everything [01:41] :) [01:41] is* [01:41] because who cares? "terrorists win", big whoop. now what? [01:41] directhex: agreed - thus my name ;) [01:41] i quite like properly realistic FPS games... that's about the only type i can play [01:41] by properly realistic i mean the type where 1 shot kills you and anything other than camping is suicide [01:41] my greatest annoyance is these games you can't lose [01:42] like WoW.... if you could loot players you killed, it would be cool :) [01:42] hamitron: you mean the "respawn" factor? Or the "vision blurred = hide and recover HP" factor? (both annoy me) [01:43] yeh [01:43] just the risk of losing everything and having to start again [01:43] mistakes should cost you [01:43] yeah exactly! [01:43] like in an RPG, where you haven't saved for a while... [01:44] when you die... your dead! [01:44] I never save.... unless I am closing the game [01:44] start again [01:44] hamitron: adds more excitement does it ;) [01:44] hell yeh [01:44] hamitron: you'd like steel battalion's hard mode ;) [01:44] shauno: wow really n64 was your last ever console of play? [01:44] hamitron: if you died, it erased your save [01:44] what fun is a racing game, if you are allowed "flashbacks" wheny ou crash? [01:44] when i play J-RPGs i always meticulously make individual saves at every point, and then *never* use them [01:44] directhex: rofl! [01:45] directhex: :D [01:45] ali1234: ha, I do that :P [01:45] that is how I play [01:45] :) [01:45] that game also came with a giant mech controller, the size of three xboxes [01:45] with 40 odd buttons on it [01:45] but the "never losing" ruins MMO [01:45] HazRPG: just haven't seen anything that grabbed my interesting in quite some time [01:46] did pick up a gp2x for the emulators tho :) [01:46] shauno: just out of interest, what sort of thing do you like playing? [01:46] I suppose the kiddies would not be happy with WoW if when they died, someone stole the cloth off their backs [01:46] shauno: nice! [01:46] i'm churning through dead space 2 right now, alongside mario galaxy (depending on mood) [01:46] then will move on to the latest assassin's creed brotherhood DLC. [01:47] hamitron: would be amusing though :P - I mean other MMO's actually do it, why shouldn't WoW? [01:47] like eve online? ;) [01:47] there is a death penalty in WoW [01:47] not a big one, but it's there [01:47] WoW hardcore mode, allowing looting [01:47] you mean the "haha you'll die easier next time"? [01:48] Blizard, pay me now [01:48] ;) [01:48] aka "Res Sickness" [01:48] ohhhh [01:48] it's mostly the time lost in wow. durability loss is pretty token now [01:49] that's more of a nuisance than anything, It means people can stay near your corpse/spirit healer and kill you quickly time after time [01:49] lol, resurrect you just to kill you again? [01:49] MMOs make poor RPGs [01:49] you only get rez sickness if you can't find/reach your corpse. it's a fringe case most the time [01:49] ali1234: yup... happened to me before, many a times [01:50] "kill ten wurbleburbles, and bring me back their skulls" is not roleplaying [01:50] grinding ;) [01:50] directhex: it has gotten better recently [01:50] eve online would be cool, if there were no alts [01:50] HazRPG: okay, 8 wurbleburbles [01:50] directhex: there's a quest in cata now that you become an NPC on a horse [01:51] hamitron: so true [01:51] WoW is good. Shame about all the idiots playing [01:51] ali1234: a true RPG [01:51] no alt "spying" [01:51] I don't think wow's bad at all. I just had to draw a line at what becomes an obligation to play [01:51] I liked WoW as a game [01:52] i think i will go sleep now [01:52] I like sleep too [01:52] ;) [01:52] I quit this week after another guild turning in to 13 or 14 people that have a clue and 10 idiots going "WHY DON'T YOU RAID WITH ME! ZOMG I AM ENTITLED TO RAIDW ITH YOU!" [01:52] I liked WoW too... until I realised it was just the same thing over and over and over again [01:52] the monthly cost put me off mostly [01:53] hamitron: Runes of Magic will suit you, pretty much a WoW clone [01:53] Knight Online is too [01:53] :) [01:53] I found the cost the least of the worries. I mean, 8eur a month .. I smoke that in a day [01:53] shauno: same :P [01:53] * hamitron is "careful" with money [01:53] speaking of smokes, I'm out ... so need to go buy some! [01:53] at the time I was a full time student and only £15 per week to live off [01:54] other than smoking, I'm not silly with my money. but I don't let fear of it own me [01:54] hamitron: y'ouch! [01:54] shauno: same, I try to spend wisely [01:54] worked out about £10 for food [01:54] :) [01:54] anyways, gonna go on an errand, brb [01:55] laters HazRPG [01:55] :) [01:55] £8/mo is pretty good fot the number of hours of entertainmen [01:55] £8 is [01:55] 1 trip to the cinema, or as much playtime as you want [01:55] but I didn't have the money to spend on it ;/ [01:55] so i got Guild Wars [01:55] :) [01:56] actually bbl, would probably be a better use of words/characters [01:56] now I just feel like quiting all off the shelf stuff [01:57] just seeing what I can do with my mind [01:57] interesting, that paints you as much younger than I'd pictured [01:57] you picture me as an old fart? [01:57] ;/ [01:58] I'm not sure how old qualifies as fart, but certainly older than the last 10 minutes betray [01:58] I'm only 28 [01:59] * hamitron looks at some open circuit designs [02:02] with a few years tinkering, must be amazing what can be done [02:03] back [02:03] ali1234: what would you recommand, like the arduino, but with a faster clock? [02:03] * HazRPG sparks up [02:03] how much faster? [02:04] say 300mhz+ [02:04] a beagleboard [02:04] heh I was going to say ARM [02:04] seems that's what a beagleboard has in it [02:05] or a spartan3 and implement whateverit is that needs 300mhz in hardware [02:05] any x86 cpu boards? [02:05] yeah but you don't want them [02:06] just wondering, put a whole system on a FPGA [02:06] few other bits [02:06] wham bam [02:06] new toy [02:06] ;) [02:10] there is AVR32 as well but those are a bit esoteric [02:11] ali1234: hmm, you should know... what's the green coating found on PCB's called? [02:11] lacquer? [02:12] because I'm guessing the green stuff is a coating to stop the copper oxidising [02:12] it's also part of the soldering process [02:12] hmm, how so? [02:13] well they put the green stuff on before the components [02:13] and so the solder only sticks to the exposed pads, not the whole traces [02:14] http://en.wikipedia.org/wiki/Wave_soldering [02:14] http://en.wikipedia.org/wiki/Solder_mask [02:26] hmm, I thought flux was used for soldering [02:33] hmm, shows what I know about soldering... [02:34] never heard of tinning before [02:34] there are different methods [02:35] nn all o/ [02:35] hamitron: night dude [03:09] haha, this seems like a great invention: http://www.youtube.com/user/CuriousInventor#p/u/30/ue6WYqYc81k [03:09] might have to make my mum one for her dogs :P [03:18] ooo, ali1234 you might like this: http://www.youtube.com/user/CuriousInventor#p/u/27/gXWCm-HmTq4 [05:40] Hmm... should /usr/lib/indicator-applet/indicator-applet really be using 337M of RAM? [05:40] it says here 1166M of virtual memory for that same thread >_< [05:57] HazRPG: could be related to bug 684599 [05:57] Launchpad bug 684599 in Network Manager Applet "Memory leak in nm-applet" [Undecided,New] https://launchpad.net/bugs/684599 [06:02] could be [06:08] It's one of those black hole bugs [06:08] it hasn't been fixed, but people aren't working on it [06:08] even though it eats lots of memory [06:12] well that's no good lol [06:12] It's how lp works, sadly [06:13] what, that bugs don't get fixed? lol [06:13] no, that they get lost in a tsunami (ha) of other bugs [06:13] ah heh [06:24] meh. [06:54] haha love this game - good memories with sonic triple trouble of me and my uncle spending a whole day to try to finish the game :P [07:17] morning all [07:18] * AlanBell is on the reserve tank of internet today [07:21] morning everyone :) === issyl0 is now known as Guest50072 [07:38] how is everyone today [07:38] just a couple more days to the launch of 11.4 [07:39] Waking up, just showered and shaved, will dress and head to breakfast, hotel life sucks [07:40] PalaPad: at least you dont have to cook your own brekkie [07:40] where RU at for the moment ? [07:40] Oxford [07:41] And yeah looking forward to Brel IRS [07:41] Brekkies [07:41] Stupid autocorrect [07:41] Android Phone ? [07:41] iPad [07:43] Ok gonna finish dressing and head for breakfast, back in 30ish [07:50] Morning [07:52] morning daubers [07:52] how are you today [07:56] hello [07:57] knightwise: nearly awake [07:57] started having some success with c++ last night (finally!) [08:01] aah , thats always good to hear [08:01] you programming some stuff ? [08:01] Reworking a few old programs I wrote in C++ to learn the language [08:01] * knightwise released the podcatching script he made with the help of the #ubuntu-uk channel to the interwebs [08:01] cool [08:05] final call for the quiz night date [08:06] http://doodle.com/eucwzx2qdiiiqs5p [08:13] Meh continental breakfast :( [08:14] hey AlanBell [08:26] djeez [08:26] Japan thing is NOT looking good [08:26] looks like reactor 2 is exposed ? [08:26] Cock-a-doodle-doo [08:28] hey DJones [08:28] hi knightwise [08:31] how are you today [08:34] DJones:Please keep that cockerel quiet - it just woke me up :p [08:35] knightwise: Not bad, awake too early listening to the dawn chorus [08:35] danfish: COCK-A-DOODLE-DOOOOOOOO [08:36] I think I'm going to have to be sneaky & pinch AlanBell's chickens [08:37] * knightwise wish i didn't visualise that remark [08:39] Aloha [08:39] hey czajkowski [08:40] how are you [08:41] howdy all [08:42] quick question - got a server with a loadavg always over 1. iowait is negligible, and so is cpu usage - what other factors will be contibutary to the load? [08:42] andylockran: That almost sounds like a homework question :) [08:44] "Java" [08:45] andylockran: the national debt ;) [08:45] DJones: indeed it does :p [08:46] random that load on this myth backend never drops below 0.8 [08:48] Ugh, no wonder my computer is so slow, 20+ MS updates to install [08:48] DJones: ie9 ) [08:48] :) [08:48] MartijnVdS: Nope, just "regular" security updates [08:50] the only secure XP system is one that's powered off [08:50] danfish: Wake on lan, has to be unplugged as well :) [08:51] * czajkowski has an itchy nose, this does not bode well [08:51] hiya [08:53] czajkowski: itchynoseitis. nasty :( [08:53] indeed [08:54] Where did I leave that pepper [08:54] DJones: v true. Let's encase in concrete to be certain [08:54] I've no davmor2 to stab [08:54] :( [08:54] * czajkowski stabs MooDoo [08:54] danfish: And drop it into the bottom of the ocean or into a volcano [08:55] oops [08:55] /wc by accident [08:55] * knightwise suggests czajkowski could dip her nose in liquid nitrogen [08:56] eh no [08:56] andylockran: what does powertop show on that mythbox? [09:02] mornin all [09:03] morning [09:07] * popey tops up AlanBell's internets [09:07] * AlanBell thanks popey for the additional packet of packets [09:08] you're welcome to come over to chez popey and use mine [09:08] (I am at home today) [09:08] danfish: need to recompile kernel to get powertop working :s [09:08] (gentoo) [09:08] thanks, but I think I will gatecrash TheOpenSourcerer's place soon [09:08] ok [09:09] AlanBell: Why no interwebs? [09:09] dunno [09:09] adsl syncs, gets a connection speed, passes no packets [09:09] .... nice [09:09] is someone standing on the line? [09:09] morning kazade [09:09] I reported the fault and I should get a phone call about it within 48 hours apparently [09:10] last time this happened it resolved itself after 24 hours or so [09:10] o/ popey [09:40] Time for tea! [09:41] AlanBell, Did you turn it off and on again? :) [09:41] Always time for tea :) [09:43] Nooooo!!! No clean mugs :( [09:43] daubers: nooooooooooooooooooooooooooooooo [09:44] Daviey: standard practice :p [09:49] :) [09:49] Does any here have mysql server install on Maverick? [09:49] anyone* [09:49] (Desktop) [09:49] * Daviey wakes up. [09:50] Daviey: I do. [09:50] Daviey, me too [09:50] Daviey: why? [09:50] Okay, great! When you login, GDM greeter - do you see "MySql Server" as a login option? [09:51] Daviey: no. [09:51] Innnnnnnnnnnnnnteresting. [09:51] Daviey: do this:- [09:51] getent passwd | grep mysql [09:51] Natty does, and i cannot work out why :) [09:51] Morning kids :) [09:51] and paste the output :) [09:51] Mez, I tried chaning the password from ! to * [09:52] changing [09:52] Daviey: I'm after the UUID [09:52] in /etc/shadow [09:52] UID * [09:52] mysql:x:117:128::/nonexistent:/bin/false [09:52] hmm... Shouldn't be showing then [09:52] exactly! [09:52] I'm scratching my head :) [09:54] Daviey: heh [09:54] Daviey: nice bug :P [09:55] Daviey: /etc/gdm/gdm.schemas - find the greeter/Exclude and add the user in there. [09:56] Mez: nice tip [09:57] I'm not convinced that is the issue [09:57] or change greeter/IncludeAll to false, and then just add the users you want to greeter/Include [09:57] does anyone know if https://twitter.com/sabdfl is really Mark S. twitter account? [09:58] yeah, I think it is [09:58] i think he only used it when he was drunk during 2008 & 2009 then [09:58] Mez, can you, grep -i nobody /usr/share/gdm/gdm.schemas ? [09:59] grep: /usr/share/gdm/gdm.schemas: No such file or directory [09:59] Mez, okay, looks like the location moved :) [09:59] bin,root,daemon,adm,lp,sync,shutdown,halt,mail,news,uucp,operator,nobody,nobody4,noaccess,postgres,pvm,rpm,nfsnobody,pcap [09:59] (from /etc/gdm/gdm.schemas) [09:59] Mez, So... that doesn't have mysql either! [10:00] Seeing postgres did make me wonder.. :) [10:02] mungojerry: it is his [10:02] Mez, can you just fix it please, kkthnxbye. [10:05] ok, todays unity annoyance [10:05] have a dual screen machine, with one app full screen on each display [10:06] you have to click _in_ a window before you can grab the title bar to drag it out of full screen [10:06] Oh, and good morning, everyone! [10:06] Daviey: /msg Daviey can you paste me the /etc/passwd and /etc/shadow entries for mysql? [10:06] wow... fail [10:07] popey: i know the beta isn't out yet but getting a working natty in time for release day isn't looking too good atm ? [10:08] i suspect this is working as designed [10:08] cant help but point out that if they implemented focus follows mouse this issue would not happen [10:09] i find focus follows mouse nasty [10:09] Daviey: try running usermod --expiredate 1 mysql [10:09] Hmm [10:10] I don't think that is it [10:10] i'll try [10:10] i want gnome-terminal to remain in focus (and at front) while scrolling a firefox page - i do that all day long [10:10] Daviey: and paste me the entries in the shadow/passwd for it :D [10:12] mungojerry: right click, always on top ? (or are you on about unity here?) [10:12] mez, that's true but it's a feature i use all the time, so it's best to be the default. i'm doing it right now in pidgin [10:12] * Mez shrugs. As much as I like the fact that Ubuntu are mving with the times - if they force something like unity/gnome-shell on me - I may have to go back to KDE [10:13] I'm glad they're not so far. [10:13] Mez, passwd is pasted about, shadow is: mysql:*:15046:0:99999:7::1: [10:13] Mez, I just tried expiredate, and that was no joy. [10:14] Mez: open source always finds ways around problems :) [10:14] Daviey: yeah, I can see that. [10:15] Daviey: the only difference I see is that my password hash is ! (signifying locked password) rather than * [10:15] Mez, I really didn't like Unity - but i've been trying it since the weekend and the only real criticism i have - is that you have to used tabbed gnome-terminals rather than seperate windows. [10:15] maybe i'm not very visionary but DE's seem to be looking towards tablets , even though 95% of us are still on desktops/laptops [10:15] Mez, Yeah, i changed that myself to test. [10:15] Daviey: middle click the terminal icon in unity [10:16] Daviey: terminator ftw [10:16] gives you a fresh terminal. however to get to show list of open terminals we need to wait until somebody provides functionality like that of docky...or use docky :) [10:16] Daviey: personally, unity has been awful for me every time I've tried it. It wouldn't show any apps last time I tried it... also - it doesn't like dual monitors [10:17] Daviey: I'll keep trying it - but personally, I can't see me liking it much. [10:17] anyways, gotta go call a man about a dog. [10:19] anyone use vmware vsphere? [10:19] i dont use tabbed terminals in unity [10:19] ctrl+shift+t [10:20] Mez, see -desktop btw [10:21] mungojerry, still working out how to middle click :) [10:21] 3 fingers [10:21] Daviey: 2 button mouse? mac? middle click on the terminal icon in the launcher :P [10:22] the best thing about working in academia is that you can perform software upgrades during the day :) [10:23] blimey, thanks for the middle click thing, i never knew that [10:23] so much to learn with unity [10:23] popey: came from frustration [10:23] arrgghgh hey it works! [10:24] popey, I struggle using two fingers concurrently, let alone 3 :) [10:24] i also like that you can run unity --reset from a vty session rather than requiring to be on the active X session [10:25] :) [10:30] morning :) [10:34] morning screen-x [10:34] grrr i don't understand launchpad [10:35] i must be using it wrong..none of my bugs ever seem to see progress [10:39] mungojerry: if you link to them here we could check them for you [10:39] x3n do you specialise in any app? [10:39] mungojerry: launchpad bugs = black holes [10:40] I get responses from my bugs.. [10:40] mungojerry: no, but I was more thinking that we could check that they're filed right more than anything else [10:42] X3N: here's one, bug 607405 - i can reproduce it, and have linked to a crash report bug number too. am i right to mark it confirmed? is it my job to mark confirmed or someone else [10:42] Launchpad bug 607405 in gwibber (Ubuntu) "gwibber crashed with NameError in ()" [Medium,Confirmed] https://launchpad.net/bugs/607405 [10:43] mind you , not sure about future of gwibber now that the author has gone to the dark side [10:44] dark side? [10:44] he's apparently got fed up with open source [10:45] seems to be quite a bit of progress on that mungojerry [10:45] ryan paul? [10:45] MadLeomon: directhex he's switched to apple now [10:46] evil! throw him in the de icaza shaped fire! [10:48] X3N: am i right to mark it confirmed if i can reproduce? [10:48] the rules don't seem clear. [10:48] particularly if i uploaded crash logs [10:51] * popey notes that ken van dyne does most gwibber work these days AFAICT [10:51] not Ryan [10:53] s/dyne/dine/ [10:53] thats good to hear [10:54] i don't actively use it anymore due to performance issues, but i would use it again if they fixed those.. [10:54] meh, I'm looking forward to a new better twitter client :D === Nafallo_ is now known as Nafallo [10:55] from kazade? [10:55] :) [10:58] how's your app getting on kazade [10:58] * screen-x reads about twitter throwing its apps out the pram [10:59] mungojerry, yeah, it's getting there just got past another hurdle [10:59] I can now start implementing the last basic functionality (retweet/reply etc.) [10:59] It works as a twitter client though, I'm running it all the time [11:01] good to hear kazade [11:02] screen-x: yeah, twitter are dumb. if they want to make money they can either insert ads as compulsory tweets or have a twitter pro account if you have more than 250 followers or something [11:04] mungojerry: hmm, I may need a new iphone compatible message bus. [11:04] mungojerry: and, erm GO AWAY! [11:04] ? [11:04] screen-x: i understand your last message, but not the previous one :P [11:05] screen-x: i made a deal that i would stay on irc so long as the drilling noise is going on [11:05] mungojerry: ok, I'll stop yelling at you ;-) [11:05] and they stop spraying us with concrete dust :P [11:06] nice of you to care :P [11:06] mungojerry: I use twitter to get notifications from monitoring systems, but if they are going to keep making it harder to write new apps/scripts, then I need a new way of pushing notifications to my phone. [11:06] screen-x: yes, rather shortsighted of them [11:06] there's always identica who publish api's i assume [11:07] [Jo Shields] TWIDed. - http://apebox.org/wordpress/linux/374/ [11:07] if twitter died tomorrow i would just revert to liferea RSS reader [11:07] I wonder if there are identica clients that can push DMs to an iphone [11:07] mungojerry: I still use google reader [11:07] does identica even do DMs? [11:09] dunno [11:11] identica does do DMs.. and there is an official status.net iphone app, but it doesn't do notifications :( [11:15] screen-x: Are identica's DM's private, ie person to person, or do they appear in the public timeline, I thought I'd read somewhere that because identica itself was open, everything that was posted through it would also appear in a public timeline [11:16] DJones: haven't tested it, I just read that the iphone client supports direct messages, not sure how it works. [11:17] didn't carry on investigating as it said notifications will be implemented in future (ie not yet) and that is my primary use case. [11:17] http://identi.ca/doc/privacy [11:17] The following data items are considered private data that won't be shared with other users, business partners, or the public at large: your "private messages" [11:17] etc [11:17] morning everyone. [11:21] mungojerry: screen-x Just read this "Direct messages will not show up in the public timeline. They will only be visible in the Inbox and Outbox tabs of your profile. If you receive a direct message, you'll be notified with an email containing the direct message and a link to reply to the message." So not what I though anyway [11:21] sounds like twitter then [11:22] except less trendy types === denny_ is now known as denny [11:56] Greetings [11:56] good morning livingdaylight [11:57] gm brobostigon [11:58] want to burn iso to disc. Option pops up to burn file or burn contents. Can someone advise me which is the correct for burning os.iso to dvd? [11:59] livingdaylight: What app are you using to burn with [11:59] DJones, its default what ubuntu pops up when I slot dvd in [11:59] let me see [12:00] livingdaylight: I normally cancel that and just use gnomebaker which has an option to burn an iso [12:00] CD DVD creator [12:00] ok [12:01] I would have thought it was burn file rather than contents though for an iso [12:01] I think I used to do that too, but since it pops up everytime, like advertising I've finally succumbed to it [12:01] it recognizes that its an iso and says so, presumably knows what its for then, yet gives me the option, thought I'd double check before wasting a dvd [12:02] As I've never used that app for burning an iso, i'm only guessing [12:03] https://help.ubuntu.com/community/BurningIsoHowto#Ubuntu [12:03] Brasero is the default burner in ubuntu? [12:03] the wiki suggests right mouse click the iso and choose "write to disc" [12:03] mungojerry, i've hat mixed luck with that method in the past [12:04] if i have some folders that are owned by user 'git' and i need 'www-data' to access them, what is the best way? [12:05] i could just chmod a+r but there must be a better way.. [12:07] dogmatic69: are you serving the files via the webserver? [12:08] depending on the group permissions, you could add git to www-data group, or vice versa [12:09] mungojerry: yip gitview needs to show the repos on the web, and gitosis manages them with the git user [12:14] yay, my internets are fixed [12:15] :) [12:18] bok bok bok [12:18] AlanChicken: did you turn it off and turn it back on? [12:18] someone did [12:18] I can now ping my house [12:18] directhex: hahaha [12:18] AlanChicken: at TheOpenSourcerer's place? [12:19] but I have to go home and change my default gateway before I can ssh in [12:19] yeah [12:19] :) [12:21] nigelb: where are you in the uk? [12:23] dogmatic69: nowhere :D [12:23] dogmatic69: I'm in India :) [12:24] lol [12:24] #ubuntu-india :D [12:25] AlanChicken: why chicken? [12:25] i wondered but was too polite to ask :P [12:25] bok bok bok [12:28] mungojerry: He has a chicken shed with chickens [12:28] ah [12:28] for eating or eggs [12:29] or both? [12:30] nope [12:30] only Eggs [12:32] it seems chickens can live for as long as some dogs do [12:32] Stupid blasted python sockets [12:32] Why on earth is it listening on one interface, but not the others [12:33] mungojerry: http://www.youtube.com/watch?v=J7snWiHvpwc [12:35] mmm looks tasty [12:36] AlanChicken: Has there been any conclusion on which came first yet? [12:36] yes [12:36] some people think the chickens come first, others think the eggs come first [12:36] they are all wrong [12:36] the chicken coop comes first, otherwise a fox will get them [12:37] AlanChicken: :) I was just thinking that just as you said it [12:38] obviously "Eggs" in general came before Chicken's evolved ;) [12:38] Dinosaur eggs for example :) [12:38] * kazade ruins it [12:38] i remember dinosaur egg sweets [12:38] they cam in a box so you could suck it for 2 hours and put it back till later [12:39] eww [12:39] * DJones seconds that [12:40] * mungojerry quickly changes subject. [12:40] kernel 2.6.38 has been released http://kernelnewbies.org/Linux_2_6_38 [12:43] could anyone help me out with the permissions, cant seem to get www-data reading user 'git' files [12:43] ive done sudo usermod -a -G git www-data and sudo usermod -a -G www-data git [12:44] dogmatic69: what are the group permissions on the files owned by git [12:44] groups git shows www-data and groups www-data shows git but still getting permission denied [12:45] mungojerry: drwxrwx-w- [12:45] and the group owner? [12:45] git:git [12:47] file_get_contents(/home/git/repositories/geneo1.git/description): failed to open stream: Permission denied [2] [12:47] dogmatic69: AlanChicken hangs out in #ubuntu-in, so we're prettty much set ;) [12:48] that particular file is -rw-rw-rw- 1 git git 39 2011-03-15 12:29 description [12:48] nigelb: hehe [12:48] dogmatic69: have you tried making a test file in an alternative test directory? [12:48] mungojerry: how you mean? [12:49] there might be an issue with permissions /home/git directory not allowing access [12:50] i thought the files would be in /var/www/html or something [12:50] ye, you think linux is not liking it due to being a home dir? [12:52] dogmatic69: well the git homedir may only allow rwx------ for git. [12:52] mungojerry: dont think so [12:55] mungojerry: what is does the d mean where there is a - here... -rwxrwxrwx [12:55] others have drwxrwxrwx [12:55] directory [12:56] man [12:56] ive got it to sort of work but its just horrible [12:56] chown to ubuntu and made it a+x -R [12:56] but still not working proplerly [13:04] dogmatic69: hard to tell without seeing your machine, but in these cases it's always best to reduce to the simplest situation : e.g. make a /test/ directory, and play with permissions in there to establish that www-data can read files owned by git:git in there.. the many levels of parent directories in your real-world example add complexity, so best to make sure it works in a simple case first. [13:11] http://twitpic.com/49pno2 this is how people bribe me [13:13] :) [13:29] what do people think of three, i am getting increasingly frustrated with o2's signal quality, and three's payg deals are much better than o2's. [13:31] will three be any better,? [13:32] three's signal will likely be worse [13:32] oh,not good, :( [13:33] brobostigon: some network providers have detailed maps for you to check coverage to a fine level [13:34] directhex: i have plugged in one of their free sims, into one of my old nokia's, to test signal. [13:34] i was able to check that t-mobiles coverage at my house is lame [13:34] mungojerry: i checked that it says the quality should be good. [13:34] o2 or 3 [13:34] 3 [13:35] it's worth checking the t&c [13:35] mungojerry: o2, has some very annoying signal blackspots. [13:35] i thought three had a network share [13:35] brobostigon: i find the same with t-mobile [13:35] mungojerry: i am just doing that. [13:36] mungojerry: including a nice big blackspot, in the front bar of my favorite pub. === Guest50072 is now known as issyl9 === issyl9 is now known as issyl0 [13:37] t-mob and orange have a network share..not using it yet because android gives a warning when switching from tmob to orange on data [13:37] ah. [13:37] "everything everywhere" [13:37] screen-x: except for certain stations on my route home.. [13:38] mungojerry: the genious of the name is that it makes job titles sound awesome [13:38] ny other advice/suggestions/ideas? [13:39] brobostigon: get a free PAYG 3 sim [13:39] and test it for a week [13:39] mungojerry: done,got it ysterday, [13:39] also , notify o2 of the blackspot in your fave pub :P [13:40] mungojerry: ihave done, they have said, its because of the old thick stone, shielding signal. [13:40] brobostigon: where I work the only network that gets rock solid connection inside the building is 3 [13:41] popey: :) [13:41] iwill walkaaround blckspots with the free 3 sim, in my old nokia,and test. [13:44] brobostigon: what's the 3 payg deal? [13:47] mungojerry: £15 (300mins 3000sms unlimited-data) [13:47] brobostigon: similar to what i pay on my contract [13:48] mungojerry: ah, interesting. [13:48] giffgaff do 250 mins unlimited texts unlimited data (no fup) for £10 :D [13:48] that's what I'm on [13:48] three have no FUP, on said plan either, [13:49] indeed [13:49] Azelphur: i will look at giffgaff aswell. [13:49] * mungojerry feels happier knowing that there's always a workaround: setting your own whilelist for the notification area: http://www.omgubuntu.co.uk/2011/03/how-to-hide-or-show-app-tray-applets-in-ubuntu-11-04/ [13:49] brobostigon: if you go with giffgaff lemme refer you we both get £5 xD [13:50] Azelphur: :) [13:50] what network does giffgaff use? [13:50] :) [13:50] O2 [13:50] i think brobostigon wanted away from them :P [13:51] oh :P [13:51] free mobile internet untill 31 mar 2011, :( [13:51] hehe [13:51] then we kick you in the nuts [13:51] !ping [13:51] Here I am, brain the size of a planet and they ask me to respond to factoid requests. Call that job satisfaction? Because I don't. [13:52] yay, I feel like myself again [13:52] Azelphur: they will have the same blackspots then, so not really alot of use- [13:53] AlanBell: and not a chicken? [13:53] I see :) [13:53] then yea I'd say next best bet is 3, they have more 3g coverage than anyone else [13:53] Azelphur: yes,iwould agree. verytrue. [13:54] hm [13:54] i rarely get 3g on tmob...usually 2g..fortuantely i am mostly connected via wifi [13:54] anyone else use dabr for twitter? [13:55] mungojerry: 3g on o2, here is distinctly patchy, very similer. [13:56] ok, i have some jobs to dointown, be backlater. [13:57] I just speedtest.net'd 3498kbps / 1698kbps on giffgaff :) [13:57] omg [13:57] Ironically I just speedtest.net'd 0.9mbps on my landline.... *sigh* [13:58] mungojerry: fixed with a .htaccess rewrite rule o.o [13:58] deleted every thing, started over, read the docs... [13:58] lol [13:59] never seen "RewriteRule ^([^.]*).git/(.*) ?a=co&p=$1&r=$2" fix permission problems before... [14:03] http://www.speedtest.net/result/1202940253.png [14:03] \o/ [14:04] D: [14:04] loving the 2Mb/s up! [14:04] thats faster than my ADSL down used to be! [14:05] popey: 2Mb/sec on virgin cable? that's a bit depressing [14:05] I almost get that on my phone [14:05] up [14:05] yup, up [14:05] I just did a speedtest.net from my phone and got 1.6 up [14:05] oh, so i see [14:05] nice! [14:05] http://www.speedtest.net/result/1202943383.png me today [14:06] AlanBell: D! Back of the class! [14:06] lol [14:07] yeah :( [14:07] http://speedtest.net/result/1202928116.png going for the high score :D [14:07] i get pretty good up compared to my down, but still crap =\ http://www.speedtest.net/result/1202945809.png [14:08] the speedtest dial only goes up to 100 [14:08] gah I can't even play minecraft, I connect and time out :( [14:11] * popey wants to find someone who can identify the song in the latest charlie brooker program [14:11] http://www.bbc.co.uk/programmes/b00zg1rh 24 mins in - NSFW probably [14:11] popey, you don't have one of those apps on your phone that can do that? [14:12] he's talking over it [14:13] wow, my internet is so broken :( [14:13] I can't even read my email, god alone knows how I'm on IRC [14:16] * mungojerry likes a challenge [14:16] popey: was that the hooray for the na*is part? [14:16] just before that yes [14:17] starts just as he explains the premice of the program [14:17] snare drums, piano, then some kind of wooden thing, xylophone maybe [14:17] the song that goes bumbumbumbumdidibumbumbum === Craig_Dem_ is now known as Craig_Dem [14:20] mungojerry: "Goodness Gracious Me!" [14:21] what have i done now? [14:21] :P [14:21] How do I put my rubbish bin back where it's supposed to be? [14:21] mungojerry: That's the title of the song that goes "bumbuddibumbuddi..." [14:22] popey: there's a website for people like you http://www.whatsthatcalled.com/forum/index.php?showforum=16 [14:22] * popey signs up [14:23] thought you were maplins1 :P [14:24] * ball misses Maplin [14:25] They used to sell a high-res kit for the ZX81 [14:27] ball: Was Maplins around when teh ZX81 was out? I could understand Tandys being around, or maybe even Tandy's became Maplin [14:28] I didn't realise Maplins was that old, 1st store in 1975 [14:29] all those guys from the 80s are dead - sinclair/commodore/acorn (except as part of ARM) ..wonder who will be dead in 20 yrs...nokia, ... [14:30] mungojerry: Not quite all dead, Apple are still around :) [14:30] DJones: apple weren't on my radar as a young lad. and MS baled them out too [14:30] mungojerry: http://www.whatsthatcalled.com/forum/index.php?showtopic=15813 [14:31] none of those companies is dead technicall [14:31] *technically [14:31] Amstrad owns Sinclair [14:31] Commodore name has been passed around over the years but still exists [14:31] Acorn became ARM didnt they? [14:32] and yes, I expect Nokia to die soon :( [14:34] also Acorn guys -> Psion -> Symbian -> Nokia -> RIP :( [14:35] About a million years ago (or so) there was a native Android thing/VM/davlik implementation for Ubuntu. Is this still around? [14:36] popey: ARM was spun off from Acorn. The remainder of Acorn went on to concentrate on things like set-top boxes for cable TV [14:36] I forget their new name. [14:37] Pace? [14:39] We can't forget the other Acorn offshoot ... "Acorn Antiques" :) [14:39] damn, there is something seriously wrong with minecrafts networking code xD [14:39] I'm having a conversation with someone in game, and watching the CraftIRC relay [14:39] Herman hauser must be absolutely loaded [14:39] and they are replying in game to what I'm typing, before what I'm typing even shows up on my client [14:40] so like, I say "Hi", It comes up in IRC, Someone replies, Then I see myself say "Hi" in game like 50 seconds later XD [14:40] Azelphur: It could just be your internet connection [14:41] It could be, I need to do a speedtest to my server and see what I get [14:43] not amazing, 64KB/sec [14:44] lol [14:44] what's the latency [14:44] * DJones offers Azelphur a freshly fed & watered carrier pidgeon [14:44] 90ms [14:44] haha [14:45] what's the uuk minecraft server? [14:45] I'll try connecting to that and see what's going on [14:45] popeydc.dyndns.org [14:47] yep, I've downloaded like 3 chunks and got no further :P [14:48] and now it crashed \o/ [14:48] I clearly broke it with my amazing powers :( [14:49] lol I see a squid swimming through the air :D [14:49] fly little squid, fly! [15:02] home made tom yum gai ♥ [15:04] right, best get kids from school [15:08] just tried minecraft on my netbook and got the same issues, tethering to my phone now to try :) [15:22] morning [15:45] Can somebody look at the video file on this website at about 3 minutes 20 seconds and let me know whether the "planned" road layout is insane http://www.cheshireeast.gov.uk/environment_and_planning/planning/heritage_natural_environment/landscape/design_and_management/regeneration_projects/poynton_village_centre/poynton_-_the_future_video.aspx [15:46] There's about 20-30 seconds after that of suicidal pedestrians crossing the road, I'm sure the designer must have spent their childhood playing Lemmings [15:48] DJones: you mean the roundabouts [15:48] yes [15:48] aw, I should've made double the amount of the soup [15:49] double roundabouts are insanity IMO and should only occur as a temporary workaround to fixing a real problem [15:49] as the picture demonstrates, there is already potential for problems in their mockup [15:50] looks like the congestion problems i get in sim city when accidentally remove a road tile [15:50] roundabouts are a cheap way of managing traffic flow in places where traffic signals would probably be better [15:50] Myrtti: these are DOUBLE roundabouts [15:50] conjoined twins [15:50] the only place where roundabouts make more sense is out of the town, where there isn't enough traffic to warrant traffic signals [15:50] Myrtti: There are already traffic signals where they're planning on putting these double roundabouts [15:51] mungojerry: double roundabouts are even more useless [15:51] DJones: are the video makers against the idea? [15:51] I don't understand the great love britons have for roundabouts [15:51] useless [15:51] they look like they are [15:51] roundabouts manage flows in a different way to signals [15:51] not better or worse. different [15:51] roundabouts are brilliant for cyclists. [15:51] mungojerry: Thats the planners video showing how well its going to work :) [15:51] DJones: surely not :( [15:52] look at the jams! [15:52] the best traffic management is to put in traffic lights and cut the power - seems to work well round my way when there's a traffic light failure [15:52] mungojerry: Yep, look at the pedestrians scurrying across that middle bit of the two roundabouts, I'm sure some of them get run over [15:52] DJones: yeah, where's the articulated lorry driver supposed to be looking? [15:53] you need a codriver to navigate thatroundabout [15:53] here's the thing: if you look at their plans, the accidents are focused on stretches of clear straight road [15:54] meh, my hypochondria isn't going away :-( [15:54] "shared spaces" is the fancy term for "get rid of all the signs and markings, so every driver needs to be shitting themselves & concentrating hard in order to not die" [15:54] research shows it's actually genuinely successful - concentrating drivers kill fewer people [15:54] Myrtti: i hope it's not catching [15:54] their roundabout plan looks zany and hard - but as part of a shared space design, i suspect that's the point [15:55] I don't know about a co-driver, I'd want beta blockers, a bottle of vodka & a blindfold [15:55] notice the lack of actual roundabout middles. it's planned chaos [15:55] directhex: where i work, pedestrians don't even understand that you need to press a button to make the lights change. [15:55] directhex: That description of "Shared spaces" is a brilliant way of putting it [15:55] and the drivers don't have mental faculty to concentrate [15:55] DJones, it's true though. and it *does* work [15:56] directhex: I'd love the drivers to concentrate also on not killing anyone else [15:56] Myrtti, that's the point. drivers can't just go in autopilot in a shared space [15:56] there should be a subway or footbridge to remove the dead pedestrians from the equiation [15:56] they're more alert, so they react [15:56] I hate roundabouts, especially here where the car drivers have 0 respect for pedestrians [15:57] Myrtti: i think its because there's too much else to look at [15:57] oh hells, that's what they did with my estate... that's why there are no markings on the re-paved sections! [15:57] that or they're lazy [15:57] I'd be rich if I'd be given a tenner everytime I see a driver ignore the "yield" triangle when driving into a roundabout with zebra crossings. They don't seem to notice the fact the sign is *before* the zebra crossing, not after it. [15:58] DJones, i've never seen the shared space principle applied to staggered roundabouts, but it's effective in town centers [16:00] when i went to paris i stood for ages on top of l'arc de triomphe at the chaos below, wondering how they weren't crashing [16:05] mungojerry: From what I remember of traffic in paris, they weren't crashing because they never moved in the traffic jam [16:06] DJones: oh, it was chaos at high speed when i saw it..rather fun [16:06] bit like the first corner of a grand prix [16:07] Heh [16:09] DJones: my family's fairly certain there must be some sort of supernatural force involved that keeps them from crashing [16:14] somebody called mark shuttleworth posted on OMG..didn't realise that he reads it [16:18] mungojerry: link? [16:18] although given his last out pourings I'm not sure I want to read.. [16:19] X3N: http://www.omgubuntu.co.uk/2011/03/thunderbird-unity-extension-ready-for-testing/#comment-166030849 [16:20] thanx for link, nice extension btw [16:21] despite the occasional odd behaviour from members of their team, omg are bringing some good unity stories lately, esp. with jcastro et al joining in [16:26] * bigcalm looks in for a moment [16:32] * DJones looks out of the window [16:36] hm, I'm almost considering getting more chicken and mushrooms to make more soup [16:42] "mushrooms"? they are only good with sauerkraut :) [16:43] they're brilliant in tom yum gai [16:44] "tom yum gai"? whats that? [16:44] hi [16:44] hi kaushal [16:45] how do i install 32 bit libraries on 10.10 desktop running 64 Bit os ? [16:45] szymon_g: hi [16:46] szymon_g: I looked it up before, from memory, thai sweet & spicy chicken soup [16:46] apt-get install ia32-libs ← kaushal [16:46] ok [16:47] hm... sounds nice. i like thai curry [16:47] szymon_g: spicy and sour thai chicken soup [16:47] kaushal, those are "standard" 32 libraries, pretty generic. depending what do you want to install you may need to get other libraries [16:47] BF has a flu so it fits the bill [16:48] I normally have Chilli when I've got a cold, the hotter the better [16:49] szymon_g: ok [16:49] we've dated for good three years soon and this is about the first time I've seen him with flu [16:50] http://www.youtube.com/watch?v=s-MF9zkU2Lw [16:50] Myrtti, its called "man's flu" ;) [16:50] youtubed for easier identification! [16:51] http://www.youtube.com/watch?v=rXLHWmjA5IE <- man cold [16:51] mungojerry: that guy (concious user) reads and replies to stuff a lot, he's active in ayatana [16:52] popey: however i was unaware that sadbfl read omg...however he said somewhere he likes reddit so.. [16:54] sadbfl or sabdfl? [16:54] :) [16:54] Just checking ;) [16:54] not intended [16:55] Ah, fair enough :) [16:55] szymon_g: I'm the one with the more violent sicknesses... *shrug* [16:56] yeah. i understand. that time of the month [16:56] ;) [16:58] you can tell that to the Clexane shots I'll probably need to have everytime I travel by air in the future... [16:58] Myrtti: Clexane, nasty, you my every sympathy with those [16:59] They seem to be a bit of a family tradition for my wife, her mum & aunties [17:00] DJones: homozygotic F V Leiden... I've failed in the luck lottery lately [17:01] Myrtti: I hadn't heard of that, with my wife, its Hughes Syndrome - Sticky blood [17:03] o.O that sounds creepy [17:04] Myrtti: We were on holiday last year and her legs swelled up the day before we were due to come home, she ended up spending an extra week in hospital with clexane injections [17:04] I like the probability numbers. In comparison to normal women without oral contraceptives, who have the chances of 1:125000 to get a DVT or pulmonary embolism, I've been blessed with the probabilities of ... 1:150 [17:04] Myrtti, is it, somehow, dangerous? [17:05] Myrtti: Are you on any of the precautinary medication, warfarin etc [17:06] no, but I'm wearing flight socks as we speak and stopped some of my medication. Got the specialists opinion here that says nothing can be done apart from preventive Clexane when I fly or am pregnant, the flight socks, non-hormonal contraception and losing weight. [17:07] Finns don't have official instructions what to do for preventing a blood clot in my case, only what to do when I've had one. [17:07] which, of course, sucks. [17:07] c'est la vie [17:08] (that has become my motto lately) [17:08] That side certainly doesn't sound good, mother-in-law is on warfarin, has to get checked out every week to check the levels [17:08] Myrtti: you're the 3rd person in about 2 weeks I've known either get diagnosed or tested [17:08] (and that's not counting the people who already were diagnosed) [17:16] Myrtti: That sucks. DVTs are bad - but I hate the way that they only ever link it to pulmonary embolism... There are so many things that it can cause (Stroke/Cardiac Failure etc) [17:30] methinks minecraft is in order [17:30] Are you making anything? [17:32] I seem to be doing nothing since I can't connect to my usual server... [17:32] i wonder if there are plans for a minecraft nuclear reactor... [17:34] I think you'd need something a bit more interesting than lava. turning it into cobble isn't very exciting [17:34] lava + pressure cooker = diamond? [17:34] would that work for you? :) [17:36] mmmm nuclear reactor surrounded by creepers [17:36] more like coal + pressure cooker [17:36] that said, I think all the reactor stuff is completely over-done. guess it sells more news than worrying about the rest of the side effects of the quakes [17:43] Cepheus: + lava (to heat said pressure cooker) :) [17:43] MartijnVdS: sounds like a winning combo [17:54] * Tan says hi [17:54] hi Tan [18:11] Evening [18:11] evening :) [18:22] \o [18:29] oly_: (assuming you're the same person as on AskUbuntu), do you have a solution to your kernel .config question? [18:30] nope doubt its me, not even aware of askubuntu :p [18:31] oly_: okay! (if you're interested, it's http://askubuntu.com/ ) === cbx333 is now known as cbx33 === roman is now known as Guest46219 [18:44] hello sladen [18:57] X3N: muwahahah GNOME events boxes. Missed my Eurostar cos of those [18:59] agh :| [19:00] I wonder how useful it is these days [19:00] given that hardware isn't so precious [19:01] I remember lugging it across reading to london, not something i'd ever want to do again heh [19:44] Aloha [19:45] \o czajkowski [19:53] well, comp desk sorted [19:53] :) === AlanBell changed the topic of #ubuntu-uk to: Welcome to #ubuntu-uk! http://ubuntu-uk.org | This channel is publicly archived: http://irclogs.ubuntu.com | Mailing List: http://tinyurl.com/uukml | Support Guidelines - http://tinyurl.com/uuksupport | Meeting Thursday March 17th 21:00 GMT in #ubuntu-uk-meeting http://tinyurl.com/uukmeet | Quiz Night: 16th April 21:00 | http://podcast.ubuntu-uk.org/live/ [20:26] is there some way i can determine the highest resolution timer available on my machine? [20:27] i suppose current linuxes use nanoseconds. [20:34] * hamitron spanks Azelphur [20:34] o.O [20:34] did you find a buyer for that psu? [20:34] nucc1: clock ticks [20:34] dont know if/how you can use them, but they are around === chris_ is now known as Guest88200 [20:40] so annoying when you buy bits, and some old bits you used to use decide to not work when building a seperate machine [20:40] I got a RAID 0 array with an error now [20:40] :( [20:40] dogmatic69, thanks. seems straightforward to do from C. In any case, calling System.nanoTime() from Java gives me a result that is in nanoseconds. It's good enough. [20:40] cool [20:40] hamitron: This is why people don't use RAID 0 [20:41] MartijnVdS, I only use it for transcoding video [20:41] ;) [20:41] hamitron: ah it's "swap" [20:41] sort of, yeh [20:42] but I was lazy and left a few things on there [20:42] so may of paid the price [20:43] appears to be my "program files" folder [20:43] :s [20:43] Face, meet palm [20:43] got a dodgy PSU [20:43] :/ [20:44] that or I've overloaded it [20:44] cheap ass thing [20:44] only cost 7 quid ;) [21:07] [Jono Bacon] Ubuntu Global Jam: More Events, More Needed! - http://www.jonobacon.org/2011/03/15/ubuntu-global-jam-more-events-more-needed/ [21:25] battenberg .. om nom nom nom [21:26] Icky [21:26] ! [21:27] I'm not a marsipan fan [21:27] * hamitron neither [21:27] bbl, coffee, food and testing bits [21:28] that's cool. I wasn't offering to share :p [21:30] what do people actually do at these global jam events? [21:32] Eat toast? [21:36] keepassx [21:40] pectin [21:40] lots of pectin [21:41] I think I've been in the office for long enough today. Time to take the laptop to bed [21:42] when is the next podcast due ? [21:42] zleap: they just this second finished recording it [21:43] ok cool [21:43] so i should be able to download it shortly, thanks [21:43] in the next couple of days [21:43] ok cool === AlanBell changed the topic of #ubuntu-uk to: Welcome to #ubuntu-uk! http://ubuntu-uk.org | This channel is publicly archived: http://irclogs.ubuntu.com | Mailing List: http://tinyurl.com/uukml | Support Guidelines - http://tinyurl.com/uuksupport | Meeting Thursday March 17th 21:00 GMT in #ubuntu-uk-meeting http://tinyurl.com/uukmeet | Quiz Night: 16th April 21:00 | Jam \o/ [21:51] zleap: tomorrow [21:52] ok thanks === bigcalm_ is now known as bigcalm [21:55] so is askubuntu.com like a sub-section of stack exchange, or is it separate? [21:56] yes [21:56] :) [21:56] eg does my askubuntu.com login work on stack exchange? [21:56] the former [21:56] yes [21:56] ok, cool [21:56] well, no [21:56] but they aggregate your logons [21:56] oh... :) [21:56] or something [21:56] if i search on stack exchange, is it possible to find the content on askubuntu? [21:56] pass [21:57] dunno if there is a cross site search [21:57] i guess i can ask on meta :) [21:57] well, there is, its google :) [22:12] \o howdy all [22:13] o/ [22:14] anyone know how i can check what ppa is running? [22:14] nvm [22:15] apt-get dist-upgrade works [22:15] * dogmatic69 cries [22:16] fail: http://www.bbc.co.uk/news/uk-12751404 [22:17] stupid idea badly executed :( [22:17] lol [22:17] almost as much fail as my site... [22:18] apt-get dist-upgrade ~= 503 errors :( [22:18] I have no idea how you would enginer a digital clock to fail like that [22:18] AlanBell: run it off a windows box [22:18] I can understand it going off [22:19] or all segments on [22:19] but stopping is a curious failure mode [22:19] running it off any kind of programmable computer is just asking for trouble [22:19] asic timers have been around for years [22:19] it is a 101 logic programming exercise [22:21] actually you could still get that freezing even without a computer to crash [22:21] if it has shift registers (which it will to drive the LEDs) they will hold the last value even if the asic blows up [22:22] probably relays to control the segments actually, logic circuits won't light them up directly [22:22] relays? [22:23] itym power transistors :) [22:23] yeah, or them [22:23] but you can get integrated shift registers/ led drivers in 1 chip anyway... [22:23] * AlanBell did basic electronics 20 years ago [22:24] eg http://www.maxim-ic.com/datasheet/index.mvp/id/4909 [22:25] I bet they tried to be smart and use the GPS clock signal or something [22:25] ugh, no [22:25] like i said last night, i have an alarm clock that does that [22:25] and it is consistently 15 minutes slow [22:26] because the designers forgot to take into account the ephemeris adjustments [22:26] hehe, maybe you are 15 minutes "into" the time zone? ;) [22:26] gord: when it was new it was right [22:26] was just being silly [22:51] erm... apparently commodore are remaking the 64's again! [22:52] however don't all rush at once, its using all singing all-dancing tech of the current era [22:52] Intel Atom processor and Realtek sound card, along with nvidia for the graphics card [22:52] http://www.commodoreusa.net/CUSA_C64.aspx <== check it [22:56] HazRPG, how much it cost? [22:56] hamitron: no price yet, they haven't made them yet [22:57] it's just a PC with a C64 logo on it [22:57] ali1234, and? [22:57] ;) [22:57] well, quite [22:57] its got a boot loader at startup to select the C64 O/S (emulated apparently), and you can install "windows" as it states [22:58] so basically dual boot [22:58] yeah, but it sounds like they're doing it PS3 style [22:58] GameOS + OtherOS styley [22:58] they probably just put vice on it [22:58] in a small linux image [22:58] most likely lol [22:59] well worth the extra 200 quid [22:59] ;) [22:59] or whatever they think they can get [22:59] however I have a feeling they'll be designing it to run with the full 2GB RAM, etc [22:59] what c64 game needs that? ;/ [22:59] would be pointless putting the SD card, CD/DVD/Blu-ray drive - if the C64 part couldn't use all of that [23:00] that is for loading your game "images" [23:00] ;) [23:00] that they will charge for? [23:00] unsure? [23:00] wii virtual console anyone? [23:00] C64N [23:00] except that the games on there are actually good :) [23:00] its essentially an emulator... so I don't see why the disk images wouldn't work on this, or at least hacked to use them [23:00] C64 Network \o/ [23:01] 99p each [23:01] 500kb downloads [23:01] C64 games are nowhere near 500kb [23:01] even with modern encryption and copyright protection? [23:02] the thing only has a 16 bit address bus [23:02] but it looks cool anyway [23:02] :) [23:03] I think I've decided about my phone [23:03] the new/old c64? [23:03] :P [23:03] I wanna convert my Spectrum ZX into a side talking beast [23:03] xD [23:03] I was close :P [23:03] yeh [23:03] I don't have a C64 to convert [23:04] also, everyone here seems C64 crazy [23:04] and I like to be different [23:04] ;) [23:06] suppose a Spectrum ZX 128 +2 would be better, so could use the built in cassette for voice mail [23:07] Z80 is much nicer to program than 6502 [23:08] don't you think ARM is best choice? [23:08] they are not comparable [23:08] true [23:10] heh apparently commodore are doing a new like of computers too, along with a new line of amigas too [23:10] Commodore Phoenix [23:10] it's all vapour [23:10] and Amiga 1000, 2000, 3000 [23:10] they've been talking about that stuff for years [23:10] ali1234: don't worry I know ;) [23:11] and it's not commodore, it's just some company that bought the name [23:11] actually the commodore name has been owned by several such companies over the past 10 years, none of which ever did anything with it, despite lots of talk [23:11] if the PC market gets much more boring, there may be more of a call for something basic [23:11] it's probably more like 15 years now [23:12] how can you say PC market is boring? [23:12] it's *always* been boring [23:12] that's the main appeal [23:12] early 90s was more fun [23:12] not if you had a PC [23:12] even mid 90s [23:13] I am comparing a PC from then, with now [23:13] :) [23:13] now you plug stuff in and it just works :/ [23:13] no IRQ and that [23:13] configuring I mean [23:14] nobody actually wants to do that stuff [23:14] a shame [23:14] ;/ [23:14] nobody ever did [23:15] there are many "geeks" who don't even know about IRQ now [23:15] they're not geeks, they are just pretending [23:15] hence the "" [23:15] ;) [23:16] but it was easier to considering modding stuff [23:16] or even designing stuff [23:16] all of that stuff is as easy today as it was then [23:16] in fact it is easier since you don't have to pay $2000 for an oscilloscope [23:17] I can't see how people are gonna learn stuff like opengl in the future [23:17] back [23:17] hamitron: hmm... you make the IRQ sound like its something to wow over, isn't it just an request interrupt :/ [23:17] or something like that [23:17] the same way they learn it now, by buying the red book... [23:18] depreciating the older methods removes the first step [23:18] ;/ [23:18] Hello, I'm having a bit of difficulty getting accents, ie graves and umlats (spellign bda) to work. Now i have tried just about all that I can find. Additionally, I am working under xfce, but not from a xubuntu install. [23:18] deprecating!!! [23:18] how many people even know what is ram [23:18] my spelling is not good :/ [23:19] stuart__: in what program? [23:19] not 'it stores stuff', but what saves the bits [23:19] Any program. [23:19] stuart__: such as? [23:19] gedit, leaf pad. pigeon. [23:20] stuart__: ah, that sounds like a keyboard layout issue [23:20] Basically, the compose key doesn't work as it ought to. [23:20] you mean the key that does: `¬ [23:21] ė [23:21] hmm [23:21] Well it is a uk keyboard. On an asus eee 1005ha. I can set compose to alt_gr/ralt but I still can't get it to work properly. [23:21] ẹ [23:21] And I can go ¬ [23:21] hmm..... [23:21] dogmatic69: heh, if they've been to college they ought to know what RAM is... we designed a small RAM chip in Digital Works for our Hardware class [23:21] nice [23:22] ̣ [23:22] ali1234: o.o [23:22] most people dont get that all the fancy stuff is just made up of tiny resistors etc [23:22] ok so i did that by typing alt gr + / then a letter or alt gr + ? then a letter [23:23] stuart__: hmm... I'm confused, so you have a UK layout keyboard... what kind of layout are you expecting? [23:23] nah. not having it. [23:23] wiring up d-type flip-flops is totally different to doing ++c; though [23:23] :/ [23:23] ŭ [23:23] that was alt gr + ~ followed by u [23:24] so you need to type alt-gr + accent you want, then the letter [23:24] This I know. It just doesn't wanna do it. [23:24] ali1234: I get this by press alt gr + ~ a few times: ` [23:24] doesn't do anything the first time though [23:25] that's so you can make letters with accents like ŭ [23:25] anyway, it does seem likely to be a problem with keymaps [23:26] ali1234: ah, I'm with you [23:26] so you have to press alt gr + ~, then release and press the key you'd like the accent [23:26] or perhaps xfce is using alt-gr for some kind of modifier [23:26] ù [23:27] I am not sure... [23:27] Under 'gnome-keyboard-settings' the settings can be set. But afaik, I also had this problem under gnome... [23:28] stuart__: I'm guessing your doing alt gr + ~ then pressing the letter you want an accent with... because that's what I had to do [23:32] I have tried about everything. I had it working before, a long time ago and alt-gr ~ a thing did work. [23:32] stuart__: open up terminal, and type in the following: sudo showkey [23:32] type in your password [23:32] and then press the ALT GR key when it asks you to press a key [23:33] the output should say keycode 100 press, keycode 100 release [23:33] if its showing something else, then its assigned as a different key [23:33] Check. [23:34] stuart__: its showing 100? [23:34] Yes. [23:34] A press and a release. [23:34] hmmm [23:34] try the other alt key [23:34] it should show 56 [23:34] 56 [23:35] The keys do work. They just aren't allowing a compose. [23:36] yeah I guessed the keys were working, I was just making sure that the alt gr key was actually registering as being an alt gr key [23:36] create a new user and log in to gnome with that user [23:37] I will have to log out as i did turn off multiple user thingy. [23:38] if that works, log in to xfce with that user [23:38] if it doesn't work, something is really wrong... [23:38] stuart__: try this... this will hopefully rule out if the keyset is the issue or not [23:40] so ali1234 [23:40] CTRL+SHIFT+U ... then release the U key (but keep hold of CTRL+SHIFT), then type 0102 - then release the CTRL+SHIFT key [23:40] what you think to the fixed function pipeline in opengl? [23:40] it's pretty lame [23:40] not good for learning? [23:41] meh [23:41] it's easy to learn, but what is that knowledge good for? [23:41] books are good for learning [23:42] for practical applications nothing, but practising using it lets you get your head around the 3d way of things [23:42] :) [23:42] lack of serial ports upset me also [23:42] you know most of the matrix transformations in opengl are done in software right? [23:43] all the matrix stack stuff [23:43] push and pop [23:43] it's all software in nearly all opengl implementations [23:43] old stuff is still supported too [23:43] which means removing the fixed function pipeline has absolutely no effect on your ability to use this, or similar apis [23:44] yeh [23:44] what you describe as "the 3d way of things" is actually just vector/matrix math [23:44] yeh [23:44] all 3d engines implement their own version because the stuff in opengl 1.0 is kind of rubbish [23:44] and the whole push/pop method of calculating a scene graph is all backwards to the way you do it in a scene graph anyway [23:45] a noobie learning doesn't want to learn everything at once though :) [23:45] what is to learn? [23:46] the mathematical concepts are extremely similar when you remove all the push/pop and gltranslate nonsense [23:46] it just gets you thinking I suppose [23:46] if you can conceptualize what it means to multiply together two matrices, the rest is trivial [23:47] and that's better served by watching a video or something [23:47] I can't see why so much effort / time was spent putting the system in place in 3.0 to deprecate stuff [23:47] because the programmable pipeline can be programmed to act like fixed function [23:47] so it's just pointless duplicated code :) [23:48] this is how most GPUs are doing it now anyway [23:48] kk :) so you think they will leave it functioning for a good time yet? [23:48] sure [23:48] if that is done, I'm happy [23:49] I am an opengl newbie, and just feel "left behind" by the talk of deprecating stuff used in learning materials [23:50] well yeah [23:50] this is why there is no point learning fixed function :) [23:50] the new stuff is radically different [23:50] yeh [23:50] I've pottered around with 3 different things so far [23:51] but you would be better off learning to use a 3d engine first [23:51] one that has a scene graph [23:51] the early stuff I find easier to see and relate to maths [23:51] when you understand what it's purpose is, it's easier to conceptualize how it does it [23:51] k [23:51] this is the problem with bottom up learning [23:52] if you don't understand how a thing is used, it's much harder to care about how it works [23:52] and that makes it harder to learn [23:52] so you're probably thinking "why doesn't this apply to the arduino then?" [23:53] I don't do arduino tbh :) [23:53] yesterday i was advocating bare AVR over arduino [23:53] yeh [23:53] and the reason for that is that the arduino is kind of limited in what it will let you do [23:54] I remember that [23:54] where as a full 3d engine vs raw opengl will let you do a lot more stuff very quickly [23:54] when i was at university one of the labs was to make a solar system simulator in opengl [23:54] so is my red book that uses 2.1 useless? [23:54] :/ [23:55] i would recommend doing that in opengl, and then doing it in say ogre3d [23:55] or possibly the other way around [23:55] either way, doing it in a 3d engine with a proper scene graph is about a billion times easier than doing it in opengl [23:57] I think I've wasted a lot of time then [23:57] :/ [23:58] unless it will help me with glide? [23:59] glide? the 3dfx driver? [23:59] yeh [23:59] you shouldn't be using that [23:59] I know