danielronde has quit [Read error: Connection timed out]
danielronde has joined #neo900
ashneo76 has quit [Quit: ZNC - http://znc.in]
ashneo76 has joined #neo900
<DocScrutinizer05> sure, we don't do software (unless we need it for BSP)
<chomwitt1> BSP?
danielronde has quit [Read error: Connection timed out]
danielronde has joined #neo900
<chomwitt1> so i guess on of the prerequisites for selecting a subsystem is to have already a linux driver.
<DocScrutinizer05> that largely depends on the subsystem
<chomwitt1> what linux kernel you use to test a fully equiped prototype?
<chomwitt1> i mean it's a customed one loaded with the 'drivers' taken from all the subsystem's syppliers?
<chomwitt1> or as someone said most drivers are in mainline kernel.
<chomwitt1> ?
<DocScrutinizer05> there's no such thing like "subsystem suppliers"
<DocScrutinizer05> all drivers are either in mainline or not existing (for the few things we invented completely anew ourselves)
<DocScrutinizer05> modem basically has a tty_acm device interface
<DocScrutinizer05> other chips have their own drivers in mainline usually
<DocScrutinizer05> or we need to adapt existing drivers to the particular circuit we use that chip in
<DocScrutinizer05> ((things we invented completely anew)) ... will base on existing kernel drivers though, e.g. on drivers for GPIO and ADCIN in twl4030
<DocScrutinizer05> so those drivers are tier 2, usinf existing generic drivers as their interface to the hw
<DocScrutinizer05> many drivers will use I2C driver to talk to a chip
danielronde has quit [Read error: Connection timed out]
<DocScrutinizer05> e.g our IO-extenders will use I2C driver and a generic IRQ handler to provide /sys/*/*/gpio-switch/*
danielronde has joined #neo900
<chomwitt1> DocScrutinizer05: i'm trying to clear in my head the general picture of things in software side. So since driver's get 'customized' or changed a little all those little changes are pushed mainline again ? and u use a mainline kernel for testing?
<DocScrutinizer05> please understand that Neo900 UG doesn't do software development. We might provide proof-of-concept aka reference implementations for some drivers that might be needed since there's no generic way to access the subsystem. But we won't upstream those, this is a task of community and experts for that stuff in there
<DocScrutinizer05> actually I dunno if there's any such special subsystem in our design that needs such special driver
<DocScrutinizer05> all the chips we use have published docs, so odds are somebody wrote a driver for them
<DocScrutinizer05> when we combine multiple chips into a complex subsystem, then the specialized driver for such complex subsystem is just a convenience thing, since all the functions consist of basic APIs for GPIO or I2C or whatever
<DocScrutinizer05> for the modem Gemalto provides linux drivers
Defiant has quit [Ping timeout: 260 seconds]
<DocScrutinizer05> for WLAN and BT TI provides all the needed firmware and driversa
<DocScrutinizer05> for OMAP3730 all drivers exist and are prolly upstreamed, same for display etc. Dunno about the CRtouch12 touchscreen chip, I guess at least they already wrote something for Pyra at least since it uses same chip
<DocScrutinizer05> otherwise somebody has to grab the hardware/chip datasheet and write a driver from scratch
<DocScrutinizer05> highly unlikely this will be needed
<chomwitt1> DocScrutinizer05: ok. i got the part that u do the hardware part. but my question is (in simple terms -cause that's my view although i am computer sciense graduate- )dont you do tests for example running debian with a kernel you wont to see if you can tune to FM station (for example) ?
<DocScrutinizer05> dunno if there are specialized driver for e.g. 9-axis sensor or hygro/baro sensor. All those chips are I2C so you could talk to them via i2cget/i2cset
<chomwitt1> wont->want
Defiant has joined #neo900
<DocScrutinizer05> FM chip is attached by I2C, it can completely get operated by a shell script consisting of i2cset/i2cget commands. If you want a more convenient driver, you (or we) most likely will find one upstream
<DocScrutinizer05> we won't write a driver providing e.g. /sys/devices/FMradio/frequency
<DocScrutinizer05> we rather do a i2cset 02 0x34 112 to tune the chip to 112 MHz
<chomwitt1> so you do low-level testing
<DocScrutinizer05> yes
danielronde has quit [Read error: Connection timed out]
<chomwitt1> not from a user-space perpespective
<DocScrutinizer05> tier2 is convenience
<chomwitt1> tier2?
danielronde has joined #neo900
jefrite has quit [Ping timeout: 264 seconds]
<DocScrutinizer05> drivers interfacing to other drivers (like I2C bus driver) to do their thing
<DocScrutinizer05> we want to test the hardware, not the tier2 drivers
<chomwitt1> arent u qurious to test sth like Tui to your prototype boards to play with it as user ?
<chomwitt1> qurious -> curious
<DocScrutinizer05> though, most likely there are tier2 drivers for all our subsystems already
<DocScrutinizer05> no, I don't have the luxury to be curious during development
<DocScrutinizer05> all that stuff gets handled by community
<DocScrutinizer05> my job is debugging the hardware, and for that the more immediate the interface, the better
<chomwitt1> ok i appreciate that you let me understand some aspects of the project.
<chomwitt1> ..that i wasnt aware off
<DocScrutinizer05> with a i2cset 02 0x34 112 I get immediate feedback if the register write worked, and I can read another register to see the results (like signal strength of the broadcast station). With a conevnient high abstraction layer driver that gets pretty awkward
<DocScrutinizer05> when I do a echo 112 >/dev/fm/frequency and then a cat /dev/fm/signal and there's -55 as result, I don't know if the chip is defect or the driver flawed
<chomwitt1> when u say that 'tier2 is a convenience' u mean that a tier2 driver is sth you write to automate things you can already do with tier1 drivers in order to save time ?
<DocScrutinizer05> don't get me wrong, as long as there are known-to-work upstream high abstraction drivers, we will of course use them
<DocScrutinizer05> basically yes
<chomwitt1> i see
<chomwitt1> is there a member of the community that doest the user-space testing i reffered to earlier?
<DocScrutinizer05> a N900 maemo example: there was a *userland* daemon to talk to the charger chip. It's closed source and we couldn't really use it for anything with N900. I investigated which chip is used and how it works and came up with
<DocScrutinizer05> ~12charge
<DocScrutinizer05> err
<Oksana> ~123charge
* Oksana made random guess... infobot is here, yes
<chomwitt1> so in that case the hardware (charger) had opened-specs in order to talk to it in tier1-way but that tier2 driver that existed was a blob with which you couldnt work . is that a valid picture ?
<DocScrutinizer05> in Neo900 we do the inverse thing, starting with simple scripts based on the known chips and their docs, and leave it to the community to find or write the high level stuff that deals with those chips
<DocScrutinizer05> yes, correct picture
mrcaaatt1 has joined #neo900
<chomwitt1> that usb-charger script seems cool. i'll try it to my n900 !! :-)
<DocScrutinizer05> obviously a decent driver for USB charging needs to do a lot of nasty stuff liketalk to USB host and ENUM and negotiate charge current, etc
<DocScrutinizer05> ~bme
<chomwitt1> dont you thing that a user-space testing process embedded in your's project workflow could help raise higher the awereness and willingless of the community to come closer to the project. i mean i'd love to see sth like 'a user-space testing blog-diary thing'
<DocScrutinizer05> we will ship the complete factory hw test job, so user can rerun it as well as learn from it how stuff works
<DocScrutinizer05> the "user-space testing diary" is something our community sw devels like pali and freemangordon will do
<DocScrutinizer05> ~fptf
<infobot> extra, extra, read all about it, fptf is the Fremantle Porting Task Force, see http://talk.maemo.org/showthread.php?t=91308
<chomwitt1> n900 and neo900 share hardware ? i mean the BME u referred to could be used in neo900 too ?
<DocScrutinizer05> or actually, I'll also publish some post about the resukts of hw intergity and operation tests in prototypes
<chomwitt1> cool . looking forward then to pali and freemangordon tests !
<DocScrutinizer05> no, Neo900 has a way smarter charger chip that doesn't need any driver to do its job. Though you can have a driver to mess with it to your liking
<DocScrutinizer05> and since the chip is similar but different to the one used in N900, you can't use the closed BME blob for it
<DocScrutinizer05> we're lucky pali already coded a FOSS BME replacement ;-)
<chomwitt1> ~fptf
<infobot> i guess fptf is the Fremantle Porting Task Force, see http://talk.maemo.org/showthread.php?t=91308
<DocScrutinizer05> which is a decent kernel driver (not userland), and allows easy adaption to the chip used in Neo900
<chomwitt1> cool bot!! :-)
<DocScrutinizer05> ~botsnack
<infobot> DocScrutinizer05: :)
<chomwitt1> ~botbeer
* infobot whips out the beer bong.
<chomwitt1> :-)
<DocScrutinizer05> ~query
<infobot> talk dirty to me! Preferably, do so after you have typed "/query infobot" which should open a new window/tab/whatever with most irc clients. You can talk to me all you like and don't annoy other people with endless queries. Be aware that the stuff you write is logged, so don't get too 1337 :)
<DocScrutinizer05> afk for an hour
<DocScrutinizer05> o/
<chomwitt1> wow... infobot is 900 years old ! like yoda!! :-)
<chomwitt1> bye
<DocScrutinizer05> only 18 iirc
* chomwitt1 send kudos to DocScrutinizer05 for the developer's feedback
<wpwrak> chomwitt1:: BSP = board support package. basically some core system that that runs on a platform and uses (most of) its hardware. sort of a proof of concept.
<wpwrak> chomwitt1: the idea is to have some rudimentary devuan that can boot and then run production tests. (i.e., tests that confirm the presence of all chips and a little more)
<wpwrak> (brexit) 70.69% turnout. i think that alone deserves celebration. 49.8:50.2%. interesting. has peru set an example ? there, it ended 49.87:50.12% ;-)
Oksana has quit [Remote host closed the connection]
<wpwrak> funny. bbc has an interview with a young woman (pro-remain) who participated in some erasmus (eu student exchange) program. she studies politics. they raise the point that erasmus would be a thing of the past if leave wins. she didn't disagree. now, i wonder if all the erasmus students we had in lausanne were just a figment of my imagination ;-)
Oksana has joined #neo900
DocScrutinizer05 has quit [Disconnected by services]
DocScrutinizer05 has joined #neo900
mrcaaatt1 has quit [Remote host closed the connection]
mrcaaattt has joined #neo900
mrcaaattt has quit [Ping timeout: 264 seconds]
<DocScrutinizer05> (([2016-06-23 Thu 15:51:46] <DocScrutinizer05> TV news just claim an expected 15% loss of GBP vs EUR. EUR will also suffer, but less)) http://finance.yahoo.com/q?s=EURUSD=X http://finance.yahoo.com/q?s=GBPUSD=X
<wpwrak> sure. it's a change and the establishment called it wrong. so there'll be a bit of noise. give it a week or two and it'll be back to normal. besides, a low pound if good for Uk exports, right ? ;-)
<DocScrutinizer05> we'll see
<wpwrak> all this looks very similar to when switzerland voted against joining the EU. there were also predictions of doom and isolation. none of it came true. of course, the other side exaggerated as well. but in the end it's more a question of whether you want to cooperate. if yes, you can figure out a way to do it.
<end1> independent scotland, reunited ireland and maybe independent wales
<end1> yay.
<end1> switzerland voted if they want into the EU
<DocScrutinizer05> farewel Britain, hello Scotland
<end1> GB was 43 years in the EU
<end1> the financial structures are designed for beign in the EU
<DocScrutinizer05> exactly, a tiny but relevant difference
<wpwrak> end1: yeah, there may be quite some aftershocks. but let's see. now there's a lot of excitement, but that won't last forever.
<DocScrutinizer05> no, it will turn into constant agony
<wpwrak> end1: i'm sure the swiss will be happy to help you out if you need some blueprints ;-)
<end1> as i said
<end1> the swiss situation is a completely different
<end1> furthermore the swiss are not on a fucking ISLAND
<DocScrutinizer05> and Swiss economy always been chocolate and gold, right?
<end1> north ireland is completely cut off, therefore it has to join ireland
<end1> literally
<wpwrak> end1: what i mean is that EU and switzerland have good relations and that the contractual frameworks for this are in place. so if there's something the UK couldn't figure out on their own (rather unlikely, but let's assume it for the sake of argument) then they could look there for well-established precedent
<end1> wpwrak: they will not get the financial benefits from being in the EU.
<wpwrak> DocScrutinizer05: banks, pharmaceutics, banks, watches, banks, chocolate, banks, cheese, banks, tech, did i mention banks ?
<end1> the market will not be the same
<DocScrutinizer05> I doubt the English will do that, they are too ego
<end1> and not in favour of GB
<end1> wpwrak: and it will cost money changing the contracts
<end1> and they lose their special role in the EU
<end1> they had so many special ways just for them
<DocScrutinizer05> yeah!!! \o/ finally
<end1> if they want to join in 2 years again, because their situation is fucked up
<end1> they will not get them again
<DocScrutinizer05> no, out is out
<end1> DocScrutinizer05: they will try again
<end1> the last time it took also three attempts
<wpwrak> end1: changing the contracts will make all the folks working on that very happy, and rich ;-)
<DocScrutinizer05> EU must not allow them to re-join, or every friggin EU banana republic will threaten with exit just to get better deals
<wpwrak> end1: so don't worry too much about the establishment. they won't go poor either ;-)
<end1> wpwrak: well, and the tax payers veeeeery unhappy
<wpwrak> end1: they're already unhappy :) i mean, probably half of "leave" really meant "cameron", not "eu"
<DocScrutinizer05> unemployment expected to rise massively in GB
<end1> wpwrak: they will be even more unhappy, after they see what they have done
<end1> well, USA-like GB
<end1> adapting to their little children
<end1> populistic idiots created this
<end1> as almost always
<end1> i'm glad not living in GB
<DocScrutinizer05> prolly even a fool like Trump for next whatevertheUKhas
<DocScrutinizer05> s/UK/GB/
<end1> although it will be funny changing all maps for northireland and scotland maybe even wales
<DocScrutinizer05> worrying is the increase in political instability and tention all over Europe from this
<end1> i think if scotland joins the eu this will lay down
<end1> as they see not all people are brainwashed
<end1> and of course when they see GB die
<DocScrutinizer05> think EU sactions against Russia, for just one example
<wpwrak> DocScrutinizer05: that's been brewing for a while. and brussels has tried to ignore it. bad idea. at least it's not france who delivered the wakeup call. now that would have been devastating.
<DocScrutinizer05> indeed
<DocScrutinizer05> france pending in steady state
danielronde has quit [Read error: Connection timed out]
<wpwrak> DocScrutinizer05: please please keep those sanctions. they're really good for us who get to export stuff to russia ;-))
danielronde has joined #neo900
<DocScrutinizer05> not long until Hungary, Netherlands, France, whatnotelse will turn ultra-national
<DocScrutinizer05> (well, some already did) and then leave EU too
<end1> hopefully not germany too
<end1> else this will end in the long term in a WWIII or so
<DocScrutinizer05> no, prolly not
<DocScrutinizer05> the idiots here are loud but 'only' maybe 15% so far
<end1> this can rise quite fast
<DocScrutinizer05> yes
<end1> anyway
<end1> any ETA for the Neo900 yet?
<DocScrutinizer05> I wish there was
<freemangordon> hmm, wait, afaik British parliament has the final saying about brexit
<freemangordon> so, no matter the referendum results, it is still not decided
<wpwrak> freemangordon: given that that was to a large extent also a vote against the current government, i think it would be great if they tried to weasel out on some technicalities. that would definitely send the people the message they want to hear ;-)
<end1> wpwrak: i don't think so
<end1> the brexit campaign solidarized with the actual government
<end1> /s/actual/current/
<end1> so why the hell would someone vote "against the current government", if the brexit just means it will prevail?
<wpwrak> end1: news sources pretty much agree that this is a major blow for cameron
<freemangordon> well, people are not always rational
<DocScrutinizer05> for Cameron yes. But Cameron introduced the exit election only to quiet anti-EU tendencies in his own party
<DocScrutinizer05> this was a bad shot in his own foot
<DocScrutinizer05> 3 years ago when he came up with this election idea, the mood was not as broadly anti-EU as it became during those 3 years since then
<freemangordon> the gov could use the referendum results to renegotiate wit EU, I suspect this is what is going to happen
<wpwrak> yes, never stand in front of your own cannon ;-)
<DocScrutinizer05> freemangordon: nope
<DocScrutinizer05> EU won't accept this
<freemangordon> why not?
<end1> GB already got a lot of special regulations
<end1> they will not get more
<DocScrutinizer05> EU don't want to create an even worse precedence
<freemangordon> GB out of EU is not a good thing, dammit, they did everything to keep GR in there
<wpwrak> freemangordon: i guess that's what effectively may happen. they'll have to initiate the separation process, but then they can wait until some crisis they can use to make public opinion swing the other way. then they can try to revert it. but let's see. maybe they decide it's not worth the trouble, and they can just get as good a deal with bilateral contracts.
<end1> the tourism in GB will suffer a lot i think
<DocScrutinizer05> precedent even
<freemangordon> the point is - until there is no c"confirmation" from the british parliament, the referendum results mean nothing but a noise
<end1> they will lose many EU tourists
<end1> and Gibraltar will suffer a lot, too
<DocScrutinizer05> oh yeah, the poor gibraltamekakiinians
<end1> just because some stupid nationalists, as always
<wpwrak> freemangordon: i don't think they can afford to not act on it. that would be political suicide.
<freemangordon> wpwrak: that won;t be the first time
<freemangordon> there is already a precedent
<wpwrak> freemangordon: it would certainly get them the marie antoinette award for elite disconnect ;-)
<freemangordon> also, keep in mind that boys with the thick wallets are against brexit. guess who controls the politicians :)
<DocScrutinizer05> that's a pretty good point indeed
<wpwrak> freemangordon: that's why i expect them to focus on friendly bilateral contracts now
<DocScrutinizer05> well, those bilateral contracts will take half a dozen years or more to get established
<freemangordon> wpwrak: no way to happen "now", and int the time period needed to establish, there will be lots of money wasted for the london city boys
<wpwrak> freemangordon: cut back a bit on immigration and such, to placate the loudmouths, then make sure the things they really care about don't change much
<freemangordon> DocScrutinizer05: :nod:
<DocScrutinizer05> wpwrak: that's the root problem: the loudmouths don't have a faintest clue what exactly it is they are afraid of
<DocScrutinizer05> they actually make up bullshit reasons
<freemangordon> remember what has happened in Greece? They voted against ECB etc, but still, the gov decided to act differently
<freemangordon> the same will happen here IMO. Or actually it may become even better, because GB has way more to lose from brexit than EU
<DocScrutinizer05> of course
<freemangordon> well, maybe not GB as a whole, but the guys with the money
<wpwrak> DocScrutinizer05: they can extend that two year period if they want. so i wouldn't worry about time constraints.
<freemangordon> no, thay can't
Venemo has joined #neo900
<freemangordon> afaik the EU law enforces those 2 years
<end1> afaik EU law doesnot allow the brexit
<end1> or the exit of any country from the EU
<wpwrak> freemangordon: "The Treaties shall cease to apply to the State in question from the date of entry into force of the withdrawal agreement or, failing that, two years after the notification referred to in paragraph 2, unless the European Council, in agreement with the Member State concerned, unanimously decides to extend this period."
<freemangordon> end1: hmm, why is that?
<DocScrutinizer05> article 50 is quite clear onb that afaik, however they of course may invent some new rule. But that's not a remedy for the impact those uncertain new contracts have
<DocScrutinizer05> end1: that's article 50 iirc
<DocScrutinizer05> maybe it wsas 150
<DocScrutinizer05> it has that 2 year span to accomplish the exit
<wpwrak> and the above is the wording on the 2 years period. so you can see that it's flexible.
<freemangordon> anyway "interesting times" ahead :)
<DocScrutinizer05> wpwrak: maybe it is flexible, but that doesn't help
<wpwrak> freemangordon: indeed. change is what makes life interesting :)
<DocScrutinizer05> I alreadxy assumed that flexibility when I said "half a dozen years to accomplish"
<freemangordon> wpwrak: well, the chinese wish "to live in interesting times" is a kind of a curse :)
<DocScrutinizer05> other sources attribute it to the arabs
<wpwrak> freemangordon: yeah, they work too hard. no time for fun :)
<freemangordon> however, I don;t think brexit will really happen
<wpwrak> freemangordon: quite a possible outcome. and if it eventually happens, i'd expect it to be replaced by cosy agreements. what i really hope this will accomplish is to lead to improvements in the EU.
<wpwrak> such as things like TTIP not happening
<freemangordon> wpwrak: I guess we all hope, but that's not going to happen (improvements). I think EU bureaucracy is fubar. I'll be glad to be proved wrong.
<freemangordon> TTIP and the likes are because of our friends on the other side of the ocean and IMO brexit just gives them more power to influence on EU politics
<Wizzup_> Yes, that's the whole point. The EU needs to stand together to have any influence on foreign / international politics
<wpwrak> freemangordon: i think the effect on US-EU influence is tricky. but TTIP already sparked significant resistance. it's the sort of thing that can make growing resentment worse.
<wpwrak> Wizzup_: standing together and behind your political leaders helps little if these leaders all agree to act against your interests :)
<freemangordon> wpwrak: ...but instead of doing that, our favorite grandma started to play games with immigrants, further strengthening anti-EU moods inside the union
<freemangordon> oops
<Wizzup_> wpwrak: I am not so sure if that is true / happening
<freemangordon> Wizzup_: ^^^
<wpwrak> freemangordon: yes, merkel screwed that up badly. austria is also very pissed off about that.
<freemangordon> yeah
<freemangordon> wpwrak: imagine how it is in the eastern parts where we don't have the legacy of being WWII guilty
<Wizzup_> Was there a decent and humane way to handle it?
<wpwrak> Wizzup_: not start it ? :)
<Wizzup_> wpwrak: Is that a humane option? Not start what?
<wpwrak> Wizzup_: not try to destabilize inconvenient but stable regimes, and thus give idle hands a chance to start an insurgency, or whatever you want to call that conflict
<Wizzup_> I didn't know the EU did that...
<wpwrak> Wizzup_: they helped the US do it
<freemangordon> :nod:
<Wizzup_> I recall that a few countries did minor bombings, yes.
<DocScrutinizer05> long before that, there was utter hostility against Sadad
<freemangordon> it is not all about the force used, it is about the politics and support to US decisions
<wpwrak> freemangordon: well, there are quite a number of people in austria who seem to feel more pride than guilt about WWII. and guess who's on the rise now ... :(
<freemangordon> wpwrak: sure, I guess it is the same all around Europe, new generations with no memories
<wpwrak> DocScrutinizer05: sadat, died in 1981 ? or do you mean assad, president of syria ? :)
<DocScrutinizer05> Assad, yeah
<DocScrutinizer05> SOP of USA: remove inconvenient government but instead of 5 seconds pondering what comes next, just leave a vacuum
<DocScrutinizer05> they did that in Iraq in a very brilliant way
<wpwrak> DocScrutinizer05: indeed. and as we know, nature abhors a vacuum, especially if it's a power vacuum
<wpwrak> libya, too. perhaps an even worse case.
<DocScrutinizer05> :nod:
<freemangordon> yeah
<freemangordon> esp in lybia EU was more than just a side observer
<Arch-TK> Wow, that was unexpected, the vote was to leave.
<DocScrutinizer05> Libya?
<Arch-TK> and DocScrutinizer05 was right, GBP immediately down 10%
<DocScrutinizer05> indeed EU/USA acted worse than even the French in their worst times
<Arch-TK> Do you think GBP will keep falling now?
<freemangordon> who's going to stop it?
<freemangordon> remember, there is an EU politicians meeting in a couple of hours, where they will say "british people choice has to be respected" I guess
<DocScrutinizer05> freemangordon: we may have bets on how many chars are incorrectly predicted in this wording
<freemangordon> and the next to come is Scotland (and Ireland ?) saying they will make referendums on staying in EU, thus leaving GB
<DocScrutinizer05> yep, though aiui they need to push such referendum in London
<freemangordon> that chart one remembers me of 11.02 :)
<freemangordon> DocScrutinizer05: afaik scotland has its own gov and parliament, but don;t quote me on that :)
<freemangordon> I am not really that deep in island's politics :D
<DocScrutinizer05> yep, they do afaik, but only for "local" stuff, not for an exit from UK
<freemangordon> sure, but now we have "interesting times" so I won;t be surprised if they somehow manage to do it by themselves
* DocScrutinizer05 neither, just heard something in a sub-sentence that sounded like "the Scotsh will try to use this brexit to force another referendum"
<DocScrutinizer05> when they need to force it, then against Britain
* freemangordon wonders who is going to harvest the strawberries in the UK now :D
<DocScrutinizer05> LOL
<DocScrutinizer05> we got the Polish and maybe Czech people
<DocScrutinizer05> here in germany, also for asparagus
<freemangordon> sure, but going out of EU will most probably mean that borders won't be crossed as easily as now, so the people will prefer germany etc
<DocScrutinizer05> but yeah, I heard in UK the Irish and Scots play that role
<freemangordon> hmm, what I know it is the same in UK (eastern europe people)
<DocScrutinizer05> that info was not very validated
<freemangordon> anyway, /me has to run
<freemangordon> bb
* DocScrutinizer05 feels migraine around the corner. Heat is also not _really_ mere fun
<DocScrutinizer05> o/
<freemangordon> hmm, how hot it is in your place?
<DocScrutinizer05> ~weather eddn
<infobot> Nuernberg, Germany; (EDDN) 49-30N 011-03E 318M; last updated: 2016.06.24 0650 UTC; Dew Point: 64 F (18 C); Pressure (altimeter): 30.09 in. Hg (1019 hPa); Relative Humidity: 65%; Sky conditions: mostly clear; Temperature: 77 F (25 C); Visibility: greater than 7 mile(s); Wind: from the SE (140 degrees) at 3 MPH (3 KT) (direction variable)
<freemangordon> because, what I see here, in my room, is 31.2 :p
<freemangordon> I guess outside is about 35-36
<DocScrutinizer05> yesterday my room was nicely chilled. Not it has heated up
<DocScrutinizer05> now*
<freemangordon> anyway, bb
<DocScrutinizer05> cya
<Arch-TK> I wonder how long before I need to get a visa
<Arch-TK> Citizeship in this country is more expensive than the Neo900
<Arch-TK> I need to go too
<DocScrutinizer05> wow, Cameron doesn't step down
<DocScrutinizer05> oh, I just missed it, he actually does
<wpwrak> and he's already adding delays to the invocation of article 50 :)
<DocScrutinizer05> no surprise, he's contra brexit
<DocScrutinizer05> that's why he needs to step down, nobody wants the loser to fight for the winner's agenda
<wpwrak> yes, but he's not only not overseeing the negotiations / transition, but he's also delaying initiating the process. that's different from what he said before. not surprising, though.
Kabouik has joined #neo900
freemangordon_ has quit [Quit: Leaving.]
rootman has joined #neo900
rootman has left #neo900 [#neo900]
freemangordon_ has joined #neo900
Kabouik has quit [Ping timeout: 240 seconds]
jonsger has joined #neo900
paulk-aldrin has joined #neo900
Pangolin has quit [Ping timeout: 244 seconds]
Pangolin has joined #neo900
xman has quit [Ping timeout: 260 seconds]
xman has joined #neo900
xman has quit [Client Quit]
Pali has joined #neo900
freemangordon_ has quit [Remote host closed the connection]
<Arch-TK> Well, it means I have a few more months to acquire the £1200 required for a citizenship.
<Arch-TK> It seems I should have put more of my savings into BTC earlier, it seems to have been a good bet.
<Arch-TK> My losses aren't as big as they might have been (not that I have all that many savings)
<Arch-TK> This country isn't really that big on savings, people seem to think that having no savings because you're "poor" is something to brag about.
<Arch-TK> People brag about how little savings they have.
<Arch-TK> In other news: coworker states that 52% of the UK is racist bigots.
ossguy has joined #neo900
<Defiant> is the neo900 even sold outside the eu? :)
Xiaoman has quit [Ping timeout: 244 seconds]
Xiaoman has joined #neo900
<pigeons> Defiant: i ordered one and im in us
<pigeons> there are a few different radio configuration choices
Xiaoman has quit [Quit: Xiaoman]
paulk-aldrin has quit [Quit: Leaving]
paulk-aldrin has joined #neo900
jonsger has quit [Ping timeout: 260 seconds]
louisdk has joined #neo900
jonsger has joined #neo900
Pangolin has quit [Ping timeout: 260 seconds]
Pangolin has joined #neo900
jefrite has joined #neo900
jonsger has quit [Ping timeout: 264 seconds]
mrcaaattt has joined #neo900
Venemo has quit [Quit: Communi 3.5.0 - http://communi.github.com]
xman has joined #neo900
arossdotme has joined #neo900
arossdotme-planb has quit [Ping timeout: 258 seconds]
SylvieLorxu has joined #neo900
jonsger has joined #neo900
jonsger has quit [Ping timeout: 264 seconds]
lobito has quit [Quit: Leaving.]
Pablo666 has joined #neo900
jonsger has joined #neo900
MonkeyofDoom has quit [Remote host closed the connection]
MonkeyofDoom has joined #neo900
ravelo has joined #neo900
Xiaoman has joined #neo900
ravelo has quit [Ping timeout: 250 seconds]
freemangordon_ has joined #neo900
louisdk has quit [Ping timeout: 260 seconds]
freemangordon_ has quit [Quit: Leaving.]
freemangordon_ has joined #neo900
freemangordon_ has quit [Client Quit]
louisdk has joined #neo900
xman has quit [Ping timeout: 260 seconds]
paulk-aldrin has quit [Quit: Leaving]
ossguy has quit [Quit: leaving]
louisdk has quit [Ping timeout: 244 seconds]
mrcaaattt has quit [Ping timeout: 276 seconds]
mrcaaattt has joined #neo900
louisdk has joined #neo900
Pablo666 has quit [Ping timeout: 240 seconds]
louisdk has quit [Ping timeout: 252 seconds]
louisdk has joined #neo900
pagurus has joined #neo900
louisdk has quit [Ping timeout: 250 seconds]
mrcaaattt has quit [Ping timeout: 276 seconds]
SylvieLorxu has quit [Quit: ZNC - http://znc.in]
jonsger has quit [Ping timeout: 264 seconds]