Voices

You know that ringing sound that you will perceive when you are in a very quiet area? Some people say this is an auditory-illusion brought about the ear’s inability to detect frequencies below the threshold of the human senses. This is completely wrong. That ringing covers up something else altogether. If you are quick, patient, and maybe a little lucky, you will be able to hear past the ringing. What you will hear are voices whispering to each other. They will silence themselves quickly but with practice, you will become more adept at catching and interpreting what they are saying. You will hear things of the past, the present, and the future. However, you must be careful. Because there is no such thing as a voice without a body.

And when you start noticing them, they will start noticing you.Image

The Next Step

Seems as if my MacBook Pro’s hard drive decided to bite the dust today. Still working on getting data off of it, but it’s not a big deal.

It allowed me though to throw my Intel SSD into my MacBook Pro, and, instead of OSX, I went ahead with Ubuntu on it. I’m using 10.10 because it has the best support, and is Unity free.

Needless to say, I’m pretty happy with it. I’d be happier if I had everything from my old hard drive on here, but that will come with time. So far so good.

He was Walking Her Home

He was Walking Her Home.

Something’s Broken

Something’s broken.

Pearl Harbor killed 2,402 American soldiers and sailors, 57 civilians. Becomes a rallying cry, US goes after Japan, war ends in 4 years. After 10 (so, 1951), the US is booming, Japan’s mostly if not all rebuilt, and life goes on.

The WTC and Pentagon attacks killed roughly 3000. 10 years later, we’ve attacked an uninvolved nation (Iraq), while letting the one that “harbored” Al Queda go untouched. The economy’s in the can, unemployment’s as high as it’s been in decades, and the American people gladly sacrifice liberties to the tin gods of “Safety” and “Security”, despite these being at best for show.

Have I forgotten? No.

Will I forget? No.

Am I pissed off at what the majority has decreed America should be? Yes.

Go ahead and sing the anthem and wear your Chinese-made “9/II” shirts. Bread and circuses.

I’m sorry it’s been 10 years, but I don’t feel like pretending I’m sad

It doesn’t have anything to do with being sad, why would you be sad? We mark the anniversary of things like 9/11 to show our respect for those who died. If you mope around the house feeling bad today you are doing it wrong. And no, this does not apply for those who lost loved ones, friends, or other people on that day.

I didn’t say forget it, but you can’t dwell on it. And realistically, we learned nothing. We are just as arrogant as we were before. Possibly even more so, the false belief that our way of life is the “right way”. Meanwhile our political system is failing miserably, the global opinion of the US is horrendous, our economy is headed for another crash, and people are worried how they’re going to eat. Eisenhower warned about the military industrial complex 60 years ago, and we obviously didn’t learn anything from that. “The only thing we learn from history is the fact that we learn nothing from history”

People don’t seem to get that America is a pretty new country in history’s eyes. Yes, I love living here but if I had the money would I move to another country? Possibly. Americans do think they are better than everyone, but there is good things in other countries too. People have to realize that America is what 250 years old (rounded). The Roman Empire lasted 500 years (rounded). There is no reason we are immune to what happened to Rome. We could be just a page in the history books soon. But no, all the religious Americans think America is God’s favorite country and nothing can happen to it. Well, that is wrong. We are no different than any other country in the world.

How to bypass OpenDNS

Here at school they run OpenDNS on all the routers as an internet filter. Being a graphics designer, and an internet junkie, it was blocking tons of image sites where I can get stock photos, share my work, and seeing some of my peers work. I needed to have access to these sites so that people could see what I was working on, and show my finished work. So, I had to find a bypass for OpenDNS.

I’ve used SSH tunnels a lot, and that works, but at times they become slow, especially when browsing photoshop related sites. I use those when I HAVE to have a new brush for a project or the like. But, it just took too long. After searching for a while, I found Google DNS. But, if you’d like to learn how to SSH tunnel to create a HTTP proxy, read more here: http://johnspalding4.wordpress.com/2010/06/07/use-ssh-to-create-an-http-proxy/

The following tutorial is done in and for Ubuntu:

  1. In the System menu, click Preferences, then click Network Connections.
  2. Select the connection for which you want to configure Google Public DNS. For example:
    • To change the settings for an Ethernet connection, select the Wired tab, then select your network interface in the list. It is usually called eth0.
    • To change the settings for a wireless connection, select the Wireless tab, then select the appropriate wireless network.
  3. Click Edit, and in the window that appears, select the IPv4 Settings tab.
  4. If the selected method is Automatic (DHCP), open the dropdown and select Automatic (DHCP) addresses only instead. If the method is set to something else, do not change it.
  5. In the DNS servers field, enter the Google Public DNS IP addresses, separated by a space: 8.8.8.8  8.8.4.4
  6. Click Apply to save the change. If you are prompted for a password or confirmation, type the password or provide confirmation.
  7. Reboot

After doing this, you should be able to access the previously blocked sites.
What this does i set Google’s DNS as the main DNS, therefore blocking/disabling your computer from running through the standard DNS setup on the router you’re connected to. :)

[How to] Setting up Conky

First open terminal and install conky

sudo apt-get install conky
next create a config file for conky to read from

sudo gedit

when the file opens paste your script. Once pasted save it as “.conkyrc” ( with out quotes ) into your home directory ( mine is /home/jspalding ). The file might disappear right away or it wont untill your next reboot, when it does and your browsing your files click on view and show hidden files to edit when ever you want.

Now if you have compiz installed you will need a delayed start up script.

sudo gedit

add this into the file and save it in your home directory again as “.conky_start.sh” ( without quotes ). mine is set to 15 second delay but you may want to change it to suit your computer. You cant have it start right away with compiz because compiz will draw shadows under it if the script starts to soon.

#!/bin/bash
sleep 60 && conky;

Make sure the script is executable: in terminal type

chmod a+x .conky_start.sh

now add the file .conky_start.sh to your start up list (menu: system->preferences->session->startup programs)

to see if it loads for you hit Alt+F2 and type in conky and hit enter and see if it loads. if it does, in your terminal window type “reboot”, hit enter, log back in and wait the time you set into the delay script and see if it loads properly.

Here are two of my past conky configs:

http://jls4.deviantart.com/art/Desolate-Conky-126106636?q=gallery%3Ajls4%2F10588229&qo=7

http://jls4.deviantart.com/art/My-Conky-Setup-97255586?q=gallery%3Ajls4%2F10588229&qo=11

Linux Development: Why it’s the best

Linux is far better development platform for a number of reasons.

1. If something breaks, or a driver does not work as expected, I can drop down to kernel code at any time and fix it myself (and have done so in the past and submitted patches). I can also go to developers of X portion of the OS directly and work with them to resolve the issue as well. If there is a driver or kernel-level issue on an NT platform, you can submit a bug report, and then you are out of luck until a vendor decides it is going to be profitable enough for them to fix.

2. Linux is highly scriptable. Any task that you have to do though hundreds of point and click operations in windows, can be scripted, often in a few lines of code, and even the base shells like bash have hundreds of thousands of scrip-table commands available, and most software on the platform also can be integrated directly into scripts. On windows one has to try to write hacks and complex macros to point and click things for them in hopes the vendor does not change the interface.

3. Linux is far more portable. One can write applications on a linux stack that can be run on anything from xboxes, wiis, toasters, computers, mobile phones, routers, firewalls, servers, GPS devices, etc.. where most of these types of devices not ship with a basic Linux stack out of the box.

4. Linux distros virtually all come with package management systems to maintain huge troves of developer tools centrally. I can one-click install any of a good 30,000 pieces of software out of the box on most distros, and the distro will keep any installed software up to date for me, and track every single change it makes to the system. It also checks CRCs on files and can let me know if any files have been changed since I installed a particular piece of software which is vital for security.

5. Most software available for linux is free and open source. You can try it for free, use it for free, fix it for free, and usually find developers more than willing to talk to you if something does not work as expected.

6. Far wider range of developers: Microsoft has a few hundred employees in redmond working on windows, and test and develop on an extremely limited range of hardware. Linux has millions of developers with code access around the world testing and – on pretty much every device with the vast majority of every type of processor-driven device on the planet.

7. Linux has a proven track record of security, which compared to windows reputation is not even a fair comparison. Due to the fact that critical companies have to depend on Microsoft to fix things when they go wrong, or trusting their code for security blindly, companies like Google, and Government organizations like the NSA have  switched to Linux years ago, and both regularly contribute to its development. Google, has gone as far as to ban Windows from their campuses since there is no reasonable controllable way to secure it.

8. Linux is not owned or completely controlled by any one party, and many organizations all contribute to it for their own purposes and agendas, but everyone shares the benefits. Even Microsoft itself has contributed over 20,000 lines of code to the Linux kernel in order to try to stay relevant by assisting in Linux server virtualization support.

9. Most Linux developers are not paid to do so: If something is not done by x deadline, then you keep working on it until it is ready, rather ran releasing something that can endanger people in order to make money or keep a vendor agreement.

10. Linux and most of its software is free, open, and built by other developers who have spent just as much time using windows as you have, and desired something better.

Scratch that last post

It’s dead :(

SHE LIVES! [Story of the day]

Yesterday afternoon around 1:30 I started my laundry. Sweet! Wait an hour and tada, laundry is done. Heh.. no way.

With about 30min left on the load someone opened the washer and must have forgotten to close it. I was doing something, then had dinner, and then nothing after. I didn’t think about my laundry till after dinner – around 6:30. I went and I saw that my laundry had been sitting in a washer full of water for 5ish hours. >.<. Whoops. So, I just closed the lid and started it from where it went off.

I went about, doing my thing, completely forgetting about my laundry. I went back to my dorm at 12, talked with the guys, and that was it. Around 2:30 I realized I had forgotten about my laundry, which was still in the washer. It was too late to get up and hang it, so I left it.

This morning, I got up around 9:30 and started it again. It was down to about 15min when someone put some of the cleaning rags in their, and then RESTARTED the washer. My clothes had almost been in the washer for 24 hours.

While they were finishing, I realized I hadn’t seen my thumb drive in a while, when I realized it was in the pants that I wore to class on Friday. Crap. My brand new, 16gb thumb drive.

I ran over, grabbed the stuff, and yeah, my thumb drive was in there… So, I hung up my laundry and tried to think of everything that was on the thumb drive.

I finished that and brought my thumb drive over, and, after almost 24 hours in water, SHE LIVES!

Follow

Get every new post delivered to your Inbox.

Join 927 other followers