Sponsored Content
Top Forums UNIX for Advanced & Expert Users How to get more experience??? Post 7422 by loadc on Wednesday 26th of September 2001 09:23:36 AM
Old 09-26-2001
May be GNU to you...

Aiiight-


The best places you can put out some effort and really gain experience as well as get your name out and meet some really awesome people to know is to volunteer some time to some of the Open Source projects. Open something up on Sourceforge, ask to help out on one of the *BSD projects (those guys will be a TREMENDOUS resource, they know that OS inside and out), ask to help out at the FSF, start your own project for the FSF, then ask if anyone would like to help you. Sometimes there are things people want to see done, but they do not have the time to put towards it themselves, but they are not against helping someone with the time to do it for them. So, ask if what people would like to see done to what projects (lurk some usenet groups and see what peopel are looking for). You may need to sit and learn some new things, there may be pieces you need to figure out before you could write new kernel modules, etc. In all seriousness, the GNU website usually has a link asking for those that would like to volunteer time or resources to the projects, that's a good place to start as well.
You won't get paid, but you don't seem to be asking to, the people working on these projects are amazing, top-level people (there are also a lot of average geeks on them as well, so don't be scared off), I don't think you could ask for a better place to get into programming and really get some hard-core exp.


Later,

loadc
 

4 More Discussions You Might Find Interesting

1. Programming

How to get more experience???

I'm kinda fed up with all the theoretical side of the programming. now i'd love to participate in some project dealing with C network programming under Unix. My question is: is there any online programs or projects where i can really participate? Any other suggestions how to build up practical... (1 Reply)
Discussion started by: solvman
1 Replies

2. UNIX for Dummies Questions & Answers

Anyone have experience with Quantum DLT8000

I know this is off subject, but I have been having fits with a Quantum M1500 library with DTL8000 drives, and figured that some of you have had some experience with them. Thanks, Chuck (1 Reply)
Discussion started by: 98_1LE
1 Replies

3. UNIX for Advanced & Expert Users

Comparing experience with AIX, HP-UX, and Solaris

I'm investigating AIX/HP-UX/Solaris for use in a research environment. Although there is plenty of technical documentation online, some important questions can only be answered from long user experience. I'd like to hear whatever you can contribute if you can compare at least two of these. To... (16 Replies)
Discussion started by: wenp
16 Replies

4. AIX

Looking for AIX Practical Experience

I have been in IT for around 7 years now and have benefited greatly from Open Source as well as free commercial offerings like Vmware Server that allow me to setup virtual environments and get some hands on time with different OS's and software. I am starting a new job in a few weeks which has... (5 Replies)
Discussion started by: supercrazy1
5 Replies
MALLOC_USABLE_SIZE(3)					     Linux Programmer's Manual					     MALLOC_USABLE_SIZE(3)

NAME
malloc_usable_size - obtain size of block of memory allocated from heap SYNOPSIS
#include <malloc.h> size_t malloc_usable_size (void *ptr); DESCRIPTION
The malloc_usable_size() function returns the number of usable bytes in the block pointed to by ptr, a pointer to a block of memory allo- cated by malloc(3) or a related function. RETURN VALUE
malloc_usable_size() returns the number of usable bytes in the block of allocated memory pointed to by ptr. If ptr is NULL, 0 is returned. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +---------------------+---------------+---------+ |Interface | Attribute | Value | +---------------------+---------------+---------+ |malloc_usable_size() | Thread safety | MT-Safe | +---------------------+---------------+---------+ CONFORMING TO
This function is a GNU extension. NOTES
The value returned by malloc_usable_size() may be greater than the requested size of the allocation because of alignment and minimum size constraints. Although the excess bytes can be overwritten by the application without ill effects, this is not good programming practice: the number of excess bytes in an allocation depends on the underlying implementation. The main use of this function is for debugging and introspection. SEE ALSO
malloc(3) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. GNU
2017-09-15 MALLOC_USABLE_SIZE(3)
All times are GMT -4. The time now is 06:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy