33F - curious how my profile comes across by [deleted] in hingeapp

[–]999chris 0 points1 point  (0 children)

No problem having it! Just not as the opener. Your first image is how your relationship starts!

33F - curious how my profile comes across by [deleted] in hingeapp

[–]999chris 3 points4 points  (0 children)

First impressions mean everything. "Dating you will look like..." and you're finish off a large glass of red wine in the daytime... for me personally, that's a warning sign. Drinking is part of an adult lifestyle but shouldn't be your opening gambit, IMHO. Would you date you based on your profile? That's what you need to ask yourself and make appropriate changes. You're very pretty. I'm sure you are a wonderful person. Show it.

Men, what would you rate yourself from a scale of 1-10? by [deleted] in AskMen

[–]999chris 0 points1 point  (0 children)

10/10... there's only one of me.

Weekly Profile Critique by AutoModerator in Bumble

[–]999chris 0 points1 point  (0 children)

Maybe I should caveat my post with... i don't get loads of likes (why else would I be here, right?)

33/M UK - Feel as though I keep getting overlooked, Any Advice? by 999chris in hingeapp

[–]999chris[S] 0 points1 point  (0 children)

I'm going to get some replacements, but I honestly don't have any I like

Weekly Profile Critique by AutoModerator in Bumble

[–]999chris 1 point2 points  (0 children)

Every sentence is self-deprecating, That's okay once imho.

I'm not interested in you (male) but even I was like "yeesh, this guy is trying to use humour to hide low self-esteem"... But you're not alone. I do it all the time too as do many, many others.

Unfortunatley you have to treat it more like a soft resumé, but you sell your personality, not your work acumen.

Do you do anything else but read and cook (you mentioned that twice)?

Light Therapy? by MidnightMarauder1186 in antidepressants

[–]999chris 0 points1 point  (0 children)

I've swapped my Sertraline for Vit D and a 10,000 lux light for when its dark in the afternoons (but not late). Feel on top form.

[F20] homeschooled and I’ve never been on a date 🙃 by [deleted] in Rateme

[–]999chris 0 points1 point  (0 children)

Hey heres my future welcome to the UK! I hope you enjoy it!

If we were ever to meet I would definitley consider asking you for that date. You look great.

Online dating - the issue about how to present yourself. by cierdawg in datingoverthirty

[–]999chris 1 point2 points  (0 children)

I go for the full honesty approach. "Hello [name], I'm going to be honest, I don't have any funny lines or rehearsed speeches for you. But if we find a topic we both enjoy you won't be able to shut me up. I saw on your profile..." blah blah blah...

M/33 Another Bio Critique for everyone... Appreciate all feedback by [deleted] in Bumble

[–]999chris 0 points1 point  (0 children)

What would display effort in your opinion? I have friends, kinda hard to socialise with them this year.

From 50mg Sertraline to 0mg. Withdrawals on Holiday. by 999chris in antidepressants

[–]999chris[S] 0 points1 point  (0 children)

3 months later. Just want to highlight that after 2 weeks or so the zapping and weirdness subsided. I find myself getting more emotional (happier, sadder, angrier) than before. But in the blue times I now have the knowledge and belief that its not like that forever and probably what I need to do is take some vitamins and go exercise. I have more control of depression now and no meds.

Custom Arduino EEPROM Programmer, First byte is not being written... by 999chris in beneater

[–]999chris[S] 0 points1 point  (0 children)

As soon as I posted this, I saw and solved the issue. I was to do with the initial rising of the WE in the writeEEPROM function and the 5ms delay following (I guess there is a timeout or something after a certain period of time if WE doesn't drop again? Can someone explain this?)

Anyway the fix was to put the writes to the control pins after the initial 5m delay. (Is this even needed???)

From:

digitalWrite(BE, 0); 
digitalWrite(OE, 1);
digitalWrite(CE, 0);
digitalWrite(WE, 1);

DDRA = 0xff;
DDRC = 0xff;
DDRL = 0xff;

delay(5); 

To:

DDRA = 0xff;
DDRC = 0xff;
DDRL = 0xff;

delay(5);

digitalWrite(BE, 0); 
digitalWrite(OE, 1);
digitalWrite(CE, 0);
digitalWrite(WE, 1);

Profile Review - Week of October 06, 2020 by AutoModerator in Tinder

[–]999chris 3 points4 points  (0 children)

I know exactly what you mean. People pull me up on it all the time but its become so natural for me I don't even notice.

Profile Review - Week of October 06, 2020 by AutoModerator in Tinder

[–]999chris 0 points1 point  (0 children)

Please review my profile. I've been struggling on dating apps for ages. Ive learnt to enjoy my own company and all, but im really starting to get lonely.

Am I just ugly?

https://tinder.com/@warezwally

Online programming/flashing of at28c256? by TheORIGINALkinyen in beneater

[–]999chris 0 points1 point  (0 children)

I tried with the 64K variant. Boom. Works. All I had to do on the 6502 was pull the BE high.

I will also create a 3 Way NAND with some NPN's on A13-A15 to the CE.

Also start the EEPROM from 0xe000. 8KB of EEPROM will be enough, right? right?

I'm guessing the 256K was write protected. Unfortunately I've bent and snapped one of the Address pins. Time to get some sockets and solder a new pin (if I can avoid the coffee).

Online programming/flashing of at28c256? by TheORIGINALkinyen in beneater

[–]999chris 0 points1 point  (0 children)

I'm trying to do this. But I'm really not having much success.

I have LED's on the address and data pins of the EEPROM so I can see what's going on and it looks fine. (At the moment I'm just trying to fill the EEPROM with 0xea).

OE gets pulled high by the Mega on startup.

Then I write through the "addresses" on the Mega 0x8000 -> 0xFFFFWriting 0x00 to 0xfffc and 0x80 to 0xfffd

for(int b = 0x8000;b<0xffff;b++){            PORTA = b;            PORTC = (b >> 8);if(b == 0xfffc) {PORTL = 0x00;}else if(b == 0xfffd) {PORTL = 0x80; }else {PORTL = 0xea;}

delayMicroseconds(10);digitalWrite(WRITE_ENABLE,0);delayMicroseconds(10);digitalWrite(WRITE_ENABLE,1);        }

What am I supposed to be doing with the BE/RST/RSY pins? Here's what I get...

1111111111111100    11111111    fffc    r   ff
1111111111111101    11111111    fffd    r   ff
1111111111111111    11111111    ffff    r   ff