Today I worked with sunpy python module.
So I make one simple tutorial about this module.
If somebody want to see it or maybe to read some python tutorial the go to this website.
tutorials, tips, tricks, commands, programming, linux, windows, database, sql, python, programming language, Fedora, drawing, painting, tutorial, tutorials
Today I worked with sunpy python module.
So I make one simple tutorial about this module.
If somebody want to see it or maybe to read some python tutorial the go to this website.
From python official website I found this :
Python 3.4.0 alpha 2 was released on September 9th, 2013. This is a preview release of the next major release of Python, Python 3.4, and is not suitable for production environments.
Major new features of the 3.4 series, compared to 3.3
Python 3.4 includes a range of improvements of the 3.x series, including hundreds of small improvements and bug fixes. Major new features and changes in the 3.4 release series so far include:
PEP 435, a standardized "enum" module
PEP 442, improved semantics for object finalization
PEP 443, adding single-dispatch generic functions to the standard library
PEP 445, a new C API for implementing custom memory allocators
PEP 446, changing file descriptors to not be inherited by default in subprocesses...
This is the result of my tutorial named : PyGame - first interface - part 6 .
I use the rect function to make buttons.
Also I check the mouse position and changed the color.
Today I worked with pygame and OpenGL python modules.
I want to make a simple script to test and load pygame , OpenGL modules.
The script can be found here.
Linux can be a goof tool for development...
In the last days I deal with pygame and android.
So if you want to make applications for your tablet or mobile phone then see this:
working-with-pygame-subset-for-android
working-with-android-emulator-part-001
... also I saw the pygame can give some errors on android. I got this error : android pygame error : failed to dequeue buffer from native window.
So if is somebody know pygame then you can read more here.
The last years will come with many features for consumers.
The website reginele.ro come with this "dodge trade"
I told myself :"Maybe is an error".
Not realy. The marketing is make to distort the consumer.
Why? If you create an account on MailDirect then will have receive 0.5 ¢ and 1 ¢ / mail (you need 100$ to cash the money).
The big error is : most of the offers are exaggerated ...
Honestly, you should review the marketing policy.
I'm sure most users of Linux operating systems are wise enough to avoid such problems.
The big question is: if we are adept of open source infos ...then why not we have the same expressions in trades ?
Sorry about this post . Regards.
Now Google Analytics team help you turn your website’s data to improve results and meet your goals.
You can share your information websites with google experts and will receive account tips, new ideas and goals.
Read this tutorial about how to do that.
How many fedora users use Opera browser?!
You can see all content of your files using cat command.
I created one function named catt in my .bashrc file.
This is the function you can change to show any type of files not just javascript.
That allow you to working in same folder with many files and see the changes.
If you have another idea about how to see changes in all source of code then just send me one mail or comment.
function catt(){
for i in *.js;
do echo "__""$i""__";
echo "--------------------------";
cat "$i" -n -b;
echo "--------------------------";
done ;
}
And this is result output for all javascript from my node.js folder.
--------------------------
__serv.js__
--------------------------
1 var sys = require("sys"),
2 my_http = require("http");
3 my_http.createServer(function(request,response){
4 sys.puts("I got kicked");
5 response.writeHeader(200, {"Content-Type": "text/plain"});
6 response.write("Hello World");
7 response.end();
8 }).listen(8080);
9 sys.puts("Server Running on 8080");
--------------------------
__test.js__
--------------------------
1 var sys = require("sys");
2 sys.puts("Hello World");
--------------------------
One problem can be the number of files parse by this function.
In this case you will not able to see all content of files. Will be to much for you.
But for settings files will work great.