topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 26, 2024, 12:14 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Gothi[c] [ switch to compact view ]

Pages: prev1 [2] 3 4 5 6 7 ... 32next
26
DC Gamer Club / Re: Boson X - Free, frantic indie game.
« on: August 30, 2013, 04:59 PM »
Today I learned I have no coordination nor timing. :D

27
Non-Windows Software / Re: Remmina - superb remote access client
« on: August 30, 2013, 02:18 PM »
Nice find.

In case any one wants to compare with the gnome and kde default ones:

* https://projects.gno...gre/screenshots.html
* http://www.kde.org/a...tions/internet/krdc/




28
Non-Windows Software / Re: Screenshot thread!
« on: August 30, 2013, 02:07 PM »
poorly secured access points - which is what I've been asked to help them with.
Since most wireless authentication schemes can be cracked in minutes with a bit of hardware, you're probably better of just running an ipsec vpn on top of it or something in order to access the network :D

29
Come on gothic, there's plenty of room for everyone.

Actually, as it stands now on most of the unmoderated internet, there isn't.
Postings related to popular technologies and platforms drive out the more obscure things (which is logical because they are popular).
The problem with this is that there is no place for people who are actually interested in these obscure things.
When anything is allowed, the "wisdom" of crowds governs, which in practice drives everything towards monoculture.

30
I'm kind of hoping this forum section doesn't get hijacked by the tablet/phone crowd :(

31
Non-Windows Software / The comprehensive IRIX audio software list
« on: August 30, 2013, 10:44 AM »
Many old IRIX workstations still make a pretty decent audio workstation today.

The SGI Octane for example, has a mere 3ms audio input-to-output latency out of the box, and they come with Alesis ADAT 8-channel, 24-bit optical ports are built-in, along with S/PDIF or AES/EBU optical and coaxial ports.

On top of that, there is quite a big list of audio software for the platform out there, many of it still relevant and very usable today. By default Irix comes with a pretty decent mutitrack recording program. Hunting down all the Irix audio software is a bit tricky. Whomever said nothing ever gets deleted from the internet obviously never has researched old obscure stuff :)

There's a list on sgi's old ftp that's rotting away. It is ridden with broken links and it's own pages don't even link to one another correctly anymore, and I have a feeling one of these days it's going to just vanish completely as SGI/rackable is dropping it's legacy IRIX support this year.

So I started copying the list and reformatting it on the reddit /r/IRIX subreddit wiki:

http://www.reddit.co.../wiki/audio_software

There's some pretty fascinating software in that list.

32
Non-Windows Software / Re: Window Managers and Terminals for *NIX
« on: August 30, 2013, 10:31 AM »
Now using fluxbox, thanks to Gothi[c]'s tiling patch (ArrangeWindowsStack*).

Patch is now officially in fluxbox :) Grab the git version and you'll have it included.

33
The lengths you will go to just to get me to post... :D

34
Non-Windows Software / Screenshot thread!
« on: August 30, 2013, 10:22 AM »
So, here's a thread to kick off this new section. Post your OS screenshots! Use GNU+Linux, HP-UX, Plan9, z/OS, GCOS, MCP, *BSD, anything else? Share what it looks like! :)
Here's my humble contribution:

SGI IRIX:

Fresh install on an Indigo2:

irix_3.png

Screenshots from my octane:

irix_2.png

irix_1.png

GNU+Linux:

4DWM running on GNU+Linux through X11 forwarding over SSH:

linux_4dwm.png

Fluxbox window manager on GNU+Linux:

fluxbox_2.png

Solaris:

Fresh install of Solaris 10 booted in CDE:

solaris_1.png

After some time messing with it, this is what it looks like now:

solaris_2.png

35
Living Room / Re: DonationCoder.com Avatar Mysteries
« on: March 31, 2013, 03:14 PM »
That 'last' page was intended to be first, as a message header/intro.
It's not really encoded at all.
I'm sure someone will figure it out :D

36
Living Room / Re: /r/DonationCoder (Reddit)
« on: March 14, 2013, 08:27 AM »
I might end up posting there more than here.

I don't know why though.

I like the subreddit-system and how there's very specialized groups of interest, and the way you can combine subreddit views.
I hate the voting system, and the algorithm that shows the top posts on the 'hot' page (it ends up favoring small light/funny posts over posts with interesting/original content)

37
... And for those who don't use ubuntu, don't despair.
It runs on Gentoo Linux too now :)

Screenie:


38
N.A.N.Y. 2013 / Re: N.A.N.Y. - New Apps for the New Year - 2013
« on: January 01, 2013, 11:07 AM »
That's a very amazing design Hally! Thanks so much!

39
N.A.N.Y. 2013 / Re: N.A.N.Y. - New Apps for the New Year - 2013
« on: November 10, 2012, 08:55 PM »
YUNOmug.jpg

40
Living Room / Products designed to fail, a documentary
« on: November 01, 2011, 07:29 PM »
In case you need yet another thing to piss you off in this world,
Here's an interesting documentary I found that confirms what I always suspected: how nowadays products are designed to fail from the start...

http://documentaryhe...ightbulb-conspiracy/


41
Developer's Corner / Re: Herb Sutter's brief look at C++11
« on: November 01, 2011, 02:33 AM »
Use auto wherever possible. It is useful for two reasons. First, most obviously it’s a convenience that lets us avoid repeating a type name that we already stated and the compiler already knows.

// C++98
map<int,string>::iterator i = m.begin();
 
// C++11
auto i = begin(m);


Second, it’s more than just a convenience when a type has an unknown or unutterable name, such as the type of most lambda functions, that you couldn’t otherwise spell easily or at all.

I'm not sure how much I like this... I mean,.. Isn't this type of thing exactly why we have typdef's ?
At least a typedef still gives you an idea of what type a variable will be, or at least make it relatively easy to look up the type definition in the code. Looking up the return value of begin() in stl seems like more of a pain in the rear, and this is just a simple example... :S


typedef std::vector<std::string> strvector;

// ...

strvector foo = func(); // <- this seems more useful/readable than:

auto foo = func(); // <- no idea wtf foo is from looking at it.


 :two:





42
* Gothi[c] waits for dc to be flagged as terrorist organisation :D
watch all the paypal funds be frozen :D

44
You forgot to add that world food stocks are going down and population is going up :)

45
Living Room / Re: DoCo Banner - Animated!
« on: June 07, 2011, 01:58 PM »
I love the part where he sinks  :P

46
Living Room / Re: DoCo Banner - Animated!
« on: June 07, 2011, 01:58 PM »
This is awesome!
Should be the official banner :)

47
I signed up at Oracle for news and they called me, left a message to call them.
Yes they have my #, but no big deal to me.

I don't think they have what I would use, ever.

But considering they called, I suspect there is an aggressive sales force to incorporate their products as a business standard, of which I have not much to do with.

Oracle has been doing that since the 90's
I remember getting a call from them about their oracle database products way back in the 90's just because i had created an account to download something (forget what) ...

48
That is bizarre. Don't they have redundant power? Was it a blackout? Brownout?

I host with Softlayer in Texas. They've been excellent.

The entire datacenter went dark completely.

Normally they have UPS'es and battery banks to keep things runing until the generators kick in.
The UPS'es "couldn't handle the load" according to them, and everything went down.

It wasn't a brownout as it took quite a bit for them to restore power.

49
Developer's Corner / Re: Game Engines and Apps
« on: May 22, 2011, 04:46 AM »
Woah, way to bump a great old thread mouser :)

Also, related: https://www.donation...dex.php?topic=3352.0


50

SPEDEROFOHUNCO

Speech Development Robot for Humans under Construction



Pages: prev1 [2] 3 4 5 6 7 ... 32next