HackerTrans
トップ新着トレンドコメント過去質問紹介求人

jared0x90

no profile record

コメント

jared0x90
·10 日前·議論
are you running a quant?

i have a friend with a 4080 that is wanting to experiment with local models and those cards should be similar enough. can you give any more detail about your setup? ty!
jared0x90
·19 日前·議論
the hdlbits course is really good imo
jared0x90
·2 か月前·議論
lol i def picked up some autocad and other things that way for friends of my family. i was fortunate enough to have a neighbor give me a copy of VB3 he got from work after i got back from a summer camp learning QBASIC. the simplicity of the form designer in VB was total magic. i spent so many nights up late reading/downloading sample projects to see how people made the controls work together.
jared0x90
·2 か月前·議論
ya, i made rage and nightmare, just shared them w/ some friends. the guys that made fate x went to a nearby high school funny enough but never knew them personally.
jared0x90
·2 か月前·議論
i loved making AOL 'hacking' tools as a kid in VB3/5/6. faders, stuff to scroll ascii art to chat rooms, etc.
jared0x90
·3 か月前·議論
what display are you talking to ? i haven't touched an ESP in a few years, this sounds like a fun reason to dust one off.
jared0x90
·3 か月前·議論
this gave me some old Itanic nostalgia just reading the foreword. There were some interesting discussions from 2024 regarding it and other people involved in VLIW designs

https://news.ycombinator.com/item?id=39097504
jared0x90
·3 か月前·議論
extract the exe like a zip file, that's how love packages itself. last i looked at the source myself it had comments in still from the dev
jared0x90
·4 か月前·議論
try page's pre-order link at the top goes to a 404
jared0x90
·6 か月前·議論
i have been joking with friends that it's time to redefine saas to software-as-a-sentence
jared0x90
·7 か月前·議論
Out of curiosity is there a reason nobody seems to be trying it with factory.ai's Droid in these comments? Droid BYOK + GLM4.7 seems like a really cost effective backup in the little bit I have experimented with it.
jared0x90
·8 年前·議論


   const secondStatements = [
   "SELECT quote(root) from ft_segdir;",
   "UPDATE ft_segdir SET root = X'0005616261636B03010200FFFFFFFF070266740302020003046E646F6E03030200';",
   "SELECT * FROM ft WHERE ft MATCH 'abandon';"
   ];
Just saw the proof of concept page. Looks like they are building quite the usual string in hex... Starting with a null terminator? Mmmhmmm
jared0x90
·8 年前·議論
I casually thumbed through a few of the commits they posted and came across this

https://chromium.googlesource.com/chromium/src/+/c368e30ae55...

   for(i=0; i<nChar; i++){
     if( n>=nByte ) return 0;      /* Input contains fewer than nChar chars */
     if( (unsigned char)p[n++]>=0xc0 ){
   -      while( (p[n] & 0xc0)==0x80 ) n++;
   +      while( (p[n] & 0xc0)==0x80 ){
   +        n++;
   +        if( n>=nByte ) break;
   +      }
     }
   }
   return n;
Looks like there may have been an issue in parsing malformed multibyte unicode characters properly.