- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 13
- Posts with Upvotes
- 11
- Upvoting Members
- 11
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Re: to import a single function from another script, simply put "from <script> import <function>". You can set vars and consts in another script. Example: [CODE="Python"]#example.py a = 10 b = 20 def function( n ): n + 20 return n #script.py import example example.a = 14 example.function(6) [/CODE] | |
Re: Here in the Netherlands the weather's quite pleasant today, altough the Royal Dutch Meteology Institute predicted a thunderstorm tonight... | |
Re: Have you tried Qt by Nokia? I'm a unsure whether it will be supported on Windows Phone 7 and Android at all, but it is 'the' open source alternative to DotNET they say. Maemo and newer high end Symbians were written using it if i'm not mistaken, and with the … | |
Re: To me, C++ is not dying, at least not for as long as I live. I have to admit, I have to use other (high-level) languages in order to fit in at work. Satisfaction is way higher when I finish up projects in C++, though. I see C++ as my … | |
Re: There's been a true fight going on between Apple and Samsung in the Hague court in the Netherlands, for any of you fellow Dutch speaking techies: [url]http://www.nu.nl/gadgets/2587590/apple-en-samsung-botsen-hard-in-haagse-rechtbank.html[/url] Basically this news story reveals how childish Apple is, even in the Netherlands, which isn't exactly between the US and Korea without a … | |
| |
Re: I'd go crazy and run into the wild, to enjoy mother earth in all her naturality of the last days. I'd avoid contact with other humans anyway. | |
Just want to say that I was baffled when I read this forum member, who ranked WAY up in little half a year, is (only) 14 years old, whilst providing [U]true[/U] support in the networking section of this forum. Cheers to you, friend. You've accomplished something I wouldn't even think … | |
| |
| |
Re: You people should've seen the trial we had here (the Netherlands) yesterday, it almost looked like two kids fighting over eachother's treehouse ideas. It was pathetic, although Samsung seemed to be in control a little more than Apple. | |
Re: R.I.P. and welcome to 27 club. Tell Kurt I said hi. Lovely voice, awful face. R.I.P. | |
Re: [QUOTE]Be curious, and take it one step at a time (i.e. don't start by digging into Boost.Proto or some other crazy complicated library like that, start by looking at libraries that are small and simple enough that you could possibly be able to do it yourself, if you wanted to).[/QUOTE] … | |
Also known as "Snitching" applications, that simply log and report the whereabouts of an object (like smartphones, laptops, tablets, etc.). [B]Why kernel-level?[/B] Because a lot of these devices have a "Return to factory default" option, which simply removes the Snitch. [B]Why this thread?[/B] My HP iPaq 914c got stolen almost … | |
Re: You can ram a Lenovo (At least a thinkpad) into a concrete wall with 35mph and it still works, running it's own crash tests. [URL="http://www.youtube.com/watch?v=Iw78gcU713g"]Proof here.[/URL] Your lenovo can survive the weight of a grown man and don't break. [URL="http://www.youtube.com/watch?v=-CrpUU3cCPE"]Proof here.[/URL] True stories. I would always go for a Lenovo … | |
Re: instead of calling open directly, assign it's result to a value like [CODE=C++] int a; a = fopen(filename.wav) //etc [/CODE] [B]EDIT: [/B]In your case, just check [CODE=C++]int fd[/CODE]'s value. | |
Re: In the Netherlands, your choice says a little more about you than just financial things. When people find out you got a new phone you almost immediately get placed in a group. Running around with an iPhone, and you're doomed to be called a hipster (and they're right, everyone i … | |
Re: I use Windows on a repetitive daily basis. If your gear can't handle it that sucks. Write your own lightweight OS in Assembly or C :) | |
Re: I use Eclipse for almost all development i do, i admit it's quite resource hungry but really expandable in quite a few ways. A fun example is that i wrote a (really simple) SDL game engine in CDT and i made a plugin for eclipse which became the game editor. … | |
Re: I was 8 years old when i dipped my toes into programming with LOGO, I am 20 years old now writing hardcore ARM C and assembly code ^^ | |
Re: Format the disk, the easy way is to overwrite all of the data with other data (just takes a long time), but if you have some coding skills just write some software that creates a file and bloats it with zeroes (NULLs). other than that, you can just copy some … | |
Re: I see you have basic knowledge of the language so i won't explain on how to implement, but take a look at this [url]http://msdn.microsoft.com/en-us/library/xfta99yt(v=VS.90).aspx[/url] | |
Re: Thank YOU! I was looking for this for a long time, does it do tag editing too? | |
Re: It might come with GCC, who knows. Otherwise install it yourself. | |
| |
Hello, I'm working on a hardware project based on the RabbitSys chips, which are ideal for web based hardware development. My task now is to divide a table up in pages and i'm able to set a variable from a webpage like "CurrentPage=1" and calculate my way around. the ZHTML … | |
Re: If you're familiar with service programmig you could just create your own registration service, where license codes are connected (encrypted with?) the host's MAC adress for example. It's how i do it in my C++ projects. | |
Re: Try DarkBasic or the DarkGDK at [URL="http://www.thegamecreators.com"]The Game Creators[/URL]. It's how i started out on game development =) | |
Re: Technically you can, if you had the datasheets and instruction sets of all the hardware you were working with. I think there's a unified instruction set which is used by libraries as OpenGL and such. To be honest, I don't know for sure because all assembly I did was on … |