Sunday, July 18, 2010
Wednesday, June 9, 2010
Thursday, April 1, 2010
Missouri Budget Issues
I'm just reposting this here so it's easier to share, the original is from a letter sent out to quite a few school employees.
Summary of Data on Funding Cuts per DESE’s Simulations
Three Options
1. Reduce all state payment to districts by $65 per WADA
2. Reduce all state payment to districts by 2% of formula
3. Reduce phase-in percentages according to appropriation
Summary of how these three options would affect
current hold harmless districts
Current 152 hold harmless districts (removed outliers Special School District of St. Louis and Voluntary Inter-district Choice Corp)
• 09 Avg. Per Pupil Expenditure = $11,969
• 09 Avg. Per Pupil State formula payment = $3,420
• 09 Total Payments to hold harmless districts = $910,059,615
• 09 WADA for hold harmless districts = 266,093
Option 1 = $65 reduction per WADA
Option 2 = Avg. reduction of $68 per WADA
Range from $10 reduction (Clayton) - $145 reduction (Gorin)
Option 3 = $0 reduction per WADA
Summary of how these three options would affect
current non-hold harmless districts
Current 372 non-hold harmless districts
• 09 Avg. Per Pupil Expenditure = $8,364
• 09 Per Pupil State formula payment = $2,964
• 09 Total payments to non-hold harmless districts = $1,926,679,364
• 09 WADA for non-hold harmless districts = 649,830
Option 1 = $65 reduction per WADA
Option 2 = Avg. of $62 per WADA
Range from $20 reduction (Webster Grove) - $106 reduction
(Riverview Gardens)
Option 3 = Avg. $92 per WADA
Range from increase of $41 (Hayti) - $232 reduction (Blair Oaks)
Option 3 Additional Concern – Approximately 407,000 students in 282 districts take a smaller decrease and have an average per pupil expenditure $10,810 while approximately 505,000 students in 242 districts take increased reductions and have an average per pupil expenditure of $8,296.
Tuesday, February 9, 2010
Scheduled Tasks in a Domain
This was important enough to me to decide to post it. I don't know if the issue is just uncommon, or if most people give up but I get a bit... obsessive sometimes ;-)
Here's the situation:
You have a task, in my case I needed to download files from an FTP server, and you need it to reoccur say on a daily basis. Sure you can do this by hand but that get's tedious, and if you're like me you tend to forget.
Solution, windows scheduled tasks! Seems simple enough, but thankfully(job security I guess) Microsoft has a way of making sure simple things find a way of being more complicated than they are.
So the new problem is in a standalone pc, tasks can be done fairly anonymously. Not in a domain though. Shouldn't be a big deal, just use an administrator account. Well unfortunately that's not enough as you get this wonderful message after trying to create a scheduled task.
Here's the fix. From a command prompt, Start>Run>cmd, type
Here's the situation:
You have a task, in my case I needed to download files from an FTP server, and you need it to reoccur say on a daily basis. Sure you can do this by hand but that get's tedious, and if you're like me you tend to forget.
Solution, windows scheduled tasks! Seems simple enough, but thankfully(job security I guess) Microsoft has a way of making sure simple things find a way of being more complicated than they are.
So the new problem is in a standalone pc, tasks can be done fairly anonymously. Not in a domain though. Shouldn't be a big deal, just use an administrator account. Well unfortunately that's not enough as you get this wonderful message after trying to create a scheduled task.
Seems like there is something wrong with the permissions. Well there is, and it's not just security settings. As it turns out it's the ACL's on the Tasks folder. This seems to be a relatively common problem in a domain, but it depends on the kind of work you are doing.The new task could not be created.The specific error is:0x80070005: Access is denied.Try using the Task page Browse button to locate the application.
Here's the fix. From a command prompt, Start>Run>cmd, type
I just wanted to post this in the hopes that someone else dealing with this won't have to go through all the work I did!C:
CD Windows
CACLS TASKS /E /G builtin\administrators:F
Friday, January 29, 2010
First Assignment in Minix
Today school let out early so I was able to stay after class and talk to Dr. Lu. Fortunately for me he had been working on the virtual machine for minix. Unfortunately when we sat down in the lab it didn't work. After some quick changes to the vm player we had a working setup and ftp access so it was possible to submit our patches.
I'm not sure if this was the same trouble I ran into last night but it's possible. I had the network setup as bridged but couldn't download software so was unable to get ftp setup. Today though we had to switch it from NAT to bridged. Dr. Lu doubled checked and found that it had to be be NAT in the main labs, but bridged in the small test lab we were using down in the CS Dept.
Seems like there is no reason for this but now we know and can keep everyone else from getting frustrated.
Well now that that's done I can focus on writing my first shell for minix.
I'm not sure if this was the same trouble I ran into last night but it's possible. I had the network setup as bridged but couldn't download software so was unable to get ftp setup. Today though we had to switch it from NAT to bridged. Dr. Lu doubled checked and found that it had to be be NAT in the main labs, but bridged in the small test lab we were using down in the CS Dept.
Seems like there is no reason for this but now we know and can keep everyone else from getting frustrated.
Well now that that's done I can focus on writing my first shell for minix.
Thursday, January 28, 2010
Spring of 2010
I can't believe it's 2010. I'm excited about this semester so far. It seems like it may be less stressful than last, and my classes are finally getting interesting. I'm going to write about my progress in Operating Systems so that I can have a log to look back on what I've done and how I did it so...
Minix 3! It's an open source stripped down Unix clone we are using to understand more about what an OS is and how it works. First task, edit the main.c of the kernel, and create a patch.
First off I gave up on trying to setup network access with this, floppy is the way to go. More on that later but if you're working on this in a vmware player setup as I was, just forget about it.
Basically that means installing software is more complicated, not impossible but again that's a later thought. For now I'll use what I have and move on.
I will be making a patch so before any editing is done I need to make a backup.
I edited the main.c using VI, which is setup to run only from the full command name "elvis", that was annoying to discover. And of course I prefer Nano so here is a link to a page with the basic VI editor commands. Useful if you don't use VI daily.
Next of course was the patch file done by using the "diff" command.
For minix to use that image it must be formatted and mounted. Being it is the only floppy device it is located at /dev/fd0 so:
Minix 3! It's an open source stripped down Unix clone we are using to understand more about what an OS is and how it works. First task, edit the main.c of the kernel, and create a patch.
First off I gave up on trying to setup network access with this, floppy is the way to go. More on that later but if you're working on this in a vmware player setup as I was, just forget about it.
Basically that means installing software is more complicated, not impossible but again that's a later thought. For now I'll use what I have and move on.
I will be making a patch so before any editing is done I need to make a backup.
mkdir /usr/src-cpy
cp /usr/src /usr/src-cpy
I edited the main.c using VI, which is setup to run only from the full command name "elvis", that was annoying to discover. And of course I prefer Nano so here is a link to a page with the basic VI editor commands. Useful if you don't use VI daily.
Next of course was the patch file done by using the "diff" command.
diff -Naur /usr/src-cpy /usr/src > 1.patchSo far so good, but now I need to be able to access that file outside of my virtual machine. The solution is fairly simple though, a virtual floppy disk. Shutdown your VM if it's online and edit it's settings. Under Hardware click Add then select floppy drive. Create a blank floppy image, name it and save it. We're not done yet though.
For minix to use that image it must be formatted and mounted. Being it is the only floppy device it is located at /dev/fd0 so:
mkdir /mnt/floppy
this will create a folder to mount the floppy to
mkfs /dev/fd0
this will format the image
mount /dev/fd0 /mnt/floppy
this will mount the image to the folder we created
Now we can copy the patch file to the floppy folder. Then retrieve it from the image later using another piece of software in our host OS capable of mounting an flp image.
Subscribe to:
Posts (Atom)