There are no other owners for the group, I have no idea what is going on…
Update: Looks like Google disabled my account, for reasons known only to it. I had to go through a “send me an SMS to activate it” loop, but now it is working.
using System;
using System.Reflection;
class Access
{
private static void Main(string[] args)
{
var shouldWe = new ShouldWe();
shouldWe.LetAyendeIn();
}
}
public sealed class ShouldWe : GoogleGroupAccess
{
}
public abstract class GoogleGroupAccess
{
public virtual void LetAyendeIn()
{
Console.WriteLine("Welcome Oren!");
}
public GoogleGroupAccess()
{
if (!IfWeShouldNot("LetAyendeIn", GetType()))
{
Console.WriteLine("Sorry\n The owner of the group has banned you from this group.");
Console.ReadKey();
}
}
private bool IfWeShouldNot(string methodName, Type derivedType)
{
MethodInfo method = derivedType.GetMethod(methodName);
return method != null && (method.Attributes & MethodAttributes.NewSlot) == 0 && derivedType.IsSealed;
}
}
You aren't the first person that has been locked out of Google Groups for unknown and/or semi-random reasons. You might consider creating a secondary admin account in case it happens again.
About a month and a half ago, some Google servers were hacked. There were quite a few user credentials stolen. Google has implemented some security measures that can seem as paranoid.
Both my wife and my account were locked out, and we had to do the SMS thing. This was for Gmail, as far as I've been able to corroborate. A couple other friends had their credentials stolen as well. The hackers have been sending spam, until we changed our passwords. I actually saw several attempts to use my account while logged in.
> Email-style angle brackets
> are used for blockquotes.
> > And, they can be nested.
> #### Headers in blockquotes
>
> * You can quote a list.
> * Etc.
Horizontal Rules
Three or more dashes or asterisks:
---
* * *
- - - -
Manual Line Breaks
End a line with two or more spaces:
Roses are red,
Violets are blue.
Fenced Code Blocks
Code blocks delimited by 3 or more backticks or tildas:
```
This is a preformatted
code block
```
Header IDs
Set the id of headings with {#<id>} at end of heading line:
## My Heading {#myheading}
Tables
Fruit |Color
---------|----------
Apples |Red
Pears |Green
Bananas |Yellow
Definition Lists
Term 1
: Definition 1
Term 2
: Definition 2
Footnotes
Body text with a footnote [^1]
[^1]: Footnote text here
Abbreviations
MDD <- will have title
*[MDD]: MarkdownDeep
FUTURE POSTS
Partial writes, IO_Uring and safety - one day from now
Configuration values & Escape hatches - 4 days from now
What happens when a sparse file allocation fails? - 6 days from now
NTFS has an emergency stash of disk space - 8 days from now
Challenge: Giving file system developer ulcer - 11 days from now
And 4 more posts are pending...
There are posts all the way to Feb 17, 2025
RECENT SERIES
Challenge
(77): 20 Jan 2025 - What does this code do?
Answer
(13): 22 Jan 2025 - What does this code do?
Comments
I didn't know Google account could expire? I think Google have to work on their 'error' messages..
Maybe someone tried to brute force their way into your account so Google locked it out?
Agreed on the error messages!
Maybe you have a split personality and your evil side blocked you out for a laugh?
Definitively agree with James :) surely your dark side banned you from the group :).
Alk.
Did you piss yourself off, perhaps?
What evil did you do to the group? Did you say: "java coding is programming once, debugging everywhere"?
namespace Ayende.Access
{
}
The must have screwed up their triple negative if ;)
You aren't the first person that has been locked out of Google Groups for unknown and/or semi-random reasons. You might consider creating a secondary admin account in case it happens again.
About a month and a half ago, some Google servers were hacked. There were quite a few user credentials stolen. Google has implemented some security measures that can seem as paranoid.
Both my wife and my account were locked out, and we had to do the SMS thing. This was for Gmail, as far as I've been able to corroborate. A couple other friends had their credentials stolen as well. The hackers have been sending spam, until we changed our passwords. I actually saw several attempts to use my account while logged in.
I guess you post so much Google thinks you must be a robot.
Comment preview