Recently a friend of mine had gone from a high level NOC position to a developer. Before that he was just doing the help desk stuff. He has no degree, only the usual MIS/networking certifications and as far as I know only tinkers with code on the weekends. I can see where in some scenarios having a good understanding of configurations, packets, users, OU's, etc would be extremely beneficial to a developer.
My question is this, how many full time developers started off this way? Even how many people dual wield the responsibility of developer/systems administrator/network administration?
looking for a ruby on rails freelance job
I have been using ror for more than 2 years.
I am familiar with ruby, rails, javascript.
I'm living in Chengdu,China now.
I'm playing around with the TcpClient and I'm trying to figure out how to make the Connected property say false when a connection is dropped.
I tried doing
NetworkStream ns = client.GetStream();
ns.Write(new byte[1], 0, 0);
But it still will not show me if the TcpClient is disconnected. How would you go about this using a TcpClient?
I'm experimenting with pop-down menus (inside floating DIVs). Making them appear with onmouseover attributes is no problem, but I'm not sure how I can make the menu close properly.
I figured the best way to know when to close the menu is wait until the mouse is no longer hovering over the HTML element that called the menu or the menu itself, then wait one second, and then close the menu.
Is my idea something that can be implemented, perhaps with some jQuery? Or is there a better and more efficient alternative?
Hello,
I have a setup for using UnitTest++ like this in VS2008.
Sometimes the cmd window, which shows the console output of the unit tests just hangs.
I can move the window, resize and stuff, but I'm unable to close it. I see the window in the App tab of the Task Manager, but not in the Process tab, "Switch to process" doesn't work either.
Stop debugging or closing VS is also no help, it seems VS has lost control over this window.
If this cmd window is lost, I'm unable to shutdown my computer, which is pretty annoying
Any hints?
Hi,
Earlier users with more than 300 reputations or so (don't remeber exactly) had the ability to create new tags which is tagged to their Questions , so that it was easier to search for similar questions with the tags. And also the tags helped to identify the context of the Questions asked for.
I had also created few new tags for the questions that i ask for. But now it seems the Stackover team without prior notice to the users or any intimation has revoked the permission for creating new tags and also has set the reputation to more that 1500 for creating new tags.
Isn't this a bully act or did they feel its useless/unnecessary not required to inform all the registered users before making the changes ?
thoughts....
How do you decide what you name your servers?
Do you keep it simple/boring like svr-01, svr-02; make it descriptive like citrix-01, share-01; or do you make it creative like the names of the planets, peanuts characters, etc?
I need software that will rip a site via HTTP. It needs to download the images, HTML, CSS, and JavaScript as well as organize it in a file system.
Does anyone know of software that does this? Or would I be better off just writing it myself?
Possible Duplicate:
What are good books for learning Perl?
I want the name of a Perl book for only Perl programs. The reason behind is I want to improve my programming skill in Perl.
I have a problem.I am new to linux and would like to know how to crack a WEP and WAP wireless encrypted network.I have been typing the command "airmon-ng" i have even initialized the wlan0 with the following command on Backtrack 4 but it has failed,When I use airmon-ng command, it does not display my wireless driver.SomeOne please xplain to me from scratch.Would really appreciate it.
I remember finding an ad of some kind to a stackoverflow-style site that was for programmers to ask business questions. Anybody know of it? What is the name/url?
This off-topic item refers to people with major achievements in fields such as engineering, science, and mathematics. Here's my picks:
Eric Drexler for his work on molecular nanotech. His book, Engines of Creations, is mind-blowing.
Robert Freitas for his work on molecular nanotech. The breadth of his multi-volume book, Nanomedicine, is impressive.
Richard Stallman for promoting Free Software.
Hello,
how can i see which user has given me 1* rating? I know in the past it was possible to see this (how many stars has given me, and which user), but now?
Thanks
There are lots of libraries for mass emailing but haven't found a good free tool which does the mass mailing out of the box with following features. Do you know any?
Templated content
Html mailing support
Multi threaded
Configurable sending delay
Hi. my macbook pro is on the fritz! I bought a new imac because i couldn't afford the new laptop. Is it possible for me to take a disc image of a macbook pro and have it all work on a new imac with a newer OS. I really just want to keep Photoshop (yes, I did not buy it so do not have the insatllers...)
Thanks for any info.
I am running a Django instance locally and doing some Facebook development.
So, I set up a port on a remote machine to forward to my local machine, so that Facebook can hit the web server, and have the requests forwarded to my local machine.
Unfortunately, I'm getting the following error in my browser when I try and access the page: http://dev.thegreathive.com/
Any idea what I'm doing wrong? I think the problem is on my local machine, since if I kill the SSH tunnel, the error message changes.
Hi,
My client wants to implement podcast on his website.
I mean to create a webpage which offers podcasts and subscribe.
I don't have any idea about this technique.
If anyone knows about this, please share your ideas.
Many Thanks
Lucky Luck
I'm preparing to upgrade to Win 7 and am trying to ensure that I will be able to reinstall all the relevant applications. Since most applications require product keys, I'm curious if the installation process for Win 7 preserves those keys in any way (say for Office 2007,...) or do I have to locate and reenter every key?
Second, for appications that require a key and then check with their home server (Norton Internet Security, for example). Even if I have the key, how do I convince the server that I'm not trying to reuse an application that has a single use license?
Thanks,
--Don
I was trying to implement a way to have the UITextField move up when the keyboard opened so that the user could see what they were typing but after implementing the code - it locks my scroll. The view will scroll when the user first gets to that view but after inputting text and closing the keyboard it locks the view. I suspect that it is a problem somewhere in this code:
- (void) viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
NSLog(@"Registering for keyboard events");
// Register for the events
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector (keyboardDidShow:)
name: UIKeyboardDidShowNotification
object:nil];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector (keyboardDidHide:)
name: UIKeyboardDidHideNotification
object:nil];
// Setup content size
scrollView.contentSize = CGSizeMake(SCROLLVIEW_CONTENT_WIDTH,
SCROLLVIEW_CONTENT_HEIGHT);
//Initially the keyboard is hidden
keyboardVisible = NO;
}
-(void) viewWillDisappear:(BOOL)animated {
NSLog (@"Unregister for keyboard events");
[[NSNotificationCenter defaultCenter]
removeObserver:self];
}
//**-------------------------------**
- (void) keyboardDidShow: (NSNotification *)notif {
NSLog(@"Keyboard is visible");
// If keyboard is visible, return
if (keyboardVisible) {
NSLog(@"Keyboard is already visible. Ignore notification.");
return;
}
// Get the size of the keyboard.
NSDictionary* info = [notif userInfo];
NSValue* aValue = [info objectForKey:UIKeyboardBoundsUserInfoKey];
CGSize keyboardSize = [aValue CGRectValue].size;
// Save the current location so we can restore
// when keyboard is dismissed
offset = scrollView.contentOffset;
// Resize the scroll view to make room for the keyboard
CGRect viewFrame = scrollView.frame;
viewFrame.size.height -= keyboardSize.height;
scrollView.frame = viewFrame;
CGRect textFieldRect = [activeField frame];
textFieldRect.origin.y += 10;
[scrollView scrollRectToVisible:textFieldRect animated:YES];
NSLog(@"ao fim");
// Keyboard is now visible
keyboardVisible = YES;
}
-(void) keyboardDidHide: (NSNotification *)notif {
// Is the keyboard already shown
if (!keyboardVisible) {
NSLog(@"Keyboard is already hidden. Ignore notification.");
return;
}
// Reset the frame scroll view to its original value
scrollView.frame = CGRectMake(0, 0, SCROLLVIEW_CONTENT_WIDTH, SCROLLVIEW_CONTENT_HEIGHT);
// Reset the scrollview to previous location
scrollView.contentOffset = offset;
// Keyboard is no longer visible
keyboardVisible = NO;
}
-(BOOL) textFieldShouldBeginEditing:(UITextField*)textField {
activeField = textField;
return YES;
}
I defined the size above the #imports as:
#define SCROLLVIEW_CONTENT_HEIGHT 1000
#define SCROLLVIEW_CONTENT_WIDTH 320
Really not sure what the issue is.
GUYS I need to know abt the book which is best book for a professional to improve his concept
it must be objective
if sm1 have plz send it to [email protected]
If vampires are compared to ruby developers since ruby = red = blood. What about werewolves? or is there any other cool comparison? I'm a python dev = medusa? lols