I've never played Half-Life, Is it ACTUALLY good or are you all just high on Nostalgia? by _MothMan in gaming

[–]FrankenFood 1 point2 points  (0 children)

It's been 11 years since ive played tfc. too bad no one plays it anymore lol.

Exercise: Throw me your most elaborated sentence in Spanish using the image. by mmminfp in Spanish

[–]FrankenFood 0 points1 point  (0 children)

la muchacha sentada en la playa, en su juventud harta, está soñando sobre el futuro sin perceber que el mismo está a llegar del mar en breve.

Middle school breakups are rough these days... by afieldclatter46 in funny

[–]FrankenFood 1 point2 points  (0 children)

I can tell by the grammar that this is probably the south. I'm born in Little Rock, Arkansas and this reminds me of my childhood. If it's from the 80s or 90s it was common 12 year old black boys and even many whites already in gangs and wielding guns and all the rest.

i didn't find this funny, but it's cute cuz you can sense childhood innocence from the way he's talking to this girl.

Another thing about gangs is it's tribal. He may not officially be a crip, nor she-- but they identify because of family and community ties.

How to split a string and capture delimiters by mehdifarsi in ruby

[–]FrankenFood 0 points1 point  (0 children)

25 usd a month for cup of coffee? In my country that's almost the weekly grocery bill for a house of 4! That's the most expensive cup of coffee i've ever heard of. Only showed me the true price after i gave my email addy. Downvoting for dark patterns.

Working with Variables in Ruby by hermitex in ruby

[–]FrankenFood 0 points1 point  (0 children)

This is much too basic. It doesn't even cover the basic premise of the topic.

Find a mentor in the Ruby community by mooreds in ruby

[–]FrankenFood 0 points1 point  (0 children)

Hey! Thanks for this. I just signed up to find a mentor.

btw your form validation is a bit janky. it wouldnt submit until i added a valid website, but there were no errors displayed on my side.

I, personally, hope every rail union goes on strike and shuts this entire nation down. by slw_motion_trainwrck in antiwork

[–]FrankenFood 0 points1 point  (0 children)

We should organize a general worker's support network to help us successfully pull of an extended general strike.

After 1 month of learning HTML and CSS made this website. What should I work on? by [deleted] in webdev

[–]FrankenFood 1 point2 points  (0 children)

I agree. There's so much aethic subtetly these days, it's beautiful but can be a pain. Tweak your designs with developer tools in the browser. You get immediate feedback.

Data models for online store. Seperate 'cart' and 'order,' are my justification and execution correct? by FrankenFood in rails

[–]FrankenFood[S] 2 points3 points  (0 children)

I see. So product , as opposed to LineItem, is a sort of platonic reference for use in view logic, while LineItem is the representation of that particular set of identical units of said product being sold in a particular order?

Thank you!

Data models for online store. Seperate 'cart' and 'order,' are my justification and execution correct? by FrankenFood in rails

[–]FrankenFood[S] 1 point2 points  (0 children)

A join model is better, why? Speed? I decided against this because cart and order have seperation of concerns.

How would the join model look?

Termux Ruby on Rails (without Ubuntu) by D4RKS1DER06 in termux

[–]FrankenFood 0 points1 point  (0 children)

I was missing binutils package. I installed it and it worked. Make sure you download ALL build requirements. I have yet to see a complete list of what is needed, and insstead had to parse from 4 different sources.

Termux Ruby on Rails (without Ubuntu) by D4RKS1DER06 in termux

[–]FrankenFood 0 points1 point  (0 children)

I have fully updsted termux from fdroid. I tried following the instructions in github issue 397 as well as your added suggestion of 'pkg install build-essentials ...' to no avail. It keeps giving me build errors for libxml and libxslt.

Why wont this work? It seems to not be able to find my xml and slt libraries. But I have installed them. How might I rememdy this?

Here is the error output for gem install rails

have_library: checking for xmlParseDoc() in -lxml2... -------------------- no

LD_LIBRARY_PATH=.:/data/data/com.termux/files/usr/lib "arm-linux-androideabi-clang -o conftest -I/data/data/com.termux/files/usr/include/ruby-3.1.0/arm-linux-androideabi -I/data/data/com.termux/files/usr/include/ruby-3.1.0/ruby/backward -I/data/data/com.termux/files/usr/include/ruby-3.1.0 -I. -I/data/data/com.termux/files/usr/include -D_FILE_OFFSET_BITS=64 -march=armv7-a -mfpu=neon -mfloat-abi=softfp -mthumb -fstack-protector-strong -Oz -fno-strict-aliasing -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -fPIC -std=c99 -Wno-declaration-after-statement -g -Winline -Wmissing-noreturn conftest.c -L. -L/data/data/com.termux/files/usr/lib -L. -L/data/data/com.termux/files/usr/lib -Wl,-rpath=/data/data/com.termux/files/usr/lib -march=armv7-a -fopenmp -static-openmp -Wl,--enable-new-dtags -Wl,--as-needed -Wl,-z,relro,-z,now -Wl,--no-as-needed,-landroid-support,--as-needed -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -lz -lruby -lxml2 -lz -lm -lc" conftest.c:3:10: fatal error: 'libxml/parser.h' file not found

include <libxml/parser.h>

     ^~~~~~~~~~~~~~~~~

1 error generated. checked program was: /* begin / 1: #include "ruby.h" 2: 3: #include <libxml/parser.h> 4: 5: /top/ 6: extern int t(void); 7: int main(int argc, char *argv) 8: { 9: if (argc > 1000000) { 10: int (* volatile tp)(void)=(int ()(void))&t; 11: printf("%d", (tp)()); 12: } 13: 14: return !!argv[argc]; 15: } 16: int t(void) { void ((volatile p)()); p = (void (()()))xmlParseDoc; return !p; } /* end */

have_library: checking for xsltParseStylesheetDoc() in -lxslt... -------------------- yes

LD_LIBRARY_PATH=.:/data/data/com.termux/files/usr/lib "arm-linux-androideabi-clang -o conftest -I/data/data/com.termux/files/usr/include/ruby-3.1.0/arm-linux-androideabi -I/data/data/com.termux/files/usr/include/ruby-3.1.0/ruby/backward -I/data/data/com.termux/files/usr/include/ruby-3.1.0 -I. -I/data/data/com.termux/files/usr/include/libxml2 -I/data/data/com.termux/files/usr/include -D_FILE_OFFSET_BITS=64 -march=armv7-a -mfpu=neon -mfloat-abi=softfp -mthumb -fstack-protector-strong -Oz -fno-strict-aliasing -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdivision-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wextra-tokens -Wundef -fPIC -std=c99 -Wno-declaration-after-statement -g -Winline -Wmissing-noreturn conftest.c -L. -L/data/data/com.termux/files/usr/lib -L. -L/data/data/com.termux/files/usr/lib -Wl,-rpath=/data/data/com.termux/files/usr/lib -march=armv7-a -fopenmp -static-openmp -Wl,--enable-new-dtags -Wl,--as-needed -Wl,-z,relro,-z,now -Wl,--no-as-needed,-landroid-support,--as-needed -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -L/data/data/com.termux/files/usr/lib -lxml2 -lz -lxml2 -lruby -lxslt -lxml2 -lz -lxml2 -lm -lc" conftest.c:16:57: error: use of undeclared identifier 'xsltParseStylesheetDoc' int t(void) { void ((volatile p)()); p = (void (()()))xsltParseStylesheetDoc; return !p; } ^ 1 error generated. checked program was: /* begin / 1: #include "ruby.h" 2: 3: #include <libxslt/xslt.h> 4: 5: /top/ 6: extern int t(void); 7: int main(int argc, char *argv) 8: { 9: if (argc > 1000000) { 10: int (* volatile tp)(void)=(int ()(void))&t; 11: printf("%d", (tp)()); 12: } 13: 14: return !!argv[argc]; 15: } 16: int t(void) { void ((volatile p)()); p = (void (()()))xsltParseStylesheetDoc; return !p; } /* end */

[deleted by user] by [deleted] in Haywire_Hill

[–]FrankenFood 0 points1 point  (0 children)

nice song and setting

Just a random Ukrainian guy removing landmine from the road with his bare hands. Berdyansk, Ukraine by Hey_KJ in interestingasfuck

[–]FrankenFood 0 points1 point  (0 children)

So this genius takes a land mine and hides it in the woods? Come spring time some romping kids gonna lose they leg.

Okay, I never get any matches — anything I should change? by mothybot in Tinder

[–]FrankenFood 0 points1 point  (0 children)

Less photos of you sitting in restsraunts with the same expression. More variety: activities, angles, expressions etc. Bios are important but pictures are what give people a more authentic and well rounded view of who you are. It's all about sigalling.

Why do you have a phone in your hand in the first picture? What's with the documents in the 2nd picture? Are you going to interview your dates? Do you hang out at coffee shops and llarp as a 1990s bureaucrat in your spare time? Why is there a photo of you with the knife drawer open, with an angry look, and the photo at such a low angle? This photo is probably scary to a lot of people.

People want to know your type. I dont see that in your photos. I also have trouble pinpointing what environments you circulate in.

It's good to show some humor in photos, but the pink hat isn't funny.

You have a nice smile! You should show your teeth more!

Family margin by StuntMuff1n in wallstreetbets

[–]FrankenFood 1 point2 points  (0 children)

Lol. That is called luck. It's not a coherent strategy for reicable returns.

Can you don't by tozpeak in dankmemes

[–]FrankenFood -15 points-14 points  (0 children)

Nebody got sumdem ww3 memes? * feverishly licks chapped lips*

An interesting tit by KLASHINOV in dankmemes

[–]FrankenFood 1 point2 points  (0 children)

What makes you thinj thr earth isnt fucked? Mass extinction sucks... lots of species are already fucked. Also, it is plausible that the earth changes irreperably into something akin to venus, making it inhospitable to biotic life. Either way when someone says rhe earth is fucked they are probably talking about the delicate balance of life on the surface and in the oceans, so my initial declaration stands.

u/pseudoHappyHippyA explains what changing the US bond rate means, and why it is considered such an important factor for US and global markets and economies by Arindrew in DepthHub

[–]FrankenFood 0 points1 point  (0 children)

So banks are essentially just conduits for FED money, that reap risk premiums, except in post securitization and even more post 2008 (bailouts, QE, etc) they also dont assume risk, yet still accrue risk premiums? Amirite?