Click here to Skip to main content

- Uncategorised posts -

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
GeneralA philosopher's questionmembercitizenkant14 May '13 - 2:08 
Imagine that I use to explore with my mind a particular topic and I want to map and model the mechanics of that exploration. That's mostly metaphysical. I have a partner called "name a programming language" with whom I must communicate in its terms. Which would be that best programming language, and which would be the basics that I must "know" in order to pass my ideas to him properly? Since I'm a philosopher, with this I mean using the elements of my natural language skills that match with the language syntax, and using them in the proper context, in order to "program" at the highest level possible. It's true that my program won't run yet but for me this is not an obstacle at all (yet), as when one writes a book one can start by writing the index. Some programmers will consider this index or highest level programming (so to speak) as mostly void stuff coz it lacks of the proper mathematical meat that the interpreter use to eat in order to do lots of things that look amazingly useful, and in a sense they are right. But that's not the point. The point is that as soon as I can I would start to dig deeper in that structure and build the proper meat that my highest level labels are still just naming. What if using my ability to name what I actually think and recognize the path of whichever method I call for my object of thinking, I'd like to start setting a context for further immersion (immersion with advanced mathematical notation and that? Somebody commented me about a couple of basic elements of mathematical notation which I'm familiarized with, like +, -, /, =, 1,2,3,4,5,6,7,8,9,0, (), etc. I think I know that any programming language has its set of keywords, and that there's also a proper way in which one must express structures in a given language, proper way which I'm not familiarized with but I'm able to learn. Does this sound possible?
 
For me, starting with a programming language is an affair of connecting with it. It's not about including it in me or including me in it, but a kind of symbiotic relationship. Unless for me, using my natural language as far as I can, but constrained (formalized) by the programming language's syntax in order to model using objects and describing methods and classes that are still unable to run (yet) seems to be a good starting point for a symbiotic relationship.
 
Understanding might depend on my ability to set myself in the shoes of another.
 
Any clue? This is a real goal that I'm looking to accomplish, so any question that would clarify a bit more my doubts will be highly appreciated.
GeneralRe: A philosopher's questionprotectorPete O'Hanlon14 May '13 - 2:34 
Funnily enough, we had someone here a while back who went by the pseudonym "The Grand Negus". He came up with this[^]. I had a play with it - it wasn't suited to my needs with regards to commercial development, but it was fun to play with. You might get some joy from this.
I was brought up to respect my elders. I don't respect many people nowadays.

CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

Questionmedia playermemberB mehlan6 May '13 - 15:54 
I want to develop a media player for playing audio and video files for windows and android how can i start.
Balwant
B.tech (Comp.Engg.)

GeneralRe: media playerprofessionalPrasad Khandekar16 May '13 - 5:14 
Hello Balwant,
 
Why do you want to re-invent the wheel? Anyway the API documentation is the best source to get started.
 
Regards,
Prasad P. Khandekar
Knowledge exists, man only discovers it.

QuestionNeed help with Discrete MathmemberTyler Candee29 Mar '13 - 8:10 
I really hope someone here knows a bit about discrete math. Here's my problem:
 
A standard notation for the number of partitions of an n-element set into k classes is S(n, k). Because the empty family of subsets of the empty set is a partition of the empty set, S(0, 0) is 1. In addition, S(n, 0) is 0 for n > 0, because there are no partitions of a nonempty set into no parts. S(1, 1) is 1.
A) Explain why S(n, n) is 1 for all n > 0. Explain why S(n, 1)is 1 for all n > 0.
B) Explain why S(n, k) = S(n - 1, k - 1) + kS(n - 1, k) for 1 < k < n.
C) Make a table like Table 1.1 that shows the values of S(n, k) for values of n and k ranging from 1 to 6.
 
Table 1.1 is [Pascal's triangle].
 
I'm not asking you guys to DO my homework. I'm just asking for some help with this one problem. Maybe some guidance as to what I should do.
 
Thanks!
~ Tyler Candee
About Me | Candee Computers

AnswerRe: Need help with Discrete MathmvpRichard MacCutchan29 Mar '13 - 23:01 
That's a mathematics question, whereas this site is for programming questions.
Use the best guess

GeneralRe: Need help with Discrete MathmemberEdo Tzumer8 Apr '13 - 23:50 
Nevertheless the answer is probably 2 Wink | ;)
Cheees,
Edo

QuestiontestmemberDeepak Anmol11 Mar '13 - 4:20 
tets
AnswerMessage RemovedmemberDeepak Anmol11 Mar '13 - 4:24 
Message Removed
GeneralMessage Automatically RemovedmemberDeepak Anmol11 Mar '13 - 4:25 
Message Automatically Removed
GeneralMessage RemovedmemberDeepak Anmol11 Mar '13 - 4:26 
Message Removed
Questionhi i have research in agile applying for distributed dependable systems. i appreciate your assistancememberredstudent2 Mar '13 - 1:36 
Dear all, I have research in agile applying for distributed dependable systems. i appreciate your assistance and sharing it to workmates and your acquaintances.
https://docs.google.com/spreadsheet/viewform?formkey=dDEzOC1zN0FJaXd1UkhQVkphU3RrTkE6MQ[^]
lord of bee

AnswerRe: hi i have research in agile applying for distributed dependable systems. i appreciate your assistancememberryanb3120 Mar '13 - 1:53 
What?
There are only 10 types of people in the world, those who understand binary and those who don't.

QuestionData push implementationmemberJMU Duuuukes23 Jan '13 - 10:29 
Long time reader, first time poster here! I'm looking for a suggestion for a solution here that I have either over-thought or I'm not asking the right questions, so much I need a fresh perspective.

I wrote a vb.net application. One feature of the program is that it can wait for and parse XML data in order to present certain notifications to the user. I set this up using a FileSystemWatcher on a local directory to keep an eye out for incoming XML files. These XML files (<1K, maybe 1-2 dozen elements) are generated by another vb.net app that watches for text files on a network share.

My problem is that I need a simple and effective way to get this data fed to the client over the web. Using the setup I have now, I will have several dozen laptops on different networks and it will be too complicated to get them all on a VPN to watch the same network share waiting to parse text files. I would rather implement a solution that sits on a web server, and the web server pushes data to a client on any network.

Like I said, this probably exists and I'm over-analyzing my problem. I'm willing to write it or modify my main vb.net app if it's possible to watch for incoming data from http. It could be a file push, it could be a data stream, feed, whatever.

Any input on a simple practical implementation?
AnswerRe: Data push implementationmemberzaphoed1 Feb '13 - 11:55 
Hi
I'm no web expert, so don't take the following too serious Smile | :)
 
It is not entirely clear for me if you have a specific client in mind or if a browser would do just as fine as parts of the existing vb.net app. It depends on your possibilities to host the server solution.
 
If you have access to port 80 of a public ip address on a machine which can run the vb.net app, then i think that splitting the existing app in a server and a client part could be the quickest solution and it would preserve the original UI.
If there's no easy solution for push notification then maybe polling could already be sufficient, depending on the available server capabilities and the number of targeted clients.
 
I googled for "simple vb.net http server" and found the following results interresting:
Embedded .NET HTTP Server[^]
http://stackoverflow.com/questions/6883364/simple-net-based-http-server[^]
http://www.informit.com/guides/content.aspx?g=dotnet&seqNum=784[^]
AnswerRe: Data push implementationadminMatthew Dennis2 Feb '13 - 15:06 
take a look at SignalR http://signalr.net/[^]
AnswerRe: Data push implementationmemberjschell3 Feb '13 - 6:55 
JMU Duuuukes wrote:
and the web server pushes data to a client on any network.

 
Why does it have to push the data? Why can't the clients poll for it?
GeneralRe: Data push implementationmemberJMU Duuuukes4 Feb '13 - 11:02 
Thanks everyone for the input! The reason I'm trying to stay away from polling is that I need it to be "real-time" notifications. I started with a model polling every few seconds but realized that probably was impractical for many reasons. Soon after I posted this question I began experimenting with DropBox (See I said I just needed to walk away from the problem for a moment); I have a file generated server side that drops into a folder synced by DropBox and then any client connected online would see that file pop up on creation. It's crude but that's basically the model I want and it works well until I have a solution finalized. Heck I may just use DropBox for this but it's probably a violation of their terms of service.
 
These all look like great places to start working.
AnswerRe: Data push implementationmemberEdo Tzumer2 Mar '13 - 22:55 
How about the common chat-room idea where there is a server and clients.
There are tons of examples of various implementations bases on TCP.
In your case if I undestand correctly you only need the server to send messages (xml) to the clients.
 
If you need some links, let me know.
Cheees,
Edo

GeneralRe: Data push implementationmemberJMU Duuuukes4 Mar '13 - 4:43 
That sounds like it is exactly what I need. If you know of any great links please do share them.
GeneralRe: Data push implementationmemberEdo Tzumer4 Mar '13 - 17:58 
What is the programming language of your choice?
Cheees,
Edo

GeneralRe: Data push implementationmemberJMU Duuuukes5 Mar '13 - 9:55 
I'm working in VB.NET. Thanks.
AnswerRe: Data push implementationmemberEdo Tzumer5 Mar '13 - 21:31 
This is an example in C#, I believe it's fairly simple VB.NET users to pick up from it.
A Chat Application Using Asynchronous TCP Sockets[^]
Cheees,
Edo

QuestionSome more posts for you.memberThe Reincarnation23 Jan '13 - 5:58 
Categorise these.[^]
QuestionHello - Is it possible to have about 1K of space to make notes within our profiles?memberZaf Khan20 Dec '12 - 11:56 
Hello - Is it possible to have about 1K of space to make notes within our profiles?
AnswerRe: Hello - Is it possible to have about 1K of space to make notes within our profiles?mvpRichard MacCutchan20 Dec '12 - 22:42 
You can post blog entries in your profile space.
One of these days I'm going to think of a really clever signature.

GeneralRe: Hello - Is it possible to have about 1K of space to make notes within our profiles?memberZaf Khan21 Dec '12 - 6:35 
What i meant was 1k space for personal notes for stuff related to THIS website so i dont have to save notes in a notepad file on the desktop.
 
In those notes i would store info about who i have helped and wether they pursued the advice and gave feedback which would benefit other users in the future or wether they just copy pasted the code and moved onto the next homework assignment.
 
With the general idea of weeding out the lazybone ones from the comitted ones.
GeneralRe: Hello - Is it possible to have about 1K of space to make notes within our profiles?memberjschell3 Feb '13 - 7:01 
Wouldn't it be easier to just not worry about that?
AnswerRe: Hello - Is it possible to have about 1K of space to make notes within our profiles?memberEdo Tzumer2 Mar '13 - 22:21 
At some point users with a high enough score get (a considerable amount of) personal space.
I guess a couple of Ks would be easily implemented and might be a suggestion for the admin dudes.
But I also think its not a very common requirement.
Cheees,
Edo

QuestionWhat social media groups can attract your attention?memberSveta Bondarenko18 Dec '12 - 23:34 
Hi all, In need of advice. Here is a problem. Our company has got really talented software developers. When they are available we a looking for new projects. That`s why we decided to create a group in social media where the customers and developers can meet. It would be a place where they can share information, ideas and programming techniques.
But how should we attract the right people? What is your criterion for joining groups?
AnswerRe: What social media groups can attract your attention?memberApril Fans22 Dec '12 - 20:43 
Hello Sveta,
 
Well that depends on what your looking for - in this case, you should ask yourself this question: To whom am I catering too? What can (my company do) for them?
 
This may seem like a broad question to ask yourself - but in the long run it will help you find what you are looking for.
 
Best of Luck!
 
With Kind Regards,
Projects I'm working on:
 
Email Marketing

AnswerRe: What social media groups can attract your attention?memberjschell3 Feb '13 - 7:05 
Sveta Bondarenko wrote:
When they are available we a looking for new projects

 
Huh? As in you have a consultancy and you are looking to find new contracts?
Then you should hire someone who does exactly that.
 
Sveta Bondarenko wrote:
Our company has got really talented software developers.

 
The talents that make one good at development are unlikely to translate into getting more work. Presumably they are also intelligent enough to realize that they are not the best candidates for do sales, so someone else should be doing it.
AnswerRe: What social media groups can attract your attention?memberEdo Tzumer2 Mar '13 - 22:23 
Attracting the right people requires that you have a definition for the "right people"
one very nice thing about open discussions is that you will always have surprises and innovation will flourish.
However if you want to filter the people of your choice, you can always make it user based and then you can filter out unwanted users, grant point for activity etc.
Cheees,
Edo

QuestionIs it possible to post a poll? [modified]memberZaf Khan8 Dec '12 - 10:47 
Is it possible to post a poll?
 
I wanted to post a poll to assess what other members make of some of the posts........
 
For example....
 
I have read many posts where someone asks a question and other members ridicule them only to be abused in return....
 
for example........
Like this post
 
Lets be honest and admit if we all acted our age's instead of our shoe sizes then none of this would happen?
 
What do you think of this?
Is this a sane point?
Or is it just flossing in the wind and no one gives a monkey's ass about etiquette?
 

From a Mature member
 

 
EDIT:
The thread which says HOW TO POST A QUESTION at the top of nearly every forum states that sarcasm and abuse isnt tolerated......
 
Yet in approximately 1 in 10 posts there is abuse and sarcasm and bad etiquette...
So the forum moderators ought o back up their words. Thats my view for whats its worth.
 
I think etiquette is important, after all we all want to be treated nicely and with courtesy and respect as others expect us to treat them the same way.

modified 8 Dec '12 - 16:57.

AnswerRe: Is it possible to post a poll?mvpRichard MacCutchan8 Dec '12 - 13:34 
The example you show is a typical example of a question from someone who is just too lazy/stupid to think about the problem they are trying to solve and explain it in a reasonably detailed way. So the answers are all quite valid, and may teach them to think a bit more.
One of these days I'm going to think of a really clever signature.

GeneralRe: Is it possible to post a poll?memberZaf Khan8 Dec '12 - 23:18 
So what is the point of the website admn writing the followin statements? if theyre rendered invalid?
 
QUOTE:
======

When answering a question please:
1.Read the question carefully
2.Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
3.If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
4.If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.


cheers,
Chris Maunder

 
Do you not think that there was insult and slapdown and abuse present in that thread?
Or is it just me? Maybe everyone else doesnt care? or have no etiquette or just want to brush it under the carpet?
GeneralRe: Is it possible to post a poll?mvpRichard MacCutchan8 Dec '12 - 23:22 
Zaf Khan wrote:
Do you not think that there was insult and slapdown and abuse present in that thread?
Possibly, but everyone has their own measure of what is or is not abuse.
One of these days I'm going to think of a really clever signature.

GeneralRe: Is it possible to post a poll?memberZaf Khan8 Dec '12 - 23:25 
Thank You once again for a definitive answer.
QuestionHow to private message another code project membermemberZaf Khan7 Dec '12 - 8:24 
Hello can someone tell me how to message another code project member as i cannot find any reference to this in the help area.
 
Maybe thats what the token is for? in the private section of the member profile?
but its not clarified anywhere. thank you.
AnswerRe: How to private message another code project membermvpRichard MacCutchan7 Dec '12 - 21:36 
You cannot do it unless the member allows private messages. Look at any message from the member, and if there is an Email link at the bottom, as there is in this message, then you can send them a private email. But not everyone allows it. You could send them a public message and ask them to contact you through your Email link.
One of these days I'm going to think of a really clever signature.

GeneralRe: How to private message another code project membermemberZaf Khan7 Dec '12 - 23:55 
Thank You for the info
QuestionConference. Boring to death?memberSveta Bondarenko6 Dec '12 - 4:22 
A chief executive officer was to give the keynote address at one important conference. That’s why he asked one of his top employees to write a twenty minute speech for him. After that important event the chef was furious. “Why did you write an hour long speech for me?” he bellowed. “Half the audience got up and left the hall before I finished my speech!”
The confused employer replied, “Sir, I wrote you a 20 minute speech. But I also gave you the two extra copies you requested.” Smile | :)
The only thing I’m confused about this story is the attentive and concerned audience. I guess in a real life nobody would notice any difference. Am I right? Do you have an experience of attending any really interesting IT training or event? If not, in which one would you like to participate?
Personally, I think nearly all conferences are dull and boring.
What topics are the most interesting for you?
AnswerRe: Conference. Boring to death?memberEdo Tzumer2 Mar '13 - 22:26 
I usually find the books I read during boring presentations, quite interesting Wink | ;)
and I can always replace them if I want...
Cheees,
Edo

QuestionBloomberg API CodememberJLRobinson30 Nov '12 - 8:47 
I have some tools I wrote for Bloomberg API code that I thought would be useful to share. Is Code Project a good place to put them? If so, under what category would it belong? I'm thinking maybe "Third Party Products"
AnswerRe: Bloomberg API CodemvpRichard MacCutchan30 Nov '12 - 23:54 
If you just want to provide links then you could try the Free Tools forum[^]. However, if you think their content and development would be of interest to other developers you could try writing articles about them[^].
One of these days I'm going to think of a really clever signature.

QuestionIs app innovation contest usefull?membergiammin24 Oct '12 - 22:39 
The only result of app innovation context is codeproject filled with hundreds of useless, never-done, not explained, stub projects.
 
if you are subscribed to codeproject rss you know what I say
AnswerRe: Is app innovation contest usefull?protectorPete O'Hanlon24 Oct '12 - 22:54 
The aim of the contest was to get people to start thinking about developing for Ultrabooks. Ultimately, there should be 300 applications released out of this - and there should be 300 useful articles coming out of it.

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos

CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

GeneralRe: Is app innovation contest usefull?membergiammin24 Oct '12 - 22:58 
in rss feed i see everyday about one hundred stub project (mainly useless games)
 
you say they will be useful articles? I don't think so!
GeneralRe: Is app innovation contest usefull?protectorPete O'Hanlon24 Oct '12 - 23:27 
giammin wrote:
you say they will be useful articles?

No I don't. I say the 300 that go through to the next round will be the useful articles.
 
The dregs have been weeded out now.

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos

CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

QuestionAs there isn't a specific forum for 'categorised posts'.......memberTPFKAPB3 Oct '12 - 3:49 
.....I've had to post this here.[^]

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 16 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid