Centroid.EU Blog
(this blog is mostly encrypted - adults only)
|
Previous Page
August 5th, 2012
Mars may be toxic. So what do you do? I have a "backup" plan for landing
humans on mars. Instead of landing them on Mars itself, a craft lands on
the moons Phobos or Deimos. This puts them so close to mars that a round
trip time with communications between any point on mars is likely less than
500 ms. So if you think back to the movie "Avatar" there was a human
commanding an avatar and sensed what the avatar sensed. I propose that we do
this with robotics that land on mars instead of humans. While the humans are
getting comfy on the moons (little gravity unfortunately) and controlling
the robots they will have almost instant feedback of what a robot sees, hears
and feels. I think this will be enough quarantine to explore Mars even if it
harbours biological virii that could wipe out the human race when brought
back to earth on a human. Something to think about anyhow.
0 comments
Why I don't trust the ITU
August 4th, 2012
The Internet is a dream come true for both techs and non-techs. It
revolutionized communication costs big time. This is why I do not like
hearing about the ITU wanting control of the Internet.
This article from the BBC writes the following:
The ITU is hosting a conference in December in Dubai to which representatives from 178 nations have been invited to review the International Telecommunications Regulations (ITR).
The ITR is a 1988 treaty which set out rules for how traffic should flow between different telecom networks, and how to calculate charges for traffic exchanged between carriers in different countries.
This is why I don't like the ITU because the ITR is mainly out of date. It's
people that made the Internet happen and people that drove costs down. And
they did this mainly from 1995 onwards. A 1988 treaty could not have conceived
of the explosiveness of the Internet's expansion.
Finally I'd like to say we're more than just customers to a telecom (who is
a member of the ITU), we are the Internet. Right now as it seems to me the
Internet is controlled by the US but it's in good hands. The ITU would
tear us apart and raise costs.
0 comments
Five technologies of the future
August 2nd, 2012
Here are
10 Futuristic Technologies That Will Never Exist.
I kinda laughed reading this and thought I'd create my own that will
exist. Here, then, are five technologies that I predict will make it in
the future.
- Quantum Computers
There is a lot of people working on these now with semi-successful attempts.
I believe in the next 10-15 years we'll see the first desktop quantum
computers.
- Artificial Intelligences
In the future there may only be 2 types of programs. Operating Systems and
Artificial Intelligences. The latter can program you anything you wish,
from a game (interpreted or compiled) to a complex astronomy program.
- Lunar Space Elevator
Unlike the Earth Space Elevator the LSE has a lot more going for it. No
thunderstorms, no atmosphere that eats away at the fibres. The LSE is almost
a perfect invention. And there can be 2 of them, one at the near side and
one at the far side of the moon.
- L5 rotational space stations
You know those wheels that rotate in space? Well when the LSE is finished
these will also be easier to do. Mining on the moon will likely make these
possible. They will be constructed of iron or steel rather than light alloys.
- Pseudo Time Machine
If an event happens on earth and you want to look back to see the events that
happened just prior you can. By placing earth observing telescopes very far
away, so that light travels on the matter of hours to their mirrors you can
create a "Way-back-machine" and it's due to the laws of physics (speedlimit
of light) that this works.
0 comments
Cloudcracker, does it make economic sense?
July 30th, 2012
Came across this from a
heise.de article. And I'm thinking...this is such a waste of resources.
It's contributing to global warming quite possibly just to crack a silly
password.
Perhaps we need "cloudbroker" an entity that corporations sign up
to and they broker access to a corporations system considering the data that
would be used for a crack. It would save the economy money for one and
you could give it a certain amount of penalty before the broker rats on the
cracker, and then the corporation is alerted.
Now if the cloudcracker was powered 100% off-grid by solar panels, I'd like
the idea.
There may be a good side to this however. If enough people use such blatant
climate-killing services perhaps they will introduce low-cost, low-power
quantum systems sooner than later. At that point all crypto would be mute
anyhow and cryptosystems would live a renaissance most likely.
0 comments
Donated 50 euros to OpenBSD
July 13th, 2012
I've been in contact with some OpenBSD developers the last few days and they
managed to create a patch in the kernel that I needed. I promptly wrote Theo
a transaction for 50 euros. The money should go through in the next few
days. Thanks to Claudio, Henning, Otto, and if I didn't mention your name
a thanks goes out to you as well.
0 comments
A bit disappointed with dspam
July 6th, 2012
In May of 2011, I
identified
an issue with the FreeBSD mail server for the
company I work for. Dspam was coring on signal 8 repeatedly. I investigated
the issue and produced a workaround, it is written about
here.
So then when doing upgrades just recently I noticed the signal 8's were back
on the FreeBSD port, and also on the newest version of dspam. So I put my
patch to good use again and the signal 8s disappeared. All in all I'm a bit
disappointed that my "hint" to dspam development did not see a concrete fix
and I'm sure others must be having these problems as well.
0 comments
Fritzbox 7930 NAS too slow!
June 30th, 2012
I bought my parents a Fritzbox 7930 made by AVM. It's a nice box but it can't
do everything. I think it's underpowered as I get only 4.5 MB/s writes via
ftp to this thing. I get less with CIFS which prompted me to write a utility
with ftplib that reads from stdin and dumps to a file via ftp. The cpu on the
fritzbox is at 99% and it won't go any faster. Here is my program:
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ftplib.h>
#define FTPUSER "ftpuser"
#define FTPPASS "somepasswd"
int
main(int argc, char *argv[])
{
char *user = FTPUSER;
char *pass = FTPPASS;
netbuf *nControl = NULL;
netbuf *xControl;
char buf[512];
int ch;
int len;
while ((ch = getopt(argc, argv, "u:p:")) != -1) {
switch (ch) {
case 'u':
user = optarg;
break;
case 'p':
pass = optarg;
break;
}
}
argc -= optind;
argv += optind;
if (argv[0] == NULL || argv[1] == NULL) {
perror("args -> IP file");
exit(1);
}
FtpInit();
if (FtpConnect(argv[0], &nControl) == 0) {
perror("FtpConnect");
exit(1);
}
if (FtpLogin(user, pass, nControl) == 0) {
perror("FtpLogin");
exit(1);
}
if (FtpChdir("SAMSUNG-HD154UI-01/", nControl) == 0) {
perror("FtpChdir");
exit(1);
}
if (FtpAccess(argv[1],
FTPLIB_FILE_WRITE, FTPLIB_IMAGE, nControl, &xControl) == 0) {
perror("FtpAccess");
exit(1);
}
while ((len = read(STDIN_FILENO, &buf, sizeof(buf))) > 0) {
if (FtpWrite(buf, len, xControl) < 0) {
perror("FtpWrite");
exit(1);
}
}
if (FtpClose(xControl) == 0) {
perror("FtpClose");
exit(1);
}
FtpQuit(xControl);
FtpQuit(nControl);
exit (0);
}
Anyhow if you don't believe me watch these statistics with dump(8):
DUMP: Date of this level 0 dump: Sat Jun 30 17:15:09 2012
DUMP: Dumping /dev/sdb1 (/) to standard output
DUMP: Label: none
DUMP: Writing 10 Kilobyte records
DUMP: mapping (Pass I) [regular files]
DUMP: mapping (Pass II) [directories]
DUMP: estimated 158901841 blocks.
DUMP: Volume 1 started with block 1 at: Sat Jun 30 17:15:13 2012
DUMP: dumping (Pass III) [directories]
DUMP: dumping (Pass IV) [regular files]
DUMP: 0.81% done at 4273 kB/s, finished in 10:14
DUMP: 1.64% done at 4340 kB/s, finished in 10:00
DUMP: 2.50% done at 4416 kB/s, finished in 9:44
DUMP: 3.37% done at 4461 kB/s, finished in 9:33
DUMP: 4.23% done at 4485 kB/s, finished in 9:25
DUMP: 5.10% done at 4498 kB/s, finished in 9:18
DUMP: 5.95% done at 4499 kB/s, finished in 9:13
I'll be taking the external hardrive back to this computer for backups. Too
bad.
0 comments
Going to the moon? You'll need this!
June 30th, 2012
I'm a big proponent of GW Bush's moon to mars idea. I think we should establish
a base on the moon first before venturing to mars. However to needlessly spend
fuel to land on the moon is pointless, you'll need this, a lunar space elevator.. Thanks to
Brad Guth for implanting that idea in my head.
0 comments
Congratulations to China
June 30th, 2012
Since I get chinese people looking at this blog occasionally I want to
congratulate you on your spacetrip and first chinese woman in space. I was
looking at the "
CSS" earlier today. Pretty cool! I hope one day germany will be able to
design space stations, or perhaps europe. How about on the moon!?
0 comments
Solstice in 4 days
June 16th, 2012
Hi, the solstice is in
four days from now. Get your celebration planned to worship the sungod, or
whatever. In the southern hemisphere of course it means winter where in the
northern hemisphere we'll have summer.
0 comments
Next Page
|
Search
RSS Feed
Click here for RSS
On this day in
Other links
Have feedback?
By clicking on the header of an article you will be
served a cookie. If you do not agree to this do not
click on the header. Thanks!
Using a text-based webbrowser?
... such as lynx? Welcome back it's working again for the time being.
Older Blog Entries
March, 2023
February, 2023
January, 2023
December, 2022
November, 2022
October, 2022
September, 2022
August, 2022
July, 2022
June, 2022
May, 2022
April, 2022
March, 2022
February, 2022
January, 2022
December, 2021
November, 2021
October, 2021
September, 2021
March, 2021
February, 2021
January, 2021
December, 2020
November, 2020
October, 2020
September, 2020
August, 2020
July, 2020
June, 2020
May, 2020
April, 2020
March, 2020
February, 2020
January, 2020
December, 2019
November, 2019
October, 2019
September, 2019
August, 2019
July, 2019
June, 2019
May, 2019
April, 2019
March, 2019
February, 2019
January, 2019
December, 2018
November, 2018
October, 2018
September, 2018
August, 2018
July, 2018
June, 2018
May, 2018
April, 2018
March, 2018
February, 2018
January, 2018
December, 2017
November, 2017
October, 2017
September, 2017
August, 2017
July, 2017
June, 2017
May, 2017
April, 2017
March, 2017
February, 2017
January, 2017
December, 2016
November, 2016
October, 2016
September, 2016
August, 2016
July, 2016
June, 2016
May, 2016
April, 2016
March, 2016
February, 2016
January, 2016
December, 2015
November, 2015
October, 2015
September, 2015
August, 2015
July, 2015
June, 2015
May, 2015
April, 2015
March, 2015
February, 2015
January, 2015
December, 2014
November, 2014
October, 2014
September, 2014
August, 2014
July, 2014
June, 2014
May, 2014
April, 2014
March, 2014
February, 2014
January, 2014
December, 2013
November, 2013
October, 2013
September, 2013
August, 2013
July, 2013
June, 2013
May, 2013
April, 2013
March, 2013
February, 2013
January, 2013
December, 2012
November, 2012
October, 2012
September, 2012
August, 2012
July, 2012
June, 2012
May, 2012
April, 2012
March, 2012
February, 2012
January, 2012
December, 2011
November, 2011
October, 2011
September, 2011
August, 2011
July, 2011
June, 2011
May, 2011
April, 2011
March, 2011
February, 2011
January, 2011
December, 2010
November, 2010
October, 2010
September, 2010
August, 2010
July, 2010
June, 2010
May, 2010
April, 2010
March, 2010
February, 2010
January, 2010
December, 2009
November, 2009
October, 2009
September, 2009
August, 2009
July, 2009
June, 2009
May, 2009
Powered by BCHS
|