Search found 204 matches

by tappatekie
Tue Mar 25, 2014 9:49 am
Forum: Programming Discussion
Topic: C++ Help
Replies: 3
Views: 2631

Re: C++ Help

See this for the two different types of issues with LNK2019 errors. http://social.msdn.microsoft.com/Forums/en-US/2a7b43de-60ed-4274-8a67-349a2a34da7a/faq-28-why-would-one-get-lnk2019-unresolved-external-symbol?forum=vcgeneral My most common problem with these is that I don't have something referen...
by tappatekie
Mon Mar 24, 2014 7:47 pm
Forum: Programming Discussion
Topic: C++ Help
Replies: 3
Views: 2631

C++ Help

Hey everyone, I'm just got started learning C++ because I don't want to use C# anymore... But their is an issue I am having with something about having unresolved external symbols. I have another project in the same solution which references to the .lib file produced by my solution with the Thread.h...
by tappatekie
Sat Apr 13, 2013 6:11 pm
Forum: Programming Discussion
Topic: Web Browser from scratch
Replies: 22
Views: 6965

Re: Web Browser from scratch

MarauderIIC wrote:./apps/appname/data/../../../ would still work.
Would'nt ;) I've just tried it and it doesn't work :)
It just assumes ur accessing "./apps/appname/data/apps/appname/data" :)
by tappatekie
Tue Apr 09, 2013 9:48 am
Forum: Programming Discussion
Topic: Web Browser from scratch
Replies: 22
Views: 6965

Re: Web Browser from scratch Update

E.G with default permissions and the application writes to "C:/myfile.txt", it emulates the directory so it translates as writing to a file in "webbrowser/apps/[appname]/data/myfile.txt" unless of course the user gives it the permission to do otherwise. What if the application w...
by tappatekie
Tue Apr 09, 2013 6:49 am
Forum: Programming Discussion
Topic: Web Browser from scratch
Replies: 22
Views: 6965

Re: Web Browser from scratch Update

Hey guys, quick update on the progress of the web browser. Recently I have been developing an application subsystem for the browser, it will allow you to download any executable file to the hardrive and "install" it as an app for the browser without going through any App Store equivalent s...
by tappatekie
Sun Apr 07, 2013 1:29 am
Forum: Programming Discussion
Topic: Restrict access to .Net mscorlib
Replies: 0
Views: 22511

Restrict access to .Net mscorlib

Hey guys, a little code file I made (auto generated) that when used, completely overrides .Net framework's mscorlib.dll. The class is designed for use in loading external assemblies and invoking their functions with trust that they do not link to this library or any other (except your own framework)...
by tappatekie
Sun Apr 07, 2013 12:45 am
Forum: Programming Discussion
Topic: Pipeline
Replies: 7
Views: 2307

Re: Pipeline

Myehhhh -_- ...no, still not seeing it that way. Looks more like a stream, really if you're just reading files and doing other little things to them. There would be several stages that each do different things. With that you usually have a stream of data that gets progressively modified by the diff...
by tappatekie
Sat Apr 06, 2013 4:02 pm
Forum: Programming Discussion
Topic: Pipeline
Replies: 7
Views: 2307

Re: Pipeline

It does not appear so in this case. A pipelined architecture refers to one with several distinct stages that are linked by some memory bus or transport mechanism. Also you have the concept of a producer/consumer there where stage B consumes what stage A produced and on down the line. Thanks for the...
by tappatekie
Sat Apr 06, 2013 12:01 pm
Forum: Programming Discussion
Topic: Pipeline
Replies: 7
Views: 2307

Pipeline

Just a quick post to check something. Is this a pipeline? I have a class called Pipe and checking if this is what it actually is and not something else :) (Every function call returns the the instance its held in) Pipe p = new Pipe() .DoSomethingWithState() .DoSomethingElseWithState(); object result...
by tappatekie
Sun Mar 31, 2013 7:57 am
Forum: Programming Discussion
Topic: Web Browser from scratch
Replies: 22
Views: 6965

Re: Web Browser from scratch (Update: Linux!)

Now supporting linux :)

Image
by tappatekie
Thu Mar 28, 2013 9:32 pm
Forum: Programming Discussion
Topic: Object Serialization in C#
Replies: 5
Views: 2800

Re: Object Serialization in C#

I looked at the BinaryFormatter output and I'm guessing it's encoding information and size/type information so that you deserialize into the correct type safely. If it's true, it's unwanted information since my serializer trusts you to know what you are deserializing. It could also be Microsoft's ap...
by tappatekie
Thu Mar 28, 2013 5:08 pm
Forum: Programming Discussion
Topic: Object Serialization in C#
Replies: 5
Views: 2800

Re: Object Serialization in C#

Not to undermine your work, but are you aware of the XmlSerializer class? If you weren't, it may be worth comparing your implementation to Microsoft's. Theirs has some known limitations that yours may overcome. A performance benchmark might also be interesting. I'm aware of XML serialization but th...
by tappatekie
Wed Mar 27, 2013 11:37 pm
Forum: Programming Discussion
Topic: Object Serialization in C#
Replies: 5
Views: 2800

Object Serialization in C#

Hey guys, just thought you would be interesting in checking out and using my Serializer class written in C#, the source code for it is attached. However, it is still a work in progress but I will not be updating this thread with code updates so if you want any features, you would have to code it you...
by tappatekie
Mon Mar 25, 2013 3:39 am
Forum: Programming Discussion
Topic: Multithreading help in C# [FIXED]
Replies: 6
Views: 2377

Re: Multithreading help in C#

I mean, based on the code presented, you're getting absolutely no benefit to threading here. Almost your entire code is one big critical section. In that case, you have minimal to no benefit at all, and may in fact incur a performance hit from that overhead. Event processing at least in the Win32 c...
by tappatekie
Sun Mar 24, 2013 1:29 pm
Forum: Programming Discussion
Topic: Multithreading help in C# [FIXED]
Replies: 6
Views: 2377

Re: Multithreading help in C#

I agree with qp. Also, rather than providing an abstract example that demonstrates the misbehavior, it would be helpful if you could explain what problem you are really trying to solve. In what context is this threading code to be running? Basically I have an EventStack class which fires every mess...