Since 4/16/2012 6:07:19 AM, sam217 has written 10 articles and participated in 1587 conversations. sam217 signature: sam217
sam217's articles:
Items(10) /1
std::time_put facet instantiation, and locale imbue-ing136 (6/6/2010 5:19:45 PM) comp.lang.c++ This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
iterator returned by std::multimap's find()243 (12/20/2008 11:53:52 PM) comp.lang.c++ This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Bigfoot update #3065 (7/31/2006 10:38:27 PM) comp.os.linux.misc This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Bigfoot update #2031 (7/27/2006 10:45:24 PM) comp.os.linux.misc This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Bigfoot update: Sasquatch Soup recipe045 (7/8/2006 11:43:08 PM) comp.os.linux.misc This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Bigfoot update043 (7/1/2006 8:47:59 PM) comp.os.linux.misc This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Python eats gator.125 (10/5/2005 11:02:57 PM) comp.lang.python This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Setting optimum gtkhtml2 widget size.023 (10/2/2005 2:42:30 PM) comp.lang.python This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Threading, real or simulated?118 (9/21/2005 11:23:33 PM) comp.lang.python This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet software does not support MIME signed messages. The Internet standard for MIME PGP messages, RFC 2015, was publish... Sam
Deleting data from the file without deleting the file first519 (12/27/2012 7:58:28 AM) comp.lang.c++ This is a simple question, but I have never found an answer to this and been
thinking about it. Plus not sure if this is the right forum, but not sure
where to put this...I guess some kind of general progra... no6909(1)
Add two functions into vector class?424 (1/5/2013 1:40:44 AM) comp.lang.c++ I wonder why vector class does not have two functions. Two functions are p=
ush_front and pop_front, but list has both of them. I am aware of the righ=
t shift issue. I have my thought to figure out anothe... immortalnephi(95)
a function to get the full path names of a list of files513 (1/31/2013 2:07:36 AM) comp.lang.c++ First ,I am not a C++ programmer but a python programmer .I am only a littl=
e familiar with C++ ,so I cannot implement this function myself ,my use of =
this function is to wrap it into Python to improve my... redstone
HOW2 hook-in STARTTLS to SMTP:gmail ?2533 (2/16/2013 1:28:43 PM) comp.os.linux.networking Here's the expect script:-
spawn telnet smtp.gmail.com 587
expect 220
send "ehlo\r"
expect 250
send "STARTTLS\r"
expect 220
send "quit\r"
expect OK
exit 0
=======
And here's the correspondi... dog7810(25)
How to edit a text file ?1210 (3/31/2013 3:18:13 AM) comp.lang.c++ i wanna build a text editor,and now idk how to editor a file when i open..for example..if i use cout to show the text's content..and ill cannot to move my cursor to the content and edit...
... Chrisshia(4)
default value under linux612 (4/4/2013 9:54:58 AM) comp.lang.c++ I kind of remember that in the following function signature, the optional input param will always be equal to its default value under Linux.
int funct(const int param = 1)
{
}
... david.sportouch(3)
C++14: Papers19017 (4/5/2013 8:40:31 PM) comp.lang.c++ Here are three links which showcase which features are being proposed for
C++14:
http://www.meetingcpp.com/index.php/br/items/a-look-at-cpp14-papers-
part-1.html
http://www.meetingcpp.com/index.php/br/it... rui.maciel(1746)
Small variadic template challenge: function composition29 (4/13/2013 12:04:09 PM) comp.lang.c++ Does anyone know if it's possible to use (or abuse) variadic templates to
implement a way to concisely pull off function composition?
The following example can better describe what I mean:
B AtoB(A)
... rui.maciel(1746)
c++11 std::array init32 (5/16/2013 7:02:43 AM) comp.lang.c++ hello group,
why can i initialize a local std::array in this way:
std::array locvar{1.0f, 2.0f, 3.0f};
but as member "only" in this way:
std::array member{{1.0f, 2.0f, 3.0f}};
i use mingw g++ 4.8... 4one(114)
Parsing response coming from server122 (5/18/2013 4:30:00 PM) comp.lang.c++ I am getting below response from server -
Main stream options:
EncType1=H.264
Resolution1=704*576
KeyInterval1=50
FrameRate1=25
BitflowType1=VBR
NormalBitrate1=2048
Now I need to parse the parameter... sumit369(1)